instill-sdk 0.19.0-rc.20 → 0.19.0-rc.22
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/chat/ChatClient.d.ts +3 -2
- package/dist/chat/ChatClient.d.ts.map +1 -1
- package/dist/chat/constant.d.ts +8 -0
- package/dist/chat/constant.d.ts.map +1 -0
- package/dist/chat/types.d.ts +32 -1
- package/dist/chat/types.d.ts.map +1 -1
- package/dist/core/integration/type.d.ts +12 -12
- package/dist/core/membership/types.d.ts +192 -192
- package/dist/core/organization/types.d.ts +14 -14
- package/dist/core/user/types.d.ts +14 -14
- package/dist/index.js +16 -34
- package/dist/index.mjs +16 -34
- package/dist/table/TableClient.d.ts +1 -3
- package/dist/table/TableClient.d.ts.map +1 -1
- package/dist/table/types.d.ts +0 -23
- package/dist/table/types.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +65 -60
- package/dist/types.d.ts.map +1 -1
- package/dist/vdp/component/types.d.ts +28 -28
- package/dist/vdp/pipeline/types.d.ts +549 -549
- package/dist/vdp/release/types.d.ts +8 -8
- package/package.json +3 -3
- package/dist/helper/makeXMLRequestWithProgress.d.ts +0 -4
- package/dist/helper/makeXMLRequestWithProgress.d.ts.map +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -82,9 +82,9 @@ export declare const UserOwnerSchema: z.ZodObject<{
|
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
83
|
name: string;
|
|
84
84
|
uid: string;
|
|
85
|
+
id: string;
|
|
85
86
|
createTime: string;
|
|
86
87
|
updateTime: string;
|
|
87
|
-
id: string;
|
|
88
88
|
profile?: {
|
|
89
89
|
displayName?: string | undefined;
|
|
90
90
|
bio?: string | undefined;
|
|
@@ -100,9 +100,9 @@ export declare const UserOwnerSchema: z.ZodObject<{
|
|
|
100
100
|
}, {
|
|
101
101
|
name: string;
|
|
102
102
|
uid: string;
|
|
103
|
+
id: string;
|
|
103
104
|
createTime: string;
|
|
104
105
|
updateTime: string;
|
|
105
|
-
id: string;
|
|
106
106
|
profile?: {
|
|
107
107
|
displayName?: string | undefined;
|
|
108
108
|
bio?: string | undefined;
|
|
@@ -120,9 +120,9 @@ export declare const UserOwnerSchema: z.ZodObject<{
|
|
|
120
120
|
user: {
|
|
121
121
|
name: string;
|
|
122
122
|
uid: string;
|
|
123
|
+
id: string;
|
|
123
124
|
createTime: string;
|
|
124
125
|
updateTime: string;
|
|
125
|
-
id: string;
|
|
126
126
|
profile?: {
|
|
127
127
|
displayName?: string | undefined;
|
|
128
128
|
bio?: string | undefined;
|
|
@@ -140,9 +140,9 @@ export declare const UserOwnerSchema: z.ZodObject<{
|
|
|
140
140
|
user: {
|
|
141
141
|
name: string;
|
|
142
142
|
uid: string;
|
|
143
|
+
id: string;
|
|
143
144
|
createTime: string;
|
|
144
145
|
updateTime: string;
|
|
145
|
-
id: string;
|
|
146
146
|
profile?: {
|
|
147
147
|
displayName?: string | undefined;
|
|
148
148
|
bio?: string | undefined;
|
|
@@ -218,9 +218,9 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
218
218
|
}, "strip", z.ZodTypeAny, {
|
|
219
219
|
name: string;
|
|
220
220
|
uid: string;
|
|
221
|
+
id: string;
|
|
221
222
|
createTime: string;
|
|
222
223
|
updateTime: string;
|
|
223
|
-
id: string;
|
|
224
224
|
profile?: {
|
|
225
225
|
displayName?: string | undefined;
|
|
226
226
|
bio?: string | undefined;
|
|
@@ -236,9 +236,9 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
236
236
|
}, {
|
|
237
237
|
name: string;
|
|
238
238
|
uid: string;
|
|
239
|
+
id: string;
|
|
239
240
|
createTime: string;
|
|
240
241
|
updateTime: string;
|
|
241
|
-
id: string;
|
|
242
242
|
profile?: {
|
|
243
243
|
displayName?: string | undefined;
|
|
244
244
|
bio?: string | undefined;
|
|
@@ -292,17 +292,12 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
292
292
|
} | undefined;
|
|
293
293
|
}>>;
|
|
294
294
|
}, "strip", z.ZodTypeAny, {
|
|
295
|
-
name: string;
|
|
296
|
-
uid: string;
|
|
297
|
-
createTime: string;
|
|
298
|
-
updateTime: string;
|
|
299
|
-
id: string;
|
|
300
295
|
owner: {
|
|
301
296
|
name: string;
|
|
302
297
|
uid: string;
|
|
298
|
+
id: string;
|
|
303
299
|
createTime: string;
|
|
304
300
|
updateTime: string;
|
|
305
|
-
id: string;
|
|
306
301
|
profile?: {
|
|
307
302
|
displayName?: string | undefined;
|
|
308
303
|
bio?: string | undefined;
|
|
@@ -316,6 +311,11 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
316
311
|
} | undefined;
|
|
317
312
|
} | undefined;
|
|
318
313
|
};
|
|
314
|
+
name: string;
|
|
315
|
+
uid: string;
|
|
316
|
+
id: string;
|
|
317
|
+
createTime: string;
|
|
318
|
+
updateTime: string;
|
|
319
319
|
profile?: {
|
|
320
320
|
displayName?: string | undefined;
|
|
321
321
|
bio?: string | undefined;
|
|
@@ -328,17 +328,12 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
328
328
|
} | undefined;
|
|
329
329
|
} | undefined;
|
|
330
330
|
}, {
|
|
331
|
-
name: string;
|
|
332
|
-
uid: string;
|
|
333
|
-
createTime: string;
|
|
334
|
-
updateTime: string;
|
|
335
|
-
id: string;
|
|
336
331
|
owner: {
|
|
337
332
|
name: string;
|
|
338
333
|
uid: string;
|
|
334
|
+
id: string;
|
|
339
335
|
createTime: string;
|
|
340
336
|
updateTime: string;
|
|
341
|
-
id: string;
|
|
342
337
|
profile?: {
|
|
343
338
|
displayName?: string | undefined;
|
|
344
339
|
bio?: string | undefined;
|
|
@@ -352,6 +347,11 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
352
347
|
} | undefined;
|
|
353
348
|
} | undefined;
|
|
354
349
|
};
|
|
350
|
+
name: string;
|
|
351
|
+
uid: string;
|
|
352
|
+
id: string;
|
|
353
|
+
createTime: string;
|
|
354
|
+
updateTime: string;
|
|
355
355
|
profile?: {
|
|
356
356
|
displayName?: string | undefined;
|
|
357
357
|
bio?: string | undefined;
|
|
@@ -366,17 +366,12 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
366
366
|
}>;
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
368
|
organization: {
|
|
369
|
-
name: string;
|
|
370
|
-
uid: string;
|
|
371
|
-
createTime: string;
|
|
372
|
-
updateTime: string;
|
|
373
|
-
id: string;
|
|
374
369
|
owner: {
|
|
375
370
|
name: string;
|
|
376
371
|
uid: string;
|
|
372
|
+
id: string;
|
|
377
373
|
createTime: string;
|
|
378
374
|
updateTime: string;
|
|
379
|
-
id: string;
|
|
380
375
|
profile?: {
|
|
381
376
|
displayName?: string | undefined;
|
|
382
377
|
bio?: string | undefined;
|
|
@@ -390,6 +385,11 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
390
385
|
} | undefined;
|
|
391
386
|
} | undefined;
|
|
392
387
|
};
|
|
388
|
+
name: string;
|
|
389
|
+
uid: string;
|
|
390
|
+
id: string;
|
|
391
|
+
createTime: string;
|
|
392
|
+
updateTime: string;
|
|
393
393
|
profile?: {
|
|
394
394
|
displayName?: string | undefined;
|
|
395
395
|
bio?: string | undefined;
|
|
@@ -404,17 +404,12 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
404
404
|
};
|
|
405
405
|
}, {
|
|
406
406
|
organization: {
|
|
407
|
-
name: string;
|
|
408
|
-
uid: string;
|
|
409
|
-
createTime: string;
|
|
410
|
-
updateTime: string;
|
|
411
|
-
id: string;
|
|
412
407
|
owner: {
|
|
413
408
|
name: string;
|
|
414
409
|
uid: string;
|
|
410
|
+
id: string;
|
|
415
411
|
createTime: string;
|
|
416
412
|
updateTime: string;
|
|
417
|
-
id: string;
|
|
418
413
|
profile?: {
|
|
419
414
|
displayName?: string | undefined;
|
|
420
415
|
bio?: string | undefined;
|
|
@@ -428,6 +423,11 @@ export declare const OrganizationOwnerSchema: z.ZodObject<{
|
|
|
428
423
|
} | undefined;
|
|
429
424
|
} | undefined;
|
|
430
425
|
};
|
|
426
|
+
name: string;
|
|
427
|
+
uid: string;
|
|
428
|
+
id: string;
|
|
429
|
+
createTime: string;
|
|
430
|
+
updateTime: string;
|
|
431
431
|
profile?: {
|
|
432
432
|
displayName?: string | undefined;
|
|
433
433
|
bio?: string | undefined;
|
|
@@ -499,9 +499,9 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
499
499
|
}, "strip", z.ZodTypeAny, {
|
|
500
500
|
name: string;
|
|
501
501
|
uid: string;
|
|
502
|
+
id: string;
|
|
502
503
|
createTime: string;
|
|
503
504
|
updateTime: string;
|
|
504
|
-
id: string;
|
|
505
505
|
profile?: {
|
|
506
506
|
displayName?: string | undefined;
|
|
507
507
|
bio?: string | undefined;
|
|
@@ -517,9 +517,9 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
517
517
|
}, {
|
|
518
518
|
name: string;
|
|
519
519
|
uid: string;
|
|
520
|
+
id: string;
|
|
520
521
|
createTime: string;
|
|
521
522
|
updateTime: string;
|
|
522
|
-
id: string;
|
|
523
523
|
profile?: {
|
|
524
524
|
displayName?: string | undefined;
|
|
525
525
|
bio?: string | undefined;
|
|
@@ -537,9 +537,9 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
537
537
|
user: {
|
|
538
538
|
name: string;
|
|
539
539
|
uid: string;
|
|
540
|
+
id: string;
|
|
540
541
|
createTime: string;
|
|
541
542
|
updateTime: string;
|
|
542
|
-
id: string;
|
|
543
543
|
profile?: {
|
|
544
544
|
displayName?: string | undefined;
|
|
545
545
|
bio?: string | undefined;
|
|
@@ -557,9 +557,9 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
557
557
|
user: {
|
|
558
558
|
name: string;
|
|
559
559
|
uid: string;
|
|
560
|
+
id: string;
|
|
560
561
|
createTime: string;
|
|
561
562
|
updateTime: string;
|
|
562
|
-
id: string;
|
|
563
563
|
profile?: {
|
|
564
564
|
displayName?: string | undefined;
|
|
565
565
|
bio?: string | undefined;
|
|
@@ -631,9 +631,9 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
631
631
|
}, "strip", z.ZodTypeAny, {
|
|
632
632
|
name: string;
|
|
633
633
|
uid: string;
|
|
634
|
+
id: string;
|
|
634
635
|
createTime: string;
|
|
635
636
|
updateTime: string;
|
|
636
|
-
id: string;
|
|
637
637
|
profile?: {
|
|
638
638
|
displayName?: string | undefined;
|
|
639
639
|
bio?: string | undefined;
|
|
@@ -649,9 +649,9 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
649
649
|
}, {
|
|
650
650
|
name: string;
|
|
651
651
|
uid: string;
|
|
652
|
+
id: string;
|
|
652
653
|
createTime: string;
|
|
653
654
|
updateTime: string;
|
|
654
|
-
id: string;
|
|
655
655
|
profile?: {
|
|
656
656
|
displayName?: string | undefined;
|
|
657
657
|
bio?: string | undefined;
|
|
@@ -705,17 +705,12 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
705
705
|
} | undefined;
|
|
706
706
|
}>>;
|
|
707
707
|
}, "strip", z.ZodTypeAny, {
|
|
708
|
-
name: string;
|
|
709
|
-
uid: string;
|
|
710
|
-
createTime: string;
|
|
711
|
-
updateTime: string;
|
|
712
|
-
id: string;
|
|
713
708
|
owner: {
|
|
714
709
|
name: string;
|
|
715
710
|
uid: string;
|
|
711
|
+
id: string;
|
|
716
712
|
createTime: string;
|
|
717
713
|
updateTime: string;
|
|
718
|
-
id: string;
|
|
719
714
|
profile?: {
|
|
720
715
|
displayName?: string | undefined;
|
|
721
716
|
bio?: string | undefined;
|
|
@@ -729,6 +724,11 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
729
724
|
} | undefined;
|
|
730
725
|
} | undefined;
|
|
731
726
|
};
|
|
727
|
+
name: string;
|
|
728
|
+
uid: string;
|
|
729
|
+
id: string;
|
|
730
|
+
createTime: string;
|
|
731
|
+
updateTime: string;
|
|
732
732
|
profile?: {
|
|
733
733
|
displayName?: string | undefined;
|
|
734
734
|
bio?: string | undefined;
|
|
@@ -741,17 +741,12 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
741
741
|
} | undefined;
|
|
742
742
|
} | undefined;
|
|
743
743
|
}, {
|
|
744
|
-
name: string;
|
|
745
|
-
uid: string;
|
|
746
|
-
createTime: string;
|
|
747
|
-
updateTime: string;
|
|
748
|
-
id: string;
|
|
749
744
|
owner: {
|
|
750
745
|
name: string;
|
|
751
746
|
uid: string;
|
|
747
|
+
id: string;
|
|
752
748
|
createTime: string;
|
|
753
749
|
updateTime: string;
|
|
754
|
-
id: string;
|
|
755
750
|
profile?: {
|
|
756
751
|
displayName?: string | undefined;
|
|
757
752
|
bio?: string | undefined;
|
|
@@ -765,6 +760,11 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
765
760
|
} | undefined;
|
|
766
761
|
} | undefined;
|
|
767
762
|
};
|
|
763
|
+
name: string;
|
|
764
|
+
uid: string;
|
|
765
|
+
id: string;
|
|
766
|
+
createTime: string;
|
|
767
|
+
updateTime: string;
|
|
768
768
|
profile?: {
|
|
769
769
|
displayName?: string | undefined;
|
|
770
770
|
bio?: string | undefined;
|
|
@@ -779,17 +779,12 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
779
779
|
}>;
|
|
780
780
|
}, "strip", z.ZodTypeAny, {
|
|
781
781
|
organization: {
|
|
782
|
-
name: string;
|
|
783
|
-
uid: string;
|
|
784
|
-
createTime: string;
|
|
785
|
-
updateTime: string;
|
|
786
|
-
id: string;
|
|
787
782
|
owner: {
|
|
788
783
|
name: string;
|
|
789
784
|
uid: string;
|
|
785
|
+
id: string;
|
|
790
786
|
createTime: string;
|
|
791
787
|
updateTime: string;
|
|
792
|
-
id: string;
|
|
793
788
|
profile?: {
|
|
794
789
|
displayName?: string | undefined;
|
|
795
790
|
bio?: string | undefined;
|
|
@@ -803,6 +798,11 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
803
798
|
} | undefined;
|
|
804
799
|
} | undefined;
|
|
805
800
|
};
|
|
801
|
+
name: string;
|
|
802
|
+
uid: string;
|
|
803
|
+
id: string;
|
|
804
|
+
createTime: string;
|
|
805
|
+
updateTime: string;
|
|
806
806
|
profile?: {
|
|
807
807
|
displayName?: string | undefined;
|
|
808
808
|
bio?: string | undefined;
|
|
@@ -817,17 +817,12 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
817
817
|
};
|
|
818
818
|
}, {
|
|
819
819
|
organization: {
|
|
820
|
-
name: string;
|
|
821
|
-
uid: string;
|
|
822
|
-
createTime: string;
|
|
823
|
-
updateTime: string;
|
|
824
|
-
id: string;
|
|
825
820
|
owner: {
|
|
826
821
|
name: string;
|
|
827
822
|
uid: string;
|
|
823
|
+
id: string;
|
|
828
824
|
createTime: string;
|
|
829
825
|
updateTime: string;
|
|
830
|
-
id: string;
|
|
831
826
|
profile?: {
|
|
832
827
|
displayName?: string | undefined;
|
|
833
828
|
bio?: string | undefined;
|
|
@@ -841,6 +836,11 @@ export declare const OwnerSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
841
836
|
} | undefined;
|
|
842
837
|
} | undefined;
|
|
843
838
|
};
|
|
839
|
+
name: string;
|
|
840
|
+
uid: string;
|
|
841
|
+
id: string;
|
|
842
|
+
createTime: string;
|
|
843
|
+
updateTime: string;
|
|
844
844
|
profile?: {
|
|
845
845
|
displayName?: string | undefined;
|
|
846
846
|
bio?: string | undefined;
|
|
@@ -976,8 +976,13 @@ export type Citation = {
|
|
|
976
976
|
name: string;
|
|
977
977
|
url: string;
|
|
978
978
|
};
|
|
979
|
+
export type InstillChatMessageContextFolder = {
|
|
980
|
+
folderUid: string;
|
|
981
|
+
fileUids: string[];
|
|
982
|
+
};
|
|
979
983
|
export type InstillChatMessageContext = {
|
|
980
984
|
tableUids: string[];
|
|
985
|
+
folders: InstillChatMessageContextFolder[];
|
|
981
986
|
};
|
|
982
987
|
export {};
|
|
983
988
|
//# sourceMappingURL=types.d.ts.map
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AACjE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,YAAY,EAAsB,MAAM,qBAAqB,CAAC;AACvE,OAAO,EAAE,IAAI,EAAc,MAAM,aAAa,CAAC;AAE/C,MAAM,MAAM,YAAY,GAAG;IACzB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,UAAU,GAClB,wBAAwB,GACxB,oBAAoB,GACpB,mBAAmB,CAAC;AAExB,MAAM,MAAM,UAAU,GAAG;IACvB,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,OAAO,CAAC;CACrB,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,IAAI,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE1B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,YAAY,EAAE,YAAY,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAElC,CAAC;AAEH,MAAM,MAAM,QAAQ,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;AAEnC,MAAM,MAAM,kBAAkB,CAAC,CAAC,SAAS,MAAM,IAAI;KAChD,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,IAAI;CAC9B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEhD,MAAM,MAAM,KAAK,GAAG,SAAS,GAAG,iBAAiB,CAAC;AAElD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAsD,CAAC;AAE/E,MAAM,MAAM,oBAAoB,GAAG;IACjC,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB,CAAC;AACF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;IAChC,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,oBAAoB,CAAC,EAAE,MAAM,EAAE,CAAC;IAChC,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,uBAAuB,CAAC,EAAE,MAAM,EAAE,CAAC;IACnC,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,0BAA0B,CAAC,EAAE,MAAM,CAAC;IACpC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,yCAAyC,CAAC,EAAE,OAAO,CAAC;CACrD,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,iBAAiB,GAAG,OAAO,CAAC;AAEtE,KAAK,sBAAsB,GAAG;IAC5B,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,kBAAkB,CAAC;AAEvB,MAAM,MAAM,iBAAiB,GAAG;KAC7B,QAAQ,IAAI,MAAM,WAAW,CAAC,CAAC,GAAG,WAAW,CAAC,QAAQ,CAAC,SAAS,OAAO,GACpE,OAAO,GACP,QAAQ,SAAS,MAAM,GACrB,MAAM,EAAE,GACR,QAAQ,SAAS,IAAI,GAAG,MAAM,GAC5B,iBAAiB,GACjB,QAAQ,SAAS,OAAO,GACtB,iBAAiB,EAAE,GAAG,SAAS,GAC/B,QAAQ,SAAS,OAAO,GACtB,iBAAiB,EAAE,GAAG,SAAS,GAC/B,QAAQ,SAAS,OAAO,GACtB,iBAAiB,EAAE,GAAG,SAAS,GAC/B,QAAQ,SACF,YAAY,GACZ,mBAAmB,GACnB,aAAa,GACjB,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,GACjC,QAAQ,SAAS,OAAO,GACtB,iBAAiB,GACjB,WAAW,CAAC,QAAQ,CAAC,SACf,qBAAqB,GACrB,qBAAqB,EAAE,GAEvB,2BAA2B,GAC3B,2BAA2B,EAAE,GACjC,WAAW,CAAC,QAAQ,CAAC,SAAS,iBAAiB,GAC7C,iBAAiB,GACjB,WAAW,CAAC,QAAQ,CAAC,SAAS,iBAAiB,EAAE,GAC/C,iBAAiB,EAAE,GACnB,WAAW,CAAC,QAAQ,CAAC,SACf,iBAAiB,GACjB,iBAAiB,EAAE,GACvB,iBAAiB,GAAG,iBAAiB,EAAE,GACvC,WAAW,CAAC,QAAQ,CAAC;CAChD,GAAG,sBAAsB,CAAC;AAE3B,MAAM,MAAM,UAAU,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,CAAC;AAErE,MAAM,MAAM,SAAS,GAAG;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE;QACT,OAAO,EAAE,MAAM,CAAC;QAChB,OAAO,EAAE;YACP,IAAI,EAAE,MAAM,CAAC;YACb,UAAU,EAAE,aAAa,EAAE,CAAC;YAC5B,OAAO,EAAE,MAAM,CAAC;SACjB,CAAC;QACF,QAAQ,EAAE;YACR,IAAI,EAAE,MAAM,CAAC;YACb,WAAW,EAAE,aAAa,EAAE,CAAC;SAC9B,CAAC;KACH,CAAC;IACF,QAAQ,CAAC,EAAE,aAAa,CAAC;IACzB,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB,IAAI,EAAE,OAAO,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,KAAK,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IACnC,MAAM,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IAC1C,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,aAAa,EAAE,CAAC;IACjC,aAAa,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;CAC5C,CAAC;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;EAGlC,CAAC;AAEH,MAAM,MAAM,IAAI,GAAG;IACjB,sBAAsB,EAAE,iBAAiB,CAAC;IAC1C,kBAAkB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC,CAAC;IAChE,mBAAmB,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC,CAAC;CACnE,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;EAUrB,CAAC;AAEH,qBAAa,YAAa,SAAQ,KAAK;IACrC,QAAQ,CAAC,EAAE,oBAAoB,CAAC;IAChC,MAAM,EAAE,MAAM,CAAC;gBAGb,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,MAAM,EACd,QAAQ,CAAC,EAAE,oBAAoB;CAMlC;AAED,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,YAAY,EAAE,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,YAAY,GACpB,2BAA2B,GAC3B,oBAAoB,GACpB,mBAAmB,GACnB,qBAAqB,CAAC;AAE1B,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,EAAE,YAAY,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,yBAAyB,GAAG;IACtC,SAAS,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -89,9 +89,9 @@ export declare const ConnectorDefinitionSchema: z.ZodObject<{
|
|
|
89
89
|
}>, "many">;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
91
|
name: string;
|
|
92
|
+
title: string;
|
|
92
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
|
-
title: string;
|
|
95
95
|
id: string;
|
|
96
96
|
documentationUrl: string;
|
|
97
97
|
icon: string;
|
|
@@ -114,9 +114,9 @@ export declare const ConnectorDefinitionSchema: z.ZodObject<{
|
|
|
114
114
|
}[];
|
|
115
115
|
}, {
|
|
116
116
|
name: string;
|
|
117
|
+
title: string;
|
|
117
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
|
-
title: string;
|
|
120
120
|
id: string;
|
|
121
121
|
documentationUrl: string;
|
|
122
122
|
icon: string;
|
|
@@ -215,10 +215,10 @@ export declare const ComponentDefinitionSchema: z.ZodObject<{
|
|
|
215
215
|
releaseStage: z.ZodString;
|
|
216
216
|
}, "strip", z.ZodTypeAny, {
|
|
217
217
|
name: string;
|
|
218
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
219
|
-
uid: string;
|
|
220
218
|
title: string;
|
|
221
219
|
description: string;
|
|
220
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
221
|
+
uid: string;
|
|
222
222
|
id: string;
|
|
223
223
|
documentationUrl: string;
|
|
224
224
|
icon: string;
|
|
@@ -244,10 +244,10 @@ export declare const ComponentDefinitionSchema: z.ZodObject<{
|
|
|
244
244
|
releaseStage: string;
|
|
245
245
|
}, {
|
|
246
246
|
name: string;
|
|
247
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
248
|
-
uid: string;
|
|
249
247
|
title: string;
|
|
250
248
|
description: string;
|
|
249
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
250
|
+
uid: string;
|
|
251
251
|
id: string;
|
|
252
252
|
documentationUrl: string;
|
|
253
253
|
icon: string;
|
|
@@ -337,9 +337,9 @@ export declare const OperatorDefinitionSchema: z.ZodObject<{
|
|
|
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
339
|
name: string;
|
|
340
|
+
title: string;
|
|
340
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
|
-
title: string;
|
|
343
343
|
id: string;
|
|
344
344
|
documentationUrl: string;
|
|
345
345
|
icon: string;
|
|
@@ -360,9 +360,9 @@ export declare const OperatorDefinitionSchema: z.ZodObject<{
|
|
|
360
360
|
}[];
|
|
361
361
|
}, {
|
|
362
362
|
name: string;
|
|
363
|
+
title: string;
|
|
363
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
|
-
title: string;
|
|
366
366
|
id: string;
|
|
367
367
|
documentationUrl: string;
|
|
368
368
|
icon: string;
|
|
@@ -447,9 +447,9 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
447
447
|
}>, "many">;
|
|
448
448
|
}, "strip", z.ZodTypeAny, {
|
|
449
449
|
name: string;
|
|
450
|
+
title: string;
|
|
450
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
|
-
title: string;
|
|
453
453
|
id: string;
|
|
454
454
|
documentationUrl: string;
|
|
455
455
|
icon: string;
|
|
@@ -472,9 +472,9 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
472
472
|
}[];
|
|
473
473
|
}, {
|
|
474
474
|
name: string;
|
|
475
|
+
title: string;
|
|
475
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
|
-
title: string;
|
|
478
478
|
id: string;
|
|
479
479
|
documentationUrl: string;
|
|
480
480
|
icon: string;
|
|
@@ -501,9 +501,9 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
501
501
|
}, "strip", z.ZodTypeAny, {
|
|
502
502
|
connectorDefinitions: {
|
|
503
503
|
name: string;
|
|
504
|
+
title: string;
|
|
504
505
|
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
505
506
|
uid: string;
|
|
506
|
-
title: string;
|
|
507
507
|
id: string;
|
|
508
508
|
documentationUrl: string;
|
|
509
509
|
icon: string;
|
|
@@ -530,9 +530,9 @@ export declare const listConnectorDefinitionsWithPaginationResponseValidator: z.
|
|
|
530
530
|
}, {
|
|
531
531
|
connectorDefinitions: {
|
|
532
532
|
name: string;
|
|
533
|
+
title: string;
|
|
533
534
|
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
534
535
|
uid: string;
|
|
535
|
-
title: string;
|
|
536
536
|
id: string;
|
|
537
537
|
documentationUrl: string;
|
|
538
538
|
icon: string;
|
|
@@ -628,10 +628,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
628
628
|
releaseStage: z.ZodString;
|
|
629
629
|
}, "strip", z.ZodTypeAny, {
|
|
630
630
|
name: string;
|
|
631
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
632
|
-
uid: string;
|
|
633
631
|
title: string;
|
|
634
632
|
description: string;
|
|
633
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
634
|
+
uid: string;
|
|
635
635
|
id: string;
|
|
636
636
|
documentationUrl: string;
|
|
637
637
|
icon: string;
|
|
@@ -657,10 +657,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
657
657
|
releaseStage: string;
|
|
658
658
|
}, {
|
|
659
659
|
name: string;
|
|
660
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
661
|
-
uid: string;
|
|
662
660
|
title: string;
|
|
663
661
|
description: string;
|
|
662
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
663
|
+
uid: string;
|
|
664
664
|
id: string;
|
|
665
665
|
documentationUrl: string;
|
|
666
666
|
icon: string;
|
|
@@ -692,10 +692,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
692
692
|
totalSize: number;
|
|
693
693
|
componentDefinitions: {
|
|
694
694
|
name: string;
|
|
695
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
696
|
-
uid: string;
|
|
697
695
|
title: string;
|
|
698
696
|
description: string;
|
|
697
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
698
|
+
uid: string;
|
|
699
699
|
id: string;
|
|
700
700
|
documentationUrl: string;
|
|
701
701
|
icon: string;
|
|
@@ -725,10 +725,10 @@ export declare const listComponentDefinitionsWithPaginationResponseValidator: z.
|
|
|
725
725
|
totalSize: number;
|
|
726
726
|
componentDefinitions: {
|
|
727
727
|
name: string;
|
|
728
|
-
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
729
|
-
uid: string;
|
|
730
728
|
title: string;
|
|
731
729
|
description: string;
|
|
730
|
+
type: "COMPONENT_TYPE_UNSPECIFIED" | "COMPONENT_TYPE_OPERATOR" | "COMPONENT_TYPE_DATA" | "COMPONENT_TYPE_AI" | "COMPONENT_TYPE_APPLICATION" | "COMPONENT_TYPE_GENERIC";
|
|
731
|
+
uid: string;
|
|
732
732
|
id: string;
|
|
733
733
|
documentationUrl: string;
|
|
734
734
|
icon: string;
|
|
@@ -814,9 +814,9 @@ export declare const getConnectorDefinitionResponseValidator: z.ZodObject<{
|
|
|
814
814
|
}>, "many">;
|
|
815
815
|
}, "strip", z.ZodTypeAny, {
|
|
816
816
|
name: string;
|
|
817
|
+
title: string;
|
|
817
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
|
-
title: string;
|
|
820
820
|
id: string;
|
|
821
821
|
documentationUrl: string;
|
|
822
822
|
icon: string;
|
|
@@ -839,9 +839,9 @@ export declare const getConnectorDefinitionResponseValidator: z.ZodObject<{
|
|
|
839
839
|
}[];
|
|
840
840
|
}, {
|
|
841
841
|
name: string;
|
|
842
|
+
title: string;
|
|
842
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
|
-
title: string;
|
|
845
845
|
id: string;
|
|
846
846
|
documentationUrl: string;
|
|
847
847
|
icon: string;
|
|
@@ -926,9 +926,9 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
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
928
|
name: string;
|
|
929
|
+
title: string;
|
|
929
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
|
-
title: string;
|
|
932
932
|
id: string;
|
|
933
933
|
documentationUrl: string;
|
|
934
934
|
icon: string;
|
|
@@ -949,9 +949,9 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
949
949
|
}[];
|
|
950
950
|
}, {
|
|
951
951
|
name: string;
|
|
952
|
+
title: string;
|
|
952
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
|
-
title: string;
|
|
955
955
|
id: string;
|
|
956
956
|
documentationUrl: string;
|
|
957
957
|
icon: string;
|
|
@@ -978,9 +978,9 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
978
978
|
totalSize: number;
|
|
979
979
|
operatorDefinitions: {
|
|
980
980
|
name: string;
|
|
981
|
+
title: string;
|
|
981
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
|
-
title: string;
|
|
984
984
|
id: string;
|
|
985
985
|
documentationUrl: string;
|
|
986
986
|
icon: string;
|
|
@@ -1005,9 +1005,9 @@ export declare const listOperatorDefinitionsWithPaginationResponseValidator: z.Z
|
|
|
1005
1005
|
totalSize: number;
|
|
1006
1006
|
operatorDefinitions: {
|
|
1007
1007
|
name: string;
|
|
1008
|
+
title: string;
|
|
1008
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
|
-
title: string;
|
|
1011
1011
|
id: string;
|
|
1012
1012
|
documentationUrl: string;
|
|
1013
1013
|
icon: string;
|
|
@@ -1086,9 +1086,9 @@ export declare const getOperatorDefinitionResponseValidator: z.ZodObject<{
|
|
|
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
1088
|
name: string;
|
|
1089
|
+
title: string;
|
|
1089
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
|
-
title: string;
|
|
1092
1092
|
id: string;
|
|
1093
1093
|
documentationUrl: string;
|
|
1094
1094
|
icon: string;
|
|
@@ -1109,9 +1109,9 @@ export declare const getOperatorDefinitionResponseValidator: z.ZodObject<{
|
|
|
1109
1109
|
}[];
|
|
1110
1110
|
}, {
|
|
1111
1111
|
name: string;
|
|
1112
|
+
title: string;
|
|
1112
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
|
-
title: string;
|
|
1115
1115
|
id: string;
|
|
1116
1116
|
documentationUrl: string;
|
|
1117
1117
|
icon: string;
|