@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 +1 -1
- package/dist/{chunk-DOO675ZE.js → chunk-AXDTO6EH.js} +28 -8
- package/dist/chunk-AXDTO6EH.js.map +1 -0
- package/dist/{chunk-XG6W2N7R.js → chunk-XVJIJAPF.js} +2 -2
- package/dist/connect.js +1 -1
- package/dist/connection-authority.js +2 -2
- package/dist/google-drive.js +1 -1
- package/dist/host-mcp-bindings.js +2 -2
- package/dist/index.d.ts +99 -0
- package/dist/index.js +5 -1
- package/dist/personal-github.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +37 -7
- package/dist/chunk-DOO675ZE.js.map +0 -1
- /package/dist/{chunk-XG6W2N7R.js.map → chunk-XVJIJAPF.js.map} +0 -0
package/dist/atlassian.js
CHANGED
|
@@ -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
|
-
|
|
17696
|
-
|
|
17697
|
-
|
|
17698
|
-
|
|
17699
|
-
|
|
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-
|
|
23374
|
+
//# sourceMappingURL=chunk-AXDTO6EH.js.map
|