@objectstack/spec 1.0.6 → 1.0.8
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/ai/index.d.mts +1 -1
- package/dist/ai/index.d.ts +1 -1
- package/dist/api/index.d.mts +1 -1
- package/dist/api/index.d.ts +1 -1
- package/dist/api/index.js +1869 -1780
- package/dist/api/index.js.map +1 -1
- package/dist/api/index.mjs +1869 -1780
- package/dist/api/index.mjs.map +1 -1
- package/dist/automation/index.d.mts +1 -1
- package/dist/automation/index.d.ts +1 -1
- package/dist/hub/index.d.mts +1 -1
- package/dist/hub/index.d.ts +1 -1
- package/dist/hub/index.js +796 -707
- package/dist/hub/index.js.map +1 -1
- package/dist/hub/index.mjs +796 -707
- package/dist/hub/index.mjs.map +1 -1
- package/dist/{index-CQ2ZwxNr.d.ts → index-CyognKSZ.d.ts} +146 -146
- package/dist/{index-BqQd0BcZ.d.mts → index-DE_lJ11p.d.mts} +146 -146
- package/dist/{index-C34qbBQr.d.mts → index-DLcySG7U.d.mts} +262 -241
- package/dist/{index-C34qbBQr.d.ts → index-DLcySG7U.d.ts} +262 -241
- package/dist/{index-D8XFyX0x.d.mts → index-Os7lItRe.d.mts} +108 -108
- package/dist/{index-D8XFyX0x.d.ts → index-Os7lItRe.d.ts} +108 -108
- package/dist/{index-CsF8m5Wj.d.mts → index-l6WIlmOD.d.mts} +39 -39
- package/dist/{index-CsF8m5Wj.d.ts → index-l6WIlmOD.d.ts} +39 -39
- package/dist/index.d.mts +158 -158
- package/dist/index.d.ts +158 -158
- package/dist/index.js +703 -668
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +703 -668
- package/dist/index.mjs.map +1 -1
- package/dist/kernel/index.d.mts +1 -1
- package/dist/kernel/index.d.ts +1 -1
- package/dist/kernel/index.js +705 -669
- package/dist/kernel/index.js.map +1 -1
- package/dist/kernel/index.mjs +704 -669
- package/dist/kernel/index.mjs.map +1 -1
- package/json-schema/api/CompileManifestResponse.json +6 -2
- package/json-schema/hub/ComposerResponse.json +6 -2
- package/json-schema/kernel/Manifest.json +6 -2
- package/json-schema/kernel/Plugin.json +28 -0
- package/package.json +1 -1
- package/dist/{index-iGrpxfqq.d.mts → index-D12rNohm.d.mts} +1 -1
- package/dist/{index-iGrpxfqq.d.ts → index-D12rNohm.d.ts} +1 -1
|
@@ -245,7 +245,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
245
245
|
manifest: z.ZodOptional<z.ZodObject<{
|
|
246
246
|
id: z.ZodString;
|
|
247
247
|
version: z.ZodString;
|
|
248
|
-
type: z.ZodEnum<["
|
|
248
|
+
type: z.ZodEnum<["plugin", "ui", "driver", "server", "app", "theme", "agent", "objectql", "module", "gateway", "adapter"]>;
|
|
249
249
|
name: z.ZodString;
|
|
250
250
|
description: z.ZodOptional<z.ZodString>;
|
|
251
251
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -423,6 +423,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
423
423
|
input?: any;
|
|
424
424
|
output?: any;
|
|
425
425
|
}[] | undefined;
|
|
426
|
+
drivers?: {
|
|
427
|
+
label: string;
|
|
428
|
+
id: string;
|
|
429
|
+
description?: string | undefined;
|
|
430
|
+
}[] | undefined;
|
|
426
431
|
kinds?: {
|
|
427
432
|
id: string;
|
|
428
433
|
globs: string[];
|
|
@@ -442,11 +447,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
442
447
|
path: string;
|
|
443
448
|
locale: string;
|
|
444
449
|
}[] | undefined;
|
|
445
|
-
drivers?: {
|
|
446
|
-
label: string;
|
|
447
|
-
id: string;
|
|
448
|
-
description?: string | undefined;
|
|
449
|
-
}[] | undefined;
|
|
450
450
|
functions?: {
|
|
451
451
|
name: string;
|
|
452
452
|
description?: string | undefined;
|
|
@@ -467,6 +467,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
467
467
|
input?: any;
|
|
468
468
|
output?: any;
|
|
469
469
|
}[] | undefined;
|
|
470
|
+
drivers?: {
|
|
471
|
+
label: string;
|
|
472
|
+
id: string;
|
|
473
|
+
description?: string | undefined;
|
|
474
|
+
}[] | undefined;
|
|
470
475
|
kinds?: {
|
|
471
476
|
id: string;
|
|
472
477
|
globs: string[];
|
|
@@ -486,11 +491,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
486
491
|
path: string;
|
|
487
492
|
locale: string;
|
|
488
493
|
}[] | undefined;
|
|
489
|
-
drivers?: {
|
|
490
|
-
label: string;
|
|
491
|
-
id: string;
|
|
492
|
-
description?: string | undefined;
|
|
493
|
-
}[] | undefined;
|
|
494
494
|
functions?: {
|
|
495
495
|
name: string;
|
|
496
496
|
description?: string | undefined;
|
|
@@ -1666,7 +1666,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1666
1666
|
} | undefined;
|
|
1667
1667
|
}>>;
|
|
1668
1668
|
}, "strip", z.ZodTypeAny, {
|
|
1669
|
-
type: "driver" | "app" | "
|
|
1669
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
1670
1670
|
name: string;
|
|
1671
1671
|
version: string;
|
|
1672
1672
|
id: string;
|
|
@@ -1907,6 +1907,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1907
1907
|
input?: any;
|
|
1908
1908
|
output?: any;
|
|
1909
1909
|
}[] | undefined;
|
|
1910
|
+
drivers?: {
|
|
1911
|
+
label: string;
|
|
1912
|
+
id: string;
|
|
1913
|
+
description?: string | undefined;
|
|
1914
|
+
}[] | undefined;
|
|
1910
1915
|
kinds?: {
|
|
1911
1916
|
id: string;
|
|
1912
1917
|
globs: string[];
|
|
@@ -1926,11 +1931,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1926
1931
|
path: string;
|
|
1927
1932
|
locale: string;
|
|
1928
1933
|
}[] | undefined;
|
|
1929
|
-
drivers?: {
|
|
1930
|
-
label: string;
|
|
1931
|
-
id: string;
|
|
1932
|
-
description?: string | undefined;
|
|
1933
|
-
}[] | undefined;
|
|
1934
1934
|
functions?: {
|
|
1935
1935
|
name: string;
|
|
1936
1936
|
description?: string | undefined;
|
|
@@ -1939,7 +1939,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1939
1939
|
}[] | undefined;
|
|
1940
1940
|
} | undefined;
|
|
1941
1941
|
}, {
|
|
1942
|
-
type: "driver" | "app" | "
|
|
1942
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
1943
1943
|
name: string;
|
|
1944
1944
|
version: string;
|
|
1945
1945
|
id: string;
|
|
@@ -2180,6 +2180,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2180
2180
|
input?: any;
|
|
2181
2181
|
output?: any;
|
|
2182
2182
|
}[] | undefined;
|
|
2183
|
+
drivers?: {
|
|
2184
|
+
label: string;
|
|
2185
|
+
id: string;
|
|
2186
|
+
description?: string | undefined;
|
|
2187
|
+
}[] | undefined;
|
|
2183
2188
|
kinds?: {
|
|
2184
2189
|
id: string;
|
|
2185
2190
|
globs: string[];
|
|
@@ -2199,11 +2204,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2199
2204
|
path: string;
|
|
2200
2205
|
locale: string;
|
|
2201
2206
|
}[] | undefined;
|
|
2202
|
-
drivers?: {
|
|
2203
|
-
label: string;
|
|
2204
|
-
id: string;
|
|
2205
|
-
description?: string | undefined;
|
|
2206
|
-
}[] | undefined;
|
|
2207
2207
|
functions?: {
|
|
2208
2208
|
name: string;
|
|
2209
2209
|
description?: string | undefined;
|
|
@@ -2260,7 +2260,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2260
2260
|
sources: string[];
|
|
2261
2261
|
}[] | undefined;
|
|
2262
2262
|
manifest?: {
|
|
2263
|
-
type: "driver" | "app" | "
|
|
2263
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
2264
2264
|
name: string;
|
|
2265
2265
|
version: string;
|
|
2266
2266
|
id: string;
|
|
@@ -2501,6 +2501,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2501
2501
|
input?: any;
|
|
2502
2502
|
output?: any;
|
|
2503
2503
|
}[] | undefined;
|
|
2504
|
+
drivers?: {
|
|
2505
|
+
label: string;
|
|
2506
|
+
id: string;
|
|
2507
|
+
description?: string | undefined;
|
|
2508
|
+
}[] | undefined;
|
|
2504
2509
|
kinds?: {
|
|
2505
2510
|
id: string;
|
|
2506
2511
|
globs: string[];
|
|
@@ -2520,11 +2525,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2520
2525
|
path: string;
|
|
2521
2526
|
locale: string;
|
|
2522
2527
|
}[] | undefined;
|
|
2523
|
-
drivers?: {
|
|
2524
|
-
label: string;
|
|
2525
|
-
id: string;
|
|
2526
|
-
description?: string | undefined;
|
|
2527
|
-
}[] | undefined;
|
|
2528
2528
|
functions?: {
|
|
2529
2529
|
name: string;
|
|
2530
2530
|
description?: string | undefined;
|
|
@@ -2548,7 +2548,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2548
2548
|
sources: string[];
|
|
2549
2549
|
}[] | undefined;
|
|
2550
2550
|
manifest?: {
|
|
2551
|
-
type: "driver" | "app" | "
|
|
2551
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
2552
2552
|
name: string;
|
|
2553
2553
|
version: string;
|
|
2554
2554
|
id: string;
|
|
@@ -2789,6 +2789,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2789
2789
|
input?: any;
|
|
2790
2790
|
output?: any;
|
|
2791
2791
|
}[] | undefined;
|
|
2792
|
+
drivers?: {
|
|
2793
|
+
label: string;
|
|
2794
|
+
id: string;
|
|
2795
|
+
description?: string | undefined;
|
|
2796
|
+
}[] | undefined;
|
|
2792
2797
|
kinds?: {
|
|
2793
2798
|
id: string;
|
|
2794
2799
|
globs: string[];
|
|
@@ -2808,11 +2813,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2808
2813
|
path: string;
|
|
2809
2814
|
locale: string;
|
|
2810
2815
|
}[] | undefined;
|
|
2811
|
-
drivers?: {
|
|
2812
|
-
label: string;
|
|
2813
|
-
id: string;
|
|
2814
|
-
description?: string | undefined;
|
|
2815
|
-
}[] | undefined;
|
|
2816
2816
|
functions?: {
|
|
2817
2817
|
name: string;
|
|
2818
2818
|
description?: string | undefined;
|
|
@@ -3084,8 +3084,8 @@ declare const MarketplacePluginSchema: z.ZodObject<{
|
|
|
3084
3084
|
changeLog?: string | undefined;
|
|
3085
3085
|
}> | undefined;
|
|
3086
3086
|
screenshots?: string[] | undefined;
|
|
3087
|
-
downloads?: number | undefined;
|
|
3088
3087
|
homepage?: string | undefined;
|
|
3088
|
+
downloads?: number | undefined;
|
|
3089
3089
|
readme?: string | undefined;
|
|
3090
3090
|
vendor?: {
|
|
3091
3091
|
name: string;
|
|
@@ -3126,9 +3126,9 @@ declare const MarketplacePluginSchema: z.ZodObject<{
|
|
|
3126
3126
|
changeLog?: string | undefined;
|
|
3127
3127
|
}> | undefined;
|
|
3128
3128
|
screenshots?: string[] | undefined;
|
|
3129
|
+
homepage?: string | undefined;
|
|
3129
3130
|
verified?: boolean | undefined;
|
|
3130
3131
|
downloads?: number | undefined;
|
|
3131
|
-
homepage?: string | undefined;
|
|
3132
3132
|
readme?: string | undefined;
|
|
3133
3133
|
vendor?: {
|
|
3134
3134
|
name: string;
|
|
@@ -4437,7 +4437,7 @@ declare const PluginRegistryEntrySchema: z.ZodObject<{
|
|
|
4437
4437
|
extensionPointId: string;
|
|
4438
4438
|
}[] | undefined;
|
|
4439
4439
|
} | undefined;
|
|
4440
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
4440
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
4441
4441
|
license?: string | undefined;
|
|
4442
4442
|
media?: {
|
|
4443
4443
|
video?: string | undefined;
|
|
@@ -4609,7 +4609,7 @@ declare const PluginRegistryEntrySchema: z.ZodObject<{
|
|
|
4609
4609
|
priority?: number | undefined;
|
|
4610
4610
|
}[] | undefined;
|
|
4611
4611
|
} | undefined;
|
|
4612
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
4612
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
4613
4613
|
license?: string | undefined;
|
|
4614
4614
|
media?: {
|
|
4615
4615
|
video?: string | undefined;
|
|
@@ -245,7 +245,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
245
245
|
manifest: z.ZodOptional<z.ZodObject<{
|
|
246
246
|
id: z.ZodString;
|
|
247
247
|
version: z.ZodString;
|
|
248
|
-
type: z.ZodEnum<["
|
|
248
|
+
type: z.ZodEnum<["plugin", "ui", "driver", "server", "app", "theme", "agent", "objectql", "module", "gateway", "adapter"]>;
|
|
249
249
|
name: z.ZodString;
|
|
250
250
|
description: z.ZodOptional<z.ZodString>;
|
|
251
251
|
permissions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -423,6 +423,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
423
423
|
input?: any;
|
|
424
424
|
output?: any;
|
|
425
425
|
}[] | undefined;
|
|
426
|
+
drivers?: {
|
|
427
|
+
label: string;
|
|
428
|
+
id: string;
|
|
429
|
+
description?: string | undefined;
|
|
430
|
+
}[] | undefined;
|
|
426
431
|
kinds?: {
|
|
427
432
|
id: string;
|
|
428
433
|
globs: string[];
|
|
@@ -442,11 +447,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
442
447
|
path: string;
|
|
443
448
|
locale: string;
|
|
444
449
|
}[] | undefined;
|
|
445
|
-
drivers?: {
|
|
446
|
-
label: string;
|
|
447
|
-
id: string;
|
|
448
|
-
description?: string | undefined;
|
|
449
|
-
}[] | undefined;
|
|
450
450
|
functions?: {
|
|
451
451
|
name: string;
|
|
452
452
|
description?: string | undefined;
|
|
@@ -467,6 +467,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
467
467
|
input?: any;
|
|
468
468
|
output?: any;
|
|
469
469
|
}[] | undefined;
|
|
470
|
+
drivers?: {
|
|
471
|
+
label: string;
|
|
472
|
+
id: string;
|
|
473
|
+
description?: string | undefined;
|
|
474
|
+
}[] | undefined;
|
|
470
475
|
kinds?: {
|
|
471
476
|
id: string;
|
|
472
477
|
globs: string[];
|
|
@@ -486,11 +491,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
486
491
|
path: string;
|
|
487
492
|
locale: string;
|
|
488
493
|
}[] | undefined;
|
|
489
|
-
drivers?: {
|
|
490
|
-
label: string;
|
|
491
|
-
id: string;
|
|
492
|
-
description?: string | undefined;
|
|
493
|
-
}[] | undefined;
|
|
494
494
|
functions?: {
|
|
495
495
|
name: string;
|
|
496
496
|
description?: string | undefined;
|
|
@@ -1666,7 +1666,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1666
1666
|
} | undefined;
|
|
1667
1667
|
}>>;
|
|
1668
1668
|
}, "strip", z.ZodTypeAny, {
|
|
1669
|
-
type: "driver" | "app" | "
|
|
1669
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
1670
1670
|
name: string;
|
|
1671
1671
|
version: string;
|
|
1672
1672
|
id: string;
|
|
@@ -1907,6 +1907,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1907
1907
|
input?: any;
|
|
1908
1908
|
output?: any;
|
|
1909
1909
|
}[] | undefined;
|
|
1910
|
+
drivers?: {
|
|
1911
|
+
label: string;
|
|
1912
|
+
id: string;
|
|
1913
|
+
description?: string | undefined;
|
|
1914
|
+
}[] | undefined;
|
|
1910
1915
|
kinds?: {
|
|
1911
1916
|
id: string;
|
|
1912
1917
|
globs: string[];
|
|
@@ -1926,11 +1931,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1926
1931
|
path: string;
|
|
1927
1932
|
locale: string;
|
|
1928
1933
|
}[] | undefined;
|
|
1929
|
-
drivers?: {
|
|
1930
|
-
label: string;
|
|
1931
|
-
id: string;
|
|
1932
|
-
description?: string | undefined;
|
|
1933
|
-
}[] | undefined;
|
|
1934
1934
|
functions?: {
|
|
1935
1935
|
name: string;
|
|
1936
1936
|
description?: string | undefined;
|
|
@@ -1939,7 +1939,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
1939
1939
|
}[] | undefined;
|
|
1940
1940
|
} | undefined;
|
|
1941
1941
|
}, {
|
|
1942
|
-
type: "driver" | "app" | "
|
|
1942
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
1943
1943
|
name: string;
|
|
1944
1944
|
version: string;
|
|
1945
1945
|
id: string;
|
|
@@ -2180,6 +2180,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2180
2180
|
input?: any;
|
|
2181
2181
|
output?: any;
|
|
2182
2182
|
}[] | undefined;
|
|
2183
|
+
drivers?: {
|
|
2184
|
+
label: string;
|
|
2185
|
+
id: string;
|
|
2186
|
+
description?: string | undefined;
|
|
2187
|
+
}[] | undefined;
|
|
2183
2188
|
kinds?: {
|
|
2184
2189
|
id: string;
|
|
2185
2190
|
globs: string[];
|
|
@@ -2199,11 +2204,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2199
2204
|
path: string;
|
|
2200
2205
|
locale: string;
|
|
2201
2206
|
}[] | undefined;
|
|
2202
|
-
drivers?: {
|
|
2203
|
-
label: string;
|
|
2204
|
-
id: string;
|
|
2205
|
-
description?: string | undefined;
|
|
2206
|
-
}[] | undefined;
|
|
2207
2207
|
functions?: {
|
|
2208
2208
|
name: string;
|
|
2209
2209
|
description?: string | undefined;
|
|
@@ -2260,7 +2260,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2260
2260
|
sources: string[];
|
|
2261
2261
|
}[] | undefined;
|
|
2262
2262
|
manifest?: {
|
|
2263
|
-
type: "driver" | "app" | "
|
|
2263
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
2264
2264
|
name: string;
|
|
2265
2265
|
version: string;
|
|
2266
2266
|
id: string;
|
|
@@ -2501,6 +2501,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2501
2501
|
input?: any;
|
|
2502
2502
|
output?: any;
|
|
2503
2503
|
}[] | undefined;
|
|
2504
|
+
drivers?: {
|
|
2505
|
+
label: string;
|
|
2506
|
+
id: string;
|
|
2507
|
+
description?: string | undefined;
|
|
2508
|
+
}[] | undefined;
|
|
2504
2509
|
kinds?: {
|
|
2505
2510
|
id: string;
|
|
2506
2511
|
globs: string[];
|
|
@@ -2520,11 +2525,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2520
2525
|
path: string;
|
|
2521
2526
|
locale: string;
|
|
2522
2527
|
}[] | undefined;
|
|
2523
|
-
drivers?: {
|
|
2524
|
-
label: string;
|
|
2525
|
-
id: string;
|
|
2526
|
-
description?: string | undefined;
|
|
2527
|
-
}[] | undefined;
|
|
2528
2528
|
functions?: {
|
|
2529
2529
|
name: string;
|
|
2530
2530
|
description?: string | undefined;
|
|
@@ -2548,7 +2548,7 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2548
2548
|
sources: string[];
|
|
2549
2549
|
}[] | undefined;
|
|
2550
2550
|
manifest?: {
|
|
2551
|
-
type: "driver" | "app" | "
|
|
2551
|
+
type: "theme" | "driver" | "app" | "server" | "ui" | "agent" | "objectql" | "plugin" | "module" | "gateway" | "adapter";
|
|
2552
2552
|
name: string;
|
|
2553
2553
|
version: string;
|
|
2554
2554
|
id: string;
|
|
@@ -2789,6 +2789,11 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2789
2789
|
input?: any;
|
|
2790
2790
|
output?: any;
|
|
2791
2791
|
}[] | undefined;
|
|
2792
|
+
drivers?: {
|
|
2793
|
+
label: string;
|
|
2794
|
+
id: string;
|
|
2795
|
+
description?: string | undefined;
|
|
2796
|
+
}[] | undefined;
|
|
2792
2797
|
kinds?: {
|
|
2793
2798
|
id: string;
|
|
2794
2799
|
globs: string[];
|
|
@@ -2808,11 +2813,6 @@ declare const ComposerResponseSchema: z.ZodObject<{
|
|
|
2808
2813
|
path: string;
|
|
2809
2814
|
locale: string;
|
|
2810
2815
|
}[] | undefined;
|
|
2811
|
-
drivers?: {
|
|
2812
|
-
label: string;
|
|
2813
|
-
id: string;
|
|
2814
|
-
description?: string | undefined;
|
|
2815
|
-
}[] | undefined;
|
|
2816
2816
|
functions?: {
|
|
2817
2817
|
name: string;
|
|
2818
2818
|
description?: string | undefined;
|
|
@@ -3084,8 +3084,8 @@ declare const MarketplacePluginSchema: z.ZodObject<{
|
|
|
3084
3084
|
changeLog?: string | undefined;
|
|
3085
3085
|
}> | undefined;
|
|
3086
3086
|
screenshots?: string[] | undefined;
|
|
3087
|
-
downloads?: number | undefined;
|
|
3088
3087
|
homepage?: string | undefined;
|
|
3088
|
+
downloads?: number | undefined;
|
|
3089
3089
|
readme?: string | undefined;
|
|
3090
3090
|
vendor?: {
|
|
3091
3091
|
name: string;
|
|
@@ -3126,9 +3126,9 @@ declare const MarketplacePluginSchema: z.ZodObject<{
|
|
|
3126
3126
|
changeLog?: string | undefined;
|
|
3127
3127
|
}> | undefined;
|
|
3128
3128
|
screenshots?: string[] | undefined;
|
|
3129
|
+
homepage?: string | undefined;
|
|
3129
3130
|
verified?: boolean | undefined;
|
|
3130
3131
|
downloads?: number | undefined;
|
|
3131
|
-
homepage?: string | undefined;
|
|
3132
3132
|
readme?: string | undefined;
|
|
3133
3133
|
vendor?: {
|
|
3134
3134
|
name: string;
|
|
@@ -4437,7 +4437,7 @@ declare const PluginRegistryEntrySchema: z.ZodObject<{
|
|
|
4437
4437
|
extensionPointId: string;
|
|
4438
4438
|
}[] | undefined;
|
|
4439
4439
|
} | undefined;
|
|
4440
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
4440
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
4441
4441
|
license?: string | undefined;
|
|
4442
4442
|
media?: {
|
|
4443
4443
|
video?: string | undefined;
|
|
@@ -4609,7 +4609,7 @@ declare const PluginRegistryEntrySchema: z.ZodObject<{
|
|
|
4609
4609
|
priority?: number | undefined;
|
|
4610
4610
|
}[] | undefined;
|
|
4611
4611
|
} | undefined;
|
|
4612
|
-
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "
|
|
4612
|
+
category?: "data" | "driver" | "utility" | "security" | "integration" | "automation" | "analytics" | "ui" | "gateway" | "adapter" | "ai" | undefined;
|
|
4613
4613
|
license?: string | undefined;
|
|
4614
4614
|
media?: {
|
|
4615
4615
|
video?: string | undefined;
|