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
|
@@ -218,9 +218,9 @@ export declare const PipelineSchema: 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 PipelineSchema: 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;
|
|
@@ -256,9 +256,9 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
256
256
|
user: {
|
|
257
257
|
name: string;
|
|
258
258
|
uid: string;
|
|
259
|
+
id: string;
|
|
259
260
|
createTime: string;
|
|
260
261
|
updateTime: string;
|
|
261
|
-
id: string;
|
|
262
262
|
profile?: {
|
|
263
263
|
displayName?: string | undefined;
|
|
264
264
|
bio?: string | undefined;
|
|
@@ -276,9 +276,9 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
276
276
|
user: {
|
|
277
277
|
name: string;
|
|
278
278
|
uid: string;
|
|
279
|
+
id: string;
|
|
279
280
|
createTime: string;
|
|
280
281
|
updateTime: string;
|
|
281
|
-
id: string;
|
|
282
282
|
profile?: {
|
|
283
283
|
displayName?: string | undefined;
|
|
284
284
|
bio?: string | undefined;
|
|
@@ -350,9 +350,9 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
350
350
|
}, "strip", z.ZodTypeAny, {
|
|
351
351
|
name: string;
|
|
352
352
|
uid: string;
|
|
353
|
+
id: string;
|
|
353
354
|
createTime: string;
|
|
354
355
|
updateTime: string;
|
|
355
|
-
id: string;
|
|
356
356
|
profile?: {
|
|
357
357
|
displayName?: string | undefined;
|
|
358
358
|
bio?: string | undefined;
|
|
@@ -368,9 +368,9 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
368
368
|
}, {
|
|
369
369
|
name: string;
|
|
370
370
|
uid: string;
|
|
371
|
+
id: string;
|
|
371
372
|
createTime: string;
|
|
372
373
|
updateTime: string;
|
|
373
|
-
id: string;
|
|
374
374
|
profile?: {
|
|
375
375
|
displayName?: string | undefined;
|
|
376
376
|
bio?: string | undefined;
|
|
@@ -424,17 +424,12 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
424
424
|
} | undefined;
|
|
425
425
|
}>>;
|
|
426
426
|
}, "strip", z.ZodTypeAny, {
|
|
427
|
-
name: string;
|
|
428
|
-
uid: string;
|
|
429
|
-
createTime: string;
|
|
430
|
-
updateTime: string;
|
|
431
|
-
id: string;
|
|
432
427
|
owner: {
|
|
433
428
|
name: string;
|
|
434
429
|
uid: string;
|
|
430
|
+
id: string;
|
|
435
431
|
createTime: string;
|
|
436
432
|
updateTime: string;
|
|
437
|
-
id: string;
|
|
438
433
|
profile?: {
|
|
439
434
|
displayName?: string | undefined;
|
|
440
435
|
bio?: string | undefined;
|
|
@@ -448,6 +443,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
448
443
|
} | undefined;
|
|
449
444
|
} | undefined;
|
|
450
445
|
};
|
|
446
|
+
name: string;
|
|
447
|
+
uid: string;
|
|
448
|
+
id: string;
|
|
449
|
+
createTime: string;
|
|
450
|
+
updateTime: string;
|
|
451
451
|
profile?: {
|
|
452
452
|
displayName?: string | undefined;
|
|
453
453
|
bio?: string | undefined;
|
|
@@ -460,17 +460,12 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
460
460
|
} | undefined;
|
|
461
461
|
} | undefined;
|
|
462
462
|
}, {
|
|
463
|
-
name: string;
|
|
464
|
-
uid: string;
|
|
465
|
-
createTime: string;
|
|
466
|
-
updateTime: string;
|
|
467
|
-
id: string;
|
|
468
463
|
owner: {
|
|
469
464
|
name: string;
|
|
470
465
|
uid: string;
|
|
466
|
+
id: string;
|
|
471
467
|
createTime: string;
|
|
472
468
|
updateTime: string;
|
|
473
|
-
id: string;
|
|
474
469
|
profile?: {
|
|
475
470
|
displayName?: string | undefined;
|
|
476
471
|
bio?: string | undefined;
|
|
@@ -484,6 +479,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
484
479
|
} | undefined;
|
|
485
480
|
} | undefined;
|
|
486
481
|
};
|
|
482
|
+
name: string;
|
|
483
|
+
uid: string;
|
|
484
|
+
id: string;
|
|
485
|
+
createTime: string;
|
|
486
|
+
updateTime: string;
|
|
487
487
|
profile?: {
|
|
488
488
|
displayName?: string | undefined;
|
|
489
489
|
bio?: string | undefined;
|
|
@@ -498,17 +498,12 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
498
498
|
}>;
|
|
499
499
|
}, "strip", z.ZodTypeAny, {
|
|
500
500
|
organization: {
|
|
501
|
-
name: string;
|
|
502
|
-
uid: string;
|
|
503
|
-
createTime: string;
|
|
504
|
-
updateTime: string;
|
|
505
|
-
id: string;
|
|
506
501
|
owner: {
|
|
507
502
|
name: string;
|
|
508
503
|
uid: string;
|
|
504
|
+
id: string;
|
|
509
505
|
createTime: string;
|
|
510
506
|
updateTime: string;
|
|
511
|
-
id: string;
|
|
512
507
|
profile?: {
|
|
513
508
|
displayName?: string | undefined;
|
|
514
509
|
bio?: string | undefined;
|
|
@@ -522,6 +517,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
522
517
|
} | undefined;
|
|
523
518
|
} | undefined;
|
|
524
519
|
};
|
|
520
|
+
name: string;
|
|
521
|
+
uid: string;
|
|
522
|
+
id: string;
|
|
523
|
+
createTime: string;
|
|
524
|
+
updateTime: string;
|
|
525
525
|
profile?: {
|
|
526
526
|
displayName?: string | undefined;
|
|
527
527
|
bio?: string | undefined;
|
|
@@ -536,17 +536,12 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
536
536
|
};
|
|
537
537
|
}, {
|
|
538
538
|
organization: {
|
|
539
|
-
name: string;
|
|
540
|
-
uid: string;
|
|
541
|
-
createTime: string;
|
|
542
|
-
updateTime: string;
|
|
543
|
-
id: string;
|
|
544
539
|
owner: {
|
|
545
540
|
name: string;
|
|
546
541
|
uid: string;
|
|
542
|
+
id: string;
|
|
547
543
|
createTime: string;
|
|
548
544
|
updateTime: string;
|
|
549
|
-
id: string;
|
|
550
545
|
profile?: {
|
|
551
546
|
displayName?: string | undefined;
|
|
552
547
|
bio?: string | undefined;
|
|
@@ -560,6 +555,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
560
555
|
} | undefined;
|
|
561
556
|
} | undefined;
|
|
562
557
|
};
|
|
558
|
+
name: string;
|
|
559
|
+
uid: string;
|
|
560
|
+
id: string;
|
|
561
|
+
createTime: string;
|
|
562
|
+
updateTime: string;
|
|
563
563
|
profile?: {
|
|
564
564
|
displayName?: string | undefined;
|
|
565
565
|
bio?: string | undefined;
|
|
@@ -599,13 +599,13 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
599
599
|
}>;
|
|
600
600
|
}, "strip", z.ZodTypeAny, {
|
|
601
601
|
name: string;
|
|
602
|
-
metadata: Record<string, any>;
|
|
603
|
-
uid: string;
|
|
604
|
-
createTime: string;
|
|
605
|
-
updateTime: string;
|
|
606
602
|
description: string;
|
|
603
|
+
uid: string;
|
|
607
604
|
id: string;
|
|
608
605
|
recipe: Record<string, any>;
|
|
606
|
+
createTime: string;
|
|
607
|
+
updateTime: string;
|
|
608
|
+
metadata: Record<string, any>;
|
|
609
609
|
readme: string;
|
|
610
610
|
rawRecipe: string;
|
|
611
611
|
dataSpecification: {
|
|
@@ -616,13 +616,13 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
616
616
|
alias?: string | undefined;
|
|
617
617
|
}, {
|
|
618
618
|
name: string;
|
|
619
|
-
metadata: Record<string, any>;
|
|
620
|
-
uid: string;
|
|
621
|
-
createTime: string;
|
|
622
|
-
updateTime: string;
|
|
623
619
|
description: string;
|
|
620
|
+
uid: string;
|
|
624
621
|
id: string;
|
|
625
622
|
recipe: Record<string, any>;
|
|
623
|
+
createTime: string;
|
|
624
|
+
updateTime: string;
|
|
625
|
+
metadata: Record<string, any>;
|
|
626
626
|
readme: string;
|
|
627
627
|
rawRecipe: string;
|
|
628
628
|
dataSpecification: {
|
|
@@ -709,22 +709,13 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
709
709
|
documentationUrl: z.ZodString;
|
|
710
710
|
license: z.ZodString;
|
|
711
711
|
}, "strip", z.ZodTypeAny, {
|
|
712
|
-
name: string;
|
|
713
|
-
metadata: Record<string, any>;
|
|
714
|
-
uid: string;
|
|
715
|
-
createTime: string;
|
|
716
|
-
updateTime: string;
|
|
717
|
-
description: string;
|
|
718
|
-
id: string;
|
|
719
|
-
documentationUrl: string;
|
|
720
|
-
sourceUrl: string;
|
|
721
712
|
owner: {
|
|
722
713
|
user: {
|
|
723
714
|
name: string;
|
|
724
715
|
uid: string;
|
|
716
|
+
id: string;
|
|
725
717
|
createTime: string;
|
|
726
718
|
updateTime: string;
|
|
727
|
-
id: string;
|
|
728
719
|
profile?: {
|
|
729
720
|
displayName?: string | undefined;
|
|
730
721
|
bio?: string | undefined;
|
|
@@ -740,17 +731,12 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
740
731
|
};
|
|
741
732
|
} | {
|
|
742
733
|
organization: {
|
|
743
|
-
name: string;
|
|
744
|
-
uid: string;
|
|
745
|
-
createTime: string;
|
|
746
|
-
updateTime: string;
|
|
747
|
-
id: string;
|
|
748
734
|
owner: {
|
|
749
735
|
name: string;
|
|
750
736
|
uid: string;
|
|
737
|
+
id: string;
|
|
751
738
|
createTime: string;
|
|
752
739
|
updateTime: string;
|
|
753
|
-
id: string;
|
|
754
740
|
profile?: {
|
|
755
741
|
displayName?: string | undefined;
|
|
756
742
|
bio?: string | undefined;
|
|
@@ -764,6 +750,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
764
750
|
} | undefined;
|
|
765
751
|
} | undefined;
|
|
766
752
|
};
|
|
753
|
+
name: string;
|
|
754
|
+
uid: string;
|
|
755
|
+
id: string;
|
|
756
|
+
createTime: string;
|
|
757
|
+
updateTime: string;
|
|
767
758
|
profile?: {
|
|
768
759
|
displayName?: string | undefined;
|
|
769
760
|
bio?: string | undefined;
|
|
@@ -777,7 +768,16 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
777
768
|
} | undefined;
|
|
778
769
|
};
|
|
779
770
|
};
|
|
771
|
+
name: string;
|
|
772
|
+
description: string;
|
|
773
|
+
uid: string;
|
|
774
|
+
id: string;
|
|
775
|
+
documentationUrl: string;
|
|
776
|
+
sourceUrl: string;
|
|
780
777
|
recipe: Record<string, any>;
|
|
778
|
+
createTime: string;
|
|
779
|
+
updateTime: string;
|
|
780
|
+
metadata: Record<string, any>;
|
|
781
781
|
readme: string;
|
|
782
782
|
dataSpecification: {
|
|
783
783
|
input?: any;
|
|
@@ -798,13 +798,13 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
798
798
|
ownerName: string;
|
|
799
799
|
releases: {
|
|
800
800
|
name: string;
|
|
801
|
-
metadata: Record<string, any>;
|
|
802
|
-
uid: string;
|
|
803
|
-
createTime: string;
|
|
804
|
-
updateTime: string;
|
|
805
801
|
description: string;
|
|
802
|
+
uid: string;
|
|
806
803
|
id: string;
|
|
807
804
|
recipe: Record<string, any>;
|
|
805
|
+
createTime: string;
|
|
806
|
+
updateTime: string;
|
|
807
|
+
metadata: Record<string, any>;
|
|
808
808
|
readme: string;
|
|
809
809
|
rawRecipe: string;
|
|
810
810
|
dataSpecification: {
|
|
@@ -826,22 +826,13 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
826
826
|
profileImage: string;
|
|
827
827
|
license: string;
|
|
828
828
|
}, {
|
|
829
|
-
name: string;
|
|
830
|
-
metadata: Record<string, any>;
|
|
831
|
-
uid: string;
|
|
832
|
-
createTime: string;
|
|
833
|
-
updateTime: string;
|
|
834
|
-
description: string;
|
|
835
|
-
id: string;
|
|
836
|
-
documentationUrl: string;
|
|
837
|
-
sourceUrl: string;
|
|
838
829
|
owner: {
|
|
839
830
|
user: {
|
|
840
831
|
name: string;
|
|
841
832
|
uid: string;
|
|
833
|
+
id: string;
|
|
842
834
|
createTime: string;
|
|
843
835
|
updateTime: string;
|
|
844
|
-
id: string;
|
|
845
836
|
profile?: {
|
|
846
837
|
displayName?: string | undefined;
|
|
847
838
|
bio?: string | undefined;
|
|
@@ -857,17 +848,12 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
857
848
|
};
|
|
858
849
|
} | {
|
|
859
850
|
organization: {
|
|
860
|
-
name: string;
|
|
861
|
-
uid: string;
|
|
862
|
-
createTime: string;
|
|
863
|
-
updateTime: string;
|
|
864
|
-
id: string;
|
|
865
851
|
owner: {
|
|
866
852
|
name: string;
|
|
867
853
|
uid: string;
|
|
854
|
+
id: string;
|
|
868
855
|
createTime: string;
|
|
869
856
|
updateTime: string;
|
|
870
|
-
id: string;
|
|
871
857
|
profile?: {
|
|
872
858
|
displayName?: string | undefined;
|
|
873
859
|
bio?: string | undefined;
|
|
@@ -881,6 +867,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
881
867
|
} | undefined;
|
|
882
868
|
} | undefined;
|
|
883
869
|
};
|
|
870
|
+
name: string;
|
|
871
|
+
uid: string;
|
|
872
|
+
id: string;
|
|
873
|
+
createTime: string;
|
|
874
|
+
updateTime: string;
|
|
884
875
|
profile?: {
|
|
885
876
|
displayName?: string | undefined;
|
|
886
877
|
bio?: string | undefined;
|
|
@@ -894,7 +885,16 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
894
885
|
} | undefined;
|
|
895
886
|
};
|
|
896
887
|
};
|
|
888
|
+
name: string;
|
|
889
|
+
description: string;
|
|
890
|
+
uid: string;
|
|
891
|
+
id: string;
|
|
892
|
+
documentationUrl: string;
|
|
893
|
+
sourceUrl: string;
|
|
897
894
|
recipe: Record<string, any>;
|
|
895
|
+
createTime: string;
|
|
896
|
+
updateTime: string;
|
|
897
|
+
metadata: Record<string, any>;
|
|
898
898
|
readme: string;
|
|
899
899
|
dataSpecification: {
|
|
900
900
|
input?: any;
|
|
@@ -915,13 +915,13 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
915
915
|
ownerName: string;
|
|
916
916
|
releases: {
|
|
917
917
|
name: string;
|
|
918
|
-
metadata: Record<string, any>;
|
|
919
|
-
uid: string;
|
|
920
|
-
createTime: string;
|
|
921
|
-
updateTime: string;
|
|
922
918
|
description: string;
|
|
919
|
+
uid: string;
|
|
923
920
|
id: string;
|
|
924
921
|
recipe: Record<string, any>;
|
|
922
|
+
createTime: string;
|
|
923
|
+
updateTime: string;
|
|
924
|
+
metadata: Record<string, any>;
|
|
925
925
|
readme: string;
|
|
926
926
|
rawRecipe: string;
|
|
927
927
|
dataSpecification: {
|
|
@@ -1048,9 +1048,9 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1048
1048
|
}, "strip", z.ZodTypeAny, {
|
|
1049
1049
|
name: string;
|
|
1050
1050
|
uid: string;
|
|
1051
|
+
id: string;
|
|
1051
1052
|
createTime: string;
|
|
1052
1053
|
updateTime: string;
|
|
1053
|
-
id: string;
|
|
1054
1054
|
profile?: {
|
|
1055
1055
|
displayName?: string | undefined;
|
|
1056
1056
|
bio?: string | undefined;
|
|
@@ -1066,9 +1066,9 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1066
1066
|
}, {
|
|
1067
1067
|
name: string;
|
|
1068
1068
|
uid: string;
|
|
1069
|
+
id: string;
|
|
1069
1070
|
createTime: string;
|
|
1070
1071
|
updateTime: string;
|
|
1071
|
-
id: string;
|
|
1072
1072
|
profile?: {
|
|
1073
1073
|
displayName?: string | undefined;
|
|
1074
1074
|
bio?: string | undefined;
|
|
@@ -1086,9 +1086,9 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1086
1086
|
user: {
|
|
1087
1087
|
name: string;
|
|
1088
1088
|
uid: string;
|
|
1089
|
+
id: string;
|
|
1089
1090
|
createTime: string;
|
|
1090
1091
|
updateTime: string;
|
|
1091
|
-
id: string;
|
|
1092
1092
|
profile?: {
|
|
1093
1093
|
displayName?: string | undefined;
|
|
1094
1094
|
bio?: string | undefined;
|
|
@@ -1106,9 +1106,9 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1106
1106
|
user: {
|
|
1107
1107
|
name: string;
|
|
1108
1108
|
uid: string;
|
|
1109
|
+
id: string;
|
|
1109
1110
|
createTime: string;
|
|
1110
1111
|
updateTime: string;
|
|
1111
|
-
id: string;
|
|
1112
1112
|
profile?: {
|
|
1113
1113
|
displayName?: string | undefined;
|
|
1114
1114
|
bio?: string | undefined;
|
|
@@ -1180,9 +1180,9 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1180
1180
|
}, "strip", z.ZodTypeAny, {
|
|
1181
1181
|
name: string;
|
|
1182
1182
|
uid: string;
|
|
1183
|
+
id: string;
|
|
1183
1184
|
createTime: string;
|
|
1184
1185
|
updateTime: string;
|
|
1185
|
-
id: string;
|
|
1186
1186
|
profile?: {
|
|
1187
1187
|
displayName?: string | undefined;
|
|
1188
1188
|
bio?: string | undefined;
|
|
@@ -1198,9 +1198,9 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1198
1198
|
}, {
|
|
1199
1199
|
name: string;
|
|
1200
1200
|
uid: string;
|
|
1201
|
+
id: string;
|
|
1201
1202
|
createTime: string;
|
|
1202
1203
|
updateTime: string;
|
|
1203
|
-
id: string;
|
|
1204
1204
|
profile?: {
|
|
1205
1205
|
displayName?: string | undefined;
|
|
1206
1206
|
bio?: string | undefined;
|
|
@@ -1254,17 +1254,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1254
1254
|
} | undefined;
|
|
1255
1255
|
}>>;
|
|
1256
1256
|
}, "strip", z.ZodTypeAny, {
|
|
1257
|
-
name: string;
|
|
1258
|
-
uid: string;
|
|
1259
|
-
createTime: string;
|
|
1260
|
-
updateTime: string;
|
|
1261
|
-
id: string;
|
|
1262
1257
|
owner: {
|
|
1263
1258
|
name: string;
|
|
1264
1259
|
uid: string;
|
|
1260
|
+
id: string;
|
|
1265
1261
|
createTime: string;
|
|
1266
1262
|
updateTime: string;
|
|
1267
|
-
id: string;
|
|
1268
1263
|
profile?: {
|
|
1269
1264
|
displayName?: string | undefined;
|
|
1270
1265
|
bio?: string | undefined;
|
|
@@ -1278,6 +1273,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1278
1273
|
} | undefined;
|
|
1279
1274
|
} | undefined;
|
|
1280
1275
|
};
|
|
1276
|
+
name: string;
|
|
1277
|
+
uid: string;
|
|
1278
|
+
id: string;
|
|
1279
|
+
createTime: string;
|
|
1280
|
+
updateTime: string;
|
|
1281
1281
|
profile?: {
|
|
1282
1282
|
displayName?: string | undefined;
|
|
1283
1283
|
bio?: string | undefined;
|
|
@@ -1290,17 +1290,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1290
1290
|
} | undefined;
|
|
1291
1291
|
} | undefined;
|
|
1292
1292
|
}, {
|
|
1293
|
-
name: string;
|
|
1294
|
-
uid: string;
|
|
1295
|
-
createTime: string;
|
|
1296
|
-
updateTime: string;
|
|
1297
|
-
id: string;
|
|
1298
1293
|
owner: {
|
|
1299
1294
|
name: string;
|
|
1300
1295
|
uid: string;
|
|
1296
|
+
id: string;
|
|
1301
1297
|
createTime: string;
|
|
1302
1298
|
updateTime: string;
|
|
1303
|
-
id: string;
|
|
1304
1299
|
profile?: {
|
|
1305
1300
|
displayName?: string | undefined;
|
|
1306
1301
|
bio?: string | undefined;
|
|
@@ -1314,6 +1309,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1314
1309
|
} | undefined;
|
|
1315
1310
|
} | undefined;
|
|
1316
1311
|
};
|
|
1312
|
+
name: string;
|
|
1313
|
+
uid: string;
|
|
1314
|
+
id: string;
|
|
1315
|
+
createTime: string;
|
|
1316
|
+
updateTime: string;
|
|
1317
1317
|
profile?: {
|
|
1318
1318
|
displayName?: string | undefined;
|
|
1319
1319
|
bio?: string | undefined;
|
|
@@ -1328,17 +1328,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1328
1328
|
}>;
|
|
1329
1329
|
}, "strip", z.ZodTypeAny, {
|
|
1330
1330
|
organization: {
|
|
1331
|
-
name: string;
|
|
1332
|
-
uid: string;
|
|
1333
|
-
createTime: string;
|
|
1334
|
-
updateTime: string;
|
|
1335
|
-
id: string;
|
|
1336
1331
|
owner: {
|
|
1337
1332
|
name: string;
|
|
1338
1333
|
uid: string;
|
|
1334
|
+
id: string;
|
|
1339
1335
|
createTime: string;
|
|
1340
1336
|
updateTime: string;
|
|
1341
|
-
id: string;
|
|
1342
1337
|
profile?: {
|
|
1343
1338
|
displayName?: string | undefined;
|
|
1344
1339
|
bio?: string | undefined;
|
|
@@ -1352,6 +1347,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1352
1347
|
} | undefined;
|
|
1353
1348
|
} | undefined;
|
|
1354
1349
|
};
|
|
1350
|
+
name: string;
|
|
1351
|
+
uid: string;
|
|
1352
|
+
id: string;
|
|
1353
|
+
createTime: string;
|
|
1354
|
+
updateTime: string;
|
|
1355
1355
|
profile?: {
|
|
1356
1356
|
displayName?: string | undefined;
|
|
1357
1357
|
bio?: string | undefined;
|
|
@@ -1366,17 +1366,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1366
1366
|
};
|
|
1367
1367
|
}, {
|
|
1368
1368
|
organization: {
|
|
1369
|
-
name: string;
|
|
1370
|
-
uid: string;
|
|
1371
|
-
createTime: string;
|
|
1372
|
-
updateTime: string;
|
|
1373
|
-
id: string;
|
|
1374
1369
|
owner: {
|
|
1375
1370
|
name: string;
|
|
1376
1371
|
uid: string;
|
|
1372
|
+
id: string;
|
|
1377
1373
|
createTime: string;
|
|
1378
1374
|
updateTime: string;
|
|
1379
|
-
id: string;
|
|
1380
1375
|
profile?: {
|
|
1381
1376
|
displayName?: string | undefined;
|
|
1382
1377
|
bio?: string | undefined;
|
|
@@ -1390,6 +1385,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1390
1385
|
} | undefined;
|
|
1391
1386
|
} | undefined;
|
|
1392
1387
|
};
|
|
1388
|
+
name: string;
|
|
1389
|
+
uid: string;
|
|
1390
|
+
id: string;
|
|
1391
|
+
createTime: string;
|
|
1392
|
+
updateTime: string;
|
|
1393
1393
|
profile?: {
|
|
1394
1394
|
displayName?: string | undefined;
|
|
1395
1395
|
bio?: string | undefined;
|
|
@@ -1429,13 +1429,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1429
1429
|
}>;
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
1431
|
name: string;
|
|
1432
|
-
metadata: Record<string, any>;
|
|
1433
|
-
uid: string;
|
|
1434
|
-
createTime: string;
|
|
1435
|
-
updateTime: string;
|
|
1436
1432
|
description: string;
|
|
1433
|
+
uid: string;
|
|
1437
1434
|
id: string;
|
|
1438
1435
|
recipe: Record<string, any>;
|
|
1436
|
+
createTime: string;
|
|
1437
|
+
updateTime: string;
|
|
1438
|
+
metadata: Record<string, any>;
|
|
1439
1439
|
readme: string;
|
|
1440
1440
|
rawRecipe: string;
|
|
1441
1441
|
dataSpecification: {
|
|
@@ -1446,13 +1446,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1446
1446
|
alias?: string | undefined;
|
|
1447
1447
|
}, {
|
|
1448
1448
|
name: string;
|
|
1449
|
-
metadata: Record<string, any>;
|
|
1450
|
-
uid: string;
|
|
1451
|
-
createTime: string;
|
|
1452
|
-
updateTime: string;
|
|
1453
1449
|
description: string;
|
|
1450
|
+
uid: string;
|
|
1454
1451
|
id: string;
|
|
1455
1452
|
recipe: Record<string, any>;
|
|
1453
|
+
createTime: string;
|
|
1454
|
+
updateTime: string;
|
|
1455
|
+
metadata: Record<string, any>;
|
|
1456
1456
|
readme: string;
|
|
1457
1457
|
rawRecipe: string;
|
|
1458
1458
|
dataSpecification: {
|
|
@@ -1539,22 +1539,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1539
1539
|
documentationUrl: z.ZodString;
|
|
1540
1540
|
license: z.ZodString;
|
|
1541
1541
|
}, "strip", z.ZodTypeAny, {
|
|
1542
|
-
name: string;
|
|
1543
|
-
metadata: Record<string, any>;
|
|
1544
|
-
uid: string;
|
|
1545
|
-
createTime: string;
|
|
1546
|
-
updateTime: string;
|
|
1547
|
-
description: string;
|
|
1548
|
-
id: string;
|
|
1549
|
-
documentationUrl: string;
|
|
1550
|
-
sourceUrl: string;
|
|
1551
1542
|
owner: {
|
|
1552
1543
|
user: {
|
|
1553
1544
|
name: string;
|
|
1554
1545
|
uid: string;
|
|
1546
|
+
id: string;
|
|
1555
1547
|
createTime: string;
|
|
1556
1548
|
updateTime: string;
|
|
1557
|
-
id: string;
|
|
1558
1549
|
profile?: {
|
|
1559
1550
|
displayName?: string | undefined;
|
|
1560
1551
|
bio?: string | undefined;
|
|
@@ -1570,17 +1561,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1570
1561
|
};
|
|
1571
1562
|
} | {
|
|
1572
1563
|
organization: {
|
|
1573
|
-
name: string;
|
|
1574
|
-
uid: string;
|
|
1575
|
-
createTime: string;
|
|
1576
|
-
updateTime: string;
|
|
1577
|
-
id: string;
|
|
1578
1564
|
owner: {
|
|
1579
1565
|
name: string;
|
|
1580
1566
|
uid: string;
|
|
1567
|
+
id: string;
|
|
1581
1568
|
createTime: string;
|
|
1582
1569
|
updateTime: string;
|
|
1583
|
-
id: string;
|
|
1584
1570
|
profile?: {
|
|
1585
1571
|
displayName?: string | undefined;
|
|
1586
1572
|
bio?: string | undefined;
|
|
@@ -1594,6 +1580,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1594
1580
|
} | undefined;
|
|
1595
1581
|
} | undefined;
|
|
1596
1582
|
};
|
|
1583
|
+
name: string;
|
|
1584
|
+
uid: string;
|
|
1585
|
+
id: string;
|
|
1586
|
+
createTime: string;
|
|
1587
|
+
updateTime: string;
|
|
1597
1588
|
profile?: {
|
|
1598
1589
|
displayName?: string | undefined;
|
|
1599
1590
|
bio?: string | undefined;
|
|
@@ -1607,7 +1598,16 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1607
1598
|
} | undefined;
|
|
1608
1599
|
};
|
|
1609
1600
|
};
|
|
1610
|
-
|
|
1601
|
+
name: string;
|
|
1602
|
+
description: string;
|
|
1603
|
+
uid: string;
|
|
1604
|
+
id: string;
|
|
1605
|
+
documentationUrl: string;
|
|
1606
|
+
sourceUrl: string;
|
|
1607
|
+
recipe: Record<string, any>;
|
|
1608
|
+
createTime: string;
|
|
1609
|
+
updateTime: string;
|
|
1610
|
+
metadata: Record<string, any>;
|
|
1611
1611
|
readme: string;
|
|
1612
1612
|
dataSpecification: {
|
|
1613
1613
|
input?: any;
|
|
@@ -1628,13 +1628,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1628
1628
|
ownerName: string;
|
|
1629
1629
|
releases: {
|
|
1630
1630
|
name: string;
|
|
1631
|
-
metadata: Record<string, any>;
|
|
1632
|
-
uid: string;
|
|
1633
|
-
createTime: string;
|
|
1634
|
-
updateTime: string;
|
|
1635
1631
|
description: string;
|
|
1632
|
+
uid: string;
|
|
1636
1633
|
id: string;
|
|
1637
1634
|
recipe: Record<string, any>;
|
|
1635
|
+
createTime: string;
|
|
1636
|
+
updateTime: string;
|
|
1637
|
+
metadata: Record<string, any>;
|
|
1638
1638
|
readme: string;
|
|
1639
1639
|
rawRecipe: string;
|
|
1640
1640
|
dataSpecification: {
|
|
@@ -1656,22 +1656,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1656
1656
|
profileImage: string;
|
|
1657
1657
|
license: string;
|
|
1658
1658
|
}, {
|
|
1659
|
-
name: string;
|
|
1660
|
-
metadata: Record<string, any>;
|
|
1661
|
-
uid: string;
|
|
1662
|
-
createTime: string;
|
|
1663
|
-
updateTime: string;
|
|
1664
|
-
description: string;
|
|
1665
|
-
id: string;
|
|
1666
|
-
documentationUrl: string;
|
|
1667
|
-
sourceUrl: string;
|
|
1668
1659
|
owner: {
|
|
1669
1660
|
user: {
|
|
1670
1661
|
name: string;
|
|
1671
1662
|
uid: string;
|
|
1663
|
+
id: string;
|
|
1672
1664
|
createTime: string;
|
|
1673
1665
|
updateTime: string;
|
|
1674
|
-
id: string;
|
|
1675
1666
|
profile?: {
|
|
1676
1667
|
displayName?: string | undefined;
|
|
1677
1668
|
bio?: string | undefined;
|
|
@@ -1687,17 +1678,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1687
1678
|
};
|
|
1688
1679
|
} | {
|
|
1689
1680
|
organization: {
|
|
1690
|
-
name: string;
|
|
1691
|
-
uid: string;
|
|
1692
|
-
createTime: string;
|
|
1693
|
-
updateTime: string;
|
|
1694
|
-
id: string;
|
|
1695
1681
|
owner: {
|
|
1696
1682
|
name: string;
|
|
1697
1683
|
uid: string;
|
|
1684
|
+
id: string;
|
|
1698
1685
|
createTime: string;
|
|
1699
1686
|
updateTime: string;
|
|
1700
|
-
id: string;
|
|
1701
1687
|
profile?: {
|
|
1702
1688
|
displayName?: string | undefined;
|
|
1703
1689
|
bio?: string | undefined;
|
|
@@ -1711,6 +1697,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1711
1697
|
} | undefined;
|
|
1712
1698
|
} | undefined;
|
|
1713
1699
|
};
|
|
1700
|
+
name: string;
|
|
1701
|
+
uid: string;
|
|
1702
|
+
id: string;
|
|
1703
|
+
createTime: string;
|
|
1704
|
+
updateTime: string;
|
|
1714
1705
|
profile?: {
|
|
1715
1706
|
displayName?: string | undefined;
|
|
1716
1707
|
bio?: string | undefined;
|
|
@@ -1724,7 +1715,16 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1724
1715
|
} | undefined;
|
|
1725
1716
|
};
|
|
1726
1717
|
};
|
|
1718
|
+
name: string;
|
|
1719
|
+
description: string;
|
|
1720
|
+
uid: string;
|
|
1721
|
+
id: string;
|
|
1722
|
+
documentationUrl: string;
|
|
1723
|
+
sourceUrl: string;
|
|
1727
1724
|
recipe: Record<string, any>;
|
|
1725
|
+
createTime: string;
|
|
1726
|
+
updateTime: string;
|
|
1727
|
+
metadata: Record<string, any>;
|
|
1728
1728
|
readme: string;
|
|
1729
1729
|
dataSpecification: {
|
|
1730
1730
|
input?: any;
|
|
@@ -1745,13 +1745,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1745
1745
|
ownerName: string;
|
|
1746
1746
|
releases: {
|
|
1747
1747
|
name: string;
|
|
1748
|
-
metadata: Record<string, any>;
|
|
1749
|
-
uid: string;
|
|
1750
|
-
createTime: string;
|
|
1751
|
-
updateTime: string;
|
|
1752
1748
|
description: string;
|
|
1749
|
+
uid: string;
|
|
1753
1750
|
id: string;
|
|
1754
1751
|
recipe: Record<string, any>;
|
|
1752
|
+
createTime: string;
|
|
1753
|
+
updateTime: string;
|
|
1754
|
+
metadata: Record<string, any>;
|
|
1755
1755
|
readme: string;
|
|
1756
1756
|
rawRecipe: string;
|
|
1757
1757
|
dataSpecification: {
|
|
@@ -1779,22 +1779,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1779
1779
|
nextPageToken: string;
|
|
1780
1780
|
totalSize: number;
|
|
1781
1781
|
pipelines: {
|
|
1782
|
-
name: string;
|
|
1783
|
-
metadata: Record<string, any>;
|
|
1784
|
-
uid: string;
|
|
1785
|
-
createTime: string;
|
|
1786
|
-
updateTime: string;
|
|
1787
|
-
description: string;
|
|
1788
|
-
id: string;
|
|
1789
|
-
documentationUrl: string;
|
|
1790
|
-
sourceUrl: string;
|
|
1791
1782
|
owner: {
|
|
1792
1783
|
user: {
|
|
1793
1784
|
name: string;
|
|
1794
1785
|
uid: string;
|
|
1786
|
+
id: string;
|
|
1795
1787
|
createTime: string;
|
|
1796
1788
|
updateTime: string;
|
|
1797
|
-
id: string;
|
|
1798
1789
|
profile?: {
|
|
1799
1790
|
displayName?: string | undefined;
|
|
1800
1791
|
bio?: string | undefined;
|
|
@@ -1810,17 +1801,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1810
1801
|
};
|
|
1811
1802
|
} | {
|
|
1812
1803
|
organization: {
|
|
1813
|
-
name: string;
|
|
1814
|
-
uid: string;
|
|
1815
|
-
createTime: string;
|
|
1816
|
-
updateTime: string;
|
|
1817
|
-
id: string;
|
|
1818
1804
|
owner: {
|
|
1819
1805
|
name: string;
|
|
1820
1806
|
uid: string;
|
|
1807
|
+
id: string;
|
|
1821
1808
|
createTime: string;
|
|
1822
1809
|
updateTime: string;
|
|
1823
|
-
id: string;
|
|
1824
1810
|
profile?: {
|
|
1825
1811
|
displayName?: string | undefined;
|
|
1826
1812
|
bio?: string | undefined;
|
|
@@ -1834,6 +1820,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1834
1820
|
} | undefined;
|
|
1835
1821
|
} | undefined;
|
|
1836
1822
|
};
|
|
1823
|
+
name: string;
|
|
1824
|
+
uid: string;
|
|
1825
|
+
id: string;
|
|
1826
|
+
createTime: string;
|
|
1827
|
+
updateTime: string;
|
|
1837
1828
|
profile?: {
|
|
1838
1829
|
displayName?: string | undefined;
|
|
1839
1830
|
bio?: string | undefined;
|
|
@@ -1847,7 +1838,16 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1847
1838
|
} | undefined;
|
|
1848
1839
|
};
|
|
1849
1840
|
};
|
|
1841
|
+
name: string;
|
|
1842
|
+
description: string;
|
|
1843
|
+
uid: string;
|
|
1844
|
+
id: string;
|
|
1845
|
+
documentationUrl: string;
|
|
1846
|
+
sourceUrl: string;
|
|
1850
1847
|
recipe: Record<string, any>;
|
|
1848
|
+
createTime: string;
|
|
1849
|
+
updateTime: string;
|
|
1850
|
+
metadata: Record<string, any>;
|
|
1851
1851
|
readme: string;
|
|
1852
1852
|
dataSpecification: {
|
|
1853
1853
|
input?: any;
|
|
@@ -1868,13 +1868,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1868
1868
|
ownerName: string;
|
|
1869
1869
|
releases: {
|
|
1870
1870
|
name: string;
|
|
1871
|
-
metadata: Record<string, any>;
|
|
1872
|
-
uid: string;
|
|
1873
|
-
createTime: string;
|
|
1874
|
-
updateTime: string;
|
|
1875
1871
|
description: string;
|
|
1872
|
+
uid: string;
|
|
1876
1873
|
id: string;
|
|
1877
1874
|
recipe: Record<string, any>;
|
|
1875
|
+
createTime: string;
|
|
1876
|
+
updateTime: string;
|
|
1877
|
+
metadata: Record<string, any>;
|
|
1878
1878
|
readme: string;
|
|
1879
1879
|
rawRecipe: string;
|
|
1880
1880
|
dataSpecification: {
|
|
@@ -1900,22 +1900,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1900
1900
|
nextPageToken: string;
|
|
1901
1901
|
totalSize: number;
|
|
1902
1902
|
pipelines: {
|
|
1903
|
-
name: string;
|
|
1904
|
-
metadata: Record<string, any>;
|
|
1905
|
-
uid: string;
|
|
1906
|
-
createTime: string;
|
|
1907
|
-
updateTime: string;
|
|
1908
|
-
description: string;
|
|
1909
|
-
id: string;
|
|
1910
|
-
documentationUrl: string;
|
|
1911
|
-
sourceUrl: string;
|
|
1912
1903
|
owner: {
|
|
1913
1904
|
user: {
|
|
1914
1905
|
name: string;
|
|
1915
1906
|
uid: string;
|
|
1907
|
+
id: string;
|
|
1916
1908
|
createTime: string;
|
|
1917
1909
|
updateTime: string;
|
|
1918
|
-
id: string;
|
|
1919
1910
|
profile?: {
|
|
1920
1911
|
displayName?: string | undefined;
|
|
1921
1912
|
bio?: string | undefined;
|
|
@@ -1931,17 +1922,12 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1931
1922
|
};
|
|
1932
1923
|
} | {
|
|
1933
1924
|
organization: {
|
|
1934
|
-
name: string;
|
|
1935
|
-
uid: string;
|
|
1936
|
-
createTime: string;
|
|
1937
|
-
updateTime: string;
|
|
1938
|
-
id: string;
|
|
1939
1925
|
owner: {
|
|
1940
1926
|
name: string;
|
|
1941
1927
|
uid: string;
|
|
1928
|
+
id: string;
|
|
1942
1929
|
createTime: string;
|
|
1943
1930
|
updateTime: string;
|
|
1944
|
-
id: string;
|
|
1945
1931
|
profile?: {
|
|
1946
1932
|
displayName?: string | undefined;
|
|
1947
1933
|
bio?: string | undefined;
|
|
@@ -1955,6 +1941,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1955
1941
|
} | undefined;
|
|
1956
1942
|
} | undefined;
|
|
1957
1943
|
};
|
|
1944
|
+
name: string;
|
|
1945
|
+
uid: string;
|
|
1946
|
+
id: string;
|
|
1947
|
+
createTime: string;
|
|
1948
|
+
updateTime: string;
|
|
1958
1949
|
profile?: {
|
|
1959
1950
|
displayName?: string | undefined;
|
|
1960
1951
|
bio?: string | undefined;
|
|
@@ -1968,7 +1959,16 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1968
1959
|
} | undefined;
|
|
1969
1960
|
};
|
|
1970
1961
|
};
|
|
1962
|
+
name: string;
|
|
1963
|
+
description: string;
|
|
1964
|
+
uid: string;
|
|
1965
|
+
id: string;
|
|
1966
|
+
documentationUrl: string;
|
|
1967
|
+
sourceUrl: string;
|
|
1971
1968
|
recipe: Record<string, any>;
|
|
1969
|
+
createTime: string;
|
|
1970
|
+
updateTime: string;
|
|
1971
|
+
metadata: Record<string, any>;
|
|
1972
1972
|
readme: string;
|
|
1973
1973
|
dataSpecification: {
|
|
1974
1974
|
input?: any;
|
|
@@ -1989,13 +1989,13 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1989
1989
|
ownerName: string;
|
|
1990
1990
|
releases: {
|
|
1991
1991
|
name: string;
|
|
1992
|
-
metadata: Record<string, any>;
|
|
1993
|
-
uid: string;
|
|
1994
|
-
createTime: string;
|
|
1995
|
-
updateTime: string;
|
|
1996
1992
|
description: string;
|
|
1993
|
+
uid: string;
|
|
1997
1994
|
id: string;
|
|
1998
1995
|
recipe: Record<string, any>;
|
|
1996
|
+
createTime: string;
|
|
1997
|
+
updateTime: string;
|
|
1998
|
+
metadata: Record<string, any>;
|
|
1999
1999
|
readme: string;
|
|
2000
2000
|
rawRecipe: string;
|
|
2001
2001
|
dataSpecification: {
|
|
@@ -2105,9 +2105,9 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2105
2105
|
}, "strip", z.ZodTypeAny, {
|
|
2106
2106
|
name: string;
|
|
2107
2107
|
uid: string;
|
|
2108
|
+
id: string;
|
|
2108
2109
|
createTime: string;
|
|
2109
2110
|
updateTime: string;
|
|
2110
|
-
id: string;
|
|
2111
2111
|
profile?: {
|
|
2112
2112
|
displayName?: string | undefined;
|
|
2113
2113
|
bio?: string | undefined;
|
|
@@ -2123,9 +2123,9 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2123
2123
|
}, {
|
|
2124
2124
|
name: string;
|
|
2125
2125
|
uid: string;
|
|
2126
|
+
id: string;
|
|
2126
2127
|
createTime: string;
|
|
2127
2128
|
updateTime: string;
|
|
2128
|
-
id: string;
|
|
2129
2129
|
profile?: {
|
|
2130
2130
|
displayName?: string | undefined;
|
|
2131
2131
|
bio?: string | undefined;
|
|
@@ -2143,9 +2143,9 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2143
2143
|
user: {
|
|
2144
2144
|
name: string;
|
|
2145
2145
|
uid: string;
|
|
2146
|
+
id: string;
|
|
2146
2147
|
createTime: string;
|
|
2147
2148
|
updateTime: string;
|
|
2148
|
-
id: string;
|
|
2149
2149
|
profile?: {
|
|
2150
2150
|
displayName?: string | undefined;
|
|
2151
2151
|
bio?: string | undefined;
|
|
@@ -2163,9 +2163,9 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2163
2163
|
user: {
|
|
2164
2164
|
name: string;
|
|
2165
2165
|
uid: string;
|
|
2166
|
+
id: string;
|
|
2166
2167
|
createTime: string;
|
|
2167
2168
|
updateTime: string;
|
|
2168
|
-
id: string;
|
|
2169
2169
|
profile?: {
|
|
2170
2170
|
displayName?: string | undefined;
|
|
2171
2171
|
bio?: string | undefined;
|
|
@@ -2237,9 +2237,9 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2237
2237
|
}, "strip", z.ZodTypeAny, {
|
|
2238
2238
|
name: string;
|
|
2239
2239
|
uid: string;
|
|
2240
|
+
id: string;
|
|
2240
2241
|
createTime: string;
|
|
2241
2242
|
updateTime: string;
|
|
2242
|
-
id: string;
|
|
2243
2243
|
profile?: {
|
|
2244
2244
|
displayName?: string | undefined;
|
|
2245
2245
|
bio?: string | undefined;
|
|
@@ -2255,9 +2255,9 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2255
2255
|
}, {
|
|
2256
2256
|
name: string;
|
|
2257
2257
|
uid: string;
|
|
2258
|
+
id: string;
|
|
2258
2259
|
createTime: string;
|
|
2259
2260
|
updateTime: string;
|
|
2260
|
-
id: string;
|
|
2261
2261
|
profile?: {
|
|
2262
2262
|
displayName?: string | undefined;
|
|
2263
2263
|
bio?: string | undefined;
|
|
@@ -2311,17 +2311,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2311
2311
|
} | undefined;
|
|
2312
2312
|
}>>;
|
|
2313
2313
|
}, "strip", z.ZodTypeAny, {
|
|
2314
|
-
name: string;
|
|
2315
|
-
uid: string;
|
|
2316
|
-
createTime: string;
|
|
2317
|
-
updateTime: string;
|
|
2318
|
-
id: string;
|
|
2319
2314
|
owner: {
|
|
2320
2315
|
name: string;
|
|
2321
2316
|
uid: string;
|
|
2317
|
+
id: string;
|
|
2322
2318
|
createTime: string;
|
|
2323
2319
|
updateTime: string;
|
|
2324
|
-
id: string;
|
|
2325
2320
|
profile?: {
|
|
2326
2321
|
displayName?: string | undefined;
|
|
2327
2322
|
bio?: string | undefined;
|
|
@@ -2335,6 +2330,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2335
2330
|
} | undefined;
|
|
2336
2331
|
} | undefined;
|
|
2337
2332
|
};
|
|
2333
|
+
name: string;
|
|
2334
|
+
uid: string;
|
|
2335
|
+
id: string;
|
|
2336
|
+
createTime: string;
|
|
2337
|
+
updateTime: string;
|
|
2338
2338
|
profile?: {
|
|
2339
2339
|
displayName?: string | undefined;
|
|
2340
2340
|
bio?: string | undefined;
|
|
@@ -2347,17 +2347,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2347
2347
|
} | undefined;
|
|
2348
2348
|
} | undefined;
|
|
2349
2349
|
}, {
|
|
2350
|
-
name: string;
|
|
2351
|
-
uid: string;
|
|
2352
|
-
createTime: string;
|
|
2353
|
-
updateTime: string;
|
|
2354
|
-
id: string;
|
|
2355
2350
|
owner: {
|
|
2356
2351
|
name: string;
|
|
2357
2352
|
uid: string;
|
|
2353
|
+
id: string;
|
|
2358
2354
|
createTime: string;
|
|
2359
2355
|
updateTime: string;
|
|
2360
|
-
id: string;
|
|
2361
2356
|
profile?: {
|
|
2362
2357
|
displayName?: string | undefined;
|
|
2363
2358
|
bio?: string | undefined;
|
|
@@ -2371,6 +2366,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2371
2366
|
} | undefined;
|
|
2372
2367
|
} | undefined;
|
|
2373
2368
|
};
|
|
2369
|
+
name: string;
|
|
2370
|
+
uid: string;
|
|
2371
|
+
id: string;
|
|
2372
|
+
createTime: string;
|
|
2373
|
+
updateTime: string;
|
|
2374
2374
|
profile?: {
|
|
2375
2375
|
displayName?: string | undefined;
|
|
2376
2376
|
bio?: string | undefined;
|
|
@@ -2385,17 +2385,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2385
2385
|
}>;
|
|
2386
2386
|
}, "strip", z.ZodTypeAny, {
|
|
2387
2387
|
organization: {
|
|
2388
|
-
name: string;
|
|
2389
|
-
uid: string;
|
|
2390
|
-
createTime: string;
|
|
2391
|
-
updateTime: string;
|
|
2392
|
-
id: string;
|
|
2393
2388
|
owner: {
|
|
2394
2389
|
name: string;
|
|
2395
2390
|
uid: string;
|
|
2391
|
+
id: string;
|
|
2396
2392
|
createTime: string;
|
|
2397
2393
|
updateTime: string;
|
|
2398
|
-
id: string;
|
|
2399
2394
|
profile?: {
|
|
2400
2395
|
displayName?: string | undefined;
|
|
2401
2396
|
bio?: string | undefined;
|
|
@@ -2409,6 +2404,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2409
2404
|
} | undefined;
|
|
2410
2405
|
} | undefined;
|
|
2411
2406
|
};
|
|
2407
|
+
name: string;
|
|
2408
|
+
uid: string;
|
|
2409
|
+
id: string;
|
|
2410
|
+
createTime: string;
|
|
2411
|
+
updateTime: string;
|
|
2412
2412
|
profile?: {
|
|
2413
2413
|
displayName?: string | undefined;
|
|
2414
2414
|
bio?: string | undefined;
|
|
@@ -2423,17 +2423,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2423
2423
|
};
|
|
2424
2424
|
}, {
|
|
2425
2425
|
organization: {
|
|
2426
|
-
name: string;
|
|
2427
|
-
uid: string;
|
|
2428
|
-
createTime: string;
|
|
2429
|
-
updateTime: string;
|
|
2430
|
-
id: string;
|
|
2431
2426
|
owner: {
|
|
2432
2427
|
name: string;
|
|
2433
2428
|
uid: string;
|
|
2429
|
+
id: string;
|
|
2434
2430
|
createTime: string;
|
|
2435
2431
|
updateTime: string;
|
|
2436
|
-
id: string;
|
|
2437
2432
|
profile?: {
|
|
2438
2433
|
displayName?: string | undefined;
|
|
2439
2434
|
bio?: string | undefined;
|
|
@@ -2447,6 +2442,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2447
2442
|
} | undefined;
|
|
2448
2443
|
} | undefined;
|
|
2449
2444
|
};
|
|
2445
|
+
name: string;
|
|
2446
|
+
uid: string;
|
|
2447
|
+
id: string;
|
|
2448
|
+
createTime: string;
|
|
2449
|
+
updateTime: string;
|
|
2450
2450
|
profile?: {
|
|
2451
2451
|
displayName?: string | undefined;
|
|
2452
2452
|
bio?: string | undefined;
|
|
@@ -2486,13 +2486,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2486
2486
|
}>;
|
|
2487
2487
|
}, "strip", z.ZodTypeAny, {
|
|
2488
2488
|
name: string;
|
|
2489
|
-
metadata: Record<string, any>;
|
|
2490
|
-
uid: string;
|
|
2491
|
-
createTime: string;
|
|
2492
|
-
updateTime: string;
|
|
2493
2489
|
description: string;
|
|
2490
|
+
uid: string;
|
|
2494
2491
|
id: string;
|
|
2495
2492
|
recipe: Record<string, any>;
|
|
2493
|
+
createTime: string;
|
|
2494
|
+
updateTime: string;
|
|
2495
|
+
metadata: Record<string, any>;
|
|
2496
2496
|
readme: string;
|
|
2497
2497
|
rawRecipe: string;
|
|
2498
2498
|
dataSpecification: {
|
|
@@ -2503,13 +2503,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2503
2503
|
alias?: string | undefined;
|
|
2504
2504
|
}, {
|
|
2505
2505
|
name: string;
|
|
2506
|
-
metadata: Record<string, any>;
|
|
2507
|
-
uid: string;
|
|
2508
|
-
createTime: string;
|
|
2509
|
-
updateTime: string;
|
|
2510
2506
|
description: string;
|
|
2507
|
+
uid: string;
|
|
2511
2508
|
id: string;
|
|
2512
2509
|
recipe: Record<string, any>;
|
|
2510
|
+
createTime: string;
|
|
2511
|
+
updateTime: string;
|
|
2512
|
+
metadata: Record<string, any>;
|
|
2513
2513
|
readme: string;
|
|
2514
2514
|
rawRecipe: string;
|
|
2515
2515
|
dataSpecification: {
|
|
@@ -2596,22 +2596,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2596
2596
|
documentationUrl: z.ZodString;
|
|
2597
2597
|
license: z.ZodString;
|
|
2598
2598
|
}, "strip", z.ZodTypeAny, {
|
|
2599
|
-
name: string;
|
|
2600
|
-
metadata: Record<string, any>;
|
|
2601
|
-
uid: string;
|
|
2602
|
-
createTime: string;
|
|
2603
|
-
updateTime: string;
|
|
2604
|
-
description: string;
|
|
2605
|
-
id: string;
|
|
2606
|
-
documentationUrl: string;
|
|
2607
|
-
sourceUrl: string;
|
|
2608
2599
|
owner: {
|
|
2609
2600
|
user: {
|
|
2610
2601
|
name: string;
|
|
2611
2602
|
uid: string;
|
|
2603
|
+
id: string;
|
|
2612
2604
|
createTime: string;
|
|
2613
2605
|
updateTime: string;
|
|
2614
|
-
id: string;
|
|
2615
2606
|
profile?: {
|
|
2616
2607
|
displayName?: string | undefined;
|
|
2617
2608
|
bio?: string | undefined;
|
|
@@ -2627,17 +2618,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2627
2618
|
};
|
|
2628
2619
|
} | {
|
|
2629
2620
|
organization: {
|
|
2630
|
-
name: string;
|
|
2631
|
-
uid: string;
|
|
2632
|
-
createTime: string;
|
|
2633
|
-
updateTime: string;
|
|
2634
|
-
id: string;
|
|
2635
2621
|
owner: {
|
|
2636
2622
|
name: string;
|
|
2637
2623
|
uid: string;
|
|
2624
|
+
id: string;
|
|
2638
2625
|
createTime: string;
|
|
2639
2626
|
updateTime: string;
|
|
2640
|
-
id: string;
|
|
2641
2627
|
profile?: {
|
|
2642
2628
|
displayName?: string | undefined;
|
|
2643
2629
|
bio?: string | undefined;
|
|
@@ -2651,6 +2637,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2651
2637
|
} | undefined;
|
|
2652
2638
|
} | undefined;
|
|
2653
2639
|
};
|
|
2640
|
+
name: string;
|
|
2641
|
+
uid: string;
|
|
2642
|
+
id: string;
|
|
2643
|
+
createTime: string;
|
|
2644
|
+
updateTime: string;
|
|
2654
2645
|
profile?: {
|
|
2655
2646
|
displayName?: string | undefined;
|
|
2656
2647
|
bio?: string | undefined;
|
|
@@ -2664,7 +2655,16 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2664
2655
|
} | undefined;
|
|
2665
2656
|
};
|
|
2666
2657
|
};
|
|
2658
|
+
name: string;
|
|
2659
|
+
description: string;
|
|
2660
|
+
uid: string;
|
|
2661
|
+
id: string;
|
|
2662
|
+
documentationUrl: string;
|
|
2663
|
+
sourceUrl: string;
|
|
2667
2664
|
recipe: Record<string, any>;
|
|
2665
|
+
createTime: string;
|
|
2666
|
+
updateTime: string;
|
|
2667
|
+
metadata: Record<string, any>;
|
|
2668
2668
|
readme: string;
|
|
2669
2669
|
dataSpecification: {
|
|
2670
2670
|
input?: any;
|
|
@@ -2685,13 +2685,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2685
2685
|
ownerName: string;
|
|
2686
2686
|
releases: {
|
|
2687
2687
|
name: string;
|
|
2688
|
-
metadata: Record<string, any>;
|
|
2689
|
-
uid: string;
|
|
2690
|
-
createTime: string;
|
|
2691
|
-
updateTime: string;
|
|
2692
2688
|
description: string;
|
|
2689
|
+
uid: string;
|
|
2693
2690
|
id: string;
|
|
2694
2691
|
recipe: Record<string, any>;
|
|
2692
|
+
createTime: string;
|
|
2693
|
+
updateTime: string;
|
|
2694
|
+
metadata: Record<string, any>;
|
|
2695
2695
|
readme: string;
|
|
2696
2696
|
rawRecipe: string;
|
|
2697
2697
|
dataSpecification: {
|
|
@@ -2713,22 +2713,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2713
2713
|
profileImage: string;
|
|
2714
2714
|
license: string;
|
|
2715
2715
|
}, {
|
|
2716
|
-
name: string;
|
|
2717
|
-
metadata: Record<string, any>;
|
|
2718
|
-
uid: string;
|
|
2719
|
-
createTime: string;
|
|
2720
|
-
updateTime: string;
|
|
2721
|
-
description: string;
|
|
2722
|
-
id: string;
|
|
2723
|
-
documentationUrl: string;
|
|
2724
|
-
sourceUrl: string;
|
|
2725
2716
|
owner: {
|
|
2726
2717
|
user: {
|
|
2727
2718
|
name: string;
|
|
2728
2719
|
uid: string;
|
|
2720
|
+
id: string;
|
|
2729
2721
|
createTime: string;
|
|
2730
2722
|
updateTime: string;
|
|
2731
|
-
id: string;
|
|
2732
2723
|
profile?: {
|
|
2733
2724
|
displayName?: string | undefined;
|
|
2734
2725
|
bio?: string | undefined;
|
|
@@ -2744,17 +2735,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2744
2735
|
};
|
|
2745
2736
|
} | {
|
|
2746
2737
|
organization: {
|
|
2747
|
-
name: string;
|
|
2748
|
-
uid: string;
|
|
2749
|
-
createTime: string;
|
|
2750
|
-
updateTime: string;
|
|
2751
|
-
id: string;
|
|
2752
2738
|
owner: {
|
|
2753
2739
|
name: string;
|
|
2754
2740
|
uid: string;
|
|
2741
|
+
id: string;
|
|
2755
2742
|
createTime: string;
|
|
2756
2743
|
updateTime: string;
|
|
2757
|
-
id: string;
|
|
2758
2744
|
profile?: {
|
|
2759
2745
|
displayName?: string | undefined;
|
|
2760
2746
|
bio?: string | undefined;
|
|
@@ -2768,6 +2754,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2768
2754
|
} | undefined;
|
|
2769
2755
|
} | undefined;
|
|
2770
2756
|
};
|
|
2757
|
+
name: string;
|
|
2758
|
+
uid: string;
|
|
2759
|
+
id: string;
|
|
2760
|
+
createTime: string;
|
|
2761
|
+
updateTime: string;
|
|
2771
2762
|
profile?: {
|
|
2772
2763
|
displayName?: string | undefined;
|
|
2773
2764
|
bio?: string | undefined;
|
|
@@ -2781,7 +2772,16 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2781
2772
|
} | undefined;
|
|
2782
2773
|
};
|
|
2783
2774
|
};
|
|
2775
|
+
name: string;
|
|
2776
|
+
description: string;
|
|
2777
|
+
uid: string;
|
|
2778
|
+
id: string;
|
|
2779
|
+
documentationUrl: string;
|
|
2780
|
+
sourceUrl: string;
|
|
2784
2781
|
recipe: Record<string, any>;
|
|
2782
|
+
createTime: string;
|
|
2783
|
+
updateTime: string;
|
|
2784
|
+
metadata: Record<string, any>;
|
|
2785
2785
|
readme: string;
|
|
2786
2786
|
dataSpecification: {
|
|
2787
2787
|
input?: any;
|
|
@@ -2802,13 +2802,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2802
2802
|
ownerName: string;
|
|
2803
2803
|
releases: {
|
|
2804
2804
|
name: string;
|
|
2805
|
-
metadata: Record<string, any>;
|
|
2806
|
-
uid: string;
|
|
2807
|
-
createTime: string;
|
|
2808
|
-
updateTime: string;
|
|
2809
2805
|
description: string;
|
|
2806
|
+
uid: string;
|
|
2810
2807
|
id: string;
|
|
2811
2808
|
recipe: Record<string, any>;
|
|
2809
|
+
createTime: string;
|
|
2810
|
+
updateTime: string;
|
|
2811
|
+
metadata: Record<string, any>;
|
|
2812
2812
|
readme: string;
|
|
2813
2813
|
rawRecipe: string;
|
|
2814
2814
|
dataSpecification: {
|
|
@@ -2836,22 +2836,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2836
2836
|
nextPageToken: string;
|
|
2837
2837
|
totalSize: number;
|
|
2838
2838
|
pipelines: {
|
|
2839
|
-
name: string;
|
|
2840
|
-
metadata: Record<string, any>;
|
|
2841
|
-
uid: string;
|
|
2842
|
-
createTime: string;
|
|
2843
|
-
updateTime: string;
|
|
2844
|
-
description: string;
|
|
2845
|
-
id: string;
|
|
2846
|
-
documentationUrl: string;
|
|
2847
|
-
sourceUrl: string;
|
|
2848
2839
|
owner: {
|
|
2849
2840
|
user: {
|
|
2850
2841
|
name: string;
|
|
2851
2842
|
uid: string;
|
|
2843
|
+
id: string;
|
|
2852
2844
|
createTime: string;
|
|
2853
2845
|
updateTime: string;
|
|
2854
|
-
id: string;
|
|
2855
2846
|
profile?: {
|
|
2856
2847
|
displayName?: string | undefined;
|
|
2857
2848
|
bio?: string | undefined;
|
|
@@ -2867,17 +2858,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2867
2858
|
};
|
|
2868
2859
|
} | {
|
|
2869
2860
|
organization: {
|
|
2870
|
-
name: string;
|
|
2871
|
-
uid: string;
|
|
2872
|
-
createTime: string;
|
|
2873
|
-
updateTime: string;
|
|
2874
|
-
id: string;
|
|
2875
2861
|
owner: {
|
|
2876
2862
|
name: string;
|
|
2877
2863
|
uid: string;
|
|
2864
|
+
id: string;
|
|
2878
2865
|
createTime: string;
|
|
2879
2866
|
updateTime: string;
|
|
2880
|
-
id: string;
|
|
2881
2867
|
profile?: {
|
|
2882
2868
|
displayName?: string | undefined;
|
|
2883
2869
|
bio?: string | undefined;
|
|
@@ -2891,6 +2877,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2891
2877
|
} | undefined;
|
|
2892
2878
|
} | undefined;
|
|
2893
2879
|
};
|
|
2880
|
+
name: string;
|
|
2881
|
+
uid: string;
|
|
2882
|
+
id: string;
|
|
2883
|
+
createTime: string;
|
|
2884
|
+
updateTime: string;
|
|
2894
2885
|
profile?: {
|
|
2895
2886
|
displayName?: string | undefined;
|
|
2896
2887
|
bio?: string | undefined;
|
|
@@ -2904,7 +2895,16 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2904
2895
|
} | undefined;
|
|
2905
2896
|
};
|
|
2906
2897
|
};
|
|
2898
|
+
name: string;
|
|
2899
|
+
description: string;
|
|
2900
|
+
uid: string;
|
|
2901
|
+
id: string;
|
|
2902
|
+
documentationUrl: string;
|
|
2903
|
+
sourceUrl: string;
|
|
2907
2904
|
recipe: Record<string, any>;
|
|
2905
|
+
createTime: string;
|
|
2906
|
+
updateTime: string;
|
|
2907
|
+
metadata: Record<string, any>;
|
|
2908
2908
|
readme: string;
|
|
2909
2909
|
dataSpecification: {
|
|
2910
2910
|
input?: any;
|
|
@@ -2925,13 +2925,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2925
2925
|
ownerName: string;
|
|
2926
2926
|
releases: {
|
|
2927
2927
|
name: string;
|
|
2928
|
-
metadata: Record<string, any>;
|
|
2929
|
-
uid: string;
|
|
2930
|
-
createTime: string;
|
|
2931
|
-
updateTime: string;
|
|
2932
2928
|
description: string;
|
|
2929
|
+
uid: string;
|
|
2933
2930
|
id: string;
|
|
2934
2931
|
recipe: Record<string, any>;
|
|
2932
|
+
createTime: string;
|
|
2933
|
+
updateTime: string;
|
|
2934
|
+
metadata: Record<string, any>;
|
|
2935
2935
|
readme: string;
|
|
2936
2936
|
rawRecipe: string;
|
|
2937
2937
|
dataSpecification: {
|
|
@@ -2957,22 +2957,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2957
2957
|
nextPageToken: string;
|
|
2958
2958
|
totalSize: number;
|
|
2959
2959
|
pipelines: {
|
|
2960
|
-
name: string;
|
|
2961
|
-
metadata: Record<string, any>;
|
|
2962
|
-
uid: string;
|
|
2963
|
-
createTime: string;
|
|
2964
|
-
updateTime: string;
|
|
2965
|
-
description: string;
|
|
2966
|
-
id: string;
|
|
2967
|
-
documentationUrl: string;
|
|
2968
|
-
sourceUrl: string;
|
|
2969
2960
|
owner: {
|
|
2970
2961
|
user: {
|
|
2971
2962
|
name: string;
|
|
2972
2963
|
uid: string;
|
|
2964
|
+
id: string;
|
|
2973
2965
|
createTime: string;
|
|
2974
2966
|
updateTime: string;
|
|
2975
|
-
id: string;
|
|
2976
2967
|
profile?: {
|
|
2977
2968
|
displayName?: string | undefined;
|
|
2978
2969
|
bio?: string | undefined;
|
|
@@ -2988,17 +2979,12 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2988
2979
|
};
|
|
2989
2980
|
} | {
|
|
2990
2981
|
organization: {
|
|
2991
|
-
name: string;
|
|
2992
|
-
uid: string;
|
|
2993
|
-
createTime: string;
|
|
2994
|
-
updateTime: string;
|
|
2995
|
-
id: string;
|
|
2996
2982
|
owner: {
|
|
2997
2983
|
name: string;
|
|
2998
2984
|
uid: string;
|
|
2985
|
+
id: string;
|
|
2999
2986
|
createTime: string;
|
|
3000
2987
|
updateTime: string;
|
|
3001
|
-
id: string;
|
|
3002
2988
|
profile?: {
|
|
3003
2989
|
displayName?: string | undefined;
|
|
3004
2990
|
bio?: string | undefined;
|
|
@@ -3012,6 +2998,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
3012
2998
|
} | undefined;
|
|
3013
2999
|
} | undefined;
|
|
3014
3000
|
};
|
|
3001
|
+
name: string;
|
|
3002
|
+
uid: string;
|
|
3003
|
+
id: string;
|
|
3004
|
+
createTime: string;
|
|
3005
|
+
updateTime: string;
|
|
3015
3006
|
profile?: {
|
|
3016
3007
|
displayName?: string | undefined;
|
|
3017
3008
|
bio?: string | undefined;
|
|
@@ -3025,7 +3016,16 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
3025
3016
|
} | undefined;
|
|
3026
3017
|
};
|
|
3027
3018
|
};
|
|
3019
|
+
name: string;
|
|
3020
|
+
description: string;
|
|
3021
|
+
uid: string;
|
|
3022
|
+
id: string;
|
|
3023
|
+
documentationUrl: string;
|
|
3024
|
+
sourceUrl: string;
|
|
3028
3025
|
recipe: Record<string, any>;
|
|
3026
|
+
createTime: string;
|
|
3027
|
+
updateTime: string;
|
|
3028
|
+
metadata: Record<string, any>;
|
|
3029
3029
|
readme: string;
|
|
3030
3030
|
dataSpecification: {
|
|
3031
3031
|
input?: any;
|
|
@@ -3046,13 +3046,13 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
3046
3046
|
ownerName: string;
|
|
3047
3047
|
releases: {
|
|
3048
3048
|
name: string;
|
|
3049
|
-
metadata: Record<string, any>;
|
|
3050
|
-
uid: string;
|
|
3051
|
-
createTime: string;
|
|
3052
|
-
updateTime: string;
|
|
3053
3049
|
description: string;
|
|
3050
|
+
uid: string;
|
|
3054
3051
|
id: string;
|
|
3055
3052
|
recipe: Record<string, any>;
|
|
3053
|
+
createTime: string;
|
|
3054
|
+
updateTime: string;
|
|
3055
|
+
metadata: Record<string, any>;
|
|
3056
3056
|
readme: string;
|
|
3057
3057
|
rawRecipe: string;
|
|
3058
3058
|
dataSpecification: {
|
|
@@ -3155,9 +3155,9 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3155
3155
|
}, "strip", z.ZodTypeAny, {
|
|
3156
3156
|
name: string;
|
|
3157
3157
|
uid: string;
|
|
3158
|
+
id: string;
|
|
3158
3159
|
createTime: string;
|
|
3159
3160
|
updateTime: string;
|
|
3160
|
-
id: string;
|
|
3161
3161
|
profile?: {
|
|
3162
3162
|
displayName?: string | undefined;
|
|
3163
3163
|
bio?: string | undefined;
|
|
@@ -3173,9 +3173,9 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3173
3173
|
}, {
|
|
3174
3174
|
name: string;
|
|
3175
3175
|
uid: string;
|
|
3176
|
+
id: string;
|
|
3176
3177
|
createTime: string;
|
|
3177
3178
|
updateTime: string;
|
|
3178
|
-
id: string;
|
|
3179
3179
|
profile?: {
|
|
3180
3180
|
displayName?: string | undefined;
|
|
3181
3181
|
bio?: string | undefined;
|
|
@@ -3193,9 +3193,9 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3193
3193
|
user: {
|
|
3194
3194
|
name: string;
|
|
3195
3195
|
uid: string;
|
|
3196
|
+
id: string;
|
|
3196
3197
|
createTime: string;
|
|
3197
3198
|
updateTime: string;
|
|
3198
|
-
id: string;
|
|
3199
3199
|
profile?: {
|
|
3200
3200
|
displayName?: string | undefined;
|
|
3201
3201
|
bio?: string | undefined;
|
|
@@ -3213,9 +3213,9 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3213
3213
|
user: {
|
|
3214
3214
|
name: string;
|
|
3215
3215
|
uid: string;
|
|
3216
|
+
id: string;
|
|
3216
3217
|
createTime: string;
|
|
3217
3218
|
updateTime: string;
|
|
3218
|
-
id: string;
|
|
3219
3219
|
profile?: {
|
|
3220
3220
|
displayName?: string | undefined;
|
|
3221
3221
|
bio?: string | undefined;
|
|
@@ -3287,9 +3287,9 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3287
3287
|
}, "strip", z.ZodTypeAny, {
|
|
3288
3288
|
name: string;
|
|
3289
3289
|
uid: string;
|
|
3290
|
+
id: string;
|
|
3290
3291
|
createTime: string;
|
|
3291
3292
|
updateTime: string;
|
|
3292
|
-
id: string;
|
|
3293
3293
|
profile?: {
|
|
3294
3294
|
displayName?: string | undefined;
|
|
3295
3295
|
bio?: string | undefined;
|
|
@@ -3305,9 +3305,9 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3305
3305
|
}, {
|
|
3306
3306
|
name: string;
|
|
3307
3307
|
uid: string;
|
|
3308
|
+
id: string;
|
|
3308
3309
|
createTime: string;
|
|
3309
3310
|
updateTime: string;
|
|
3310
|
-
id: string;
|
|
3311
3311
|
profile?: {
|
|
3312
3312
|
displayName?: string | undefined;
|
|
3313
3313
|
bio?: string | undefined;
|
|
@@ -3361,17 +3361,12 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3361
3361
|
} | undefined;
|
|
3362
3362
|
}>>;
|
|
3363
3363
|
}, "strip", z.ZodTypeAny, {
|
|
3364
|
-
name: string;
|
|
3365
|
-
uid: string;
|
|
3366
|
-
createTime: string;
|
|
3367
|
-
updateTime: string;
|
|
3368
|
-
id: string;
|
|
3369
3364
|
owner: {
|
|
3370
3365
|
name: string;
|
|
3371
3366
|
uid: string;
|
|
3367
|
+
id: string;
|
|
3372
3368
|
createTime: string;
|
|
3373
3369
|
updateTime: string;
|
|
3374
|
-
id: string;
|
|
3375
3370
|
profile?: {
|
|
3376
3371
|
displayName?: string | undefined;
|
|
3377
3372
|
bio?: string | undefined;
|
|
@@ -3385,6 +3380,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3385
3380
|
} | undefined;
|
|
3386
3381
|
} | undefined;
|
|
3387
3382
|
};
|
|
3383
|
+
name: string;
|
|
3384
|
+
uid: string;
|
|
3385
|
+
id: string;
|
|
3386
|
+
createTime: string;
|
|
3387
|
+
updateTime: string;
|
|
3388
3388
|
profile?: {
|
|
3389
3389
|
displayName?: string | undefined;
|
|
3390
3390
|
bio?: string | undefined;
|
|
@@ -3397,17 +3397,12 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3397
3397
|
} | undefined;
|
|
3398
3398
|
} | undefined;
|
|
3399
3399
|
}, {
|
|
3400
|
-
name: string;
|
|
3401
|
-
uid: string;
|
|
3402
|
-
createTime: string;
|
|
3403
|
-
updateTime: string;
|
|
3404
|
-
id: string;
|
|
3405
3400
|
owner: {
|
|
3406
3401
|
name: string;
|
|
3407
3402
|
uid: string;
|
|
3403
|
+
id: string;
|
|
3408
3404
|
createTime: string;
|
|
3409
3405
|
updateTime: string;
|
|
3410
|
-
id: string;
|
|
3411
3406
|
profile?: {
|
|
3412
3407
|
displayName?: string | undefined;
|
|
3413
3408
|
bio?: string | undefined;
|
|
@@ -3421,6 +3416,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3421
3416
|
} | undefined;
|
|
3422
3417
|
} | undefined;
|
|
3423
3418
|
};
|
|
3419
|
+
name: string;
|
|
3420
|
+
uid: string;
|
|
3421
|
+
id: string;
|
|
3422
|
+
createTime: string;
|
|
3423
|
+
updateTime: string;
|
|
3424
3424
|
profile?: {
|
|
3425
3425
|
displayName?: string | undefined;
|
|
3426
3426
|
bio?: string | undefined;
|
|
@@ -3435,17 +3435,12 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3435
3435
|
}>;
|
|
3436
3436
|
}, "strip", z.ZodTypeAny, {
|
|
3437
3437
|
organization: {
|
|
3438
|
-
name: string;
|
|
3439
|
-
uid: string;
|
|
3440
|
-
createTime: string;
|
|
3441
|
-
updateTime: string;
|
|
3442
|
-
id: string;
|
|
3443
3438
|
owner: {
|
|
3444
3439
|
name: string;
|
|
3445
3440
|
uid: string;
|
|
3441
|
+
id: string;
|
|
3446
3442
|
createTime: string;
|
|
3447
3443
|
updateTime: string;
|
|
3448
|
-
id: string;
|
|
3449
3444
|
profile?: {
|
|
3450
3445
|
displayName?: string | undefined;
|
|
3451
3446
|
bio?: string | undefined;
|
|
@@ -3459,6 +3454,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3459
3454
|
} | undefined;
|
|
3460
3455
|
} | undefined;
|
|
3461
3456
|
};
|
|
3457
|
+
name: string;
|
|
3458
|
+
uid: string;
|
|
3459
|
+
id: string;
|
|
3460
|
+
createTime: string;
|
|
3461
|
+
updateTime: string;
|
|
3462
3462
|
profile?: {
|
|
3463
3463
|
displayName?: string | undefined;
|
|
3464
3464
|
bio?: string | undefined;
|
|
@@ -3473,17 +3473,12 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3473
3473
|
};
|
|
3474
3474
|
}, {
|
|
3475
3475
|
organization: {
|
|
3476
|
-
name: string;
|
|
3477
|
-
uid: string;
|
|
3478
|
-
createTime: string;
|
|
3479
|
-
updateTime: string;
|
|
3480
|
-
id: string;
|
|
3481
3476
|
owner: {
|
|
3482
3477
|
name: string;
|
|
3483
3478
|
uid: string;
|
|
3479
|
+
id: string;
|
|
3484
3480
|
createTime: string;
|
|
3485
3481
|
updateTime: string;
|
|
3486
|
-
id: string;
|
|
3487
3482
|
profile?: {
|
|
3488
3483
|
displayName?: string | undefined;
|
|
3489
3484
|
bio?: string | undefined;
|
|
@@ -3497,6 +3492,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3497
3492
|
} | undefined;
|
|
3498
3493
|
} | undefined;
|
|
3499
3494
|
};
|
|
3495
|
+
name: string;
|
|
3496
|
+
uid: string;
|
|
3497
|
+
id: string;
|
|
3498
|
+
createTime: string;
|
|
3499
|
+
updateTime: string;
|
|
3500
3500
|
profile?: {
|
|
3501
3501
|
displayName?: string | undefined;
|
|
3502
3502
|
bio?: string | undefined;
|
|
@@ -3536,13 +3536,13 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3536
3536
|
}>;
|
|
3537
3537
|
}, "strip", z.ZodTypeAny, {
|
|
3538
3538
|
name: string;
|
|
3539
|
-
metadata: Record<string, any>;
|
|
3540
|
-
uid: string;
|
|
3541
|
-
createTime: string;
|
|
3542
|
-
updateTime: string;
|
|
3543
3539
|
description: string;
|
|
3540
|
+
uid: string;
|
|
3544
3541
|
id: string;
|
|
3545
3542
|
recipe: Record<string, any>;
|
|
3543
|
+
createTime: string;
|
|
3544
|
+
updateTime: string;
|
|
3545
|
+
metadata: Record<string, any>;
|
|
3546
3546
|
readme: string;
|
|
3547
3547
|
rawRecipe: string;
|
|
3548
3548
|
dataSpecification: {
|
|
@@ -3553,13 +3553,13 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3553
3553
|
alias?: string | undefined;
|
|
3554
3554
|
}, {
|
|
3555
3555
|
name: string;
|
|
3556
|
-
metadata: Record<string, any>;
|
|
3557
|
-
uid: string;
|
|
3558
|
-
createTime: string;
|
|
3559
|
-
updateTime: string;
|
|
3560
3556
|
description: string;
|
|
3557
|
+
uid: string;
|
|
3561
3558
|
id: string;
|
|
3562
3559
|
recipe: Record<string, any>;
|
|
3560
|
+
createTime: string;
|
|
3561
|
+
updateTime: string;
|
|
3562
|
+
metadata: Record<string, any>;
|
|
3563
3563
|
readme: string;
|
|
3564
3564
|
rawRecipe: string;
|
|
3565
3565
|
dataSpecification: {
|
|
@@ -3646,22 +3646,13 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3646
3646
|
documentationUrl: z.ZodString;
|
|
3647
3647
|
license: z.ZodString;
|
|
3648
3648
|
}, "strip", z.ZodTypeAny, {
|
|
3649
|
-
name: string;
|
|
3650
|
-
metadata: Record<string, any>;
|
|
3651
|
-
uid: string;
|
|
3652
|
-
createTime: string;
|
|
3653
|
-
updateTime: string;
|
|
3654
|
-
description: string;
|
|
3655
|
-
id: string;
|
|
3656
|
-
documentationUrl: string;
|
|
3657
|
-
sourceUrl: string;
|
|
3658
3649
|
owner: {
|
|
3659
3650
|
user: {
|
|
3660
3651
|
name: string;
|
|
3661
3652
|
uid: string;
|
|
3653
|
+
id: string;
|
|
3662
3654
|
createTime: string;
|
|
3663
3655
|
updateTime: string;
|
|
3664
|
-
id: string;
|
|
3665
3656
|
profile?: {
|
|
3666
3657
|
displayName?: string | undefined;
|
|
3667
3658
|
bio?: string | undefined;
|
|
@@ -3677,17 +3668,12 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3677
3668
|
};
|
|
3678
3669
|
} | {
|
|
3679
3670
|
organization: {
|
|
3680
|
-
name: string;
|
|
3681
|
-
uid: string;
|
|
3682
|
-
createTime: string;
|
|
3683
|
-
updateTime: string;
|
|
3684
|
-
id: string;
|
|
3685
3671
|
owner: {
|
|
3686
3672
|
name: string;
|
|
3687
3673
|
uid: string;
|
|
3674
|
+
id: string;
|
|
3688
3675
|
createTime: string;
|
|
3689
3676
|
updateTime: string;
|
|
3690
|
-
id: string;
|
|
3691
3677
|
profile?: {
|
|
3692
3678
|
displayName?: string | undefined;
|
|
3693
3679
|
bio?: string | undefined;
|
|
@@ -3701,6 +3687,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3701
3687
|
} | undefined;
|
|
3702
3688
|
} | undefined;
|
|
3703
3689
|
};
|
|
3690
|
+
name: string;
|
|
3691
|
+
uid: string;
|
|
3692
|
+
id: string;
|
|
3693
|
+
createTime: string;
|
|
3694
|
+
updateTime: string;
|
|
3704
3695
|
profile?: {
|
|
3705
3696
|
displayName?: string | undefined;
|
|
3706
3697
|
bio?: string | undefined;
|
|
@@ -3714,7 +3705,16 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3714
3705
|
} | undefined;
|
|
3715
3706
|
};
|
|
3716
3707
|
};
|
|
3708
|
+
name: string;
|
|
3709
|
+
description: string;
|
|
3710
|
+
uid: string;
|
|
3711
|
+
id: string;
|
|
3712
|
+
documentationUrl: string;
|
|
3713
|
+
sourceUrl: string;
|
|
3717
3714
|
recipe: Record<string, any>;
|
|
3715
|
+
createTime: string;
|
|
3716
|
+
updateTime: string;
|
|
3717
|
+
metadata: Record<string, any>;
|
|
3718
3718
|
readme: string;
|
|
3719
3719
|
dataSpecification: {
|
|
3720
3720
|
input?: any;
|
|
@@ -3735,13 +3735,13 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3735
3735
|
ownerName: string;
|
|
3736
3736
|
releases: {
|
|
3737
3737
|
name: string;
|
|
3738
|
-
metadata: Record<string, any>;
|
|
3739
|
-
uid: string;
|
|
3740
|
-
createTime: string;
|
|
3741
|
-
updateTime: string;
|
|
3742
3738
|
description: string;
|
|
3739
|
+
uid: string;
|
|
3743
3740
|
id: string;
|
|
3744
3741
|
recipe: Record<string, any>;
|
|
3742
|
+
createTime: string;
|
|
3743
|
+
updateTime: string;
|
|
3744
|
+
metadata: Record<string, any>;
|
|
3745
3745
|
readme: string;
|
|
3746
3746
|
rawRecipe: string;
|
|
3747
3747
|
dataSpecification: {
|
|
@@ -3763,22 +3763,13 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3763
3763
|
profileImage: string;
|
|
3764
3764
|
license: string;
|
|
3765
3765
|
}, {
|
|
3766
|
-
name: string;
|
|
3767
|
-
metadata: Record<string, any>;
|
|
3768
|
-
uid: string;
|
|
3769
|
-
createTime: string;
|
|
3770
|
-
updateTime: string;
|
|
3771
|
-
description: string;
|
|
3772
|
-
id: string;
|
|
3773
|
-
documentationUrl: string;
|
|
3774
|
-
sourceUrl: string;
|
|
3775
3766
|
owner: {
|
|
3776
3767
|
user: {
|
|
3777
3768
|
name: string;
|
|
3778
3769
|
uid: string;
|
|
3770
|
+
id: string;
|
|
3779
3771
|
createTime: string;
|
|
3780
3772
|
updateTime: string;
|
|
3781
|
-
id: string;
|
|
3782
3773
|
profile?: {
|
|
3783
3774
|
displayName?: string | undefined;
|
|
3784
3775
|
bio?: string | undefined;
|
|
@@ -3794,17 +3785,12 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3794
3785
|
};
|
|
3795
3786
|
} | {
|
|
3796
3787
|
organization: {
|
|
3797
|
-
name: string;
|
|
3798
|
-
uid: string;
|
|
3799
|
-
createTime: string;
|
|
3800
|
-
updateTime: string;
|
|
3801
|
-
id: string;
|
|
3802
3788
|
owner: {
|
|
3803
3789
|
name: string;
|
|
3804
3790
|
uid: string;
|
|
3791
|
+
id: string;
|
|
3805
3792
|
createTime: string;
|
|
3806
3793
|
updateTime: string;
|
|
3807
|
-
id: string;
|
|
3808
3794
|
profile?: {
|
|
3809
3795
|
displayName?: string | undefined;
|
|
3810
3796
|
bio?: string | undefined;
|
|
@@ -3818,6 +3804,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3818
3804
|
} | undefined;
|
|
3819
3805
|
} | undefined;
|
|
3820
3806
|
};
|
|
3807
|
+
name: string;
|
|
3808
|
+
uid: string;
|
|
3809
|
+
id: string;
|
|
3810
|
+
createTime: string;
|
|
3811
|
+
updateTime: string;
|
|
3821
3812
|
profile?: {
|
|
3822
3813
|
displayName?: string | undefined;
|
|
3823
3814
|
bio?: string | undefined;
|
|
@@ -3831,7 +3822,16 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3831
3822
|
} | undefined;
|
|
3832
3823
|
};
|
|
3833
3824
|
};
|
|
3825
|
+
name: string;
|
|
3826
|
+
description: string;
|
|
3827
|
+
uid: string;
|
|
3828
|
+
id: string;
|
|
3829
|
+
documentationUrl: string;
|
|
3830
|
+
sourceUrl: string;
|
|
3834
3831
|
recipe: Record<string, any>;
|
|
3832
|
+
createTime: string;
|
|
3833
|
+
updateTime: string;
|
|
3834
|
+
metadata: Record<string, any>;
|
|
3835
3835
|
readme: string;
|
|
3836
3836
|
dataSpecification: {
|
|
3837
3837
|
input?: any;
|
|
@@ -3852,13 +3852,13 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3852
3852
|
ownerName: string;
|
|
3853
3853
|
releases: {
|
|
3854
3854
|
name: string;
|
|
3855
|
-
metadata: Record<string, any>;
|
|
3856
|
-
uid: string;
|
|
3857
|
-
createTime: string;
|
|
3858
|
-
updateTime: string;
|
|
3859
3855
|
description: string;
|
|
3856
|
+
uid: string;
|
|
3860
3857
|
id: string;
|
|
3861
3858
|
recipe: Record<string, any>;
|
|
3859
|
+
createTime: string;
|
|
3860
|
+
updateTime: string;
|
|
3861
|
+
metadata: Record<string, any>;
|
|
3862
3862
|
readme: string;
|
|
3863
3863
|
rawRecipe: string;
|
|
3864
3864
|
dataSpecification: {
|
|
@@ -3964,9 +3964,9 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3964
3964
|
}, "strip", z.ZodTypeAny, {
|
|
3965
3965
|
name: string;
|
|
3966
3966
|
uid: string;
|
|
3967
|
+
id: string;
|
|
3967
3968
|
createTime: string;
|
|
3968
3969
|
updateTime: string;
|
|
3969
|
-
id: string;
|
|
3970
3970
|
profile?: {
|
|
3971
3971
|
displayName?: string | undefined;
|
|
3972
3972
|
bio?: string | undefined;
|
|
@@ -3982,9 +3982,9 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3982
3982
|
}, {
|
|
3983
3983
|
name: string;
|
|
3984
3984
|
uid: string;
|
|
3985
|
+
id: string;
|
|
3985
3986
|
createTime: string;
|
|
3986
3987
|
updateTime: string;
|
|
3987
|
-
id: string;
|
|
3988
3988
|
profile?: {
|
|
3989
3989
|
displayName?: string | undefined;
|
|
3990
3990
|
bio?: string | undefined;
|
|
@@ -4002,9 +4002,9 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4002
4002
|
user: {
|
|
4003
4003
|
name: string;
|
|
4004
4004
|
uid: string;
|
|
4005
|
+
id: string;
|
|
4005
4006
|
createTime: string;
|
|
4006
4007
|
updateTime: string;
|
|
4007
|
-
id: string;
|
|
4008
4008
|
profile?: {
|
|
4009
4009
|
displayName?: string | undefined;
|
|
4010
4010
|
bio?: string | undefined;
|
|
@@ -4022,9 +4022,9 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4022
4022
|
user: {
|
|
4023
4023
|
name: string;
|
|
4024
4024
|
uid: string;
|
|
4025
|
+
id: string;
|
|
4025
4026
|
createTime: string;
|
|
4026
4027
|
updateTime: string;
|
|
4027
|
-
id: string;
|
|
4028
4028
|
profile?: {
|
|
4029
4029
|
displayName?: string | undefined;
|
|
4030
4030
|
bio?: string | undefined;
|
|
@@ -4096,9 +4096,9 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4096
4096
|
}, "strip", z.ZodTypeAny, {
|
|
4097
4097
|
name: string;
|
|
4098
4098
|
uid: string;
|
|
4099
|
+
id: string;
|
|
4099
4100
|
createTime: string;
|
|
4100
4101
|
updateTime: string;
|
|
4101
|
-
id: string;
|
|
4102
4102
|
profile?: {
|
|
4103
4103
|
displayName?: string | undefined;
|
|
4104
4104
|
bio?: string | undefined;
|
|
@@ -4114,9 +4114,9 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4114
4114
|
}, {
|
|
4115
4115
|
name: string;
|
|
4116
4116
|
uid: string;
|
|
4117
|
+
id: string;
|
|
4117
4118
|
createTime: string;
|
|
4118
4119
|
updateTime: string;
|
|
4119
|
-
id: string;
|
|
4120
4120
|
profile?: {
|
|
4121
4121
|
displayName?: string | undefined;
|
|
4122
4122
|
bio?: string | undefined;
|
|
@@ -4170,17 +4170,12 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4170
4170
|
} | undefined;
|
|
4171
4171
|
}>>;
|
|
4172
4172
|
}, "strip", z.ZodTypeAny, {
|
|
4173
|
-
name: string;
|
|
4174
|
-
uid: string;
|
|
4175
|
-
createTime: string;
|
|
4176
|
-
updateTime: string;
|
|
4177
|
-
id: string;
|
|
4178
4173
|
owner: {
|
|
4179
4174
|
name: string;
|
|
4180
4175
|
uid: string;
|
|
4176
|
+
id: string;
|
|
4181
4177
|
createTime: string;
|
|
4182
4178
|
updateTime: string;
|
|
4183
|
-
id: string;
|
|
4184
4179
|
profile?: {
|
|
4185
4180
|
displayName?: string | undefined;
|
|
4186
4181
|
bio?: string | undefined;
|
|
@@ -4194,6 +4189,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4194
4189
|
} | undefined;
|
|
4195
4190
|
} | undefined;
|
|
4196
4191
|
};
|
|
4192
|
+
name: string;
|
|
4193
|
+
uid: string;
|
|
4194
|
+
id: string;
|
|
4195
|
+
createTime: string;
|
|
4196
|
+
updateTime: string;
|
|
4197
4197
|
profile?: {
|
|
4198
4198
|
displayName?: string | undefined;
|
|
4199
4199
|
bio?: string | undefined;
|
|
@@ -4206,17 +4206,12 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4206
4206
|
} | undefined;
|
|
4207
4207
|
} | undefined;
|
|
4208
4208
|
}, {
|
|
4209
|
-
name: string;
|
|
4210
|
-
uid: string;
|
|
4211
|
-
createTime: string;
|
|
4212
|
-
updateTime: string;
|
|
4213
|
-
id: string;
|
|
4214
4209
|
owner: {
|
|
4215
4210
|
name: string;
|
|
4216
4211
|
uid: string;
|
|
4212
|
+
id: string;
|
|
4217
4213
|
createTime: string;
|
|
4218
4214
|
updateTime: string;
|
|
4219
|
-
id: string;
|
|
4220
4215
|
profile?: {
|
|
4221
4216
|
displayName?: string | undefined;
|
|
4222
4217
|
bio?: string | undefined;
|
|
@@ -4230,6 +4225,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4230
4225
|
} | undefined;
|
|
4231
4226
|
} | undefined;
|
|
4232
4227
|
};
|
|
4228
|
+
name: string;
|
|
4229
|
+
uid: string;
|
|
4230
|
+
id: string;
|
|
4231
|
+
createTime: string;
|
|
4232
|
+
updateTime: string;
|
|
4233
4233
|
profile?: {
|
|
4234
4234
|
displayName?: string | undefined;
|
|
4235
4235
|
bio?: string | undefined;
|
|
@@ -4244,17 +4244,12 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4244
4244
|
}>;
|
|
4245
4245
|
}, "strip", z.ZodTypeAny, {
|
|
4246
4246
|
organization: {
|
|
4247
|
-
name: string;
|
|
4248
|
-
uid: string;
|
|
4249
|
-
createTime: string;
|
|
4250
|
-
updateTime: string;
|
|
4251
|
-
id: string;
|
|
4252
4247
|
owner: {
|
|
4253
4248
|
name: string;
|
|
4254
4249
|
uid: string;
|
|
4250
|
+
id: string;
|
|
4255
4251
|
createTime: string;
|
|
4256
4252
|
updateTime: string;
|
|
4257
|
-
id: string;
|
|
4258
4253
|
profile?: {
|
|
4259
4254
|
displayName?: string | undefined;
|
|
4260
4255
|
bio?: string | undefined;
|
|
@@ -4268,6 +4263,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4268
4263
|
} | undefined;
|
|
4269
4264
|
} | undefined;
|
|
4270
4265
|
};
|
|
4266
|
+
name: string;
|
|
4267
|
+
uid: string;
|
|
4268
|
+
id: string;
|
|
4269
|
+
createTime: string;
|
|
4270
|
+
updateTime: string;
|
|
4271
4271
|
profile?: {
|
|
4272
4272
|
displayName?: string | undefined;
|
|
4273
4273
|
bio?: string | undefined;
|
|
@@ -4282,17 +4282,12 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4282
4282
|
};
|
|
4283
4283
|
}, {
|
|
4284
4284
|
organization: {
|
|
4285
|
-
name: string;
|
|
4286
|
-
uid: string;
|
|
4287
|
-
createTime: string;
|
|
4288
|
-
updateTime: string;
|
|
4289
|
-
id: string;
|
|
4290
4285
|
owner: {
|
|
4291
4286
|
name: string;
|
|
4292
4287
|
uid: string;
|
|
4288
|
+
id: string;
|
|
4293
4289
|
createTime: string;
|
|
4294
4290
|
updateTime: string;
|
|
4295
|
-
id: string;
|
|
4296
4291
|
profile?: {
|
|
4297
4292
|
displayName?: string | undefined;
|
|
4298
4293
|
bio?: string | undefined;
|
|
@@ -4306,6 +4301,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4306
4301
|
} | undefined;
|
|
4307
4302
|
} | undefined;
|
|
4308
4303
|
};
|
|
4304
|
+
name: string;
|
|
4305
|
+
uid: string;
|
|
4306
|
+
id: string;
|
|
4307
|
+
createTime: string;
|
|
4308
|
+
updateTime: string;
|
|
4309
4309
|
profile?: {
|
|
4310
4310
|
displayName?: string | undefined;
|
|
4311
4311
|
bio?: string | undefined;
|
|
@@ -4345,13 +4345,13 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4345
4345
|
}>;
|
|
4346
4346
|
}, "strip", z.ZodTypeAny, {
|
|
4347
4347
|
name: string;
|
|
4348
|
-
metadata: Record<string, any>;
|
|
4349
|
-
uid: string;
|
|
4350
|
-
createTime: string;
|
|
4351
|
-
updateTime: string;
|
|
4352
4348
|
description: string;
|
|
4349
|
+
uid: string;
|
|
4353
4350
|
id: string;
|
|
4354
4351
|
recipe: Record<string, any>;
|
|
4352
|
+
createTime: string;
|
|
4353
|
+
updateTime: string;
|
|
4354
|
+
metadata: Record<string, any>;
|
|
4355
4355
|
readme: string;
|
|
4356
4356
|
rawRecipe: string;
|
|
4357
4357
|
dataSpecification: {
|
|
@@ -4362,13 +4362,13 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4362
4362
|
alias?: string | undefined;
|
|
4363
4363
|
}, {
|
|
4364
4364
|
name: string;
|
|
4365
|
-
metadata: Record<string, any>;
|
|
4366
|
-
uid: string;
|
|
4367
|
-
createTime: string;
|
|
4368
|
-
updateTime: string;
|
|
4369
4365
|
description: string;
|
|
4366
|
+
uid: string;
|
|
4370
4367
|
id: string;
|
|
4371
4368
|
recipe: Record<string, any>;
|
|
4369
|
+
createTime: string;
|
|
4370
|
+
updateTime: string;
|
|
4371
|
+
metadata: Record<string, any>;
|
|
4372
4372
|
readme: string;
|
|
4373
4373
|
rawRecipe: string;
|
|
4374
4374
|
dataSpecification: {
|
|
@@ -4455,22 +4455,13 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4455
4455
|
documentationUrl: z.ZodString;
|
|
4456
4456
|
license: z.ZodString;
|
|
4457
4457
|
}, "strip", z.ZodTypeAny, {
|
|
4458
|
-
name: string;
|
|
4459
|
-
metadata: Record<string, any>;
|
|
4460
|
-
uid: string;
|
|
4461
|
-
createTime: string;
|
|
4462
|
-
updateTime: string;
|
|
4463
|
-
description: string;
|
|
4464
|
-
id: string;
|
|
4465
|
-
documentationUrl: string;
|
|
4466
|
-
sourceUrl: string;
|
|
4467
4458
|
owner: {
|
|
4468
4459
|
user: {
|
|
4469
4460
|
name: string;
|
|
4470
4461
|
uid: string;
|
|
4462
|
+
id: string;
|
|
4471
4463
|
createTime: string;
|
|
4472
4464
|
updateTime: string;
|
|
4473
|
-
id: string;
|
|
4474
4465
|
profile?: {
|
|
4475
4466
|
displayName?: string | undefined;
|
|
4476
4467
|
bio?: string | undefined;
|
|
@@ -4486,17 +4477,12 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4486
4477
|
};
|
|
4487
4478
|
} | {
|
|
4488
4479
|
organization: {
|
|
4489
|
-
name: string;
|
|
4490
|
-
uid: string;
|
|
4491
|
-
createTime: string;
|
|
4492
|
-
updateTime: string;
|
|
4493
|
-
id: string;
|
|
4494
4480
|
owner: {
|
|
4495
4481
|
name: string;
|
|
4496
4482
|
uid: string;
|
|
4483
|
+
id: string;
|
|
4497
4484
|
createTime: string;
|
|
4498
4485
|
updateTime: string;
|
|
4499
|
-
id: string;
|
|
4500
4486
|
profile?: {
|
|
4501
4487
|
displayName?: string | undefined;
|
|
4502
4488
|
bio?: string | undefined;
|
|
@@ -4510,6 +4496,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4510
4496
|
} | undefined;
|
|
4511
4497
|
} | undefined;
|
|
4512
4498
|
};
|
|
4499
|
+
name: string;
|
|
4500
|
+
uid: string;
|
|
4501
|
+
id: string;
|
|
4502
|
+
createTime: string;
|
|
4503
|
+
updateTime: string;
|
|
4513
4504
|
profile?: {
|
|
4514
4505
|
displayName?: string | undefined;
|
|
4515
4506
|
bio?: string | undefined;
|
|
@@ -4523,7 +4514,16 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4523
4514
|
} | undefined;
|
|
4524
4515
|
};
|
|
4525
4516
|
};
|
|
4517
|
+
name: string;
|
|
4518
|
+
description: string;
|
|
4519
|
+
uid: string;
|
|
4520
|
+
id: string;
|
|
4521
|
+
documentationUrl: string;
|
|
4522
|
+
sourceUrl: string;
|
|
4526
4523
|
recipe: Record<string, any>;
|
|
4524
|
+
createTime: string;
|
|
4525
|
+
updateTime: string;
|
|
4526
|
+
metadata: Record<string, any>;
|
|
4527
4527
|
readme: string;
|
|
4528
4528
|
dataSpecification: {
|
|
4529
4529
|
input?: any;
|
|
@@ -4544,13 +4544,13 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4544
4544
|
ownerName: string;
|
|
4545
4545
|
releases: {
|
|
4546
4546
|
name: string;
|
|
4547
|
-
metadata: Record<string, any>;
|
|
4548
|
-
uid: string;
|
|
4549
|
-
createTime: string;
|
|
4550
|
-
updateTime: string;
|
|
4551
4547
|
description: string;
|
|
4548
|
+
uid: string;
|
|
4552
4549
|
id: string;
|
|
4553
4550
|
recipe: Record<string, any>;
|
|
4551
|
+
createTime: string;
|
|
4552
|
+
updateTime: string;
|
|
4553
|
+
metadata: Record<string, any>;
|
|
4554
4554
|
readme: string;
|
|
4555
4555
|
rawRecipe: string;
|
|
4556
4556
|
dataSpecification: {
|
|
@@ -4572,22 +4572,13 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4572
4572
|
profileImage: string;
|
|
4573
4573
|
license: string;
|
|
4574
4574
|
}, {
|
|
4575
|
-
name: string;
|
|
4576
|
-
metadata: Record<string, any>;
|
|
4577
|
-
uid: string;
|
|
4578
|
-
createTime: string;
|
|
4579
|
-
updateTime: string;
|
|
4580
|
-
description: string;
|
|
4581
|
-
id: string;
|
|
4582
|
-
documentationUrl: string;
|
|
4583
|
-
sourceUrl: string;
|
|
4584
4575
|
owner: {
|
|
4585
4576
|
user: {
|
|
4586
4577
|
name: string;
|
|
4587
4578
|
uid: string;
|
|
4579
|
+
id: string;
|
|
4588
4580
|
createTime: string;
|
|
4589
4581
|
updateTime: string;
|
|
4590
|
-
id: string;
|
|
4591
4582
|
profile?: {
|
|
4592
4583
|
displayName?: string | undefined;
|
|
4593
4584
|
bio?: string | undefined;
|
|
@@ -4603,17 +4594,12 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4603
4594
|
};
|
|
4604
4595
|
} | {
|
|
4605
4596
|
organization: {
|
|
4606
|
-
name: string;
|
|
4607
|
-
uid: string;
|
|
4608
|
-
createTime: string;
|
|
4609
|
-
updateTime: string;
|
|
4610
|
-
id: string;
|
|
4611
4597
|
owner: {
|
|
4612
4598
|
name: string;
|
|
4613
4599
|
uid: string;
|
|
4600
|
+
id: string;
|
|
4614
4601
|
createTime: string;
|
|
4615
4602
|
updateTime: string;
|
|
4616
|
-
id: string;
|
|
4617
4603
|
profile?: {
|
|
4618
4604
|
displayName?: string | undefined;
|
|
4619
4605
|
bio?: string | undefined;
|
|
@@ -4627,6 +4613,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4627
4613
|
} | undefined;
|
|
4628
4614
|
} | undefined;
|
|
4629
4615
|
};
|
|
4616
|
+
name: string;
|
|
4617
|
+
uid: string;
|
|
4618
|
+
id: string;
|
|
4619
|
+
createTime: string;
|
|
4620
|
+
updateTime: string;
|
|
4630
4621
|
profile?: {
|
|
4631
4622
|
displayName?: string | undefined;
|
|
4632
4623
|
bio?: string | undefined;
|
|
@@ -4640,7 +4631,16 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4640
4631
|
} | undefined;
|
|
4641
4632
|
};
|
|
4642
4633
|
};
|
|
4634
|
+
name: string;
|
|
4635
|
+
description: string;
|
|
4636
|
+
uid: string;
|
|
4637
|
+
id: string;
|
|
4638
|
+
documentationUrl: string;
|
|
4639
|
+
sourceUrl: string;
|
|
4643
4640
|
recipe: Record<string, any>;
|
|
4641
|
+
createTime: string;
|
|
4642
|
+
updateTime: string;
|
|
4643
|
+
metadata: Record<string, any>;
|
|
4644
4644
|
readme: string;
|
|
4645
4645
|
dataSpecification: {
|
|
4646
4646
|
input?: any;
|
|
@@ -4661,13 +4661,13 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4661
4661
|
ownerName: string;
|
|
4662
4662
|
releases: {
|
|
4663
4663
|
name: string;
|
|
4664
|
-
metadata: Record<string, any>;
|
|
4665
|
-
uid: string;
|
|
4666
|
-
createTime: string;
|
|
4667
|
-
updateTime: string;
|
|
4668
4664
|
description: string;
|
|
4665
|
+
uid: string;
|
|
4669
4666
|
id: string;
|
|
4670
4667
|
recipe: Record<string, any>;
|
|
4668
|
+
createTime: string;
|
|
4669
|
+
updateTime: string;
|
|
4670
|
+
metadata: Record<string, any>;
|
|
4671
4671
|
readme: string;
|
|
4672
4672
|
rawRecipe: string;
|
|
4673
4673
|
dataSpecification: {
|
|
@@ -4782,9 +4782,9 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4782
4782
|
}, "strip", z.ZodTypeAny, {
|
|
4783
4783
|
name: string;
|
|
4784
4784
|
uid: string;
|
|
4785
|
+
id: string;
|
|
4785
4786
|
createTime: string;
|
|
4786
4787
|
updateTime: string;
|
|
4787
|
-
id: string;
|
|
4788
4788
|
profile?: {
|
|
4789
4789
|
displayName?: string | undefined;
|
|
4790
4790
|
bio?: string | undefined;
|
|
@@ -4800,9 +4800,9 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4800
4800
|
}, {
|
|
4801
4801
|
name: string;
|
|
4802
4802
|
uid: string;
|
|
4803
|
+
id: string;
|
|
4803
4804
|
createTime: string;
|
|
4804
4805
|
updateTime: string;
|
|
4805
|
-
id: string;
|
|
4806
4806
|
profile?: {
|
|
4807
4807
|
displayName?: string | undefined;
|
|
4808
4808
|
bio?: string | undefined;
|
|
@@ -4820,9 +4820,9 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4820
4820
|
user: {
|
|
4821
4821
|
name: string;
|
|
4822
4822
|
uid: string;
|
|
4823
|
+
id: string;
|
|
4823
4824
|
createTime: string;
|
|
4824
4825
|
updateTime: string;
|
|
4825
|
-
id: string;
|
|
4826
4826
|
profile?: {
|
|
4827
4827
|
displayName?: string | undefined;
|
|
4828
4828
|
bio?: string | undefined;
|
|
@@ -4840,9 +4840,9 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4840
4840
|
user: {
|
|
4841
4841
|
name: string;
|
|
4842
4842
|
uid: string;
|
|
4843
|
+
id: string;
|
|
4843
4844
|
createTime: string;
|
|
4844
4845
|
updateTime: string;
|
|
4845
|
-
id: string;
|
|
4846
4846
|
profile?: {
|
|
4847
4847
|
displayName?: string | undefined;
|
|
4848
4848
|
bio?: string | undefined;
|
|
@@ -4914,9 +4914,9 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4914
4914
|
}, "strip", z.ZodTypeAny, {
|
|
4915
4915
|
name: string;
|
|
4916
4916
|
uid: string;
|
|
4917
|
+
id: string;
|
|
4917
4918
|
createTime: string;
|
|
4918
4919
|
updateTime: string;
|
|
4919
|
-
id: string;
|
|
4920
4920
|
profile?: {
|
|
4921
4921
|
displayName?: string | undefined;
|
|
4922
4922
|
bio?: string | undefined;
|
|
@@ -4932,9 +4932,9 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4932
4932
|
}, {
|
|
4933
4933
|
name: string;
|
|
4934
4934
|
uid: string;
|
|
4935
|
+
id: string;
|
|
4935
4936
|
createTime: string;
|
|
4936
4937
|
updateTime: string;
|
|
4937
|
-
id: string;
|
|
4938
4938
|
profile?: {
|
|
4939
4939
|
displayName?: string | undefined;
|
|
4940
4940
|
bio?: string | undefined;
|
|
@@ -4988,17 +4988,12 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4988
4988
|
} | undefined;
|
|
4989
4989
|
}>>;
|
|
4990
4990
|
}, "strip", z.ZodTypeAny, {
|
|
4991
|
-
name: string;
|
|
4992
|
-
uid: string;
|
|
4993
|
-
createTime: string;
|
|
4994
|
-
updateTime: string;
|
|
4995
|
-
id: string;
|
|
4996
4991
|
owner: {
|
|
4997
4992
|
name: string;
|
|
4998
4993
|
uid: string;
|
|
4994
|
+
id: string;
|
|
4999
4995
|
createTime: string;
|
|
5000
4996
|
updateTime: string;
|
|
5001
|
-
id: string;
|
|
5002
4997
|
profile?: {
|
|
5003
4998
|
displayName?: string | undefined;
|
|
5004
4999
|
bio?: string | undefined;
|
|
@@ -5012,6 +5007,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5012
5007
|
} | undefined;
|
|
5013
5008
|
} | undefined;
|
|
5014
5009
|
};
|
|
5010
|
+
name: string;
|
|
5011
|
+
uid: string;
|
|
5012
|
+
id: string;
|
|
5013
|
+
createTime: string;
|
|
5014
|
+
updateTime: string;
|
|
5015
5015
|
profile?: {
|
|
5016
5016
|
displayName?: string | undefined;
|
|
5017
5017
|
bio?: string | undefined;
|
|
@@ -5024,17 +5024,12 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5024
5024
|
} | undefined;
|
|
5025
5025
|
} | undefined;
|
|
5026
5026
|
}, {
|
|
5027
|
-
name: string;
|
|
5028
|
-
uid: string;
|
|
5029
|
-
createTime: string;
|
|
5030
|
-
updateTime: string;
|
|
5031
|
-
id: string;
|
|
5032
5027
|
owner: {
|
|
5033
5028
|
name: string;
|
|
5034
5029
|
uid: string;
|
|
5030
|
+
id: string;
|
|
5035
5031
|
createTime: string;
|
|
5036
5032
|
updateTime: string;
|
|
5037
|
-
id: string;
|
|
5038
5033
|
profile?: {
|
|
5039
5034
|
displayName?: string | undefined;
|
|
5040
5035
|
bio?: string | undefined;
|
|
@@ -5048,6 +5043,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5048
5043
|
} | undefined;
|
|
5049
5044
|
} | undefined;
|
|
5050
5045
|
};
|
|
5046
|
+
name: string;
|
|
5047
|
+
uid: string;
|
|
5048
|
+
id: string;
|
|
5049
|
+
createTime: string;
|
|
5050
|
+
updateTime: string;
|
|
5051
5051
|
profile?: {
|
|
5052
5052
|
displayName?: string | undefined;
|
|
5053
5053
|
bio?: string | undefined;
|
|
@@ -5062,17 +5062,12 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5062
5062
|
}>;
|
|
5063
5063
|
}, "strip", z.ZodTypeAny, {
|
|
5064
5064
|
organization: {
|
|
5065
|
-
name: string;
|
|
5066
|
-
uid: string;
|
|
5067
|
-
createTime: string;
|
|
5068
|
-
updateTime: string;
|
|
5069
|
-
id: string;
|
|
5070
5065
|
owner: {
|
|
5071
5066
|
name: string;
|
|
5072
5067
|
uid: string;
|
|
5068
|
+
id: string;
|
|
5073
5069
|
createTime: string;
|
|
5074
5070
|
updateTime: string;
|
|
5075
|
-
id: string;
|
|
5076
5071
|
profile?: {
|
|
5077
5072
|
displayName?: string | undefined;
|
|
5078
5073
|
bio?: string | undefined;
|
|
@@ -5086,6 +5081,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5086
5081
|
} | undefined;
|
|
5087
5082
|
} | undefined;
|
|
5088
5083
|
};
|
|
5084
|
+
name: string;
|
|
5085
|
+
uid: string;
|
|
5086
|
+
id: string;
|
|
5087
|
+
createTime: string;
|
|
5088
|
+
updateTime: string;
|
|
5089
5089
|
profile?: {
|
|
5090
5090
|
displayName?: string | undefined;
|
|
5091
5091
|
bio?: string | undefined;
|
|
@@ -5100,17 +5100,12 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5100
5100
|
};
|
|
5101
5101
|
}, {
|
|
5102
5102
|
organization: {
|
|
5103
|
-
name: string;
|
|
5104
|
-
uid: string;
|
|
5105
|
-
createTime: string;
|
|
5106
|
-
updateTime: string;
|
|
5107
|
-
id: string;
|
|
5108
5103
|
owner: {
|
|
5109
5104
|
name: string;
|
|
5110
5105
|
uid: string;
|
|
5106
|
+
id: string;
|
|
5111
5107
|
createTime: string;
|
|
5112
5108
|
updateTime: string;
|
|
5113
|
-
id: string;
|
|
5114
5109
|
profile?: {
|
|
5115
5110
|
displayName?: string | undefined;
|
|
5116
5111
|
bio?: string | undefined;
|
|
@@ -5124,6 +5119,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5124
5119
|
} | undefined;
|
|
5125
5120
|
} | undefined;
|
|
5126
5121
|
};
|
|
5122
|
+
name: string;
|
|
5123
|
+
uid: string;
|
|
5124
|
+
id: string;
|
|
5125
|
+
createTime: string;
|
|
5126
|
+
updateTime: string;
|
|
5127
5127
|
profile?: {
|
|
5128
5128
|
displayName?: string | undefined;
|
|
5129
5129
|
bio?: string | undefined;
|
|
@@ -5163,13 +5163,13 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5163
5163
|
}>;
|
|
5164
5164
|
}, "strip", z.ZodTypeAny, {
|
|
5165
5165
|
name: string;
|
|
5166
|
-
metadata: Record<string, any>;
|
|
5167
|
-
uid: string;
|
|
5168
|
-
createTime: string;
|
|
5169
|
-
updateTime: string;
|
|
5170
5166
|
description: string;
|
|
5167
|
+
uid: string;
|
|
5171
5168
|
id: string;
|
|
5172
5169
|
recipe: Record<string, any>;
|
|
5170
|
+
createTime: string;
|
|
5171
|
+
updateTime: string;
|
|
5172
|
+
metadata: Record<string, any>;
|
|
5173
5173
|
readme: string;
|
|
5174
5174
|
rawRecipe: string;
|
|
5175
5175
|
dataSpecification: {
|
|
@@ -5180,13 +5180,13 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5180
5180
|
alias?: string | undefined;
|
|
5181
5181
|
}, {
|
|
5182
5182
|
name: string;
|
|
5183
|
-
metadata: Record<string, any>;
|
|
5184
|
-
uid: string;
|
|
5185
|
-
createTime: string;
|
|
5186
|
-
updateTime: string;
|
|
5187
5183
|
description: string;
|
|
5184
|
+
uid: string;
|
|
5188
5185
|
id: string;
|
|
5189
5186
|
recipe: Record<string, any>;
|
|
5187
|
+
createTime: string;
|
|
5188
|
+
updateTime: string;
|
|
5189
|
+
metadata: Record<string, any>;
|
|
5190
5190
|
readme: string;
|
|
5191
5191
|
rawRecipe: string;
|
|
5192
5192
|
dataSpecification: {
|
|
@@ -5273,22 +5273,13 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5273
5273
|
documentationUrl: z.ZodString;
|
|
5274
5274
|
license: z.ZodString;
|
|
5275
5275
|
}, "strip", z.ZodTypeAny, {
|
|
5276
|
-
name: string;
|
|
5277
|
-
metadata: Record<string, any>;
|
|
5278
|
-
uid: string;
|
|
5279
|
-
createTime: string;
|
|
5280
|
-
updateTime: string;
|
|
5281
|
-
description: string;
|
|
5282
|
-
id: string;
|
|
5283
|
-
documentationUrl: string;
|
|
5284
|
-
sourceUrl: string;
|
|
5285
5276
|
owner: {
|
|
5286
5277
|
user: {
|
|
5287
5278
|
name: string;
|
|
5288
5279
|
uid: string;
|
|
5280
|
+
id: string;
|
|
5289
5281
|
createTime: string;
|
|
5290
5282
|
updateTime: string;
|
|
5291
|
-
id: string;
|
|
5292
5283
|
profile?: {
|
|
5293
5284
|
displayName?: string | undefined;
|
|
5294
5285
|
bio?: string | undefined;
|
|
@@ -5304,17 +5295,12 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5304
5295
|
};
|
|
5305
5296
|
} | {
|
|
5306
5297
|
organization: {
|
|
5307
|
-
name: string;
|
|
5308
|
-
uid: string;
|
|
5309
|
-
createTime: string;
|
|
5310
|
-
updateTime: string;
|
|
5311
|
-
id: string;
|
|
5312
5298
|
owner: {
|
|
5313
5299
|
name: string;
|
|
5314
5300
|
uid: string;
|
|
5301
|
+
id: string;
|
|
5315
5302
|
createTime: string;
|
|
5316
5303
|
updateTime: string;
|
|
5317
|
-
id: string;
|
|
5318
5304
|
profile?: {
|
|
5319
5305
|
displayName?: string | undefined;
|
|
5320
5306
|
bio?: string | undefined;
|
|
@@ -5328,6 +5314,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5328
5314
|
} | undefined;
|
|
5329
5315
|
} | undefined;
|
|
5330
5316
|
};
|
|
5317
|
+
name: string;
|
|
5318
|
+
uid: string;
|
|
5319
|
+
id: string;
|
|
5320
|
+
createTime: string;
|
|
5321
|
+
updateTime: string;
|
|
5331
5322
|
profile?: {
|
|
5332
5323
|
displayName?: string | undefined;
|
|
5333
5324
|
bio?: string | undefined;
|
|
@@ -5341,7 +5332,16 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5341
5332
|
} | undefined;
|
|
5342
5333
|
};
|
|
5343
5334
|
};
|
|
5335
|
+
name: string;
|
|
5336
|
+
description: string;
|
|
5337
|
+
uid: string;
|
|
5338
|
+
id: string;
|
|
5339
|
+
documentationUrl: string;
|
|
5340
|
+
sourceUrl: string;
|
|
5344
5341
|
recipe: Record<string, any>;
|
|
5342
|
+
createTime: string;
|
|
5343
|
+
updateTime: string;
|
|
5344
|
+
metadata: Record<string, any>;
|
|
5345
5345
|
readme: string;
|
|
5346
5346
|
dataSpecification: {
|
|
5347
5347
|
input?: any;
|
|
@@ -5362,13 +5362,13 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5362
5362
|
ownerName: string;
|
|
5363
5363
|
releases: {
|
|
5364
5364
|
name: string;
|
|
5365
|
-
metadata: Record<string, any>;
|
|
5366
|
-
uid: string;
|
|
5367
|
-
createTime: string;
|
|
5368
|
-
updateTime: string;
|
|
5369
5365
|
description: string;
|
|
5366
|
+
uid: string;
|
|
5370
5367
|
id: string;
|
|
5371
5368
|
recipe: Record<string, any>;
|
|
5369
|
+
createTime: string;
|
|
5370
|
+
updateTime: string;
|
|
5371
|
+
metadata: Record<string, any>;
|
|
5372
5372
|
readme: string;
|
|
5373
5373
|
rawRecipe: string;
|
|
5374
5374
|
dataSpecification: {
|
|
@@ -5390,22 +5390,13 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5390
5390
|
profileImage: string;
|
|
5391
5391
|
license: string;
|
|
5392
5392
|
}, {
|
|
5393
|
-
name: string;
|
|
5394
|
-
metadata: Record<string, any>;
|
|
5395
|
-
uid: string;
|
|
5396
|
-
createTime: string;
|
|
5397
|
-
updateTime: string;
|
|
5398
|
-
description: string;
|
|
5399
|
-
id: string;
|
|
5400
|
-
documentationUrl: string;
|
|
5401
|
-
sourceUrl: string;
|
|
5402
5393
|
owner: {
|
|
5403
5394
|
user: {
|
|
5404
5395
|
name: string;
|
|
5405
5396
|
uid: string;
|
|
5397
|
+
id: string;
|
|
5406
5398
|
createTime: string;
|
|
5407
5399
|
updateTime: string;
|
|
5408
|
-
id: string;
|
|
5409
5400
|
profile?: {
|
|
5410
5401
|
displayName?: string | undefined;
|
|
5411
5402
|
bio?: string | undefined;
|
|
@@ -5421,17 +5412,12 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5421
5412
|
};
|
|
5422
5413
|
} | {
|
|
5423
5414
|
organization: {
|
|
5424
|
-
name: string;
|
|
5425
|
-
uid: string;
|
|
5426
|
-
createTime: string;
|
|
5427
|
-
updateTime: string;
|
|
5428
|
-
id: string;
|
|
5429
5415
|
owner: {
|
|
5430
5416
|
name: string;
|
|
5431
5417
|
uid: string;
|
|
5418
|
+
id: string;
|
|
5432
5419
|
createTime: string;
|
|
5433
5420
|
updateTime: string;
|
|
5434
|
-
id: string;
|
|
5435
5421
|
profile?: {
|
|
5436
5422
|
displayName?: string | undefined;
|
|
5437
5423
|
bio?: string | undefined;
|
|
@@ -5445,6 +5431,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5445
5431
|
} | undefined;
|
|
5446
5432
|
} | undefined;
|
|
5447
5433
|
};
|
|
5434
|
+
name: string;
|
|
5435
|
+
uid: string;
|
|
5436
|
+
id: string;
|
|
5437
|
+
createTime: string;
|
|
5438
|
+
updateTime: string;
|
|
5448
5439
|
profile?: {
|
|
5449
5440
|
displayName?: string | undefined;
|
|
5450
5441
|
bio?: string | undefined;
|
|
@@ -5458,7 +5449,16 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5458
5449
|
} | undefined;
|
|
5459
5450
|
};
|
|
5460
5451
|
};
|
|
5452
|
+
name: string;
|
|
5453
|
+
description: string;
|
|
5454
|
+
uid: string;
|
|
5455
|
+
id: string;
|
|
5456
|
+
documentationUrl: string;
|
|
5457
|
+
sourceUrl: string;
|
|
5461
5458
|
recipe: Record<string, any>;
|
|
5459
|
+
createTime: string;
|
|
5460
|
+
updateTime: string;
|
|
5461
|
+
metadata: Record<string, any>;
|
|
5462
5462
|
readme: string;
|
|
5463
5463
|
dataSpecification: {
|
|
5464
5464
|
input?: any;
|
|
@@ -5479,13 +5479,13 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5479
5479
|
ownerName: string;
|
|
5480
5480
|
releases: {
|
|
5481
5481
|
name: string;
|
|
5482
|
-
metadata: Record<string, any>;
|
|
5483
|
-
uid: string;
|
|
5484
|
-
createTime: string;
|
|
5485
|
-
updateTime: string;
|
|
5486
5482
|
description: string;
|
|
5483
|
+
uid: string;
|
|
5487
5484
|
id: string;
|
|
5488
5485
|
recipe: Record<string, any>;
|
|
5486
|
+
createTime: string;
|
|
5487
|
+
updateTime: string;
|
|
5488
|
+
metadata: Record<string, any>;
|
|
5489
5489
|
readme: string;
|
|
5490
5490
|
rawRecipe: string;
|
|
5491
5491
|
dataSpecification: {
|