instill-sdk 0.19.0-rc.3 → 0.19.0-rc.4
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/core/integration/type.d.ts +18 -18
- package/dist/core/membership/types.d.ts +60 -60
- package/dist/core/organization/types.d.ts +4 -4
- package/dist/core/user/types.d.ts +9 -9
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -103
- package/dist/index.mjs +0 -102
- package/dist/main/index.d.ts +0 -2
- package/dist/main/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +16 -16
- package/dist/vdp/component/types.d.ts +121 -121
- package/dist/vdp/pipeline/types.d.ts +651 -651
- package/dist/vdp/release/types.d.ts +10 -10
- package/dist/vdp/types.d.ts +8 -8
- package/package.json +1 -1
|
@@ -13,12 +13,12 @@ export declare const TaskSchema: z.ZodObject<{
|
|
|
13
13
|
description: z.ZodString;
|
|
14
14
|
}, "strip", z.ZodTypeAny, {
|
|
15
15
|
name: string;
|
|
16
|
-
description: string;
|
|
17
16
|
title: string;
|
|
17
|
+
description: string;
|
|
18
18
|
}, {
|
|
19
19
|
name: string;
|
|
20
|
-
description: string;
|
|
21
20
|
title: string;
|
|
21
|
+
description: string;
|
|
22
22
|
}>;
|
|
23
23
|
export type ConnectorDefinition = {
|
|
24
24
|
name: string;
|
|
@@ -80,22 +80,22 @@ export declare const ConnectorDefinitionSchema: z.ZodObject<{
|
|
|
80
80
|
description: z.ZodString;
|
|
81
81
|
}, "strip", z.ZodTypeAny, {
|
|
82
82
|
name: string;
|
|
83
|
-
description: string;
|
|
84
83
|
title: string;
|
|
84
|
+
description: string;
|
|
85
85
|
}, {
|
|
86
86
|
name: string;
|
|
87
|
-
description: string;
|
|
88
87
|
title: string;
|
|
88
|
+
description: string;
|
|
89
89
|
}>, "many">;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
92
91
|
name: string;
|
|
92
|
+
title: string;
|
|
93
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
93
94
|
uid: string;
|
|
94
95
|
id: string;
|
|
95
|
-
custom: boolean;
|
|
96
96
|
documentationUrl: string;
|
|
97
|
-
title: string;
|
|
98
97
|
icon: string;
|
|
98
|
+
custom: boolean;
|
|
99
99
|
spec: {
|
|
100
100
|
componentSpecification: Record<string, any>;
|
|
101
101
|
dataSpecifications: Record<string, {
|
|
@@ -109,18 +109,18 @@ export declare const ConnectorDefinitionSchema: z.ZodObject<{
|
|
|
109
109
|
vendorAttributes: Record<string, any>;
|
|
110
110
|
tasks: {
|
|
111
111
|
name: string;
|
|
112
|
-
description: string;
|
|
113
112
|
title: string;
|
|
113
|
+
description: string;
|
|
114
114
|
}[];
|
|
115
115
|
}, {
|
|
116
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
117
116
|
name: string;
|
|
117
|
+
title: string;
|
|
118
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
118
119
|
uid: string;
|
|
119
120
|
id: string;
|
|
120
|
-
custom: boolean;
|
|
121
121
|
documentationUrl: string;
|
|
122
|
-
title: string;
|
|
123
122
|
icon: string;
|
|
123
|
+
custom: boolean;
|
|
124
124
|
spec: {
|
|
125
125
|
componentSpecification: Record<string, any>;
|
|
126
126
|
dataSpecifications: Record<string, {
|
|
@@ -134,8 +134,8 @@ export declare const ConnectorDefinitionSchema: z.ZodObject<{
|
|
|
134
134
|
vendorAttributes: Record<string, any>;
|
|
135
135
|
tasks: {
|
|
136
136
|
name: string;
|
|
137
|
-
description: string;
|
|
138
137
|
title: string;
|
|
138
|
+
description: string;
|
|
139
139
|
}[];
|
|
140
140
|
}>;
|
|
141
141
|
export type ComponentDefinition = {
|
|
@@ -204,26 +204,25 @@ export declare const ComponentDefinitionSchema: z.ZodObject<{
|
|
|
204
204
|
description: z.ZodString;
|
|
205
205
|
}, "strip", z.ZodTypeAny, {
|
|
206
206
|
name: string;
|
|
207
|
-
description: string;
|
|
208
207
|
title: string;
|
|
208
|
+
description: string;
|
|
209
209
|
}, {
|
|
210
210
|
name: string;
|
|
211
|
-
description: string;
|
|
212
211
|
title: string;
|
|
212
|
+
description: string;
|
|
213
213
|
}>, "many">;
|
|
214
214
|
description: z.ZodString;
|
|
215
215
|
releaseStage: z.ZodString;
|
|
216
216
|
}, "strip", z.ZodTypeAny, {
|
|
217
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
218
217
|
name: string;
|
|
218
|
+
title: string;
|
|
219
|
+
description: string;
|
|
220
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
219
221
|
uid: string;
|
|
220
222
|
id: string;
|
|
221
|
-
description: string;
|
|
222
|
-
custom: boolean;
|
|
223
|
-
sourceUrl: string;
|
|
224
223
|
documentationUrl: string;
|
|
225
|
-
title: string;
|
|
226
224
|
icon: string;
|
|
225
|
+
custom: boolean;
|
|
227
226
|
spec: {
|
|
228
227
|
componentSpecification: Record<string, any>;
|
|
229
228
|
dataSpecifications: Record<string, {
|
|
@@ -237,22 +236,22 @@ export declare const ComponentDefinitionSchema: z.ZodObject<{
|
|
|
237
236
|
vendorAttributes: Record<string, any>;
|
|
238
237
|
tasks: {
|
|
239
238
|
name: string;
|
|
240
|
-
description: string;
|
|
241
239
|
title: string;
|
|
240
|
+
description: string;
|
|
242
241
|
}[];
|
|
242
|
+
sourceUrl: string;
|
|
243
243
|
version: string;
|
|
244
244
|
releaseStage: string;
|
|
245
245
|
}, {
|
|
246
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
247
246
|
name: string;
|
|
247
|
+
title: string;
|
|
248
|
+
description: string;
|
|
249
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
248
250
|
uid: string;
|
|
249
251
|
id: string;
|
|
250
|
-
description: string;
|
|
251
|
-
custom: boolean;
|
|
252
|
-
sourceUrl: string;
|
|
253
252
|
documentationUrl: string;
|
|
254
|
-
title: string;
|
|
255
253
|
icon: string;
|
|
254
|
+
custom: boolean;
|
|
256
255
|
spec: {
|
|
257
256
|
componentSpecification: Record<string, any>;
|
|
258
257
|
dataSpecifications: Record<string, {
|
|
@@ -266,9 +265,10 @@ export declare const ComponentDefinitionSchema: z.ZodObject<{
|
|
|
266
265
|
vendorAttributes: Record<string, any>;
|
|
267
266
|
tasks: {
|
|
268
267
|
name: string;
|
|
269
|
-
description: string;
|
|
270
268
|
title: string;
|
|
269
|
+
description: string;
|
|
271
270
|
}[];
|
|
271
|
+
sourceUrl: string;
|
|
272
272
|
version: string;
|
|
273
273
|
releaseStage: string;
|
|
274
274
|
}>;
|
|
@@ -327,23 +327,23 @@ export declare const OperatorDefinitionSchema: z.ZodObject<{
|
|
|
327
327
|
description: z.ZodString;
|
|
328
328
|
}, "strip", z.ZodTypeAny, {
|
|
329
329
|
name: string;
|
|
330
|
-
description: string;
|
|
331
330
|
title: string;
|
|
331
|
+
description: string;
|
|
332
332
|
}, {
|
|
333
333
|
name: string;
|
|
334
|
-
description: string;
|
|
335
334
|
title: string;
|
|
335
|
+
description: string;
|
|
336
336
|
}>, "many">;
|
|
337
337
|
type: z.ZodEnum<["COMPONENT_TYPE_UNSPECIFIED", "COMPONENT_TYPE_OPERATOR", "COMPONENT_TYPE_DATA", "COMPONENT_TYPE_AI", "COMPONENT_TYPE_APPLICATION", "COMPONENT_TYPE_GENERIC"]>;
|
|
338
338
|
}, "strip", z.ZodTypeAny, {
|
|
339
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
340
339
|
name: string;
|
|
340
|
+
title: string;
|
|
341
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
341
342
|
uid: string;
|
|
342
343
|
id: string;
|
|
343
|
-
custom: boolean;
|
|
344
344
|
documentationUrl: string;
|
|
345
|
-
title: string;
|
|
346
345
|
icon: string;
|
|
346
|
+
custom: boolean;
|
|
347
347
|
spec: {
|
|
348
348
|
componentSpecification: Record<string, any>;
|
|
349
349
|
dataSpecifications: Record<string, {
|
|
@@ -355,18 +355,18 @@ export declare const OperatorDefinitionSchema: z.ZodObject<{
|
|
|
355
355
|
public: boolean;
|
|
356
356
|
tasks: {
|
|
357
357
|
name: string;
|
|
358
|
-
description: string;
|
|
359
358
|
title: string;
|
|
359
|
+
description: string;
|
|
360
360
|
}[];
|
|
361
361
|
}, {
|
|
362
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
363
362
|
name: string;
|
|
363
|
+
title: string;
|
|
364
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
364
365
|
uid: string;
|
|
365
366
|
id: string;
|
|
366
|
-
custom: boolean;
|
|
367
367
|
documentationUrl: string;
|
|
368
|
-
title: string;
|
|
369
368
|
icon: string;
|
|
369
|
+
custom: boolean;
|
|
370
370
|
spec: {
|
|
371
371
|
componentSpecification: Record<string, any>;
|
|
372
372
|
dataSpecifications: Record<string, {
|
|
@@ -378,8 +378,8 @@ export declare const OperatorDefinitionSchema: z.ZodObject<{
|
|
|
378
378
|
public: boolean;
|
|
379
379
|
tasks: {
|
|
380
380
|
name: string;
|
|
381
|
-
description: string;
|
|
382
381
|
title: string;
|
|
382
|
+
description: string;
|
|
383
383
|
}[];
|
|
384
384
|
}>;
|
|
385
385
|
export type ListConnectorDefinitionsRequest = {
|
|
@@ -438,22 +438,22 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
438
438
|
description: z.ZodString;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
440
|
name: string;
|
|
441
|
-
description: string;
|
|
442
441
|
title: string;
|
|
442
|
+
description: string;
|
|
443
443
|
}, {
|
|
444
444
|
name: string;
|
|
445
|
-
description: string;
|
|
446
445
|
title: string;
|
|
446
|
+
description: string;
|
|
447
447
|
}>, "many">;
|
|
448
448
|
}, "strip", z.ZodTypeAny, {
|
|
449
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
450
449
|
name: string;
|
|
450
|
+
title: string;
|
|
451
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
451
452
|
uid: string;
|
|
452
453
|
id: string;
|
|
453
|
-
custom: boolean;
|
|
454
454
|
documentationUrl: string;
|
|
455
|
-
title: string;
|
|
456
455
|
icon: string;
|
|
456
|
+
custom: boolean;
|
|
457
457
|
spec: {
|
|
458
458
|
componentSpecification: Record<string, any>;
|
|
459
459
|
dataSpecifications: Record<string, {
|
|
@@ -467,18 +467,18 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
467
467
|
vendorAttributes: Record<string, any>;
|
|
468
468
|
tasks: {
|
|
469
469
|
name: string;
|
|
470
|
-
description: string;
|
|
471
470
|
title: string;
|
|
471
|
+
description: string;
|
|
472
472
|
}[];
|
|
473
473
|
}, {
|
|
474
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
475
474
|
name: string;
|
|
475
|
+
title: string;
|
|
476
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
476
477
|
uid: string;
|
|
477
478
|
id: string;
|
|
478
|
-
custom: boolean;
|
|
479
479
|
documentationUrl: string;
|
|
480
|
-
title: string;
|
|
481
480
|
icon: string;
|
|
481
|
+
custom: boolean;
|
|
482
482
|
spec: {
|
|
483
483
|
componentSpecification: Record<string, any>;
|
|
484
484
|
dataSpecifications: Record<string, {
|
|
@@ -492,24 +492,22 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
492
492
|
vendorAttributes: Record<string, any>;
|
|
493
493
|
tasks: {
|
|
494
494
|
name: string;
|
|
495
|
-
description: string;
|
|
496
495
|
title: string;
|
|
496
|
+
description: string;
|
|
497
497
|
}[];
|
|
498
498
|
}>, "many">;
|
|
499
499
|
nextPageToken: z.ZodString;
|
|
500
500
|
totalSize: z.ZodNumber;
|
|
501
501
|
}, "strip", z.ZodTypeAny, {
|
|
502
|
-
nextPageToken: string;
|
|
503
|
-
totalSize: number;
|
|
504
502
|
connectorDefinitions: {
|
|
505
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
506
503
|
name: string;
|
|
504
|
+
title: string;
|
|
505
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
507
506
|
uid: string;
|
|
508
507
|
id: string;
|
|
509
|
-
custom: boolean;
|
|
510
508
|
documentationUrl: string;
|
|
511
|
-
title: string;
|
|
512
509
|
icon: string;
|
|
510
|
+
custom: boolean;
|
|
513
511
|
spec: {
|
|
514
512
|
componentSpecification: Record<string, any>;
|
|
515
513
|
dataSpecifications: Record<string, {
|
|
@@ -523,22 +521,22 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
523
521
|
vendorAttributes: Record<string, any>;
|
|
524
522
|
tasks: {
|
|
525
523
|
name: string;
|
|
526
|
-
description: string;
|
|
527
524
|
title: string;
|
|
525
|
+
description: string;
|
|
528
526
|
}[];
|
|
529
527
|
}[];
|
|
530
|
-
}, {
|
|
531
528
|
nextPageToken: string;
|
|
532
529
|
totalSize: number;
|
|
530
|
+
}, {
|
|
533
531
|
connectorDefinitions: {
|
|
534
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
535
532
|
name: string;
|
|
533
|
+
title: string;
|
|
534
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
536
535
|
uid: string;
|
|
537
536
|
id: string;
|
|
538
|
-
custom: boolean;
|
|
539
537
|
documentationUrl: string;
|
|
540
|
-
title: string;
|
|
541
538
|
icon: string;
|
|
539
|
+
custom: boolean;
|
|
542
540
|
spec: {
|
|
543
541
|
componentSpecification: Record<string, any>;
|
|
544
542
|
dataSpecifications: Record<string, {
|
|
@@ -552,10 +550,12 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
552
550
|
vendorAttributes: Record<string, any>;
|
|
553
551
|
tasks: {
|
|
554
552
|
name: string;
|
|
555
|
-
description: string;
|
|
556
553
|
title: string;
|
|
554
|
+
description: string;
|
|
557
555
|
}[];
|
|
558
556
|
}[];
|
|
557
|
+
nextPageToken: string;
|
|
558
|
+
totalSize: number;
|
|
559
559
|
}>;
|
|
560
560
|
export type ListComponentDefinitionsRequest = {
|
|
561
561
|
pageSize?: number;
|
|
@@ -617,26 +617,25 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
617
617
|
description: z.ZodString;
|
|
618
618
|
}, "strip", z.ZodTypeAny, {
|
|
619
619
|
name: string;
|
|
620
|
-
description: string;
|
|
621
620
|
title: string;
|
|
621
|
+
description: string;
|
|
622
622
|
}, {
|
|
623
623
|
name: string;
|
|
624
|
-
description: string;
|
|
625
624
|
title: string;
|
|
625
|
+
description: string;
|
|
626
626
|
}>, "many">;
|
|
627
627
|
description: z.ZodString;
|
|
628
628
|
releaseStage: z.ZodString;
|
|
629
629
|
}, "strip", z.ZodTypeAny, {
|
|
630
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
631
630
|
name: string;
|
|
631
|
+
title: string;
|
|
632
|
+
description: string;
|
|
633
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
632
634
|
uid: string;
|
|
633
635
|
id: string;
|
|
634
|
-
description: string;
|
|
635
|
-
custom: boolean;
|
|
636
|
-
sourceUrl: string;
|
|
637
636
|
documentationUrl: string;
|
|
638
|
-
title: string;
|
|
639
637
|
icon: string;
|
|
638
|
+
custom: boolean;
|
|
640
639
|
spec: {
|
|
641
640
|
componentSpecification: Record<string, any>;
|
|
642
641
|
dataSpecifications: Record<string, {
|
|
@@ -650,22 +649,22 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
650
649
|
vendorAttributes: Record<string, any>;
|
|
651
650
|
tasks: {
|
|
652
651
|
name: string;
|
|
653
|
-
description: string;
|
|
654
652
|
title: string;
|
|
653
|
+
description: string;
|
|
655
654
|
}[];
|
|
655
|
+
sourceUrl: string;
|
|
656
656
|
version: string;
|
|
657
657
|
releaseStage: string;
|
|
658
658
|
}, {
|
|
659
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
660
659
|
name: string;
|
|
660
|
+
title: string;
|
|
661
|
+
description: string;
|
|
662
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
661
663
|
uid: string;
|
|
662
664
|
id: string;
|
|
663
|
-
description: string;
|
|
664
|
-
custom: boolean;
|
|
665
|
-
sourceUrl: string;
|
|
666
665
|
documentationUrl: string;
|
|
667
|
-
title: string;
|
|
668
666
|
icon: string;
|
|
667
|
+
custom: boolean;
|
|
669
668
|
spec: {
|
|
670
669
|
componentSpecification: Record<string, any>;
|
|
671
670
|
dataSpecifications: Record<string, {
|
|
@@ -679,9 +678,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
679
678
|
vendorAttributes: Record<string, any>;
|
|
680
679
|
tasks: {
|
|
681
680
|
name: string;
|
|
682
|
-
description: string;
|
|
683
681
|
title: string;
|
|
682
|
+
description: string;
|
|
684
683
|
}[];
|
|
684
|
+
sourceUrl: string;
|
|
685
685
|
version: string;
|
|
686
686
|
releaseStage: string;
|
|
687
687
|
}>, "many">;
|
|
@@ -691,16 +691,15 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
691
691
|
nextPageToken: string;
|
|
692
692
|
totalSize: number;
|
|
693
693
|
componentDefinitions: {
|
|
694
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
695
694
|
name: string;
|
|
695
|
+
title: string;
|
|
696
|
+
description: string;
|
|
697
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
696
698
|
uid: string;
|
|
697
699
|
id: string;
|
|
698
|
-
description: string;
|
|
699
|
-
custom: boolean;
|
|
700
|
-
sourceUrl: string;
|
|
701
700
|
documentationUrl: string;
|
|
702
|
-
title: string;
|
|
703
701
|
icon: string;
|
|
702
|
+
custom: boolean;
|
|
704
703
|
spec: {
|
|
705
704
|
componentSpecification: Record<string, any>;
|
|
706
705
|
dataSpecifications: Record<string, {
|
|
@@ -714,9 +713,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
714
713
|
vendorAttributes: Record<string, any>;
|
|
715
714
|
tasks: {
|
|
716
715
|
name: string;
|
|
717
|
-
description: string;
|
|
718
716
|
title: string;
|
|
717
|
+
description: string;
|
|
719
718
|
}[];
|
|
719
|
+
sourceUrl: string;
|
|
720
720
|
version: string;
|
|
721
721
|
releaseStage: string;
|
|
722
722
|
}[];
|
|
@@ -724,16 +724,15 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
724
724
|
nextPageToken: string;
|
|
725
725
|
totalSize: number;
|
|
726
726
|
componentDefinitions: {
|
|
727
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
728
727
|
name: string;
|
|
728
|
+
title: string;
|
|
729
|
+
description: string;
|
|
730
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
729
731
|
uid: string;
|
|
730
732
|
id: string;
|
|
731
|
-
description: string;
|
|
732
|
-
custom: boolean;
|
|
733
|
-
sourceUrl: string;
|
|
734
733
|
documentationUrl: string;
|
|
735
|
-
title: string;
|
|
736
734
|
icon: string;
|
|
735
|
+
custom: boolean;
|
|
737
736
|
spec: {
|
|
738
737
|
componentSpecification: Record<string, any>;
|
|
739
738
|
dataSpecifications: Record<string, {
|
|
@@ -747,9 +746,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
747
746
|
vendorAttributes: Record<string, any>;
|
|
748
747
|
tasks: {
|
|
749
748
|
name: string;
|
|
750
|
-
description: string;
|
|
751
749
|
title: string;
|
|
750
|
+
description: string;
|
|
752
751
|
}[];
|
|
752
|
+
sourceUrl: string;
|
|
753
753
|
version: string;
|
|
754
754
|
releaseStage: string;
|
|
755
755
|
}[];
|
|
@@ -805,22 +805,22 @@ export declare const getConnectorDefinitionResponseValidator: z.ZodObject<{
|
|
|
805
805
|
description: z.ZodString;
|
|
806
806
|
}, "strip", z.ZodTypeAny, {
|
|
807
807
|
name: string;
|
|
808
|
-
description: string;
|
|
809
808
|
title: string;
|
|
809
|
+
description: string;
|
|
810
810
|
}, {
|
|
811
811
|
name: string;
|
|
812
|
-
description: string;
|
|
813
812
|
title: string;
|
|
813
|
+
description: string;
|
|
814
814
|
}>, "many">;
|
|
815
815
|
}, "strip", z.ZodTypeAny, {
|
|
816
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
817
816
|
name: string;
|
|
817
|
+
title: string;
|
|
818
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
818
819
|
uid: string;
|
|
819
820
|
id: string;
|
|
820
|
-
custom: boolean;
|
|
821
821
|
documentationUrl: string;
|
|
822
|
-
title: string;
|
|
823
822
|
icon: string;
|
|
823
|
+
custom: boolean;
|
|
824
824
|
spec: {
|
|
825
825
|
componentSpecification: Record<string, any>;
|
|
826
826
|
dataSpecifications: Record<string, {
|
|
@@ -834,18 +834,18 @@ export declare const getConnectorDefinitionResponseValidator: z.ZodObject<{
|
|
|
834
834
|
vendorAttributes: Record<string, any>;
|
|
835
835
|
tasks: {
|
|
836
836
|
name: string;
|
|
837
|
-
description: string;
|
|
838
837
|
title: string;
|
|
838
|
+
description: string;
|
|
839
839
|
}[];
|
|
840
840
|
}, {
|
|
841
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
842
841
|
name: string;
|
|
842
|
+
title: string;
|
|
843
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
843
844
|
uid: string;
|
|
844
845
|
id: string;
|
|
845
|
-
custom: boolean;
|
|
846
846
|
documentationUrl: string;
|
|
847
|
-
title: string;
|
|
848
847
|
icon: string;
|
|
848
|
+
custom: boolean;
|
|
849
849
|
spec: {
|
|
850
850
|
componentSpecification: Record<string, any>;
|
|
851
851
|
dataSpecifications: Record<string, {
|
|
@@ -859,8 +859,8 @@ export declare const getConnectorDefinitionResponseValidator: z.ZodObject<{
|
|
|
859
859
|
vendorAttributes: Record<string, any>;
|
|
860
860
|
tasks: {
|
|
861
861
|
name: string;
|
|
862
|
-
description: string;
|
|
863
862
|
title: string;
|
|
863
|
+
description: string;
|
|
864
864
|
}[];
|
|
865
865
|
}>;
|
|
866
866
|
export type ListOperatorDefinitionsRequest = {
|
|
@@ -916,23 +916,23 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
916
916
|
description: z.ZodString;
|
|
917
917
|
}, "strip", z.ZodTypeAny, {
|
|
918
918
|
name: string;
|
|
919
|
-
description: string;
|
|
920
919
|
title: string;
|
|
920
|
+
description: string;
|
|
921
921
|
}, {
|
|
922
922
|
name: string;
|
|
923
|
-
description: string;
|
|
924
923
|
title: string;
|
|
924
|
+
description: string;
|
|
925
925
|
}>, "many">;
|
|
926
926
|
type: z.ZodEnum<["COMPONENT_TYPE_UNSPECIFIED", "COMPONENT_TYPE_OPERATOR", "COMPONENT_TYPE_DATA", "COMPONENT_TYPE_AI", "COMPONENT_TYPE_APPLICATION", "COMPONENT_TYPE_GENERIC"]>;
|
|
927
927
|
}, "strip", z.ZodTypeAny, {
|
|
928
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
929
928
|
name: string;
|
|
929
|
+
title: string;
|
|
930
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
930
931
|
uid: string;
|
|
931
932
|
id: string;
|
|
932
|
-
custom: boolean;
|
|
933
933
|
documentationUrl: string;
|
|
934
|
-
title: string;
|
|
935
934
|
icon: string;
|
|
935
|
+
custom: boolean;
|
|
936
936
|
spec: {
|
|
937
937
|
componentSpecification: Record<string, any>;
|
|
938
938
|
dataSpecifications: Record<string, {
|
|
@@ -944,18 +944,18 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
944
944
|
public: boolean;
|
|
945
945
|
tasks: {
|
|
946
946
|
name: string;
|
|
947
|
-
description: string;
|
|
948
947
|
title: string;
|
|
948
|
+
description: string;
|
|
949
949
|
}[];
|
|
950
950
|
}, {
|
|
951
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
952
951
|
name: string;
|
|
952
|
+
title: string;
|
|
953
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
953
954
|
uid: string;
|
|
954
955
|
id: string;
|
|
955
|
-
custom: boolean;
|
|
956
956
|
documentationUrl: string;
|
|
957
|
-
title: string;
|
|
958
957
|
icon: string;
|
|
958
|
+
custom: boolean;
|
|
959
959
|
spec: {
|
|
960
960
|
componentSpecification: Record<string, any>;
|
|
961
961
|
dataSpecifications: Record<string, {
|
|
@@ -967,8 +967,8 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
967
967
|
public: boolean;
|
|
968
968
|
tasks: {
|
|
969
969
|
name: string;
|
|
970
|
-
description: string;
|
|
971
970
|
title: string;
|
|
971
|
+
description: string;
|
|
972
972
|
}[];
|
|
973
973
|
}>, "many">;
|
|
974
974
|
nextPageToken: z.ZodString;
|
|
@@ -977,14 +977,14 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
977
977
|
nextPageToken: string;
|
|
978
978
|
totalSize: number;
|
|
979
979
|
operatorDefinitions: {
|
|
980
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
981
980
|
name: string;
|
|
981
|
+
title: string;
|
|
982
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
982
983
|
uid: string;
|
|
983
984
|
id: string;
|
|
984
|
-
custom: boolean;
|
|
985
985
|
documentationUrl: string;
|
|
986
|
-
title: string;
|
|
987
986
|
icon: string;
|
|
987
|
+
custom: boolean;
|
|
988
988
|
spec: {
|
|
989
989
|
componentSpecification: Record<string, any>;
|
|
990
990
|
dataSpecifications: Record<string, {
|
|
@@ -996,22 +996,22 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
996
996
|
public: boolean;
|
|
997
997
|
tasks: {
|
|
998
998
|
name: string;
|
|
999
|
-
description: string;
|
|
1000
999
|
title: string;
|
|
1000
|
+
description: string;
|
|
1001
1001
|
}[];
|
|
1002
1002
|
}[];
|
|
1003
1003
|
}, {
|
|
1004
1004
|
nextPageToken: string;
|
|
1005
1005
|
totalSize: number;
|
|
1006
1006
|
operatorDefinitions: {
|
|
1007
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
1008
1007
|
name: string;
|
|
1008
|
+
title: string;
|
|
1009
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
1009
1010
|
uid: string;
|
|
1010
1011
|
id: string;
|
|
1011
|
-
custom: boolean;
|
|
1012
1012
|
documentationUrl: string;
|
|
1013
|
-
title: string;
|
|
1014
1013
|
icon: string;
|
|
1014
|
+
custom: boolean;
|
|
1015
1015
|
spec: {
|
|
1016
1016
|
componentSpecification: Record<string, any>;
|
|
1017
1017
|
dataSpecifications: Record<string, {
|
|
@@ -1023,8 +1023,8 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
1023
1023
|
public: boolean;
|
|
1024
1024
|
tasks: {
|
|
1025
1025
|
name: string;
|
|
1026
|
-
description: string;
|
|
1027
1026
|
title: string;
|
|
1027
|
+
description: string;
|
|
1028
1028
|
}[];
|
|
1029
1029
|
}[];
|
|
1030
1030
|
}>;
|
|
@@ -1076,23 +1076,23 @@ export declare const getOperatorDefinitionResponseValidator: z.ZodObject<{
|
|
|
1076
1076
|
description: z.ZodString;
|
|
1077
1077
|
}, "strip", z.ZodTypeAny, {
|
|
1078
1078
|
name: string;
|
|
1079
|
-
description: string;
|
|
1080
1079
|
title: string;
|
|
1080
|
+
description: string;
|
|
1081
1081
|
}, {
|
|
1082
1082
|
name: string;
|
|
1083
|
-
description: string;
|
|
1084
1083
|
title: string;
|
|
1084
|
+
description: string;
|
|
1085
1085
|
}>, "many">;
|
|
1086
1086
|
type: z.ZodEnum<["COMPONENT_TYPE_UNSPECIFIED", "COMPONENT_TYPE_OPERATOR", "COMPONENT_TYPE_DATA", "COMPONENT_TYPE_AI", "COMPONENT_TYPE_APPLICATION", "COMPONENT_TYPE_GENERIC"]>;
|
|
1087
1087
|
}, "strip", z.ZodTypeAny, {
|
|
1088
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
1089
1088
|
name: string;
|
|
1089
|
+
title: string;
|
|
1090
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
1090
1091
|
uid: string;
|
|
1091
1092
|
id: string;
|
|
1092
|
-
custom: boolean;
|
|
1093
1093
|
documentationUrl: string;
|
|
1094
|
-
title: string;
|
|
1095
1094
|
icon: string;
|
|
1095
|
+
custom: boolean;
|
|
1096
1096
|
spec: {
|
|
1097
1097
|
componentSpecification: Record<string, any>;
|
|
1098
1098
|
dataSpecifications: Record<string, {
|
|
@@ -1104,18 +1104,18 @@ export declare const getOperatorDefinitionResponseValidator: z.ZodObject<{
|
|
|
1104
1104
|
public: boolean;
|
|
1105
1105
|
tasks: {
|
|
1106
1106
|
name: string;
|
|
1107
|
-
description: string;
|
|
1108
1107
|
title: string;
|
|
1108
|
+
description: string;
|
|
1109
1109
|
}[];
|
|
1110
1110
|
}, {
|
|
1111
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_GENERIC" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION";
|
|
1112
1111
|
name: string;
|
|
1112
|
+
title: string;
|
|
1113
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
1113
1114
|
uid: string;
|
|
1114
1115
|
id: string;
|
|
1115
|
-
custom: boolean;
|
|
1116
1116
|
documentationUrl: string;
|
|
1117
|
-
title: string;
|
|
1118
1117
|
icon: string;
|
|
1118
|
+
custom: boolean;
|
|
1119
1119
|
spec: {
|
|
1120
1120
|
componentSpecification: Record<string, any>;
|
|
1121
1121
|
dataSpecifications: Record<string, {
|
|
@@ -1127,8 +1127,8 @@ export declare const getOperatorDefinitionResponseValidator: z.ZodObject<{
|
|
|
1127
1127
|
public: boolean;
|
|
1128
1128
|
tasks: {
|
|
1129
1129
|
name: string;
|
|
1130
|
-
description: string;
|
|
1131
1130
|
title: string;
|
|
1131
|
+
description: string;
|
|
1132
1132
|
}[];
|
|
1133
1133
|
}>;
|
|
1134
1134
|
//# sourceMappingURL=types.d.ts.map
|