@opengeni/contracts 4.1.0-canary.2 → 4.1.0-canary.3

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/dist/atlassian.js CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  AtlassianSyncCadence,
18
18
  SaveAtlassianSourcesRequest,
19
19
  atlassianScopesAllowRead
20
- } from "./chunk-DOO675ZE.js";
20
+ } from "./chunk-AXDTO6EH.js";
21
21
  import "./chunk-YBW5JSA3.js";
22
22
  import "./chunk-O5LEQHDM.js";
23
23
  import "./chunk-GRG7PHWQ.js";
@@ -17687,21 +17687,39 @@ var PluginInstallationSummary = z45.object({
17687
17687
  updatedAt: z45.string().datetime({ offset: true })
17688
17688
  }).strict();
17689
17689
  var ListInstalledPluginsResponse = z45.object({ plugins: z45.array(PluginInstallationSummary).max(1e3) }).strict();
17690
+ var PluginUninstallComponentImpact = z45.object({
17691
+ capabilityId: z45.string().min(1),
17692
+ kind: z45.enum(["skill", "integration", "mcp"]),
17693
+ retainedByOtherOwners: z45.boolean(),
17694
+ name: z45.string().min(1),
17695
+ disposition: z45.enum(["removed", "retained", "inactive"]),
17696
+ retentionReasons: z45.array(
17697
+ z45.enum(["other_owners", "customized", "re_scoped", "registry_unavailable"])
17698
+ ),
17699
+ remainingOwners: z45.array(
17700
+ z45.object({
17701
+ kind: z45.enum(["direct", "plugin", "pack", "migration"]),
17702
+ name: z45.string().min(1)
17703
+ })
17704
+ ),
17705
+ skillId: z45.string().uuid().optional()
17706
+ });
17690
17707
  var PluginUninstallPreview = z45.object({
17691
17708
  pluginKey: z45.string().min(1),
17692
17709
  installed: z45.boolean(),
17693
17710
  version: z45.string().nullable(),
17694
17711
  installationVersion: z45.number().int().positive().nullable(),
17695
- components: z45.array(
17696
- z45.object({
17697
- capabilityId: z45.string().min(1),
17698
- kind: z45.enum(["skill", "integration", "mcp"]),
17699
- retainedByOtherOwners: z45.boolean()
17700
- })
17701
- )
17712
+ previewToken: z45.string().regex(/^[0-9a-f]{64}$/).optional(),
17713
+ components: z45.array(PluginUninstallComponentImpact)
17714
+ }).strict();
17715
+ var PluginUninstallPreviewConflict = z45.object({
17716
+ code: z45.literal("plugin_uninstall_preview_changed"),
17717
+ message: z45.string().min(1),
17718
+ preview: PluginUninstallPreview
17702
17719
  }).strict();
17703
17720
  var UninstallPluginRequest = z45.object({
17704
17721
  expectedInstallationVersion: z45.number().int().positive(),
17722
+ expectedPreviewToken: z45.string().regex(/^[0-9a-f]{64}$/).optional(),
17705
17723
  idempotencyKey: z45.string().uuid()
17706
17724
  }).strict();
17707
17725
  var UninstallPluginResult = z45.object({
@@ -23108,7 +23126,9 @@ export {
23108
23126
  InstalledPlugin,
23109
23127
  PluginInstallationSummary,
23110
23128
  ListInstalledPluginsResponse,
23129
+ PluginUninstallComponentImpact,
23111
23130
  PluginUninstallPreview,
23131
+ PluginUninstallPreviewConflict,
23112
23132
  UninstallPluginRequest,
23113
23133
  UninstallPluginResult,
23114
23134
  SessionBackgroundCommandState,
@@ -23351,4 +23371,4 @@ export {
23351
23371
  ClientConfig,
23352
23372
  evaluateWorkspaceModelPolicy
23353
23373
  };
23354
- //# sourceMappingURL=chunk-DOO675ZE.js.map
23374
+ //# sourceMappingURL=chunk-AXDTO6EH.js.map