├── Commands ├── __init__.py ├── create_connection.py ├── create_diff_scratch.py ├── enter_credentials.py ├── load_all_snow_record.py ├── load_modified_records.py ├── load_snow_record.py ├── load_snow_table.py ├── open_service_now_record.py ├── refresh_snow_record.py └── test_connection.py ├── Common ├── __init__.py ├── rest_client.py └── utils.py ├── Context.sublime-menu ├── Events ├── __init__.py └── save_listener.py ├── LICENSE ├── Main.sublime-menu ├── README.md ├── Reloader ├── __init__.py └── module_loader.py ├── ServiceNowSync.py ├── Side Bar.sublime-menu └── __init__.py /Commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/__init__.py -------------------------------------------------------------------------------- /Commands/create_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/create_connection.py -------------------------------------------------------------------------------- /Commands/create_diff_scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/create_diff_scratch.py -------------------------------------------------------------------------------- /Commands/enter_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/enter_credentials.py -------------------------------------------------------------------------------- /Commands/load_all_snow_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/load_all_snow_record.py -------------------------------------------------------------------------------- /Commands/load_modified_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/load_modified_records.py -------------------------------------------------------------------------------- /Commands/load_snow_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/load_snow_record.py -------------------------------------------------------------------------------- /Commands/load_snow_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/load_snow_table.py -------------------------------------------------------------------------------- /Commands/open_service_now_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/open_service_now_record.py -------------------------------------------------------------------------------- /Commands/refresh_snow_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/refresh_snow_record.py -------------------------------------------------------------------------------- /Commands/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Commands/test_connection.py -------------------------------------------------------------------------------- /Common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Common/__init__.py -------------------------------------------------------------------------------- /Common/rest_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Common/rest_client.py -------------------------------------------------------------------------------- /Common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Common/utils.py -------------------------------------------------------------------------------- /Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Context.sublime-menu -------------------------------------------------------------------------------- /Events/__init__.py: -------------------------------------------------------------------------------- 1 | # from .save_listener import * -------------------------------------------------------------------------------- /Events/save_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Events/save_listener.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/README.md -------------------------------------------------------------------------------- /Reloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reloader/module_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Reloader/module_loader.py -------------------------------------------------------------------------------- /ServiceNowSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/ServiceNowSync.py -------------------------------------------------------------------------------- /Side Bar.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salcosta/servicenow-sync/HEAD/Side Bar.sublime-menu -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------