@codingame/monaco-vscode-edit-sessions-service-override 13.1.3 → 13.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
3
3
  import { EditSessionsLogService } from './vscode/src/vs/workbench/contrib/editSessions/common/editSessionsLogService.js';
4
- import { IEditSessionsLogService, IEditSessionsStorageService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/editSessions/common/editSessions.service';
4
+ import { IEditSessionsStorageService, IEditSessionsLogService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/editSessions/common/editSessions.service';
5
5
  import { EditSessionsWorkbenchService } from './vscode/src/vs/workbench/contrib/editSessions/browser/editSessionsStorageService.js';
6
6
  import { WorkspaceIdentityService } from './vscode/src/vs/workbench/services/workspaces/common/workspaceIdentityService.js';
7
7
  import { IWorkspaceIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/workspaces/common/workspaceIdentityService.service';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-edit-sessions-service-override",
3
- "version": "13.1.3",
3
+ "version": "13.1.5",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - edit-sessions service-override",
6
6
  "keywords": [],
@@ -15,14 +15,14 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common": "13.1.3",
19
- "@codingame/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common": "13.1.3",
20
- "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.3",
21
- "@codingame/monaco-vscode-a2719803-af40-5ae9-a29f-8a2231c33056-common": "13.1.3",
22
- "@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.1.3",
23
- "@codingame/monaco-vscode-api": "13.1.3",
24
- "@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.3",
25
- "@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.1.3"
18
+ "@codingame/monaco-vscode-3607c442-ae7a-594b-b840-038378c24fef-common": "13.1.5",
19
+ "@codingame/monaco-vscode-4a316137-39d1-5d77-8b53-112db3547c1e-common": "13.1.5",
20
+ "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.5",
21
+ "@codingame/monaco-vscode-a2719803-af40-5ae9-a29f-8a2231c33056-common": "13.1.5",
22
+ "@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.1.5",
23
+ "@codingame/monaco-vscode-api": "13.1.5",
24
+ "@codingame/monaco-vscode-d6e33d82-c101-549d-a885-0807ab3e0cfb-common": "13.1.5",
25
+ "@codingame/monaco-vscode-f48982c4-9e82-55e2-b800-20e6d1e6096f-common": "13.1.5"
26
26
  },
27
27
  "main": "index.js",
28
28
  "module": "index.js",
@@ -7,7 +7,7 @@ import { ShutdownReason, LifecyclePhase } from '@codingame/monaco-vscode-api/vsc
7
7
  import { ILifecycleService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle.service';
8
8
  import { registerAction2, Action2, MenuRegistry, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
9
9
  import { localize2, localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
10
- import { EDIT_SESSION_SYNC_CATEGORY, EDIT_SESSIONS_SHOW_VIEW, EDIT_SESSIONS_PENDING, EDIT_SESSIONS_CONTAINER_ID, EDIT_SESSIONS_TITLE, EDIT_SESSIONS_VIEW_ICON, editSessionsLogId, EDIT_SESSIONS_DATA_VIEW_ID, hashedEditSessionId, EditSessionSchemaVersion, ChangeType, decodeEditSessionFileContent, FileType } from '../common/editSessions.js';
10
+ import { EDIT_SESSION_SYNC_CATEGORY, EDIT_SESSIONS_SHOW_VIEW, EDIT_SESSIONS_PENDING, EDIT_SESSIONS_VIEW_ICON, EDIT_SESSIONS_TITLE, EDIT_SESSIONS_CONTAINER_ID, editSessionsLogId, EDIT_SESSIONS_DATA_VIEW_ID, hashedEditSessionId, EditSessionSchemaVersion, ChangeType, decodeEditSessionFileContent, FileType } from '../common/editSessions.js';
11
11
  import { IEditSessionsStorageService, IEditSessionsLogService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/editSessions/common/editSessions.service';
12
12
  import { ISCMService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/scm/common/scm.service';
13
13
  import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
@@ -2,7 +2,7 @@
2
2
  import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
3
3
  import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
4
4
  import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
5
- import { FileSystemProviderCapabilities, FileSystemProviderErrorCode, FileType, FilePermission } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files';
5
+ import { FileSystemProviderCapabilities, FileSystemProviderErrorCode, FilePermission, FileType } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files';
6
6
  import { EDIT_SESSIONS_SCHEME, ChangeType, decodeEditSessionFileContent } from '../common/editSessions.js';
7
7
  import { IEditSessionsStorageService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/editSessions/common/editSessions.service';
8
8
  import { NotSupportedError } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';