@theia/vsx-registry 1.45.1 → 1.46.0-next.72

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.
Files changed (100) hide show
  1. package/README.md +45 -45
  2. package/lib/browser/recommended-extensions/preference-provider-overrides.d.ts +17 -17
  3. package/lib/browser/recommended-extensions/preference-provider-overrides.js +95 -95
  4. package/lib/browser/recommended-extensions/recommended-extensions-json-schema.d.ts +14 -14
  5. package/lib/browser/recommended-extensions/recommended-extensions-json-schema.js +94 -94
  6. package/lib/browser/recommended-extensions/recommended-extensions-preference-contribution.d.ts +11 -11
  7. package/lib/browser/recommended-extensions/recommended-extensions-preference-contribution.js +59 -59
  8. package/lib/browser/vsx-extension-commands.d.ts +14 -13
  9. package/lib/browser/vsx-extension-commands.d.ts.map +1 -1
  10. package/lib/browser/vsx-extension-commands.js +68 -63
  11. package/lib/browser/vsx-extension-commands.js.map +1 -1
  12. package/lib/browser/vsx-extension-editor-manager.d.ts +9 -9
  13. package/lib/browser/vsx-extension-editor-manager.js +49 -49
  14. package/lib/browser/vsx-extension-editor.d.ts +21 -21
  15. package/lib/browser/vsx-extension-editor.js +109 -109
  16. package/lib/browser/vsx-extension.d.ts +146 -143
  17. package/lib/browser/vsx-extension.d.ts.map +1 -1
  18. package/lib/browser/vsx-extension.js +616 -596
  19. package/lib/browser/vsx-extension.js.map +1 -1
  20. package/lib/browser/vsx-extensions-contribution.d.ts +70 -60
  21. package/lib/browser/vsx-extensions-contribution.d.ts.map +1 -1
  22. package/lib/browser/vsx-extensions-contribution.js +375 -344
  23. package/lib/browser/vsx-extensions-contribution.js.map +1 -1
  24. package/lib/browser/vsx-extensions-model.d.ts +75 -72
  25. package/lib/browser/vsx-extensions-model.d.ts.map +1 -1
  26. package/lib/browser/vsx-extensions-model.js +437 -391
  27. package/lib/browser/vsx-extensions-model.js.map +1 -1
  28. package/lib/browser/vsx-extensions-preferences.d.ts +12 -0
  29. package/lib/browser/vsx-extensions-preferences.d.ts.map +1 -0
  30. package/lib/browser/vsx-extensions-preferences.js +47 -0
  31. package/lib/browser/vsx-extensions-preferences.js.map +1 -0
  32. package/lib/browser/vsx-extensions-search-bar.d.ts +22 -14
  33. package/lib/browser/vsx-extensions-search-bar.d.ts.map +1 -1
  34. package/lib/browser/vsx-extensions-search-bar.js +106 -75
  35. package/lib/browser/vsx-extensions-search-bar.js.map +1 -1
  36. package/lib/browser/vsx-extensions-search-model.d.ts +21 -21
  37. package/lib/browser/vsx-extensions-search-model.js +70 -70
  38. package/lib/browser/vsx-extensions-source.d.ts +19 -19
  39. package/lib/browser/vsx-extensions-source.js +102 -102
  40. package/lib/browser/vsx-extensions-view-container.d.ts +49 -49
  41. package/lib/browser/vsx-extensions-view-container.js +179 -179
  42. package/lib/browser/vsx-extensions-widget.d.ts +35 -34
  43. package/lib/browser/vsx-extensions-widget.d.ts.map +1 -1
  44. package/lib/browser/vsx-extensions-widget.js +164 -156
  45. package/lib/browser/vsx-extensions-widget.js.map +1 -1
  46. package/lib/browser/vsx-language-quick-pick-service.d.ts +15 -15
  47. package/lib/browser/vsx-language-quick-pick-service.js +121 -121
  48. package/lib/browser/vsx-registry-frontend-module.d.ts +4 -4
  49. package/lib/browser/vsx-registry-frontend-module.d.ts.map +1 -1
  50. package/lib/browser/vsx-registry-frontend-module.js +99 -97
  51. package/lib/browser/vsx-registry-frontend-module.js.map +1 -1
  52. package/lib/common/index.d.ts +3 -3
  53. package/lib/common/index.js +25 -25
  54. package/lib/common/ovsx-client-provider.d.ts +13 -13
  55. package/lib/common/ovsx-client-provider.js +29 -29
  56. package/lib/common/vsx-environment.d.ts +9 -9
  57. package/lib/common/vsx-environment.js +20 -20
  58. package/lib/common/vsx-extension-uri.d.ts +3 -3
  59. package/lib/common/vsx-extension-uri.js +20 -20
  60. package/lib/common/vsx-registry-common-module.d.ts +3 -3
  61. package/lib/common/vsx-registry-common-module.js +57 -57
  62. package/lib/node/vsx-cli.d.ts +9 -9
  63. package/lib/node/vsx-cli.js +41 -41
  64. package/lib/node/vsx-environment-impl.d.ts +14 -14
  65. package/lib/node/vsx-environment-impl.js +61 -61
  66. package/lib/node/vsx-extension-resolver.d.ts +20 -20
  67. package/lib/node/vsx-extension-resolver.js +154 -154
  68. package/lib/node/vsx-registry-backend-module.d.ts +3 -3
  69. package/lib/node/vsx-registry-backend-module.js +35 -35
  70. package/lib/package.spec.js +25 -25
  71. package/package.json +12 -12
  72. package/src/browser/recommended-extensions/preference-provider-overrides.ts +99 -99
  73. package/src/browser/recommended-extensions/recommended-extensions-json-schema.ts +74 -74
  74. package/src/browser/recommended-extensions/recommended-extensions-preference-contribution.ts +68 -68
  75. package/src/browser/style/extensions.svg +4 -4
  76. package/src/browser/style/index.css +436 -373
  77. package/src/browser/vsx-extension-commands.ts +68 -63
  78. package/src/browser/vsx-extension-editor-manager.ts +42 -42
  79. package/src/browser/vsx-extension-editor.tsx +96 -96
  80. package/src/browser/vsx-extension.tsx +704 -675
  81. package/src/browser/vsx-extensions-contribution.ts +361 -327
  82. package/src/browser/vsx-extensions-model.ts +436 -389
  83. package/src/browser/vsx-extensions-preferences.ts +58 -0
  84. package/src/browser/vsx-extensions-search-bar.tsx +107 -69
  85. package/src/browser/vsx-extensions-search-model.ts +61 -61
  86. package/src/browser/vsx-extensions-source.ts +83 -83
  87. package/src/browser/vsx-extensions-view-container.ts +179 -179
  88. package/src/browser/vsx-extensions-widget.tsx +165 -156
  89. package/src/browser/vsx-language-quick-pick-service.ts +110 -110
  90. package/src/browser/vsx-registry-frontend-module.ts +108 -106
  91. package/src/common/index.ts +19 -19
  92. package/src/common/ovsx-client-provider.ts +35 -35
  93. package/src/common/vsx-environment.ts +27 -27
  94. package/src/common/vsx-extension-uri.ts +20 -20
  95. package/src/common/vsx-registry-common-module.ts +63 -63
  96. package/src/node/vsx-cli.ts +38 -38
  97. package/src/node/vsx-environment-impl.ts +50 -50
  98. package/src/node/vsx-extension-resolver.ts +125 -125
  99. package/src/node/vsx-registry-backend-module.ts +35 -35
  100. package/src/package.spec.ts +29 -29
@@ -1 +1 @@
1
- {"version":3,"file":"vsx-registry-frontend-module.d.ts","sourceRoot":"","sources":["../../src/browser/vsx-registry-frontend-module.ts"],"names":[],"mappings":"AAgBA,OAAO,mCAAmC,CAAC;AAE3C,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;;AAqB/D,wBAkEG"}
1
+ {"version":3,"file":"vsx-registry-frontend-module.d.ts","sourceRoot":"","sources":["../../src/browser/vsx-registry-frontend-module.ts"],"names":[],"mappings":"AAgBA,OAAO,mCAAmC,CAAC;AAE3C,OAAO,EAAE,eAAe,EAAE,MAAM,8BAA8B,CAAC;;AAsB/D,wBAmEG"}
@@ -1,98 +1,100 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2020 TypeFox and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- require("../../src/browser/style/index.css");
19
- const inversify_1 = require("@theia/core/shared/inversify");
20
- const browser_1 = require("@theia/core/lib/browser");
21
- const vsx_extensions_view_container_1 = require("./vsx-extensions-view-container");
22
- const vsx_extensions_contribution_1 = require("./vsx-extensions-contribution");
23
- const vsx_extensions_search_bar_1 = require("./vsx-extensions-search-bar");
24
- const vsx_extensions_model_1 = require("./vsx-extensions-model");
25
- const color_application_contribution_1 = require("@theia/core/lib/browser/color-application-contribution");
26
- const vsx_extensions_widget_1 = require("./vsx-extensions-widget");
27
- const vsx_extension_1 = require("./vsx-extension");
28
- const vsx_extension_editor_1 = require("./vsx-extension-editor");
29
- const vsx_extension_editor_manager_1 = require("./vsx-extension-editor-manager");
30
- const vsx_extensions_source_1 = require("./vsx-extensions-source");
31
- const vsx_extensions_search_model_1 = require("./vsx-extensions-search-model");
32
- const recommended_extensions_preference_contribution_1 = require("./recommended-extensions/recommended-extensions-preference-contribution");
33
- const preference_provider_overrides_1 = require("./recommended-extensions/preference-provider-overrides");
34
- const vsx_environment_1 = require("../common/vsx-environment");
35
- const language_quick_pick_service_1 = require("@theia/core/lib/browser/i18n/language-quick-pick-service");
36
- const vsx_language_quick_pick_service_1 = require("./vsx-language-quick-pick-service");
37
- exports.default = new inversify_1.ContainerModule((bind, unbind, isBound, rebind) => {
38
- bind(vsx_environment_1.VSXEnvironment)
39
- .toDynamicValue(ctx => browser_1.WebSocketConnectionProvider.createProxy(ctx.container, vsx_environment_1.VSX_ENVIRONMENT_PATH))
40
- .inSingletonScope();
41
- bind(vsx_extension_1.VSXExtension).toSelf();
42
- bind(vsx_extension_1.VSXExtensionFactory).toFactory(ctx => (option) => {
43
- const child = ctx.container.createChild();
44
- child.bind(vsx_extension_1.VSXExtensionOptions).toConstantValue(option);
45
- return child.get(vsx_extension_1.VSXExtension);
46
- });
47
- bind(vsx_extensions_model_1.VSXExtensionsModel).toSelf().inSingletonScope();
48
- bind(vsx_extension_editor_1.VSXExtensionEditor).toSelf();
49
- bind(browser_1.WidgetFactory).toDynamicValue(ctx => ({
50
- id: vsx_extension_editor_1.VSXExtensionEditor.ID,
51
- createWidget: async (options) => {
52
- const extension = await ctx.container.get(vsx_extensions_model_1.VSXExtensionsModel).resolve(options.id);
53
- const child = ctx.container.createChild();
54
- child.bind(vsx_extension_1.VSXExtension).toConstantValue(extension);
55
- return child.get(vsx_extension_editor_1.VSXExtensionEditor);
56
- }
57
- })).inSingletonScope();
58
- bind(vsx_extension_editor_manager_1.VSXExtensionEditorManager).toSelf().inSingletonScope();
59
- bind(browser_1.OpenHandler).toService(vsx_extension_editor_manager_1.VSXExtensionEditorManager);
60
- bind(browser_1.WidgetFactory).toDynamicValue(({ container }) => ({
61
- id: vsx_extensions_widget_1.VSXExtensionsWidget.ID,
62
- createWidget: async (options) => vsx_extensions_widget_1.VSXExtensionsWidget.createWidget(container, options)
63
- })).inSingletonScope();
64
- bind(browser_1.WidgetFactory).toDynamicValue(ctx => ({
65
- id: vsx_extensions_view_container_1.VSXExtensionsViewContainer.ID,
66
- createWidget: async () => {
67
- const child = ctx.container.createChild();
68
- child.bind(browser_1.ViewContainerIdentifier).toConstantValue({
69
- id: vsx_extensions_view_container_1.VSXExtensionsViewContainer.ID,
70
- progressLocationId: 'extensions'
71
- });
72
- child.bind(vsx_extensions_view_container_1.VSXExtensionsViewContainer).toSelf();
73
- const viewContainer = child.get(vsx_extensions_view_container_1.VSXExtensionsViewContainer);
74
- const widgetManager = child.get(browser_1.WidgetManager);
75
- for (const id of [
76
- vsx_extensions_source_1.VSXExtensionsSourceOptions.SEARCH_RESULT,
77
- vsx_extensions_source_1.VSXExtensionsSourceOptions.RECOMMENDED,
78
- vsx_extensions_source_1.VSXExtensionsSourceOptions.INSTALLED,
79
- vsx_extensions_source_1.VSXExtensionsSourceOptions.BUILT_IN,
80
- ]) {
81
- const widget = await widgetManager.getOrCreateWidget(vsx_extensions_widget_1.VSXExtensionsWidget.ID, { id });
82
- viewContainer.addWidget(widget, {
83
- initiallyCollapsed: id === vsx_extensions_source_1.VSXExtensionsSourceOptions.BUILT_IN
84
- });
85
- }
86
- return viewContainer;
87
- }
88
- })).inSingletonScope();
89
- bind(vsx_extensions_search_model_1.VSXExtensionsSearchModel).toSelf().inSingletonScope();
90
- bind(vsx_extensions_search_bar_1.VSXExtensionsSearchBar).toSelf().inSingletonScope();
91
- rebind(language_quick_pick_service_1.LanguageQuickPickService).to(vsx_language_quick_pick_service_1.VSXLanguageQuickPickService).inSingletonScope();
92
- (0, browser_1.bindViewContribution)(bind, vsx_extensions_contribution_1.VSXExtensionsContribution);
93
- bind(browser_1.FrontendApplicationContribution).toService(vsx_extensions_contribution_1.VSXExtensionsContribution);
94
- bind(color_application_contribution_1.ColorContribution).toService(vsx_extensions_contribution_1.VSXExtensionsContribution);
95
- (0, recommended_extensions_preference_contribution_1.bindExtensionPreferences)(bind);
96
- (0, preference_provider_overrides_1.bindPreferenceProviderOverrides)(bind, unbind);
97
- });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2020 TypeFox and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ require("../../src/browser/style/index.css");
19
+ const inversify_1 = require("@theia/core/shared/inversify");
20
+ const browser_1 = require("@theia/core/lib/browser");
21
+ const vsx_extensions_view_container_1 = require("./vsx-extensions-view-container");
22
+ const vsx_extensions_contribution_1 = require("./vsx-extensions-contribution");
23
+ const vsx_extensions_search_bar_1 = require("./vsx-extensions-search-bar");
24
+ const vsx_extensions_model_1 = require("./vsx-extensions-model");
25
+ const color_application_contribution_1 = require("@theia/core/lib/browser/color-application-contribution");
26
+ const vsx_extensions_widget_1 = require("./vsx-extensions-widget");
27
+ const vsx_extension_1 = require("./vsx-extension");
28
+ const vsx_extension_editor_1 = require("./vsx-extension-editor");
29
+ const vsx_extension_editor_manager_1 = require("./vsx-extension-editor-manager");
30
+ const vsx_extensions_source_1 = require("./vsx-extensions-source");
31
+ const vsx_extensions_search_model_1 = require("./vsx-extensions-search-model");
32
+ const recommended_extensions_preference_contribution_1 = require("./recommended-extensions/recommended-extensions-preference-contribution");
33
+ const preference_provider_overrides_1 = require("./recommended-extensions/preference-provider-overrides");
34
+ const vsx_extensions_preferences_1 = require("./vsx-extensions-preferences");
35
+ const vsx_environment_1 = require("../common/vsx-environment");
36
+ const language_quick_pick_service_1 = require("@theia/core/lib/browser/i18n/language-quick-pick-service");
37
+ const vsx_language_quick_pick_service_1 = require("./vsx-language-quick-pick-service");
38
+ exports.default = new inversify_1.ContainerModule((bind, unbind, isBound, rebind) => {
39
+ bind(vsx_environment_1.VSXEnvironment)
40
+ .toDynamicValue(ctx => browser_1.WebSocketConnectionProvider.createProxy(ctx.container, vsx_environment_1.VSX_ENVIRONMENT_PATH))
41
+ .inSingletonScope();
42
+ bind(vsx_extension_1.VSXExtension).toSelf();
43
+ bind(vsx_extension_1.VSXExtensionFactory).toFactory(ctx => (option) => {
44
+ const child = ctx.container.createChild();
45
+ child.bind(vsx_extension_1.VSXExtensionOptions).toConstantValue(option);
46
+ return child.get(vsx_extension_1.VSXExtension);
47
+ });
48
+ bind(vsx_extensions_model_1.VSXExtensionsModel).toSelf().inSingletonScope();
49
+ bind(vsx_extension_editor_1.VSXExtensionEditor).toSelf();
50
+ bind(browser_1.WidgetFactory).toDynamicValue(ctx => ({
51
+ id: vsx_extension_editor_1.VSXExtensionEditor.ID,
52
+ createWidget: async (options) => {
53
+ const extension = await ctx.container.get(vsx_extensions_model_1.VSXExtensionsModel).resolve(options.id);
54
+ const child = ctx.container.createChild();
55
+ child.bind(vsx_extension_1.VSXExtension).toConstantValue(extension);
56
+ return child.get(vsx_extension_editor_1.VSXExtensionEditor);
57
+ }
58
+ })).inSingletonScope();
59
+ bind(vsx_extension_editor_manager_1.VSXExtensionEditorManager).toSelf().inSingletonScope();
60
+ bind(browser_1.OpenHandler).toService(vsx_extension_editor_manager_1.VSXExtensionEditorManager);
61
+ bind(browser_1.WidgetFactory).toDynamicValue(({ container }) => ({
62
+ id: vsx_extensions_widget_1.VSXExtensionsWidget.ID,
63
+ createWidget: async (options) => vsx_extensions_widget_1.VSXExtensionsWidget.createWidget(container, options)
64
+ })).inSingletonScope();
65
+ bind(browser_1.WidgetFactory).toDynamicValue(ctx => ({
66
+ id: vsx_extensions_view_container_1.VSXExtensionsViewContainer.ID,
67
+ createWidget: async () => {
68
+ const child = ctx.container.createChild();
69
+ child.bind(browser_1.ViewContainerIdentifier).toConstantValue({
70
+ id: vsx_extensions_view_container_1.VSXExtensionsViewContainer.ID,
71
+ progressLocationId: 'extensions'
72
+ });
73
+ child.bind(vsx_extensions_view_container_1.VSXExtensionsViewContainer).toSelf();
74
+ const viewContainer = child.get(vsx_extensions_view_container_1.VSXExtensionsViewContainer);
75
+ const widgetManager = child.get(browser_1.WidgetManager);
76
+ for (const id of [
77
+ vsx_extensions_source_1.VSXExtensionsSourceOptions.SEARCH_RESULT,
78
+ vsx_extensions_source_1.VSXExtensionsSourceOptions.RECOMMENDED,
79
+ vsx_extensions_source_1.VSXExtensionsSourceOptions.INSTALLED,
80
+ vsx_extensions_source_1.VSXExtensionsSourceOptions.BUILT_IN,
81
+ ]) {
82
+ const widget = await widgetManager.getOrCreateWidget(vsx_extensions_widget_1.VSXExtensionsWidget.ID, { id });
83
+ viewContainer.addWidget(widget, {
84
+ initiallyCollapsed: id === vsx_extensions_source_1.VSXExtensionsSourceOptions.BUILT_IN
85
+ });
86
+ }
87
+ return viewContainer;
88
+ }
89
+ })).inSingletonScope();
90
+ bind(vsx_extensions_search_model_1.VSXExtensionsSearchModel).toSelf().inSingletonScope();
91
+ bind(vsx_extensions_search_bar_1.VSXExtensionsSearchBar).toSelf().inSingletonScope();
92
+ rebind(language_quick_pick_service_1.LanguageQuickPickService).to(vsx_language_quick_pick_service_1.VSXLanguageQuickPickService).inSingletonScope();
93
+ (0, browser_1.bindViewContribution)(bind, vsx_extensions_contribution_1.VSXExtensionsContribution);
94
+ bind(browser_1.FrontendApplicationContribution).toService(vsx_extensions_contribution_1.VSXExtensionsContribution);
95
+ bind(color_application_contribution_1.ColorContribution).toService(vsx_extensions_contribution_1.VSXExtensionsContribution);
96
+ (0, recommended_extensions_preference_contribution_1.bindExtensionPreferences)(bind);
97
+ (0, preference_provider_overrides_1.bindPreferenceProviderOverrides)(bind, unbind);
98
+ (0, vsx_extensions_preferences_1.bindVsxExtensionsPreferences)(bind);
99
+ });
98
100
  //# sourceMappingURL=vsx-registry-frontend-module.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"vsx-registry-frontend-module.js","sourceRoot":"","sources":["../../src/browser/vsx-registry-frontend-module.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"vsx-registry-frontend-module.js","sourceRoot":"","sources":["../../src/browser/vsx-registry-frontend-module.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- export { OVSXClientProvider, OVSXUrlResolver } from './ovsx-client-provider';
2
- export { VSXEnvironment } from './vsx-environment';
3
- export { VSXExtensionUri } from './vsx-extension-uri';
1
+ export { OVSXClientProvider, OVSXUrlResolver } from './ovsx-client-provider';
2
+ export { VSXEnvironment } from './vsx-environment';
3
+ export { VSXExtensionUri } from './vsx-extension-uri';
4
4
  //# sourceMappingURL=index.d.ts.map
@@ -1,26 +1,26 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2023 Ericsson and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.VSXExtensionUri = exports.VSXEnvironment = exports.OVSXUrlResolver = exports.OVSXClientProvider = void 0;
19
- var ovsx_client_provider_1 = require("./ovsx-client-provider");
20
- Object.defineProperty(exports, "OVSXClientProvider", { enumerable: true, get: function () { return ovsx_client_provider_1.OVSXClientProvider; } });
21
- Object.defineProperty(exports, "OVSXUrlResolver", { enumerable: true, get: function () { return ovsx_client_provider_1.OVSXUrlResolver; } });
22
- var vsx_environment_1 = require("./vsx-environment");
23
- Object.defineProperty(exports, "VSXEnvironment", { enumerable: true, get: function () { return vsx_environment_1.VSXEnvironment; } });
24
- var vsx_extension_uri_1 = require("./vsx-extension-uri");
25
- Object.defineProperty(exports, "VSXExtensionUri", { enumerable: true, get: function () { return vsx_extension_uri_1.VSXExtensionUri; } });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2023 Ericsson and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.VSXExtensionUri = exports.VSXEnvironment = exports.OVSXUrlResolver = exports.OVSXClientProvider = void 0;
19
+ var ovsx_client_provider_1 = require("./ovsx-client-provider");
20
+ Object.defineProperty(exports, "OVSXClientProvider", { enumerable: true, get: function () { return ovsx_client_provider_1.OVSXClientProvider; } });
21
+ Object.defineProperty(exports, "OVSXUrlResolver", { enumerable: true, get: function () { return ovsx_client_provider_1.OVSXUrlResolver; } });
22
+ var vsx_environment_1 = require("./vsx-environment");
23
+ Object.defineProperty(exports, "VSXEnvironment", { enumerable: true, get: function () { return vsx_environment_1.VSXEnvironment; } });
24
+ var vsx_extension_uri_1 = require("./vsx-extension-uri");
25
+ Object.defineProperty(exports, "VSXExtensionUri", { enumerable: true, get: function () { return vsx_extension_uri_1.VSXExtensionUri; } });
26
26
  //# sourceMappingURL=index.js.map
@@ -1,14 +1,14 @@
1
- import { MaybePromise } from '@theia/core/lib/common';
2
- import { RequestService } from '@theia/core/shared/@theia/request';
3
- import type { interfaces } from '@theia/core/shared/inversify';
4
- import { OVSXClient } from '@theia/ovsx-client';
5
- import { VSXEnvironment } from './vsx-environment';
6
- export declare const OVSXUrlResolver: symbol & interfaces.Abstract<OVSXUrlResolver>;
7
- export declare type OVSXUrlResolver = (value: string) => MaybePromise<string>;
8
- export declare const OVSXClientProvider: symbol & interfaces.Abstract<OVSXClientProvider>;
9
- export declare type OVSXClientProvider = () => MaybePromise<OVSXClient>;
10
- /**
11
- * @deprecated since 1.32.0
12
- */
13
- export declare function createOVSXClient(vsxEnvironment: VSXEnvironment, requestService: RequestService): Promise<OVSXClient>;
1
+ import { MaybePromise } from '@theia/core/lib/common';
2
+ import { RequestService } from '@theia/core/shared/@theia/request';
3
+ import type { interfaces } from '@theia/core/shared/inversify';
4
+ import { OVSXClient } from '@theia/ovsx-client';
5
+ import { VSXEnvironment } from './vsx-environment';
6
+ export declare const OVSXUrlResolver: symbol & interfaces.Abstract<OVSXUrlResolver>;
7
+ export declare type OVSXUrlResolver = (value: string) => MaybePromise<string>;
8
+ export declare const OVSXClientProvider: symbol & interfaces.Abstract<OVSXClientProvider>;
9
+ export declare type OVSXClientProvider = () => MaybePromise<OVSXClient>;
10
+ /**
11
+ * @deprecated since 1.32.0
12
+ */
13
+ export declare function createOVSXClient(vsxEnvironment: VSXEnvironment, requestService: RequestService): Promise<OVSXClient>;
14
14
  //# sourceMappingURL=ovsx-client-provider.d.ts.map
@@ -1,30 +1,30 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2021 Ericsson and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.createOVSXClient = exports.OVSXClientProvider = exports.OVSXUrlResolver = void 0;
19
- const ovsx_client_1 = require("@theia/ovsx-client");
20
- exports.OVSXUrlResolver = Symbol('OVSXUrlResolver');
21
- exports.OVSXClientProvider = Symbol('OVSXClientProvider');
22
- /**
23
- * @deprecated since 1.32.0
24
- */
25
- async function createOVSXClient(vsxEnvironment, requestService) {
26
- const apiUrl = await vsxEnvironment.getRegistryApiUri();
27
- return new ovsx_client_1.OVSXHttpClient(apiUrl, requestService);
28
- }
29
- exports.createOVSXClient = createOVSXClient;
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2021 Ericsson and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.createOVSXClient = exports.OVSXClientProvider = exports.OVSXUrlResolver = void 0;
19
+ const ovsx_client_1 = require("@theia/ovsx-client");
20
+ exports.OVSXUrlResolver = Symbol('OVSXUrlResolver');
21
+ exports.OVSXClientProvider = Symbol('OVSXClientProvider');
22
+ /**
23
+ * @deprecated since 1.32.0
24
+ */
25
+ async function createOVSXClient(vsxEnvironment, requestService) {
26
+ const apiUrl = await vsxEnvironment.getRegistryApiUri();
27
+ return new ovsx_client_1.OVSXHttpClient(apiUrl, requestService);
28
+ }
29
+ exports.createOVSXClient = createOVSXClient;
30
30
  //# sourceMappingURL=ovsx-client-provider.js.map
@@ -1,10 +1,10 @@
1
- import type { OVSXRouterConfig } from '@theia/ovsx-client';
2
- export declare const VSX_ENVIRONMENT_PATH = "/services/vsx-environment";
3
- export declare const VSXEnvironment: unique symbol;
4
- export interface VSXEnvironment {
5
- getRegistryUri(): Promise<string>;
6
- getRegistryApiUri(): Promise<string>;
7
- getVscodeApiVersion(): Promise<string>;
8
- getOvsxRouterConfig?(): Promise<OVSXRouterConfig | undefined>;
9
- }
1
+ import type { OVSXRouterConfig } from '@theia/ovsx-client';
2
+ export declare const VSX_ENVIRONMENT_PATH = "/services/vsx-environment";
3
+ export declare const VSXEnvironment: unique symbol;
4
+ export interface VSXEnvironment {
5
+ getRegistryUri(): Promise<string>;
6
+ getRegistryApiUri(): Promise<string>;
7
+ getVscodeApiVersion(): Promise<string>;
8
+ getOvsxRouterConfig?(): Promise<OVSXRouterConfig | undefined>;
9
+ }
10
10
  //# sourceMappingURL=vsx-environment.d.ts.map
@@ -1,21 +1,21 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2021 Ericsson and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.VSXEnvironment = exports.VSX_ENVIRONMENT_PATH = void 0;
19
- exports.VSX_ENVIRONMENT_PATH = '/services/vsx-environment';
20
- exports.VSXEnvironment = Symbol('VSXEnvironment');
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2021 Ericsson and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.VSXEnvironment = exports.VSX_ENVIRONMENT_PATH = void 0;
19
+ exports.VSX_ENVIRONMENT_PATH = '/services/vsx-environment';
20
+ exports.VSXEnvironment = Symbol('VSXEnvironment');
21
21
  //# sourceMappingURL=vsx-environment.js.map
@@ -1,4 +1,4 @@
1
- import { VSCodeExtensionUri as VSXExtensionUri } from '@theia/plugin-ext-vscode/lib/common/plugin-vscode-uri';
2
- /** @deprecated since 1.25.0. Import `VSCodeExtensionUri from `plugin-ext-vscode` package instead. */
3
- export { VSXExtensionUri };
1
+ import { VSCodeExtensionUri as VSXExtensionUri } from '@theia/plugin-ext-vscode/lib/common/plugin-vscode-uri';
2
+ /** @deprecated since 1.25.0. Import `VSCodeExtensionUri from `plugin-ext-vscode` package instead. */
3
+ export { VSXExtensionUri };
4
4
  //# sourceMappingURL=vsx-extension-uri.d.ts.map
@@ -1,21 +1,21 @@
1
- "use strict";
2
- // *****************************************************************************
3
- // Copyright (C) 2020 TypeFox and others.
4
- //
5
- // This program and the accompanying materials are made available under the
6
- // terms of the Eclipse Public License v. 2.0 which is available at
7
- // http://www.eclipse.org/legal/epl-2.0.
8
- //
9
- // This Source Code may also be made available under the following Secondary
10
- // Licenses when the conditions for such availability set forth in the Eclipse
11
- // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
- // with the GNU Classpath Exception which is available at
13
- // https://www.gnu.org/software/classpath/license.html.
14
- //
15
- // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
- // *****************************************************************************
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.VSXExtensionUri = void 0;
19
- const plugin_vscode_uri_1 = require("@theia/plugin-ext-vscode/lib/common/plugin-vscode-uri");
20
- Object.defineProperty(exports, "VSXExtensionUri", { enumerable: true, get: function () { return plugin_vscode_uri_1.VSCodeExtensionUri; } });
1
+ "use strict";
2
+ // *****************************************************************************
3
+ // Copyright (C) 2020 TypeFox and others.
4
+ //
5
+ // This program and the accompanying materials are made available under the
6
+ // terms of the Eclipse Public License v. 2.0 which is available at
7
+ // http://www.eclipse.org/legal/epl-2.0.
8
+ //
9
+ // This Source Code may also be made available under the following Secondary
10
+ // Licenses when the conditions for such availability set forth in the Eclipse
11
+ // Public License v. 2.0 are satisfied: GNU General Public License, version 2
12
+ // with the GNU Classpath Exception which is available at
13
+ // https://www.gnu.org/software/classpath/license.html.
14
+ //
15
+ // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
16
+ // *****************************************************************************
17
+ Object.defineProperty(exports, "__esModule", { value: true });
18
+ exports.VSXExtensionUri = void 0;
19
+ const plugin_vscode_uri_1 = require("@theia/plugin-ext-vscode/lib/common/plugin-vscode-uri");
20
+ Object.defineProperty(exports, "VSXExtensionUri", { enumerable: true, get: function () { return plugin_vscode_uri_1.VSCodeExtensionUri; } });
21
21
  //# sourceMappingURL=vsx-extension-uri.js.map
@@ -1,4 +1,4 @@
1
- import { ContainerModule } from '@theia/core/shared/inversify';
2
- declare const _default: ContainerModule;
3
- export default _default;
1
+ import { ContainerModule } from '@theia/core/shared/inversify';
2
+ declare const _default: ContainerModule;
3
+ export default _default;
4
4
  //# sourceMappingURL=vsx-registry-common-module.d.ts.map