instill-sdk 0.19.0-rc.3 → 0.19.0-rc.5
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/constant.d.ts +8 -0
- package/dist/chat/constant.d.ts.map +1 -0
- package/dist/core/integration/type.d.ts +18 -18
- package/dist/core/membership/types.d.ts +60 -60
- package/dist/core/organization/types.d.ts +4 -4
- package/dist/core/user/types.d.ts +9 -9
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +16 -16
- package/dist/vdp/component/types.d.ts +121 -121
- package/dist/vdp/pipeline/types.d.ts +651 -651
- package/dist/vdp/release/types.d.ts +10 -10
- package/dist/vdp/types.d.ts +8 -8
- package/package.json +2 -2
- package/dist/helper/makeXMLRequestWithProgress.d.ts +0 -4
- package/dist/helper/makeXMLRequestWithProgress.d.ts.map +0 -1
|
@@ -95,27 +95,27 @@ export declare const PipelineSharingSchema: z.ZodObject<{
|
|
|
95
95
|
code?: string | undefined;
|
|
96
96
|
}>>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
|
-
users: Record<string, {
|
|
99
|
-
enabled: boolean;
|
|
100
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
101
|
-
} | undefined>;
|
|
102
98
|
shareCode: {
|
|
103
99
|
user: string;
|
|
104
100
|
enabled: boolean;
|
|
105
101
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
106
102
|
code?: string | undefined;
|
|
107
103
|
} | null;
|
|
108
|
-
}, {
|
|
109
104
|
users: Record<string, {
|
|
110
105
|
enabled: boolean;
|
|
111
106
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
112
107
|
} | undefined>;
|
|
108
|
+
}, {
|
|
113
109
|
shareCode: {
|
|
114
110
|
user: string;
|
|
115
111
|
enabled: boolean;
|
|
116
112
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
117
113
|
code?: string | undefined;
|
|
118
114
|
} | null;
|
|
115
|
+
users: Record<string, {
|
|
116
|
+
enabled: boolean;
|
|
117
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
118
|
+
} | undefined>;
|
|
119
119
|
}>;
|
|
120
120
|
export type Pipeline = {
|
|
121
121
|
name: string;
|
|
@@ -427,8 +427,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
427
427
|
name: string;
|
|
428
428
|
uid: string;
|
|
429
429
|
id: string;
|
|
430
|
-
createTime: string;
|
|
431
|
-
updateTime: string;
|
|
432
430
|
owner: {
|
|
433
431
|
name: string;
|
|
434
432
|
uid: string;
|
|
@@ -448,6 +446,8 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
448
446
|
} | undefined;
|
|
449
447
|
} | undefined;
|
|
450
448
|
};
|
|
449
|
+
createTime: string;
|
|
450
|
+
updateTime: string;
|
|
451
451
|
profile?: {
|
|
452
452
|
displayName?: string | undefined;
|
|
453
453
|
bio?: string | undefined;
|
|
@@ -463,8 +463,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
463
463
|
name: string;
|
|
464
464
|
uid: string;
|
|
465
465
|
id: string;
|
|
466
|
-
createTime: string;
|
|
467
|
-
updateTime: string;
|
|
468
466
|
owner: {
|
|
469
467
|
name: string;
|
|
470
468
|
uid: string;
|
|
@@ -484,6 +482,8 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
484
482
|
} | undefined;
|
|
485
483
|
} | undefined;
|
|
486
484
|
};
|
|
485
|
+
createTime: string;
|
|
486
|
+
updateTime: string;
|
|
487
487
|
profile?: {
|
|
488
488
|
displayName?: string | undefined;
|
|
489
489
|
bio?: string | undefined;
|
|
@@ -501,8 +501,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
501
501
|
name: string;
|
|
502
502
|
uid: string;
|
|
503
503
|
id: string;
|
|
504
|
-
createTime: string;
|
|
505
|
-
updateTime: string;
|
|
506
504
|
owner: {
|
|
507
505
|
name: string;
|
|
508
506
|
uid: string;
|
|
@@ -522,6 +520,8 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
522
520
|
} | undefined;
|
|
523
521
|
} | undefined;
|
|
524
522
|
};
|
|
523
|
+
createTime: string;
|
|
524
|
+
updateTime: string;
|
|
525
525
|
profile?: {
|
|
526
526
|
displayName?: string | undefined;
|
|
527
527
|
bio?: string | undefined;
|
|
@@ -539,8 +539,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
539
539
|
name: string;
|
|
540
540
|
uid: string;
|
|
541
541
|
id: string;
|
|
542
|
-
createTime: string;
|
|
543
|
-
updateTime: string;
|
|
544
542
|
owner: {
|
|
545
543
|
name: string;
|
|
546
544
|
uid: string;
|
|
@@ -560,6 +558,8 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
560
558
|
} | undefined;
|
|
561
559
|
} | undefined;
|
|
562
560
|
};
|
|
561
|
+
createTime: string;
|
|
562
|
+
updateTime: string;
|
|
563
563
|
profile?: {
|
|
564
564
|
displayName?: string | undefined;
|
|
565
565
|
bio?: string | undefined;
|
|
@@ -599,36 +599,36 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
599
599
|
}>;
|
|
600
600
|
}, "strip", z.ZodTypeAny, {
|
|
601
601
|
name: string;
|
|
602
|
+
description: string;
|
|
602
603
|
uid: string;
|
|
603
604
|
id: string;
|
|
604
|
-
|
|
605
|
-
readme: string;
|
|
605
|
+
recipe: Record<string, any>;
|
|
606
606
|
createTime: string;
|
|
607
607
|
updateTime: string;
|
|
608
|
-
|
|
608
|
+
metadata: Record<string, any>;
|
|
609
|
+
readme: string;
|
|
610
|
+
rawRecipe: string;
|
|
609
611
|
dataSpecification: {
|
|
610
612
|
input?: any;
|
|
611
613
|
output?: any;
|
|
612
614
|
};
|
|
613
|
-
metadata: Record<string, any>;
|
|
614
|
-
rawRecipe: string;
|
|
615
615
|
deleteTime?: string | undefined;
|
|
616
616
|
alias?: string | undefined;
|
|
617
617
|
}, {
|
|
618
618
|
name: string;
|
|
619
|
+
description: string;
|
|
619
620
|
uid: string;
|
|
620
621
|
id: string;
|
|
621
|
-
|
|
622
|
-
readme: string;
|
|
622
|
+
recipe: Record<string, any>;
|
|
623
623
|
createTime: string;
|
|
624
624
|
updateTime: string;
|
|
625
|
-
|
|
625
|
+
metadata: Record<string, any>;
|
|
626
|
+
readme: string;
|
|
627
|
+
rawRecipe: string;
|
|
626
628
|
dataSpecification: {
|
|
627
629
|
input?: any;
|
|
628
630
|
output?: any;
|
|
629
631
|
};
|
|
630
|
-
metadata: Record<string, any>;
|
|
631
|
-
rawRecipe: string;
|
|
632
632
|
deleteTime?: string | undefined;
|
|
633
633
|
alias?: string | undefined;
|
|
634
634
|
}>, "many">;
|
|
@@ -660,27 +660,27 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
660
660
|
code?: string | undefined;
|
|
661
661
|
}>>;
|
|
662
662
|
}, "strip", z.ZodTypeAny, {
|
|
663
|
-
users: Record<string, {
|
|
664
|
-
enabled: boolean;
|
|
665
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
666
|
-
} | undefined>;
|
|
667
663
|
shareCode: {
|
|
668
664
|
user: string;
|
|
669
665
|
enabled: boolean;
|
|
670
666
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
671
667
|
code?: string | undefined;
|
|
672
668
|
} | null;
|
|
673
|
-
}, {
|
|
674
669
|
users: Record<string, {
|
|
675
670
|
enabled: boolean;
|
|
676
671
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
677
672
|
} | undefined>;
|
|
673
|
+
}, {
|
|
678
674
|
shareCode: {
|
|
679
675
|
user: string;
|
|
680
676
|
enabled: boolean;
|
|
681
677
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
682
678
|
code?: string | undefined;
|
|
683
679
|
} | null;
|
|
680
|
+
users: Record<string, {
|
|
681
|
+
enabled: boolean;
|
|
682
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
683
|
+
} | undefined>;
|
|
684
684
|
}>;
|
|
685
685
|
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
686
686
|
permission: z.ZodObject<{
|
|
@@ -710,17 +710,11 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
710
710
|
license: z.ZodString;
|
|
711
711
|
}, "strip", z.ZodTypeAny, {
|
|
712
712
|
name: string;
|
|
713
|
+
description: string;
|
|
713
714
|
uid: string;
|
|
714
715
|
id: string;
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
createTime: string;
|
|
718
|
-
updateTime: string;
|
|
719
|
-
recipe: Record<string, any>;
|
|
720
|
-
dataSpecification: {
|
|
721
|
-
input?: any;
|
|
722
|
-
output?: any;
|
|
723
|
-
};
|
|
716
|
+
documentationUrl: string;
|
|
717
|
+
sourceUrl: string;
|
|
724
718
|
owner: {
|
|
725
719
|
user: {
|
|
726
720
|
name: string;
|
|
@@ -746,8 +740,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
746
740
|
name: string;
|
|
747
741
|
uid: string;
|
|
748
742
|
id: string;
|
|
749
|
-
createTime: string;
|
|
750
|
-
updateTime: string;
|
|
751
743
|
owner: {
|
|
752
744
|
name: string;
|
|
753
745
|
uid: string;
|
|
@@ -767,6 +759,8 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
767
759
|
} | undefined;
|
|
768
760
|
} | undefined;
|
|
769
761
|
};
|
|
762
|
+
createTime: string;
|
|
763
|
+
updateTime: string;
|
|
770
764
|
profile?: {
|
|
771
765
|
displayName?: string | undefined;
|
|
772
766
|
bio?: string | undefined;
|
|
@@ -780,38 +774,46 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
780
774
|
} | undefined;
|
|
781
775
|
};
|
|
782
776
|
};
|
|
777
|
+
recipe: Record<string, any>;
|
|
778
|
+
createTime: string;
|
|
779
|
+
updateTime: string;
|
|
780
|
+
metadata: Record<string, any>;
|
|
781
|
+
readme: string;
|
|
782
|
+
dataSpecification: {
|
|
783
|
+
input?: any;
|
|
784
|
+
output?: any;
|
|
785
|
+
};
|
|
786
|
+
sharing: {
|
|
787
|
+
shareCode: {
|
|
788
|
+
user: string;
|
|
789
|
+
enabled: boolean;
|
|
790
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
791
|
+
code?: string | undefined;
|
|
792
|
+
} | null;
|
|
793
|
+
users: Record<string, {
|
|
794
|
+
enabled: boolean;
|
|
795
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
796
|
+
} | undefined>;
|
|
797
|
+
};
|
|
783
798
|
ownerName: string;
|
|
784
799
|
releases: {
|
|
785
800
|
name: string;
|
|
801
|
+
description: string;
|
|
786
802
|
uid: string;
|
|
787
803
|
id: string;
|
|
788
|
-
|
|
789
|
-
readme: string;
|
|
804
|
+
recipe: Record<string, any>;
|
|
790
805
|
createTime: string;
|
|
791
806
|
updateTime: string;
|
|
792
|
-
|
|
807
|
+
metadata: Record<string, any>;
|
|
808
|
+
readme: string;
|
|
809
|
+
rawRecipe: string;
|
|
793
810
|
dataSpecification: {
|
|
794
811
|
input?: any;
|
|
795
812
|
output?: any;
|
|
796
813
|
};
|
|
797
|
-
metadata: Record<string, any>;
|
|
798
|
-
rawRecipe: string;
|
|
799
814
|
deleteTime?: string | undefined;
|
|
800
815
|
alias?: string | undefined;
|
|
801
816
|
}[];
|
|
802
|
-
metadata: Record<string, any>;
|
|
803
|
-
sharing: {
|
|
804
|
-
users: Record<string, {
|
|
805
|
-
enabled: boolean;
|
|
806
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
807
|
-
} | undefined>;
|
|
808
|
-
shareCode: {
|
|
809
|
-
user: string;
|
|
810
|
-
enabled: boolean;
|
|
811
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
812
|
-
code?: string | undefined;
|
|
813
|
-
} | null;
|
|
814
|
-
};
|
|
815
817
|
permission: {
|
|
816
818
|
canEdit: boolean;
|
|
817
819
|
canTrigger: boolean;
|
|
@@ -822,22 +824,14 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
822
824
|
numberOfRuns: number;
|
|
823
825
|
};
|
|
824
826
|
profileImage: string;
|
|
825
|
-
sourceUrl: string;
|
|
826
|
-
documentationUrl: string;
|
|
827
827
|
license: string;
|
|
828
828
|
}, {
|
|
829
829
|
name: string;
|
|
830
|
+
description: string;
|
|
830
831
|
uid: string;
|
|
831
832
|
id: string;
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
createTime: string;
|
|
835
|
-
updateTime: string;
|
|
836
|
-
recipe: Record<string, any>;
|
|
837
|
-
dataSpecification: {
|
|
838
|
-
input?: any;
|
|
839
|
-
output?: any;
|
|
840
|
-
};
|
|
833
|
+
documentationUrl: string;
|
|
834
|
+
sourceUrl: string;
|
|
841
835
|
owner: {
|
|
842
836
|
user: {
|
|
843
837
|
name: string;
|
|
@@ -863,8 +857,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
863
857
|
name: string;
|
|
864
858
|
uid: string;
|
|
865
859
|
id: string;
|
|
866
|
-
createTime: string;
|
|
867
|
-
updateTime: string;
|
|
868
860
|
owner: {
|
|
869
861
|
name: string;
|
|
870
862
|
uid: string;
|
|
@@ -884,6 +876,8 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
884
876
|
} | undefined;
|
|
885
877
|
} | undefined;
|
|
886
878
|
};
|
|
879
|
+
createTime: string;
|
|
880
|
+
updateTime: string;
|
|
887
881
|
profile?: {
|
|
888
882
|
displayName?: string | undefined;
|
|
889
883
|
bio?: string | undefined;
|
|
@@ -897,38 +891,46 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
897
891
|
} | undefined;
|
|
898
892
|
};
|
|
899
893
|
};
|
|
894
|
+
recipe: Record<string, any>;
|
|
895
|
+
createTime: string;
|
|
896
|
+
updateTime: string;
|
|
897
|
+
metadata: Record<string, any>;
|
|
898
|
+
readme: string;
|
|
899
|
+
dataSpecification: {
|
|
900
|
+
input?: any;
|
|
901
|
+
output?: any;
|
|
902
|
+
};
|
|
903
|
+
sharing: {
|
|
904
|
+
shareCode: {
|
|
905
|
+
user: string;
|
|
906
|
+
enabled: boolean;
|
|
907
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
908
|
+
code?: string | undefined;
|
|
909
|
+
} | null;
|
|
910
|
+
users: Record<string, {
|
|
911
|
+
enabled: boolean;
|
|
912
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
913
|
+
} | undefined>;
|
|
914
|
+
};
|
|
900
915
|
ownerName: string;
|
|
901
916
|
releases: {
|
|
902
917
|
name: string;
|
|
918
|
+
description: string;
|
|
903
919
|
uid: string;
|
|
904
920
|
id: string;
|
|
905
|
-
|
|
906
|
-
readme: string;
|
|
921
|
+
recipe: Record<string, any>;
|
|
907
922
|
createTime: string;
|
|
908
923
|
updateTime: string;
|
|
909
|
-
|
|
924
|
+
metadata: Record<string, any>;
|
|
925
|
+
readme: string;
|
|
926
|
+
rawRecipe: string;
|
|
910
927
|
dataSpecification: {
|
|
911
928
|
input?: any;
|
|
912
929
|
output?: any;
|
|
913
930
|
};
|
|
914
|
-
metadata: Record<string, any>;
|
|
915
|
-
rawRecipe: string;
|
|
916
931
|
deleteTime?: string | undefined;
|
|
917
932
|
alias?: string | undefined;
|
|
918
933
|
}[];
|
|
919
|
-
metadata: Record<string, any>;
|
|
920
|
-
sharing: {
|
|
921
|
-
users: Record<string, {
|
|
922
|
-
enabled: boolean;
|
|
923
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
924
|
-
} | undefined>;
|
|
925
|
-
shareCode: {
|
|
926
|
-
user: string;
|
|
927
|
-
enabled: boolean;
|
|
928
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
929
|
-
code?: string | undefined;
|
|
930
|
-
} | null;
|
|
931
|
-
};
|
|
932
934
|
permission: {
|
|
933
935
|
canEdit: boolean;
|
|
934
936
|
canTrigger: boolean;
|
|
@@ -939,8 +941,6 @@ export declare const PipelineSchema: z.ZodObject<{
|
|
|
939
941
|
numberOfRuns: number;
|
|
940
942
|
};
|
|
941
943
|
profileImage: string;
|
|
942
|
-
sourceUrl: string;
|
|
943
|
-
documentationUrl: string;
|
|
944
944
|
license: string;
|
|
945
945
|
}>;
|
|
946
946
|
export type PipelineTrace = {
|
|
@@ -1257,8 +1257,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1257
1257
|
name: string;
|
|
1258
1258
|
uid: string;
|
|
1259
1259
|
id: string;
|
|
1260
|
-
createTime: string;
|
|
1261
|
-
updateTime: string;
|
|
1262
1260
|
owner: {
|
|
1263
1261
|
name: string;
|
|
1264
1262
|
uid: string;
|
|
@@ -1278,6 +1276,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1278
1276
|
} | undefined;
|
|
1279
1277
|
} | undefined;
|
|
1280
1278
|
};
|
|
1279
|
+
createTime: string;
|
|
1280
|
+
updateTime: string;
|
|
1281
1281
|
profile?: {
|
|
1282
1282
|
displayName?: string | undefined;
|
|
1283
1283
|
bio?: string | undefined;
|
|
@@ -1293,8 +1293,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1293
1293
|
name: string;
|
|
1294
1294
|
uid: string;
|
|
1295
1295
|
id: string;
|
|
1296
|
-
createTime: string;
|
|
1297
|
-
updateTime: string;
|
|
1298
1296
|
owner: {
|
|
1299
1297
|
name: string;
|
|
1300
1298
|
uid: string;
|
|
@@ -1314,6 +1312,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1314
1312
|
} | undefined;
|
|
1315
1313
|
} | undefined;
|
|
1316
1314
|
};
|
|
1315
|
+
createTime: string;
|
|
1316
|
+
updateTime: string;
|
|
1317
1317
|
profile?: {
|
|
1318
1318
|
displayName?: string | undefined;
|
|
1319
1319
|
bio?: string | undefined;
|
|
@@ -1331,8 +1331,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1331
1331
|
name: string;
|
|
1332
1332
|
uid: string;
|
|
1333
1333
|
id: string;
|
|
1334
|
-
createTime: string;
|
|
1335
|
-
updateTime: string;
|
|
1336
1334
|
owner: {
|
|
1337
1335
|
name: string;
|
|
1338
1336
|
uid: string;
|
|
@@ -1352,6 +1350,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1352
1350
|
} | undefined;
|
|
1353
1351
|
} | undefined;
|
|
1354
1352
|
};
|
|
1353
|
+
createTime: string;
|
|
1354
|
+
updateTime: string;
|
|
1355
1355
|
profile?: {
|
|
1356
1356
|
displayName?: string | undefined;
|
|
1357
1357
|
bio?: string | undefined;
|
|
@@ -1369,8 +1369,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1369
1369
|
name: string;
|
|
1370
1370
|
uid: string;
|
|
1371
1371
|
id: string;
|
|
1372
|
-
createTime: string;
|
|
1373
|
-
updateTime: string;
|
|
1374
1372
|
owner: {
|
|
1375
1373
|
name: string;
|
|
1376
1374
|
uid: string;
|
|
@@ -1390,6 +1388,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1390
1388
|
} | undefined;
|
|
1391
1389
|
} | undefined;
|
|
1392
1390
|
};
|
|
1391
|
+
createTime: string;
|
|
1392
|
+
updateTime: string;
|
|
1393
1393
|
profile?: {
|
|
1394
1394
|
displayName?: string | undefined;
|
|
1395
1395
|
bio?: string | undefined;
|
|
@@ -1429,36 +1429,36 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1429
1429
|
}>;
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
1431
|
name: string;
|
|
1432
|
+
description: string;
|
|
1432
1433
|
uid: string;
|
|
1433
1434
|
id: string;
|
|
1434
|
-
|
|
1435
|
-
readme: string;
|
|
1435
|
+
recipe: Record<string, any>;
|
|
1436
1436
|
createTime: string;
|
|
1437
1437
|
updateTime: string;
|
|
1438
|
-
|
|
1438
|
+
metadata: Record<string, any>;
|
|
1439
|
+
readme: string;
|
|
1440
|
+
rawRecipe: string;
|
|
1439
1441
|
dataSpecification: {
|
|
1440
1442
|
input?: any;
|
|
1441
1443
|
output?: any;
|
|
1442
1444
|
};
|
|
1443
|
-
metadata: Record<string, any>;
|
|
1444
|
-
rawRecipe: string;
|
|
1445
1445
|
deleteTime?: string | undefined;
|
|
1446
1446
|
alias?: string | undefined;
|
|
1447
1447
|
}, {
|
|
1448
1448
|
name: string;
|
|
1449
|
+
description: string;
|
|
1449
1450
|
uid: string;
|
|
1450
1451
|
id: string;
|
|
1451
|
-
|
|
1452
|
-
readme: string;
|
|
1452
|
+
recipe: Record<string, any>;
|
|
1453
1453
|
createTime: string;
|
|
1454
1454
|
updateTime: string;
|
|
1455
|
-
|
|
1455
|
+
metadata: Record<string, any>;
|
|
1456
|
+
readme: string;
|
|
1457
|
+
rawRecipe: string;
|
|
1456
1458
|
dataSpecification: {
|
|
1457
1459
|
input?: any;
|
|
1458
1460
|
output?: any;
|
|
1459
1461
|
};
|
|
1460
|
-
metadata: Record<string, any>;
|
|
1461
|
-
rawRecipe: string;
|
|
1462
1462
|
deleteTime?: string | undefined;
|
|
1463
1463
|
alias?: string | undefined;
|
|
1464
1464
|
}>, "many">;
|
|
@@ -1490,27 +1490,27 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1490
1490
|
code?: string | undefined;
|
|
1491
1491
|
}>>;
|
|
1492
1492
|
}, "strip", z.ZodTypeAny, {
|
|
1493
|
-
users: Record<string, {
|
|
1494
|
-
enabled: boolean;
|
|
1495
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1496
|
-
} | undefined>;
|
|
1497
1493
|
shareCode: {
|
|
1498
1494
|
user: string;
|
|
1499
1495
|
enabled: boolean;
|
|
1500
1496
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1501
1497
|
code?: string | undefined;
|
|
1502
1498
|
} | null;
|
|
1503
|
-
}, {
|
|
1504
1499
|
users: Record<string, {
|
|
1505
1500
|
enabled: boolean;
|
|
1506
1501
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1507
1502
|
} | undefined>;
|
|
1503
|
+
}, {
|
|
1508
1504
|
shareCode: {
|
|
1509
1505
|
user: string;
|
|
1510
1506
|
enabled: boolean;
|
|
1511
1507
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1512
1508
|
code?: string | undefined;
|
|
1513
1509
|
} | null;
|
|
1510
|
+
users: Record<string, {
|
|
1511
|
+
enabled: boolean;
|
|
1512
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1513
|
+
} | undefined>;
|
|
1514
1514
|
}>;
|
|
1515
1515
|
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
1516
1516
|
permission: z.ZodObject<{
|
|
@@ -1540,17 +1540,11 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1540
1540
|
license: z.ZodString;
|
|
1541
1541
|
}, "strip", z.ZodTypeAny, {
|
|
1542
1542
|
name: string;
|
|
1543
|
+
description: string;
|
|
1543
1544
|
uid: string;
|
|
1544
1545
|
id: string;
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
createTime: string;
|
|
1548
|
-
updateTime: string;
|
|
1549
|
-
recipe: Record<string, any>;
|
|
1550
|
-
dataSpecification: {
|
|
1551
|
-
input?: any;
|
|
1552
|
-
output?: any;
|
|
1553
|
-
};
|
|
1546
|
+
documentationUrl: string;
|
|
1547
|
+
sourceUrl: string;
|
|
1554
1548
|
owner: {
|
|
1555
1549
|
user: {
|
|
1556
1550
|
name: string;
|
|
@@ -1576,8 +1570,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1576
1570
|
name: string;
|
|
1577
1571
|
uid: string;
|
|
1578
1572
|
id: string;
|
|
1579
|
-
createTime: string;
|
|
1580
|
-
updateTime: string;
|
|
1581
1573
|
owner: {
|
|
1582
1574
|
name: string;
|
|
1583
1575
|
uid: string;
|
|
@@ -1597,6 +1589,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1597
1589
|
} | undefined;
|
|
1598
1590
|
} | undefined;
|
|
1599
1591
|
};
|
|
1592
|
+
createTime: string;
|
|
1593
|
+
updateTime: string;
|
|
1600
1594
|
profile?: {
|
|
1601
1595
|
displayName?: string | undefined;
|
|
1602
1596
|
bio?: string | undefined;
|
|
@@ -1610,38 +1604,46 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1610
1604
|
} | undefined;
|
|
1611
1605
|
};
|
|
1612
1606
|
};
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
uid: string;
|
|
1617
|
-
id: string;
|
|
1618
|
-
description: string;
|
|
1619
|
-
readme: string;
|
|
1620
|
-
createTime: string;
|
|
1621
|
-
updateTime: string;
|
|
1622
|
-
recipe: Record<string, any>;
|
|
1623
|
-
dataSpecification: {
|
|
1624
|
-
input?: any;
|
|
1625
|
-
output?: any;
|
|
1626
|
-
};
|
|
1627
|
-
metadata: Record<string, any>;
|
|
1628
|
-
rawRecipe: string;
|
|
1629
|
-
deleteTime?: string | undefined;
|
|
1630
|
-
alias?: string | undefined;
|
|
1631
|
-
}[];
|
|
1607
|
+
recipe: Record<string, any>;
|
|
1608
|
+
createTime: string;
|
|
1609
|
+
updateTime: string;
|
|
1632
1610
|
metadata: Record<string, any>;
|
|
1611
|
+
readme: string;
|
|
1612
|
+
dataSpecification: {
|
|
1613
|
+
input?: any;
|
|
1614
|
+
output?: any;
|
|
1615
|
+
};
|
|
1633
1616
|
sharing: {
|
|
1634
|
-
users: Record<string, {
|
|
1635
|
-
enabled: boolean;
|
|
1636
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1637
|
-
} | undefined>;
|
|
1638
1617
|
shareCode: {
|
|
1639
1618
|
user: string;
|
|
1640
1619
|
enabled: boolean;
|
|
1641
1620
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1642
1621
|
code?: string | undefined;
|
|
1643
1622
|
} | null;
|
|
1623
|
+
users: Record<string, {
|
|
1624
|
+
enabled: boolean;
|
|
1625
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1626
|
+
} | undefined>;
|
|
1644
1627
|
};
|
|
1628
|
+
ownerName: string;
|
|
1629
|
+
releases: {
|
|
1630
|
+
name: string;
|
|
1631
|
+
description: string;
|
|
1632
|
+
uid: string;
|
|
1633
|
+
id: string;
|
|
1634
|
+
recipe: Record<string, any>;
|
|
1635
|
+
createTime: string;
|
|
1636
|
+
updateTime: string;
|
|
1637
|
+
metadata: Record<string, any>;
|
|
1638
|
+
readme: string;
|
|
1639
|
+
rawRecipe: string;
|
|
1640
|
+
dataSpecification: {
|
|
1641
|
+
input?: any;
|
|
1642
|
+
output?: any;
|
|
1643
|
+
};
|
|
1644
|
+
deleteTime?: string | undefined;
|
|
1645
|
+
alias?: string | undefined;
|
|
1646
|
+
}[];
|
|
1645
1647
|
permission: {
|
|
1646
1648
|
canEdit: boolean;
|
|
1647
1649
|
canTrigger: boolean;
|
|
@@ -1652,22 +1654,14 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1652
1654
|
numberOfRuns: number;
|
|
1653
1655
|
};
|
|
1654
1656
|
profileImage: string;
|
|
1655
|
-
sourceUrl: string;
|
|
1656
|
-
documentationUrl: string;
|
|
1657
1657
|
license: string;
|
|
1658
1658
|
}, {
|
|
1659
1659
|
name: string;
|
|
1660
|
+
description: string;
|
|
1660
1661
|
uid: string;
|
|
1661
1662
|
id: string;
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
createTime: string;
|
|
1665
|
-
updateTime: string;
|
|
1666
|
-
recipe: Record<string, any>;
|
|
1667
|
-
dataSpecification: {
|
|
1668
|
-
input?: any;
|
|
1669
|
-
output?: any;
|
|
1670
|
-
};
|
|
1663
|
+
documentationUrl: string;
|
|
1664
|
+
sourceUrl: string;
|
|
1671
1665
|
owner: {
|
|
1672
1666
|
user: {
|
|
1673
1667
|
name: string;
|
|
@@ -1693,8 +1687,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1693
1687
|
name: string;
|
|
1694
1688
|
uid: string;
|
|
1695
1689
|
id: string;
|
|
1696
|
-
createTime: string;
|
|
1697
|
-
updateTime: string;
|
|
1698
1690
|
owner: {
|
|
1699
1691
|
name: string;
|
|
1700
1692
|
uid: string;
|
|
@@ -1714,6 +1706,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1714
1706
|
} | undefined;
|
|
1715
1707
|
} | undefined;
|
|
1716
1708
|
};
|
|
1709
|
+
createTime: string;
|
|
1710
|
+
updateTime: string;
|
|
1717
1711
|
profile?: {
|
|
1718
1712
|
displayName?: string | undefined;
|
|
1719
1713
|
bio?: string | undefined;
|
|
@@ -1727,38 +1721,46 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1727
1721
|
} | undefined;
|
|
1728
1722
|
};
|
|
1729
1723
|
};
|
|
1724
|
+
recipe: Record<string, any>;
|
|
1725
|
+
createTime: string;
|
|
1726
|
+
updateTime: string;
|
|
1727
|
+
metadata: Record<string, any>;
|
|
1728
|
+
readme: string;
|
|
1729
|
+
dataSpecification: {
|
|
1730
|
+
input?: any;
|
|
1731
|
+
output?: any;
|
|
1732
|
+
};
|
|
1733
|
+
sharing: {
|
|
1734
|
+
shareCode: {
|
|
1735
|
+
user: string;
|
|
1736
|
+
enabled: boolean;
|
|
1737
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1738
|
+
code?: string | undefined;
|
|
1739
|
+
} | null;
|
|
1740
|
+
users: Record<string, {
|
|
1741
|
+
enabled: boolean;
|
|
1742
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1743
|
+
} | undefined>;
|
|
1744
|
+
};
|
|
1730
1745
|
ownerName: string;
|
|
1731
1746
|
releases: {
|
|
1732
1747
|
name: string;
|
|
1748
|
+
description: string;
|
|
1733
1749
|
uid: string;
|
|
1734
1750
|
id: string;
|
|
1735
|
-
|
|
1736
|
-
readme: string;
|
|
1751
|
+
recipe: Record<string, any>;
|
|
1737
1752
|
createTime: string;
|
|
1738
1753
|
updateTime: string;
|
|
1739
|
-
|
|
1754
|
+
metadata: Record<string, any>;
|
|
1755
|
+
readme: string;
|
|
1756
|
+
rawRecipe: string;
|
|
1740
1757
|
dataSpecification: {
|
|
1741
1758
|
input?: any;
|
|
1742
1759
|
output?: any;
|
|
1743
1760
|
};
|
|
1744
|
-
metadata: Record<string, any>;
|
|
1745
|
-
rawRecipe: string;
|
|
1746
1761
|
deleteTime?: string | undefined;
|
|
1747
1762
|
alias?: string | undefined;
|
|
1748
1763
|
}[];
|
|
1749
|
-
metadata: Record<string, any>;
|
|
1750
|
-
sharing: {
|
|
1751
|
-
users: Record<string, {
|
|
1752
|
-
enabled: boolean;
|
|
1753
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1754
|
-
} | undefined>;
|
|
1755
|
-
shareCode: {
|
|
1756
|
-
user: string;
|
|
1757
|
-
enabled: boolean;
|
|
1758
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1759
|
-
code?: string | undefined;
|
|
1760
|
-
} | null;
|
|
1761
|
-
};
|
|
1762
1764
|
permission: {
|
|
1763
1765
|
canEdit: boolean;
|
|
1764
1766
|
canTrigger: boolean;
|
|
@@ -1769,26 +1771,20 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1769
1771
|
numberOfRuns: number;
|
|
1770
1772
|
};
|
|
1771
1773
|
profileImage: string;
|
|
1772
|
-
sourceUrl: string;
|
|
1773
|
-
documentationUrl: string;
|
|
1774
1774
|
license: string;
|
|
1775
1775
|
}>, "many">;
|
|
1776
1776
|
nextPageToken: z.ZodString;
|
|
1777
1777
|
totalSize: z.ZodNumber;
|
|
1778
1778
|
}, "strip", z.ZodTypeAny, {
|
|
1779
|
+
nextPageToken: string;
|
|
1780
|
+
totalSize: number;
|
|
1779
1781
|
pipelines: {
|
|
1780
1782
|
name: string;
|
|
1783
|
+
description: string;
|
|
1781
1784
|
uid: string;
|
|
1782
1785
|
id: string;
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
createTime: string;
|
|
1786
|
-
updateTime: string;
|
|
1787
|
-
recipe: Record<string, any>;
|
|
1788
|
-
dataSpecification: {
|
|
1789
|
-
input?: any;
|
|
1790
|
-
output?: any;
|
|
1791
|
-
};
|
|
1786
|
+
documentationUrl: string;
|
|
1787
|
+
sourceUrl: string;
|
|
1792
1788
|
owner: {
|
|
1793
1789
|
user: {
|
|
1794
1790
|
name: string;
|
|
@@ -1814,8 +1810,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1814
1810
|
name: string;
|
|
1815
1811
|
uid: string;
|
|
1816
1812
|
id: string;
|
|
1817
|
-
createTime: string;
|
|
1818
|
-
updateTime: string;
|
|
1819
1813
|
owner: {
|
|
1820
1814
|
name: string;
|
|
1821
1815
|
uid: string;
|
|
@@ -1835,6 +1829,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1835
1829
|
} | undefined;
|
|
1836
1830
|
} | undefined;
|
|
1837
1831
|
};
|
|
1832
|
+
createTime: string;
|
|
1833
|
+
updateTime: string;
|
|
1838
1834
|
profile?: {
|
|
1839
1835
|
displayName?: string | undefined;
|
|
1840
1836
|
bio?: string | undefined;
|
|
@@ -1848,38 +1844,46 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1848
1844
|
} | undefined;
|
|
1849
1845
|
};
|
|
1850
1846
|
};
|
|
1847
|
+
recipe: Record<string, any>;
|
|
1848
|
+
createTime: string;
|
|
1849
|
+
updateTime: string;
|
|
1850
|
+
metadata: Record<string, any>;
|
|
1851
|
+
readme: string;
|
|
1852
|
+
dataSpecification: {
|
|
1853
|
+
input?: any;
|
|
1854
|
+
output?: any;
|
|
1855
|
+
};
|
|
1856
|
+
sharing: {
|
|
1857
|
+
shareCode: {
|
|
1858
|
+
user: string;
|
|
1859
|
+
enabled: boolean;
|
|
1860
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1861
|
+
code?: string | undefined;
|
|
1862
|
+
} | null;
|
|
1863
|
+
users: Record<string, {
|
|
1864
|
+
enabled: boolean;
|
|
1865
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1866
|
+
} | undefined>;
|
|
1867
|
+
};
|
|
1851
1868
|
ownerName: string;
|
|
1852
1869
|
releases: {
|
|
1853
1870
|
name: string;
|
|
1871
|
+
description: string;
|
|
1854
1872
|
uid: string;
|
|
1855
1873
|
id: string;
|
|
1856
|
-
|
|
1857
|
-
readme: string;
|
|
1874
|
+
recipe: Record<string, any>;
|
|
1858
1875
|
createTime: string;
|
|
1859
1876
|
updateTime: string;
|
|
1860
|
-
|
|
1877
|
+
metadata: Record<string, any>;
|
|
1878
|
+
readme: string;
|
|
1879
|
+
rawRecipe: string;
|
|
1861
1880
|
dataSpecification: {
|
|
1862
1881
|
input?: any;
|
|
1863
1882
|
output?: any;
|
|
1864
1883
|
};
|
|
1865
|
-
metadata: Record<string, any>;
|
|
1866
|
-
rawRecipe: string;
|
|
1867
1884
|
deleteTime?: string | undefined;
|
|
1868
1885
|
alias?: string | undefined;
|
|
1869
1886
|
}[];
|
|
1870
|
-
metadata: Record<string, any>;
|
|
1871
|
-
sharing: {
|
|
1872
|
-
users: Record<string, {
|
|
1873
|
-
enabled: boolean;
|
|
1874
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1875
|
-
} | undefined>;
|
|
1876
|
-
shareCode: {
|
|
1877
|
-
user: string;
|
|
1878
|
-
enabled: boolean;
|
|
1879
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1880
|
-
code?: string | undefined;
|
|
1881
|
-
} | null;
|
|
1882
|
-
};
|
|
1883
1887
|
permission: {
|
|
1884
1888
|
canEdit: boolean;
|
|
1885
1889
|
canTrigger: boolean;
|
|
@@ -1890,26 +1894,18 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1890
1894
|
numberOfRuns: number;
|
|
1891
1895
|
};
|
|
1892
1896
|
profileImage: string;
|
|
1893
|
-
sourceUrl: string;
|
|
1894
|
-
documentationUrl: string;
|
|
1895
1897
|
license: string;
|
|
1896
1898
|
}[];
|
|
1899
|
+
}, {
|
|
1897
1900
|
nextPageToken: string;
|
|
1898
1901
|
totalSize: number;
|
|
1899
|
-
}, {
|
|
1900
1902
|
pipelines: {
|
|
1901
1903
|
name: string;
|
|
1904
|
+
description: string;
|
|
1902
1905
|
uid: string;
|
|
1903
1906
|
id: string;
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
createTime: string;
|
|
1907
|
-
updateTime: string;
|
|
1908
|
-
recipe: Record<string, any>;
|
|
1909
|
-
dataSpecification: {
|
|
1910
|
-
input?: any;
|
|
1911
|
-
output?: any;
|
|
1912
|
-
};
|
|
1907
|
+
documentationUrl: string;
|
|
1908
|
+
sourceUrl: string;
|
|
1913
1909
|
owner: {
|
|
1914
1910
|
user: {
|
|
1915
1911
|
name: string;
|
|
@@ -1935,8 +1931,6 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1935
1931
|
name: string;
|
|
1936
1932
|
uid: string;
|
|
1937
1933
|
id: string;
|
|
1938
|
-
createTime: string;
|
|
1939
|
-
updateTime: string;
|
|
1940
1934
|
owner: {
|
|
1941
1935
|
name: string;
|
|
1942
1936
|
uid: string;
|
|
@@ -1956,6 +1950,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1956
1950
|
} | undefined;
|
|
1957
1951
|
} | undefined;
|
|
1958
1952
|
};
|
|
1953
|
+
createTime: string;
|
|
1954
|
+
updateTime: string;
|
|
1959
1955
|
profile?: {
|
|
1960
1956
|
displayName?: string | undefined;
|
|
1961
1957
|
bio?: string | undefined;
|
|
@@ -1969,38 +1965,46 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
1969
1965
|
} | undefined;
|
|
1970
1966
|
};
|
|
1971
1967
|
};
|
|
1968
|
+
recipe: Record<string, any>;
|
|
1969
|
+
createTime: string;
|
|
1970
|
+
updateTime: string;
|
|
1971
|
+
metadata: Record<string, any>;
|
|
1972
|
+
readme: string;
|
|
1973
|
+
dataSpecification: {
|
|
1974
|
+
input?: any;
|
|
1975
|
+
output?: any;
|
|
1976
|
+
};
|
|
1977
|
+
sharing: {
|
|
1978
|
+
shareCode: {
|
|
1979
|
+
user: string;
|
|
1980
|
+
enabled: boolean;
|
|
1981
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1982
|
+
code?: string | undefined;
|
|
1983
|
+
} | null;
|
|
1984
|
+
users: Record<string, {
|
|
1985
|
+
enabled: boolean;
|
|
1986
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1987
|
+
} | undefined>;
|
|
1988
|
+
};
|
|
1972
1989
|
ownerName: string;
|
|
1973
1990
|
releases: {
|
|
1974
1991
|
name: string;
|
|
1992
|
+
description: string;
|
|
1975
1993
|
uid: string;
|
|
1976
1994
|
id: string;
|
|
1977
|
-
|
|
1978
|
-
readme: string;
|
|
1995
|
+
recipe: Record<string, any>;
|
|
1979
1996
|
createTime: string;
|
|
1980
1997
|
updateTime: string;
|
|
1981
|
-
|
|
1998
|
+
metadata: Record<string, any>;
|
|
1999
|
+
readme: string;
|
|
2000
|
+
rawRecipe: string;
|
|
1982
2001
|
dataSpecification: {
|
|
1983
2002
|
input?: any;
|
|
1984
2003
|
output?: any;
|
|
1985
2004
|
};
|
|
1986
|
-
metadata: Record<string, any>;
|
|
1987
|
-
rawRecipe: string;
|
|
1988
2005
|
deleteTime?: string | undefined;
|
|
1989
2006
|
alias?: string | undefined;
|
|
1990
2007
|
}[];
|
|
1991
|
-
metadata: Record<string, any>;
|
|
1992
|
-
sharing: {
|
|
1993
|
-
users: Record<string, {
|
|
1994
|
-
enabled: boolean;
|
|
1995
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
1996
|
-
} | undefined>;
|
|
1997
|
-
shareCode: {
|
|
1998
|
-
user: string;
|
|
1999
|
-
enabled: boolean;
|
|
2000
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2001
|
-
code?: string | undefined;
|
|
2002
|
-
} | null;
|
|
2003
|
-
};
|
|
2004
2008
|
permission: {
|
|
2005
2009
|
canEdit: boolean;
|
|
2006
2010
|
canTrigger: boolean;
|
|
@@ -2011,12 +2015,8 @@ export declare const listAccessiblePipelinesWithPaginationResponseValidator: z.Z
|
|
|
2011
2015
|
numberOfRuns: number;
|
|
2012
2016
|
};
|
|
2013
2017
|
profileImage: string;
|
|
2014
|
-
sourceUrl: string;
|
|
2015
|
-
documentationUrl: string;
|
|
2016
2018
|
license: string;
|
|
2017
2019
|
}[];
|
|
2018
|
-
nextPageToken: string;
|
|
2019
|
-
totalSize: number;
|
|
2020
2020
|
}>;
|
|
2021
2021
|
export type ListNamespacePipelinesRequest = {
|
|
2022
2022
|
namespaceId: string;
|
|
@@ -2314,8 +2314,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2314
2314
|
name: string;
|
|
2315
2315
|
uid: string;
|
|
2316
2316
|
id: string;
|
|
2317
|
-
createTime: string;
|
|
2318
|
-
updateTime: string;
|
|
2319
2317
|
owner: {
|
|
2320
2318
|
name: string;
|
|
2321
2319
|
uid: string;
|
|
@@ -2335,6 +2333,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2335
2333
|
} | undefined;
|
|
2336
2334
|
} | undefined;
|
|
2337
2335
|
};
|
|
2336
|
+
createTime: string;
|
|
2337
|
+
updateTime: string;
|
|
2338
2338
|
profile?: {
|
|
2339
2339
|
displayName?: string | undefined;
|
|
2340
2340
|
bio?: string | undefined;
|
|
@@ -2350,8 +2350,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2350
2350
|
name: string;
|
|
2351
2351
|
uid: string;
|
|
2352
2352
|
id: string;
|
|
2353
|
-
createTime: string;
|
|
2354
|
-
updateTime: string;
|
|
2355
2353
|
owner: {
|
|
2356
2354
|
name: string;
|
|
2357
2355
|
uid: string;
|
|
@@ -2371,6 +2369,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2371
2369
|
} | undefined;
|
|
2372
2370
|
} | undefined;
|
|
2373
2371
|
};
|
|
2372
|
+
createTime: string;
|
|
2373
|
+
updateTime: string;
|
|
2374
2374
|
profile?: {
|
|
2375
2375
|
displayName?: string | undefined;
|
|
2376
2376
|
bio?: string | undefined;
|
|
@@ -2388,8 +2388,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2388
2388
|
name: string;
|
|
2389
2389
|
uid: string;
|
|
2390
2390
|
id: string;
|
|
2391
|
-
createTime: string;
|
|
2392
|
-
updateTime: string;
|
|
2393
2391
|
owner: {
|
|
2394
2392
|
name: string;
|
|
2395
2393
|
uid: string;
|
|
@@ -2409,6 +2407,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2409
2407
|
} | undefined;
|
|
2410
2408
|
} | undefined;
|
|
2411
2409
|
};
|
|
2410
|
+
createTime: string;
|
|
2411
|
+
updateTime: string;
|
|
2412
2412
|
profile?: {
|
|
2413
2413
|
displayName?: string | undefined;
|
|
2414
2414
|
bio?: string | undefined;
|
|
@@ -2426,8 +2426,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2426
2426
|
name: string;
|
|
2427
2427
|
uid: string;
|
|
2428
2428
|
id: string;
|
|
2429
|
-
createTime: string;
|
|
2430
|
-
updateTime: string;
|
|
2431
2429
|
owner: {
|
|
2432
2430
|
name: string;
|
|
2433
2431
|
uid: string;
|
|
@@ -2447,6 +2445,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2447
2445
|
} | undefined;
|
|
2448
2446
|
} | undefined;
|
|
2449
2447
|
};
|
|
2448
|
+
createTime: string;
|
|
2449
|
+
updateTime: string;
|
|
2450
2450
|
profile?: {
|
|
2451
2451
|
displayName?: string | undefined;
|
|
2452
2452
|
bio?: string | undefined;
|
|
@@ -2486,36 +2486,36 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2486
2486
|
}>;
|
|
2487
2487
|
}, "strip", z.ZodTypeAny, {
|
|
2488
2488
|
name: string;
|
|
2489
|
+
description: string;
|
|
2489
2490
|
uid: string;
|
|
2490
2491
|
id: string;
|
|
2491
|
-
|
|
2492
|
-
readme: string;
|
|
2492
|
+
recipe: Record<string, any>;
|
|
2493
2493
|
createTime: string;
|
|
2494
2494
|
updateTime: string;
|
|
2495
|
-
|
|
2496
|
-
|
|
2495
|
+
metadata: Record<string, any>;
|
|
2496
|
+
readme: string;
|
|
2497
|
+
rawRecipe: string;
|
|
2498
|
+
dataSpecification: {
|
|
2497
2499
|
input?: any;
|
|
2498
2500
|
output?: any;
|
|
2499
2501
|
};
|
|
2500
|
-
metadata: Record<string, any>;
|
|
2501
|
-
rawRecipe: string;
|
|
2502
2502
|
deleteTime?: string | undefined;
|
|
2503
2503
|
alias?: string | undefined;
|
|
2504
2504
|
}, {
|
|
2505
2505
|
name: string;
|
|
2506
|
+
description: string;
|
|
2506
2507
|
uid: string;
|
|
2507
2508
|
id: string;
|
|
2508
|
-
|
|
2509
|
-
readme: string;
|
|
2509
|
+
recipe: Record<string, any>;
|
|
2510
2510
|
createTime: string;
|
|
2511
2511
|
updateTime: string;
|
|
2512
|
-
|
|
2512
|
+
metadata: Record<string, any>;
|
|
2513
|
+
readme: string;
|
|
2514
|
+
rawRecipe: string;
|
|
2513
2515
|
dataSpecification: {
|
|
2514
2516
|
input?: any;
|
|
2515
2517
|
output?: any;
|
|
2516
2518
|
};
|
|
2517
|
-
metadata: Record<string, any>;
|
|
2518
|
-
rawRecipe: string;
|
|
2519
2519
|
deleteTime?: string | undefined;
|
|
2520
2520
|
alias?: string | undefined;
|
|
2521
2521
|
}>, "many">;
|
|
@@ -2547,27 +2547,27 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2547
2547
|
code?: string | undefined;
|
|
2548
2548
|
}>>;
|
|
2549
2549
|
}, "strip", z.ZodTypeAny, {
|
|
2550
|
-
users: Record<string, {
|
|
2551
|
-
enabled: boolean;
|
|
2552
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2553
|
-
} | undefined>;
|
|
2554
2550
|
shareCode: {
|
|
2555
2551
|
user: string;
|
|
2556
2552
|
enabled: boolean;
|
|
2557
2553
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2558
2554
|
code?: string | undefined;
|
|
2559
2555
|
} | null;
|
|
2560
|
-
}, {
|
|
2561
2556
|
users: Record<string, {
|
|
2562
2557
|
enabled: boolean;
|
|
2563
2558
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2564
2559
|
} | undefined>;
|
|
2560
|
+
}, {
|
|
2565
2561
|
shareCode: {
|
|
2566
2562
|
user: string;
|
|
2567
2563
|
enabled: boolean;
|
|
2568
2564
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2569
2565
|
code?: string | undefined;
|
|
2570
2566
|
} | null;
|
|
2567
|
+
users: Record<string, {
|
|
2568
|
+
enabled: boolean;
|
|
2569
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2570
|
+
} | undefined>;
|
|
2571
2571
|
}>;
|
|
2572
2572
|
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
2573
2573
|
permission: z.ZodObject<{
|
|
@@ -2597,17 +2597,11 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2597
2597
|
license: z.ZodString;
|
|
2598
2598
|
}, "strip", z.ZodTypeAny, {
|
|
2599
2599
|
name: string;
|
|
2600
|
+
description: string;
|
|
2600
2601
|
uid: string;
|
|
2601
2602
|
id: string;
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
createTime: string;
|
|
2605
|
-
updateTime: string;
|
|
2606
|
-
recipe: Record<string, any>;
|
|
2607
|
-
dataSpecification: {
|
|
2608
|
-
input?: any;
|
|
2609
|
-
output?: any;
|
|
2610
|
-
};
|
|
2603
|
+
documentationUrl: string;
|
|
2604
|
+
sourceUrl: string;
|
|
2611
2605
|
owner: {
|
|
2612
2606
|
user: {
|
|
2613
2607
|
name: string;
|
|
@@ -2633,8 +2627,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2633
2627
|
name: string;
|
|
2634
2628
|
uid: string;
|
|
2635
2629
|
id: string;
|
|
2636
|
-
createTime: string;
|
|
2637
|
-
updateTime: string;
|
|
2638
2630
|
owner: {
|
|
2639
2631
|
name: string;
|
|
2640
2632
|
uid: string;
|
|
@@ -2654,6 +2646,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2654
2646
|
} | undefined;
|
|
2655
2647
|
} | undefined;
|
|
2656
2648
|
};
|
|
2649
|
+
createTime: string;
|
|
2650
|
+
updateTime: string;
|
|
2657
2651
|
profile?: {
|
|
2658
2652
|
displayName?: string | undefined;
|
|
2659
2653
|
bio?: string | undefined;
|
|
@@ -2667,38 +2661,46 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2667
2661
|
} | undefined;
|
|
2668
2662
|
};
|
|
2669
2663
|
};
|
|
2664
|
+
recipe: Record<string, any>;
|
|
2665
|
+
createTime: string;
|
|
2666
|
+
updateTime: string;
|
|
2667
|
+
metadata: Record<string, any>;
|
|
2668
|
+
readme: string;
|
|
2669
|
+
dataSpecification: {
|
|
2670
|
+
input?: any;
|
|
2671
|
+
output?: any;
|
|
2672
|
+
};
|
|
2673
|
+
sharing: {
|
|
2674
|
+
shareCode: {
|
|
2675
|
+
user: string;
|
|
2676
|
+
enabled: boolean;
|
|
2677
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2678
|
+
code?: string | undefined;
|
|
2679
|
+
} | null;
|
|
2680
|
+
users: Record<string, {
|
|
2681
|
+
enabled: boolean;
|
|
2682
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2683
|
+
} | undefined>;
|
|
2684
|
+
};
|
|
2670
2685
|
ownerName: string;
|
|
2671
2686
|
releases: {
|
|
2672
2687
|
name: string;
|
|
2688
|
+
description: string;
|
|
2673
2689
|
uid: string;
|
|
2674
2690
|
id: string;
|
|
2675
|
-
|
|
2676
|
-
readme: string;
|
|
2691
|
+
recipe: Record<string, any>;
|
|
2677
2692
|
createTime: string;
|
|
2678
2693
|
updateTime: string;
|
|
2679
|
-
|
|
2694
|
+
metadata: Record<string, any>;
|
|
2695
|
+
readme: string;
|
|
2696
|
+
rawRecipe: string;
|
|
2680
2697
|
dataSpecification: {
|
|
2681
2698
|
input?: any;
|
|
2682
2699
|
output?: any;
|
|
2683
2700
|
};
|
|
2684
|
-
metadata: Record<string, any>;
|
|
2685
|
-
rawRecipe: string;
|
|
2686
2701
|
deleteTime?: string | undefined;
|
|
2687
2702
|
alias?: string | undefined;
|
|
2688
2703
|
}[];
|
|
2689
|
-
metadata: Record<string, any>;
|
|
2690
|
-
sharing: {
|
|
2691
|
-
users: Record<string, {
|
|
2692
|
-
enabled: boolean;
|
|
2693
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2694
|
-
} | undefined>;
|
|
2695
|
-
shareCode: {
|
|
2696
|
-
user: string;
|
|
2697
|
-
enabled: boolean;
|
|
2698
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2699
|
-
code?: string | undefined;
|
|
2700
|
-
} | null;
|
|
2701
|
-
};
|
|
2702
2704
|
permission: {
|
|
2703
2705
|
canEdit: boolean;
|
|
2704
2706
|
canTrigger: boolean;
|
|
@@ -2709,22 +2711,14 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2709
2711
|
numberOfRuns: number;
|
|
2710
2712
|
};
|
|
2711
2713
|
profileImage: string;
|
|
2712
|
-
sourceUrl: string;
|
|
2713
|
-
documentationUrl: string;
|
|
2714
2714
|
license: string;
|
|
2715
2715
|
}, {
|
|
2716
2716
|
name: string;
|
|
2717
|
+
description: string;
|
|
2717
2718
|
uid: string;
|
|
2718
2719
|
id: string;
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
createTime: string;
|
|
2722
|
-
updateTime: string;
|
|
2723
|
-
recipe: Record<string, any>;
|
|
2724
|
-
dataSpecification: {
|
|
2725
|
-
input?: any;
|
|
2726
|
-
output?: any;
|
|
2727
|
-
};
|
|
2720
|
+
documentationUrl: string;
|
|
2721
|
+
sourceUrl: string;
|
|
2728
2722
|
owner: {
|
|
2729
2723
|
user: {
|
|
2730
2724
|
name: string;
|
|
@@ -2750,8 +2744,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2750
2744
|
name: string;
|
|
2751
2745
|
uid: string;
|
|
2752
2746
|
id: string;
|
|
2753
|
-
createTime: string;
|
|
2754
|
-
updateTime: string;
|
|
2755
2747
|
owner: {
|
|
2756
2748
|
name: string;
|
|
2757
2749
|
uid: string;
|
|
@@ -2771,6 +2763,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2771
2763
|
} | undefined;
|
|
2772
2764
|
} | undefined;
|
|
2773
2765
|
};
|
|
2766
|
+
createTime: string;
|
|
2767
|
+
updateTime: string;
|
|
2774
2768
|
profile?: {
|
|
2775
2769
|
displayName?: string | undefined;
|
|
2776
2770
|
bio?: string | undefined;
|
|
@@ -2784,38 +2778,46 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2784
2778
|
} | undefined;
|
|
2785
2779
|
};
|
|
2786
2780
|
};
|
|
2781
|
+
recipe: Record<string, any>;
|
|
2782
|
+
createTime: string;
|
|
2783
|
+
updateTime: string;
|
|
2784
|
+
metadata: Record<string, any>;
|
|
2785
|
+
readme: string;
|
|
2786
|
+
dataSpecification: {
|
|
2787
|
+
input?: any;
|
|
2788
|
+
output?: any;
|
|
2789
|
+
};
|
|
2790
|
+
sharing: {
|
|
2791
|
+
shareCode: {
|
|
2792
|
+
user: string;
|
|
2793
|
+
enabled: boolean;
|
|
2794
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2795
|
+
code?: string | undefined;
|
|
2796
|
+
} | null;
|
|
2797
|
+
users: Record<string, {
|
|
2798
|
+
enabled: boolean;
|
|
2799
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2800
|
+
} | undefined>;
|
|
2801
|
+
};
|
|
2787
2802
|
ownerName: string;
|
|
2788
2803
|
releases: {
|
|
2789
2804
|
name: string;
|
|
2805
|
+
description: string;
|
|
2790
2806
|
uid: string;
|
|
2791
2807
|
id: string;
|
|
2792
|
-
|
|
2793
|
-
readme: string;
|
|
2808
|
+
recipe: Record<string, any>;
|
|
2794
2809
|
createTime: string;
|
|
2795
2810
|
updateTime: string;
|
|
2796
|
-
|
|
2811
|
+
metadata: Record<string, any>;
|
|
2812
|
+
readme: string;
|
|
2813
|
+
rawRecipe: string;
|
|
2797
2814
|
dataSpecification: {
|
|
2798
2815
|
input?: any;
|
|
2799
2816
|
output?: any;
|
|
2800
2817
|
};
|
|
2801
|
-
metadata: Record<string, any>;
|
|
2802
|
-
rawRecipe: string;
|
|
2803
2818
|
deleteTime?: string | undefined;
|
|
2804
2819
|
alias?: string | undefined;
|
|
2805
2820
|
}[];
|
|
2806
|
-
metadata: Record<string, any>;
|
|
2807
|
-
sharing: {
|
|
2808
|
-
users: Record<string, {
|
|
2809
|
-
enabled: boolean;
|
|
2810
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2811
|
-
} | undefined>;
|
|
2812
|
-
shareCode: {
|
|
2813
|
-
user: string;
|
|
2814
|
-
enabled: boolean;
|
|
2815
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2816
|
-
code?: string | undefined;
|
|
2817
|
-
} | null;
|
|
2818
|
-
};
|
|
2819
2821
|
permission: {
|
|
2820
2822
|
canEdit: boolean;
|
|
2821
2823
|
canTrigger: boolean;
|
|
@@ -2826,26 +2828,20 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2826
2828
|
numberOfRuns: number;
|
|
2827
2829
|
};
|
|
2828
2830
|
profileImage: string;
|
|
2829
|
-
sourceUrl: string;
|
|
2830
|
-
documentationUrl: string;
|
|
2831
2831
|
license: string;
|
|
2832
2832
|
}>, "many">;
|
|
2833
2833
|
nextPageToken: z.ZodString;
|
|
2834
2834
|
totalSize: z.ZodNumber;
|
|
2835
2835
|
}, "strip", z.ZodTypeAny, {
|
|
2836
|
+
nextPageToken: string;
|
|
2837
|
+
totalSize: number;
|
|
2836
2838
|
pipelines: {
|
|
2837
2839
|
name: string;
|
|
2840
|
+
description: string;
|
|
2838
2841
|
uid: string;
|
|
2839
2842
|
id: string;
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
createTime: string;
|
|
2843
|
-
updateTime: string;
|
|
2844
|
-
recipe: Record<string, any>;
|
|
2845
|
-
dataSpecification: {
|
|
2846
|
-
input?: any;
|
|
2847
|
-
output?: any;
|
|
2848
|
-
};
|
|
2843
|
+
documentationUrl: string;
|
|
2844
|
+
sourceUrl: string;
|
|
2849
2845
|
owner: {
|
|
2850
2846
|
user: {
|
|
2851
2847
|
name: string;
|
|
@@ -2871,8 +2867,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2871
2867
|
name: string;
|
|
2872
2868
|
uid: string;
|
|
2873
2869
|
id: string;
|
|
2874
|
-
createTime: string;
|
|
2875
|
-
updateTime: string;
|
|
2876
2870
|
owner: {
|
|
2877
2871
|
name: string;
|
|
2878
2872
|
uid: string;
|
|
@@ -2892,6 +2886,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2892
2886
|
} | undefined;
|
|
2893
2887
|
} | undefined;
|
|
2894
2888
|
};
|
|
2889
|
+
createTime: string;
|
|
2890
|
+
updateTime: string;
|
|
2895
2891
|
profile?: {
|
|
2896
2892
|
displayName?: string | undefined;
|
|
2897
2893
|
bio?: string | undefined;
|
|
@@ -2905,38 +2901,46 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2905
2901
|
} | undefined;
|
|
2906
2902
|
};
|
|
2907
2903
|
};
|
|
2904
|
+
recipe: Record<string, any>;
|
|
2905
|
+
createTime: string;
|
|
2906
|
+
updateTime: string;
|
|
2907
|
+
metadata: Record<string, any>;
|
|
2908
|
+
readme: string;
|
|
2909
|
+
dataSpecification: {
|
|
2910
|
+
input?: any;
|
|
2911
|
+
output?: any;
|
|
2912
|
+
};
|
|
2913
|
+
sharing: {
|
|
2914
|
+
shareCode: {
|
|
2915
|
+
user: string;
|
|
2916
|
+
enabled: boolean;
|
|
2917
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2918
|
+
code?: string | undefined;
|
|
2919
|
+
} | null;
|
|
2920
|
+
users: Record<string, {
|
|
2921
|
+
enabled: boolean;
|
|
2922
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2923
|
+
} | undefined>;
|
|
2924
|
+
};
|
|
2908
2925
|
ownerName: string;
|
|
2909
2926
|
releases: {
|
|
2910
2927
|
name: string;
|
|
2928
|
+
description: string;
|
|
2911
2929
|
uid: string;
|
|
2912
2930
|
id: string;
|
|
2913
|
-
|
|
2914
|
-
readme: string;
|
|
2931
|
+
recipe: Record<string, any>;
|
|
2915
2932
|
createTime: string;
|
|
2916
2933
|
updateTime: string;
|
|
2917
|
-
|
|
2934
|
+
metadata: Record<string, any>;
|
|
2935
|
+
readme: string;
|
|
2936
|
+
rawRecipe: string;
|
|
2918
2937
|
dataSpecification: {
|
|
2919
2938
|
input?: any;
|
|
2920
2939
|
output?: any;
|
|
2921
2940
|
};
|
|
2922
|
-
metadata: Record<string, any>;
|
|
2923
|
-
rawRecipe: string;
|
|
2924
2941
|
deleteTime?: string | undefined;
|
|
2925
2942
|
alias?: string | undefined;
|
|
2926
2943
|
}[];
|
|
2927
|
-
metadata: Record<string, any>;
|
|
2928
|
-
sharing: {
|
|
2929
|
-
users: Record<string, {
|
|
2930
|
-
enabled: boolean;
|
|
2931
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2932
|
-
} | undefined>;
|
|
2933
|
-
shareCode: {
|
|
2934
|
-
user: string;
|
|
2935
|
-
enabled: boolean;
|
|
2936
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
2937
|
-
code?: string | undefined;
|
|
2938
|
-
} | null;
|
|
2939
|
-
};
|
|
2940
2944
|
permission: {
|
|
2941
2945
|
canEdit: boolean;
|
|
2942
2946
|
canTrigger: boolean;
|
|
@@ -2947,26 +2951,18 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2947
2951
|
numberOfRuns: number;
|
|
2948
2952
|
};
|
|
2949
2953
|
profileImage: string;
|
|
2950
|
-
sourceUrl: string;
|
|
2951
|
-
documentationUrl: string;
|
|
2952
2954
|
license: string;
|
|
2953
2955
|
}[];
|
|
2956
|
+
}, {
|
|
2954
2957
|
nextPageToken: string;
|
|
2955
2958
|
totalSize: number;
|
|
2956
|
-
}, {
|
|
2957
2959
|
pipelines: {
|
|
2958
2960
|
name: string;
|
|
2961
|
+
description: string;
|
|
2959
2962
|
uid: string;
|
|
2960
2963
|
id: string;
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
createTime: string;
|
|
2964
|
-
updateTime: string;
|
|
2965
|
-
recipe: Record<string, any>;
|
|
2966
|
-
dataSpecification: {
|
|
2967
|
-
input?: any;
|
|
2968
|
-
output?: any;
|
|
2969
|
-
};
|
|
2964
|
+
documentationUrl: string;
|
|
2965
|
+
sourceUrl: string;
|
|
2970
2966
|
owner: {
|
|
2971
2967
|
user: {
|
|
2972
2968
|
name: string;
|
|
@@ -2992,8 +2988,6 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
2992
2988
|
name: string;
|
|
2993
2989
|
uid: string;
|
|
2994
2990
|
id: string;
|
|
2995
|
-
createTime: string;
|
|
2996
|
-
updateTime: string;
|
|
2997
2991
|
owner: {
|
|
2998
2992
|
name: string;
|
|
2999
2993
|
uid: string;
|
|
@@ -3013,6 +3007,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
3013
3007
|
} | undefined;
|
|
3014
3008
|
} | undefined;
|
|
3015
3009
|
};
|
|
3010
|
+
createTime: string;
|
|
3011
|
+
updateTime: string;
|
|
3016
3012
|
profile?: {
|
|
3017
3013
|
displayName?: string | undefined;
|
|
3018
3014
|
bio?: string | undefined;
|
|
@@ -3026,38 +3022,46 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
3026
3022
|
} | undefined;
|
|
3027
3023
|
};
|
|
3028
3024
|
};
|
|
3025
|
+
recipe: Record<string, any>;
|
|
3026
|
+
createTime: string;
|
|
3027
|
+
updateTime: string;
|
|
3028
|
+
metadata: Record<string, any>;
|
|
3029
|
+
readme: string;
|
|
3030
|
+
dataSpecification: {
|
|
3031
|
+
input?: any;
|
|
3032
|
+
output?: any;
|
|
3033
|
+
};
|
|
3034
|
+
sharing: {
|
|
3035
|
+
shareCode: {
|
|
3036
|
+
user: string;
|
|
3037
|
+
enabled: boolean;
|
|
3038
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3039
|
+
code?: string | undefined;
|
|
3040
|
+
} | null;
|
|
3041
|
+
users: Record<string, {
|
|
3042
|
+
enabled: boolean;
|
|
3043
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3044
|
+
} | undefined>;
|
|
3045
|
+
};
|
|
3029
3046
|
ownerName: string;
|
|
3030
3047
|
releases: {
|
|
3031
3048
|
name: string;
|
|
3049
|
+
description: string;
|
|
3032
3050
|
uid: string;
|
|
3033
3051
|
id: string;
|
|
3034
|
-
|
|
3035
|
-
readme: string;
|
|
3052
|
+
recipe: Record<string, any>;
|
|
3036
3053
|
createTime: string;
|
|
3037
3054
|
updateTime: string;
|
|
3038
|
-
|
|
3055
|
+
metadata: Record<string, any>;
|
|
3056
|
+
readme: string;
|
|
3057
|
+
rawRecipe: string;
|
|
3039
3058
|
dataSpecification: {
|
|
3040
3059
|
input?: any;
|
|
3041
3060
|
output?: any;
|
|
3042
3061
|
};
|
|
3043
|
-
metadata: Record<string, any>;
|
|
3044
|
-
rawRecipe: string;
|
|
3045
3062
|
deleteTime?: string | undefined;
|
|
3046
3063
|
alias?: string | undefined;
|
|
3047
3064
|
}[];
|
|
3048
|
-
metadata: Record<string, any>;
|
|
3049
|
-
sharing: {
|
|
3050
|
-
users: Record<string, {
|
|
3051
|
-
enabled: boolean;
|
|
3052
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3053
|
-
} | undefined>;
|
|
3054
|
-
shareCode: {
|
|
3055
|
-
user: string;
|
|
3056
|
-
enabled: boolean;
|
|
3057
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3058
|
-
code?: string | undefined;
|
|
3059
|
-
} | null;
|
|
3060
|
-
};
|
|
3061
3065
|
permission: {
|
|
3062
3066
|
canEdit: boolean;
|
|
3063
3067
|
canTrigger: boolean;
|
|
@@ -3068,12 +3072,8 @@ export declare const listNamespacePipelinesWithPaginationResponseValidator: z.Zo
|
|
|
3068
3072
|
numberOfRuns: number;
|
|
3069
3073
|
};
|
|
3070
3074
|
profileImage: string;
|
|
3071
|
-
sourceUrl: string;
|
|
3072
|
-
documentationUrl: string;
|
|
3073
3075
|
license: string;
|
|
3074
3076
|
}[];
|
|
3075
|
-
nextPageToken: string;
|
|
3076
|
-
totalSize: number;
|
|
3077
3077
|
}>;
|
|
3078
3078
|
export type GetNamespacePipelineRequest = {
|
|
3079
3079
|
namespaceId: string;
|
|
@@ -3364,8 +3364,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3364
3364
|
name: string;
|
|
3365
3365
|
uid: string;
|
|
3366
3366
|
id: string;
|
|
3367
|
-
createTime: string;
|
|
3368
|
-
updateTime: string;
|
|
3369
3367
|
owner: {
|
|
3370
3368
|
name: string;
|
|
3371
3369
|
uid: string;
|
|
@@ -3385,6 +3383,8 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3385
3383
|
} | undefined;
|
|
3386
3384
|
} | undefined;
|
|
3387
3385
|
};
|
|
3386
|
+
createTime: string;
|
|
3387
|
+
updateTime: string;
|
|
3388
3388
|
profile?: {
|
|
3389
3389
|
displayName?: string | undefined;
|
|
3390
3390
|
bio?: string | undefined;
|
|
@@ -3400,8 +3400,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3400
3400
|
name: string;
|
|
3401
3401
|
uid: string;
|
|
3402
3402
|
id: string;
|
|
3403
|
-
createTime: string;
|
|
3404
|
-
updateTime: string;
|
|
3405
3403
|
owner: {
|
|
3406
3404
|
name: string;
|
|
3407
3405
|
uid: string;
|
|
@@ -3421,6 +3419,8 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3421
3419
|
} | undefined;
|
|
3422
3420
|
} | undefined;
|
|
3423
3421
|
};
|
|
3422
|
+
createTime: string;
|
|
3423
|
+
updateTime: string;
|
|
3424
3424
|
profile?: {
|
|
3425
3425
|
displayName?: string | undefined;
|
|
3426
3426
|
bio?: string | undefined;
|
|
@@ -3438,8 +3438,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3438
3438
|
name: string;
|
|
3439
3439
|
uid: string;
|
|
3440
3440
|
id: string;
|
|
3441
|
-
createTime: string;
|
|
3442
|
-
updateTime: string;
|
|
3443
3441
|
owner: {
|
|
3444
3442
|
name: string;
|
|
3445
3443
|
uid: string;
|
|
@@ -3459,6 +3457,8 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3459
3457
|
} | undefined;
|
|
3460
3458
|
} | undefined;
|
|
3461
3459
|
};
|
|
3460
|
+
createTime: string;
|
|
3461
|
+
updateTime: string;
|
|
3462
3462
|
profile?: {
|
|
3463
3463
|
displayName?: string | undefined;
|
|
3464
3464
|
bio?: string | undefined;
|
|
@@ -3476,8 +3476,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3476
3476
|
name: string;
|
|
3477
3477
|
uid: string;
|
|
3478
3478
|
id: string;
|
|
3479
|
-
createTime: string;
|
|
3480
|
-
updateTime: string;
|
|
3481
3479
|
owner: {
|
|
3482
3480
|
name: string;
|
|
3483
3481
|
uid: string;
|
|
@@ -3497,6 +3495,8 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3497
3495
|
} | undefined;
|
|
3498
3496
|
} | undefined;
|
|
3499
3497
|
};
|
|
3498
|
+
createTime: string;
|
|
3499
|
+
updateTime: string;
|
|
3500
3500
|
profile?: {
|
|
3501
3501
|
displayName?: string | undefined;
|
|
3502
3502
|
bio?: string | undefined;
|
|
@@ -3536,36 +3536,36 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3536
3536
|
}>;
|
|
3537
3537
|
}, "strip", z.ZodTypeAny, {
|
|
3538
3538
|
name: string;
|
|
3539
|
+
description: string;
|
|
3539
3540
|
uid: string;
|
|
3540
3541
|
id: string;
|
|
3541
|
-
|
|
3542
|
-
readme: string;
|
|
3542
|
+
recipe: Record<string, any>;
|
|
3543
3543
|
createTime: string;
|
|
3544
3544
|
updateTime: string;
|
|
3545
|
-
|
|
3545
|
+
metadata: Record<string, any>;
|
|
3546
|
+
readme: string;
|
|
3547
|
+
rawRecipe: string;
|
|
3546
3548
|
dataSpecification: {
|
|
3547
3549
|
input?: any;
|
|
3548
3550
|
output?: any;
|
|
3549
3551
|
};
|
|
3550
|
-
metadata: Record<string, any>;
|
|
3551
|
-
rawRecipe: string;
|
|
3552
3552
|
deleteTime?: string | undefined;
|
|
3553
3553
|
alias?: string | undefined;
|
|
3554
3554
|
}, {
|
|
3555
3555
|
name: string;
|
|
3556
|
+
description: string;
|
|
3556
3557
|
uid: string;
|
|
3557
3558
|
id: string;
|
|
3558
|
-
|
|
3559
|
-
readme: string;
|
|
3559
|
+
recipe: Record<string, any>;
|
|
3560
3560
|
createTime: string;
|
|
3561
3561
|
updateTime: string;
|
|
3562
|
-
|
|
3562
|
+
metadata: Record<string, any>;
|
|
3563
|
+
readme: string;
|
|
3564
|
+
rawRecipe: string;
|
|
3563
3565
|
dataSpecification: {
|
|
3564
3566
|
input?: any;
|
|
3565
3567
|
output?: any;
|
|
3566
3568
|
};
|
|
3567
|
-
metadata: Record<string, any>;
|
|
3568
|
-
rawRecipe: string;
|
|
3569
3569
|
deleteTime?: string | undefined;
|
|
3570
3570
|
alias?: string | undefined;
|
|
3571
3571
|
}>, "many">;
|
|
@@ -3597,27 +3597,27 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3597
3597
|
code?: string | undefined;
|
|
3598
3598
|
}>>;
|
|
3599
3599
|
}, "strip", z.ZodTypeAny, {
|
|
3600
|
-
users: Record<string, {
|
|
3601
|
-
enabled: boolean;
|
|
3602
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3603
|
-
} | undefined>;
|
|
3604
3600
|
shareCode: {
|
|
3605
3601
|
user: string;
|
|
3606
3602
|
enabled: boolean;
|
|
3607
3603
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3608
3604
|
code?: string | undefined;
|
|
3609
3605
|
} | null;
|
|
3610
|
-
}, {
|
|
3611
3606
|
users: Record<string, {
|
|
3612
3607
|
enabled: boolean;
|
|
3613
3608
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3614
3609
|
} | undefined>;
|
|
3610
|
+
}, {
|
|
3615
3611
|
shareCode: {
|
|
3616
3612
|
user: string;
|
|
3617
3613
|
enabled: boolean;
|
|
3618
3614
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3619
3615
|
code?: string | undefined;
|
|
3620
3616
|
} | null;
|
|
3617
|
+
users: Record<string, {
|
|
3618
|
+
enabled: boolean;
|
|
3619
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3620
|
+
} | undefined>;
|
|
3621
3621
|
}>;
|
|
3622
3622
|
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
3623
3623
|
permission: z.ZodObject<{
|
|
@@ -3647,17 +3647,11 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3647
3647
|
license: z.ZodString;
|
|
3648
3648
|
}, "strip", z.ZodTypeAny, {
|
|
3649
3649
|
name: string;
|
|
3650
|
+
description: string;
|
|
3650
3651
|
uid: string;
|
|
3651
3652
|
id: string;
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
createTime: string;
|
|
3655
|
-
updateTime: string;
|
|
3656
|
-
recipe: Record<string, any>;
|
|
3657
|
-
dataSpecification: {
|
|
3658
|
-
input?: any;
|
|
3659
|
-
output?: any;
|
|
3660
|
-
};
|
|
3653
|
+
documentationUrl: string;
|
|
3654
|
+
sourceUrl: string;
|
|
3661
3655
|
owner: {
|
|
3662
3656
|
user: {
|
|
3663
3657
|
name: string;
|
|
@@ -3683,8 +3677,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3683
3677
|
name: string;
|
|
3684
3678
|
uid: string;
|
|
3685
3679
|
id: string;
|
|
3686
|
-
createTime: string;
|
|
3687
|
-
updateTime: string;
|
|
3688
3680
|
owner: {
|
|
3689
3681
|
name: string;
|
|
3690
3682
|
uid: string;
|
|
@@ -3704,6 +3696,8 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3704
3696
|
} | undefined;
|
|
3705
3697
|
} | undefined;
|
|
3706
3698
|
};
|
|
3699
|
+
createTime: string;
|
|
3700
|
+
updateTime: string;
|
|
3707
3701
|
profile?: {
|
|
3708
3702
|
displayName?: string | undefined;
|
|
3709
3703
|
bio?: string | undefined;
|
|
@@ -3717,38 +3711,46 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3717
3711
|
} | undefined;
|
|
3718
3712
|
};
|
|
3719
3713
|
};
|
|
3714
|
+
recipe: Record<string, any>;
|
|
3715
|
+
createTime: string;
|
|
3716
|
+
updateTime: string;
|
|
3717
|
+
metadata: Record<string, any>;
|
|
3718
|
+
readme: string;
|
|
3719
|
+
dataSpecification: {
|
|
3720
|
+
input?: any;
|
|
3721
|
+
output?: any;
|
|
3722
|
+
};
|
|
3723
|
+
sharing: {
|
|
3724
|
+
shareCode: {
|
|
3725
|
+
user: string;
|
|
3726
|
+
enabled: boolean;
|
|
3727
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3728
|
+
code?: string | undefined;
|
|
3729
|
+
} | null;
|
|
3730
|
+
users: Record<string, {
|
|
3731
|
+
enabled: boolean;
|
|
3732
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3733
|
+
} | undefined>;
|
|
3734
|
+
};
|
|
3720
3735
|
ownerName: string;
|
|
3721
3736
|
releases: {
|
|
3722
3737
|
name: string;
|
|
3738
|
+
description: string;
|
|
3723
3739
|
uid: string;
|
|
3724
3740
|
id: string;
|
|
3725
|
-
|
|
3726
|
-
readme: string;
|
|
3741
|
+
recipe: Record<string, any>;
|
|
3727
3742
|
createTime: string;
|
|
3728
3743
|
updateTime: string;
|
|
3729
|
-
|
|
3744
|
+
metadata: Record<string, any>;
|
|
3745
|
+
readme: string;
|
|
3746
|
+
rawRecipe: string;
|
|
3730
3747
|
dataSpecification: {
|
|
3731
3748
|
input?: any;
|
|
3732
3749
|
output?: any;
|
|
3733
3750
|
};
|
|
3734
|
-
metadata: Record<string, any>;
|
|
3735
|
-
rawRecipe: string;
|
|
3736
3751
|
deleteTime?: string | undefined;
|
|
3737
3752
|
alias?: string | undefined;
|
|
3738
3753
|
}[];
|
|
3739
|
-
metadata: Record<string, any>;
|
|
3740
|
-
sharing: {
|
|
3741
|
-
users: Record<string, {
|
|
3742
|
-
enabled: boolean;
|
|
3743
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3744
|
-
} | undefined>;
|
|
3745
|
-
shareCode: {
|
|
3746
|
-
user: string;
|
|
3747
|
-
enabled: boolean;
|
|
3748
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3749
|
-
code?: string | undefined;
|
|
3750
|
-
} | null;
|
|
3751
|
-
};
|
|
3752
3754
|
permission: {
|
|
3753
3755
|
canEdit: boolean;
|
|
3754
3756
|
canTrigger: boolean;
|
|
@@ -3759,22 +3761,14 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3759
3761
|
numberOfRuns: number;
|
|
3760
3762
|
};
|
|
3761
3763
|
profileImage: string;
|
|
3762
|
-
sourceUrl: string;
|
|
3763
|
-
documentationUrl: string;
|
|
3764
3764
|
license: string;
|
|
3765
3765
|
}, {
|
|
3766
3766
|
name: string;
|
|
3767
|
+
description: string;
|
|
3767
3768
|
uid: string;
|
|
3768
3769
|
id: string;
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
createTime: string;
|
|
3772
|
-
updateTime: string;
|
|
3773
|
-
recipe: Record<string, any>;
|
|
3774
|
-
dataSpecification: {
|
|
3775
|
-
input?: any;
|
|
3776
|
-
output?: any;
|
|
3777
|
-
};
|
|
3770
|
+
documentationUrl: string;
|
|
3771
|
+
sourceUrl: string;
|
|
3778
3772
|
owner: {
|
|
3779
3773
|
user: {
|
|
3780
3774
|
name: string;
|
|
@@ -3800,8 +3794,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3800
3794
|
name: string;
|
|
3801
3795
|
uid: string;
|
|
3802
3796
|
id: string;
|
|
3803
|
-
createTime: string;
|
|
3804
|
-
updateTime: string;
|
|
3805
3797
|
owner: {
|
|
3806
3798
|
name: string;
|
|
3807
3799
|
uid: string;
|
|
@@ -3821,6 +3813,8 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3821
3813
|
} | undefined;
|
|
3822
3814
|
} | undefined;
|
|
3823
3815
|
};
|
|
3816
|
+
createTime: string;
|
|
3817
|
+
updateTime: string;
|
|
3824
3818
|
profile?: {
|
|
3825
3819
|
displayName?: string | undefined;
|
|
3826
3820
|
bio?: string | undefined;
|
|
@@ -3834,38 +3828,46 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3834
3828
|
} | undefined;
|
|
3835
3829
|
};
|
|
3836
3830
|
};
|
|
3831
|
+
recipe: Record<string, any>;
|
|
3832
|
+
createTime: string;
|
|
3833
|
+
updateTime: string;
|
|
3834
|
+
metadata: Record<string, any>;
|
|
3835
|
+
readme: string;
|
|
3836
|
+
dataSpecification: {
|
|
3837
|
+
input?: any;
|
|
3838
|
+
output?: any;
|
|
3839
|
+
};
|
|
3840
|
+
sharing: {
|
|
3841
|
+
shareCode: {
|
|
3842
|
+
user: string;
|
|
3843
|
+
enabled: boolean;
|
|
3844
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3845
|
+
code?: string | undefined;
|
|
3846
|
+
} | null;
|
|
3847
|
+
users: Record<string, {
|
|
3848
|
+
enabled: boolean;
|
|
3849
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3850
|
+
} | undefined>;
|
|
3851
|
+
};
|
|
3837
3852
|
ownerName: string;
|
|
3838
3853
|
releases: {
|
|
3839
3854
|
name: string;
|
|
3855
|
+
description: string;
|
|
3840
3856
|
uid: string;
|
|
3841
3857
|
id: string;
|
|
3842
|
-
|
|
3843
|
-
readme: string;
|
|
3858
|
+
recipe: Record<string, any>;
|
|
3844
3859
|
createTime: string;
|
|
3845
3860
|
updateTime: string;
|
|
3846
|
-
|
|
3861
|
+
metadata: Record<string, any>;
|
|
3862
|
+
readme: string;
|
|
3863
|
+
rawRecipe: string;
|
|
3847
3864
|
dataSpecification: {
|
|
3848
3865
|
input?: any;
|
|
3849
3866
|
output?: any;
|
|
3850
3867
|
};
|
|
3851
|
-
metadata: Record<string, any>;
|
|
3852
|
-
rawRecipe: string;
|
|
3853
3868
|
deleteTime?: string | undefined;
|
|
3854
3869
|
alias?: string | undefined;
|
|
3855
3870
|
}[];
|
|
3856
|
-
metadata: Record<string, any>;
|
|
3857
|
-
sharing: {
|
|
3858
|
-
users: Record<string, {
|
|
3859
|
-
enabled: boolean;
|
|
3860
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3861
|
-
} | undefined>;
|
|
3862
|
-
shareCode: {
|
|
3863
|
-
user: string;
|
|
3864
|
-
enabled: boolean;
|
|
3865
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
3866
|
-
code?: string | undefined;
|
|
3867
|
-
} | null;
|
|
3868
|
-
};
|
|
3869
3871
|
permission: {
|
|
3870
3872
|
canEdit: boolean;
|
|
3871
3873
|
canTrigger: boolean;
|
|
@@ -3876,8 +3878,6 @@ export declare const getNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
3876
3878
|
numberOfRuns: number;
|
|
3877
3879
|
};
|
|
3878
3880
|
profileImage: string;
|
|
3879
|
-
sourceUrl: string;
|
|
3880
|
-
documentationUrl: string;
|
|
3881
3881
|
license: string;
|
|
3882
3882
|
}>;
|
|
3883
3883
|
export type CreateNamespacePipelineRequest = {
|
|
@@ -4173,8 +4173,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4173
4173
|
name: string;
|
|
4174
4174
|
uid: string;
|
|
4175
4175
|
id: string;
|
|
4176
|
-
createTime: string;
|
|
4177
|
-
updateTime: string;
|
|
4178
4176
|
owner: {
|
|
4179
4177
|
name: string;
|
|
4180
4178
|
uid: string;
|
|
@@ -4194,6 +4192,8 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4194
4192
|
} | undefined;
|
|
4195
4193
|
} | undefined;
|
|
4196
4194
|
};
|
|
4195
|
+
createTime: string;
|
|
4196
|
+
updateTime: string;
|
|
4197
4197
|
profile?: {
|
|
4198
4198
|
displayName?: string | undefined;
|
|
4199
4199
|
bio?: string | undefined;
|
|
@@ -4209,8 +4209,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4209
4209
|
name: string;
|
|
4210
4210
|
uid: string;
|
|
4211
4211
|
id: string;
|
|
4212
|
-
createTime: string;
|
|
4213
|
-
updateTime: string;
|
|
4214
4212
|
owner: {
|
|
4215
4213
|
name: string;
|
|
4216
4214
|
uid: string;
|
|
@@ -4230,6 +4228,8 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4230
4228
|
} | undefined;
|
|
4231
4229
|
} | undefined;
|
|
4232
4230
|
};
|
|
4231
|
+
createTime: string;
|
|
4232
|
+
updateTime: string;
|
|
4233
4233
|
profile?: {
|
|
4234
4234
|
displayName?: string | undefined;
|
|
4235
4235
|
bio?: string | undefined;
|
|
@@ -4247,8 +4247,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4247
4247
|
name: string;
|
|
4248
4248
|
uid: string;
|
|
4249
4249
|
id: string;
|
|
4250
|
-
createTime: string;
|
|
4251
|
-
updateTime: string;
|
|
4252
4250
|
owner: {
|
|
4253
4251
|
name: string;
|
|
4254
4252
|
uid: string;
|
|
@@ -4268,6 +4266,8 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4268
4266
|
} | undefined;
|
|
4269
4267
|
} | undefined;
|
|
4270
4268
|
};
|
|
4269
|
+
createTime: string;
|
|
4270
|
+
updateTime: string;
|
|
4271
4271
|
profile?: {
|
|
4272
4272
|
displayName?: string | undefined;
|
|
4273
4273
|
bio?: string | undefined;
|
|
@@ -4285,8 +4285,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4285
4285
|
name: string;
|
|
4286
4286
|
uid: string;
|
|
4287
4287
|
id: string;
|
|
4288
|
-
createTime: string;
|
|
4289
|
-
updateTime: string;
|
|
4290
4288
|
owner: {
|
|
4291
4289
|
name: string;
|
|
4292
4290
|
uid: string;
|
|
@@ -4306,6 +4304,8 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4306
4304
|
} | undefined;
|
|
4307
4305
|
} | undefined;
|
|
4308
4306
|
};
|
|
4307
|
+
createTime: string;
|
|
4308
|
+
updateTime: string;
|
|
4309
4309
|
profile?: {
|
|
4310
4310
|
displayName?: string | undefined;
|
|
4311
4311
|
bio?: string | undefined;
|
|
@@ -4345,36 +4345,36 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4345
4345
|
}>;
|
|
4346
4346
|
}, "strip", z.ZodTypeAny, {
|
|
4347
4347
|
name: string;
|
|
4348
|
+
description: string;
|
|
4348
4349
|
uid: string;
|
|
4349
4350
|
id: string;
|
|
4350
|
-
|
|
4351
|
-
readme: string;
|
|
4351
|
+
recipe: Record<string, any>;
|
|
4352
4352
|
createTime: string;
|
|
4353
4353
|
updateTime: string;
|
|
4354
|
-
|
|
4354
|
+
metadata: Record<string, any>;
|
|
4355
|
+
readme: string;
|
|
4356
|
+
rawRecipe: string;
|
|
4355
4357
|
dataSpecification: {
|
|
4356
4358
|
input?: any;
|
|
4357
4359
|
output?: any;
|
|
4358
4360
|
};
|
|
4359
|
-
metadata: Record<string, any>;
|
|
4360
|
-
rawRecipe: string;
|
|
4361
4361
|
deleteTime?: string | undefined;
|
|
4362
4362
|
alias?: string | undefined;
|
|
4363
4363
|
}, {
|
|
4364
4364
|
name: string;
|
|
4365
|
+
description: string;
|
|
4365
4366
|
uid: string;
|
|
4366
4367
|
id: string;
|
|
4367
|
-
|
|
4368
|
-
readme: string;
|
|
4368
|
+
recipe: Record<string, any>;
|
|
4369
4369
|
createTime: string;
|
|
4370
4370
|
updateTime: string;
|
|
4371
|
-
|
|
4371
|
+
metadata: Record<string, any>;
|
|
4372
|
+
readme: string;
|
|
4373
|
+
rawRecipe: string;
|
|
4372
4374
|
dataSpecification: {
|
|
4373
4375
|
input?: any;
|
|
4374
4376
|
output?: any;
|
|
4375
4377
|
};
|
|
4376
|
-
metadata: Record<string, any>;
|
|
4377
|
-
rawRecipe: string;
|
|
4378
4378
|
deleteTime?: string | undefined;
|
|
4379
4379
|
alias?: string | undefined;
|
|
4380
4380
|
}>, "many">;
|
|
@@ -4406,27 +4406,27 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4406
4406
|
code?: string | undefined;
|
|
4407
4407
|
}>>;
|
|
4408
4408
|
}, "strip", z.ZodTypeAny, {
|
|
4409
|
-
users: Record<string, {
|
|
4410
|
-
enabled: boolean;
|
|
4411
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4412
|
-
} | undefined>;
|
|
4413
4409
|
shareCode: {
|
|
4414
4410
|
user: string;
|
|
4415
4411
|
enabled: boolean;
|
|
4416
4412
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4417
4413
|
code?: string | undefined;
|
|
4418
4414
|
} | null;
|
|
4419
|
-
}, {
|
|
4420
4415
|
users: Record<string, {
|
|
4421
4416
|
enabled: boolean;
|
|
4422
4417
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4423
4418
|
} | undefined>;
|
|
4419
|
+
}, {
|
|
4424
4420
|
shareCode: {
|
|
4425
4421
|
user: string;
|
|
4426
4422
|
enabled: boolean;
|
|
4427
4423
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4428
4424
|
code?: string | undefined;
|
|
4429
4425
|
} | null;
|
|
4426
|
+
users: Record<string, {
|
|
4427
|
+
enabled: boolean;
|
|
4428
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4429
|
+
} | undefined>;
|
|
4430
4430
|
}>;
|
|
4431
4431
|
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
4432
4432
|
permission: z.ZodObject<{
|
|
@@ -4456,17 +4456,11 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4456
4456
|
license: z.ZodString;
|
|
4457
4457
|
}, "strip", z.ZodTypeAny, {
|
|
4458
4458
|
name: string;
|
|
4459
|
+
description: string;
|
|
4459
4460
|
uid: string;
|
|
4460
4461
|
id: string;
|
|
4461
|
-
|
|
4462
|
-
|
|
4463
|
-
createTime: string;
|
|
4464
|
-
updateTime: string;
|
|
4465
|
-
recipe: Record<string, any>;
|
|
4466
|
-
dataSpecification: {
|
|
4467
|
-
input?: any;
|
|
4468
|
-
output?: any;
|
|
4469
|
-
};
|
|
4462
|
+
documentationUrl: string;
|
|
4463
|
+
sourceUrl: string;
|
|
4470
4464
|
owner: {
|
|
4471
4465
|
user: {
|
|
4472
4466
|
name: string;
|
|
@@ -4492,8 +4486,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4492
4486
|
name: string;
|
|
4493
4487
|
uid: string;
|
|
4494
4488
|
id: string;
|
|
4495
|
-
createTime: string;
|
|
4496
|
-
updateTime: string;
|
|
4497
4489
|
owner: {
|
|
4498
4490
|
name: string;
|
|
4499
4491
|
uid: string;
|
|
@@ -4513,6 +4505,8 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4513
4505
|
} | undefined;
|
|
4514
4506
|
} | undefined;
|
|
4515
4507
|
};
|
|
4508
|
+
createTime: string;
|
|
4509
|
+
updateTime: string;
|
|
4516
4510
|
profile?: {
|
|
4517
4511
|
displayName?: string | undefined;
|
|
4518
4512
|
bio?: string | undefined;
|
|
@@ -4526,38 +4520,46 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4526
4520
|
} | undefined;
|
|
4527
4521
|
};
|
|
4528
4522
|
};
|
|
4523
|
+
recipe: Record<string, any>;
|
|
4524
|
+
createTime: string;
|
|
4525
|
+
updateTime: string;
|
|
4526
|
+
metadata: Record<string, any>;
|
|
4527
|
+
readme: string;
|
|
4528
|
+
dataSpecification: {
|
|
4529
|
+
input?: any;
|
|
4530
|
+
output?: any;
|
|
4531
|
+
};
|
|
4532
|
+
sharing: {
|
|
4533
|
+
shareCode: {
|
|
4534
|
+
user: string;
|
|
4535
|
+
enabled: boolean;
|
|
4536
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4537
|
+
code?: string | undefined;
|
|
4538
|
+
} | null;
|
|
4539
|
+
users: Record<string, {
|
|
4540
|
+
enabled: boolean;
|
|
4541
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4542
|
+
} | undefined>;
|
|
4543
|
+
};
|
|
4529
4544
|
ownerName: string;
|
|
4530
4545
|
releases: {
|
|
4531
4546
|
name: string;
|
|
4547
|
+
description: string;
|
|
4532
4548
|
uid: string;
|
|
4533
4549
|
id: string;
|
|
4534
|
-
|
|
4535
|
-
readme: string;
|
|
4550
|
+
recipe: Record<string, any>;
|
|
4536
4551
|
createTime: string;
|
|
4537
4552
|
updateTime: string;
|
|
4538
|
-
|
|
4553
|
+
metadata: Record<string, any>;
|
|
4554
|
+
readme: string;
|
|
4555
|
+
rawRecipe: string;
|
|
4539
4556
|
dataSpecification: {
|
|
4540
4557
|
input?: any;
|
|
4541
4558
|
output?: any;
|
|
4542
4559
|
};
|
|
4543
|
-
metadata: Record<string, any>;
|
|
4544
|
-
rawRecipe: string;
|
|
4545
4560
|
deleteTime?: string | undefined;
|
|
4546
4561
|
alias?: string | undefined;
|
|
4547
4562
|
}[];
|
|
4548
|
-
metadata: Record<string, any>;
|
|
4549
|
-
sharing: {
|
|
4550
|
-
users: Record<string, {
|
|
4551
|
-
enabled: boolean;
|
|
4552
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4553
|
-
} | undefined>;
|
|
4554
|
-
shareCode: {
|
|
4555
|
-
user: string;
|
|
4556
|
-
enabled: boolean;
|
|
4557
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4558
|
-
code?: string | undefined;
|
|
4559
|
-
} | null;
|
|
4560
|
-
};
|
|
4561
4563
|
permission: {
|
|
4562
4564
|
canEdit: boolean;
|
|
4563
4565
|
canTrigger: boolean;
|
|
@@ -4568,22 +4570,14 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4568
4570
|
numberOfRuns: number;
|
|
4569
4571
|
};
|
|
4570
4572
|
profileImage: string;
|
|
4571
|
-
sourceUrl: string;
|
|
4572
|
-
documentationUrl: string;
|
|
4573
4573
|
license: string;
|
|
4574
4574
|
}, {
|
|
4575
4575
|
name: string;
|
|
4576
|
+
description: string;
|
|
4576
4577
|
uid: string;
|
|
4577
4578
|
id: string;
|
|
4578
|
-
|
|
4579
|
-
|
|
4580
|
-
createTime: string;
|
|
4581
|
-
updateTime: string;
|
|
4582
|
-
recipe: Record<string, any>;
|
|
4583
|
-
dataSpecification: {
|
|
4584
|
-
input?: any;
|
|
4585
|
-
output?: any;
|
|
4586
|
-
};
|
|
4579
|
+
documentationUrl: string;
|
|
4580
|
+
sourceUrl: string;
|
|
4587
4581
|
owner: {
|
|
4588
4582
|
user: {
|
|
4589
4583
|
name: string;
|
|
@@ -4609,8 +4603,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4609
4603
|
name: string;
|
|
4610
4604
|
uid: string;
|
|
4611
4605
|
id: string;
|
|
4612
|
-
createTime: string;
|
|
4613
|
-
updateTime: string;
|
|
4614
4606
|
owner: {
|
|
4615
4607
|
name: string;
|
|
4616
4608
|
uid: string;
|
|
@@ -4630,6 +4622,8 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4630
4622
|
} | undefined;
|
|
4631
4623
|
} | undefined;
|
|
4632
4624
|
};
|
|
4625
|
+
createTime: string;
|
|
4626
|
+
updateTime: string;
|
|
4633
4627
|
profile?: {
|
|
4634
4628
|
displayName?: string | undefined;
|
|
4635
4629
|
bio?: string | undefined;
|
|
@@ -4643,38 +4637,46 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4643
4637
|
} | undefined;
|
|
4644
4638
|
};
|
|
4645
4639
|
};
|
|
4640
|
+
recipe: Record<string, any>;
|
|
4641
|
+
createTime: string;
|
|
4642
|
+
updateTime: string;
|
|
4643
|
+
metadata: Record<string, any>;
|
|
4644
|
+
readme: string;
|
|
4645
|
+
dataSpecification: {
|
|
4646
|
+
input?: any;
|
|
4647
|
+
output?: any;
|
|
4648
|
+
};
|
|
4649
|
+
sharing: {
|
|
4650
|
+
shareCode: {
|
|
4651
|
+
user: string;
|
|
4652
|
+
enabled: boolean;
|
|
4653
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4654
|
+
code?: string | undefined;
|
|
4655
|
+
} | null;
|
|
4656
|
+
users: Record<string, {
|
|
4657
|
+
enabled: boolean;
|
|
4658
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4659
|
+
} | undefined>;
|
|
4660
|
+
};
|
|
4646
4661
|
ownerName: string;
|
|
4647
4662
|
releases: {
|
|
4648
4663
|
name: string;
|
|
4664
|
+
description: string;
|
|
4649
4665
|
uid: string;
|
|
4650
4666
|
id: string;
|
|
4651
|
-
|
|
4652
|
-
readme: string;
|
|
4667
|
+
recipe: Record<string, any>;
|
|
4653
4668
|
createTime: string;
|
|
4654
4669
|
updateTime: string;
|
|
4655
|
-
|
|
4670
|
+
metadata: Record<string, any>;
|
|
4671
|
+
readme: string;
|
|
4672
|
+
rawRecipe: string;
|
|
4656
4673
|
dataSpecification: {
|
|
4657
4674
|
input?: any;
|
|
4658
4675
|
output?: any;
|
|
4659
4676
|
};
|
|
4660
|
-
metadata: Record<string, any>;
|
|
4661
|
-
rawRecipe: string;
|
|
4662
4677
|
deleteTime?: string | undefined;
|
|
4663
4678
|
alias?: string | undefined;
|
|
4664
4679
|
}[];
|
|
4665
|
-
metadata: Record<string, any>;
|
|
4666
|
-
sharing: {
|
|
4667
|
-
users: Record<string, {
|
|
4668
|
-
enabled: boolean;
|
|
4669
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4670
|
-
} | undefined>;
|
|
4671
|
-
shareCode: {
|
|
4672
|
-
user: string;
|
|
4673
|
-
enabled: boolean;
|
|
4674
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
4675
|
-
code?: string | undefined;
|
|
4676
|
-
} | null;
|
|
4677
|
-
};
|
|
4678
4680
|
permission: {
|
|
4679
4681
|
canEdit: boolean;
|
|
4680
4682
|
canTrigger: boolean;
|
|
@@ -4685,8 +4687,6 @@ export declare const createNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4685
4687
|
numberOfRuns: number;
|
|
4686
4688
|
};
|
|
4687
4689
|
profileImage: string;
|
|
4688
|
-
sourceUrl: string;
|
|
4689
|
-
documentationUrl: string;
|
|
4690
4690
|
license: string;
|
|
4691
4691
|
}>;
|
|
4692
4692
|
export type DeleteNamespacePipelineRequest = {
|
|
@@ -4991,8 +4991,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
4991
4991
|
name: string;
|
|
4992
4992
|
uid: string;
|
|
4993
4993
|
id: string;
|
|
4994
|
-
createTime: string;
|
|
4995
|
-
updateTime: string;
|
|
4996
4994
|
owner: {
|
|
4997
4995
|
name: string;
|
|
4998
4996
|
uid: string;
|
|
@@ -5012,6 +5010,8 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5012
5010
|
} | undefined;
|
|
5013
5011
|
} | undefined;
|
|
5014
5012
|
};
|
|
5013
|
+
createTime: string;
|
|
5014
|
+
updateTime: string;
|
|
5015
5015
|
profile?: {
|
|
5016
5016
|
displayName?: string | undefined;
|
|
5017
5017
|
bio?: string | undefined;
|
|
@@ -5027,8 +5027,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5027
5027
|
name: string;
|
|
5028
5028
|
uid: string;
|
|
5029
5029
|
id: string;
|
|
5030
|
-
createTime: string;
|
|
5031
|
-
updateTime: string;
|
|
5032
5030
|
owner: {
|
|
5033
5031
|
name: string;
|
|
5034
5032
|
uid: string;
|
|
@@ -5048,6 +5046,8 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5048
5046
|
} | undefined;
|
|
5049
5047
|
} | undefined;
|
|
5050
5048
|
};
|
|
5049
|
+
createTime: string;
|
|
5050
|
+
updateTime: string;
|
|
5051
5051
|
profile?: {
|
|
5052
5052
|
displayName?: string | undefined;
|
|
5053
5053
|
bio?: string | undefined;
|
|
@@ -5065,8 +5065,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5065
5065
|
name: string;
|
|
5066
5066
|
uid: string;
|
|
5067
5067
|
id: string;
|
|
5068
|
-
createTime: string;
|
|
5069
|
-
updateTime: string;
|
|
5070
5068
|
owner: {
|
|
5071
5069
|
name: string;
|
|
5072
5070
|
uid: string;
|
|
@@ -5086,6 +5084,8 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5086
5084
|
} | undefined;
|
|
5087
5085
|
} | undefined;
|
|
5088
5086
|
};
|
|
5087
|
+
createTime: string;
|
|
5088
|
+
updateTime: string;
|
|
5089
5089
|
profile?: {
|
|
5090
5090
|
displayName?: string | undefined;
|
|
5091
5091
|
bio?: string | undefined;
|
|
@@ -5103,8 +5103,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5103
5103
|
name: string;
|
|
5104
5104
|
uid: string;
|
|
5105
5105
|
id: string;
|
|
5106
|
-
createTime: string;
|
|
5107
|
-
updateTime: string;
|
|
5108
5106
|
owner: {
|
|
5109
5107
|
name: string;
|
|
5110
5108
|
uid: string;
|
|
@@ -5124,6 +5122,8 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5124
5122
|
} | undefined;
|
|
5125
5123
|
} | undefined;
|
|
5126
5124
|
};
|
|
5125
|
+
createTime: string;
|
|
5126
|
+
updateTime: string;
|
|
5127
5127
|
profile?: {
|
|
5128
5128
|
displayName?: string | undefined;
|
|
5129
5129
|
bio?: string | undefined;
|
|
@@ -5163,36 +5163,36 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5163
5163
|
}>;
|
|
5164
5164
|
}, "strip", z.ZodTypeAny, {
|
|
5165
5165
|
name: string;
|
|
5166
|
+
description: string;
|
|
5166
5167
|
uid: string;
|
|
5167
5168
|
id: string;
|
|
5168
|
-
|
|
5169
|
-
readme: string;
|
|
5169
|
+
recipe: Record<string, any>;
|
|
5170
5170
|
createTime: string;
|
|
5171
5171
|
updateTime: string;
|
|
5172
|
-
|
|
5172
|
+
metadata: Record<string, any>;
|
|
5173
|
+
readme: string;
|
|
5174
|
+
rawRecipe: string;
|
|
5173
5175
|
dataSpecification: {
|
|
5174
5176
|
input?: any;
|
|
5175
5177
|
output?: any;
|
|
5176
5178
|
};
|
|
5177
|
-
metadata: Record<string, any>;
|
|
5178
|
-
rawRecipe: string;
|
|
5179
5179
|
deleteTime?: string | undefined;
|
|
5180
5180
|
alias?: string | undefined;
|
|
5181
5181
|
}, {
|
|
5182
5182
|
name: string;
|
|
5183
|
+
description: string;
|
|
5183
5184
|
uid: string;
|
|
5184
5185
|
id: string;
|
|
5185
|
-
|
|
5186
|
-
readme: string;
|
|
5186
|
+
recipe: Record<string, any>;
|
|
5187
5187
|
createTime: string;
|
|
5188
5188
|
updateTime: string;
|
|
5189
|
-
|
|
5189
|
+
metadata: Record<string, any>;
|
|
5190
|
+
readme: string;
|
|
5191
|
+
rawRecipe: string;
|
|
5190
5192
|
dataSpecification: {
|
|
5191
5193
|
input?: any;
|
|
5192
5194
|
output?: any;
|
|
5193
5195
|
};
|
|
5194
|
-
metadata: Record<string, any>;
|
|
5195
|
-
rawRecipe: string;
|
|
5196
5196
|
deleteTime?: string | undefined;
|
|
5197
5197
|
alias?: string | undefined;
|
|
5198
5198
|
}>, "many">;
|
|
@@ -5224,27 +5224,27 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5224
5224
|
code?: string | undefined;
|
|
5225
5225
|
}>>;
|
|
5226
5226
|
}, "strip", z.ZodTypeAny, {
|
|
5227
|
-
users: Record<string, {
|
|
5228
|
-
enabled: boolean;
|
|
5229
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5230
|
-
} | undefined>;
|
|
5231
5227
|
shareCode: {
|
|
5232
5228
|
user: string;
|
|
5233
5229
|
enabled: boolean;
|
|
5234
5230
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5235
5231
|
code?: string | undefined;
|
|
5236
5232
|
} | null;
|
|
5237
|
-
}, {
|
|
5238
5233
|
users: Record<string, {
|
|
5239
5234
|
enabled: boolean;
|
|
5240
5235
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5241
5236
|
} | undefined>;
|
|
5237
|
+
}, {
|
|
5242
5238
|
shareCode: {
|
|
5243
5239
|
user: string;
|
|
5244
5240
|
enabled: boolean;
|
|
5245
5241
|
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5246
5242
|
code?: string | undefined;
|
|
5247
5243
|
} | null;
|
|
5244
|
+
users: Record<string, {
|
|
5245
|
+
enabled: boolean;
|
|
5246
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5247
|
+
} | undefined>;
|
|
5248
5248
|
}>;
|
|
5249
5249
|
metadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
5250
5250
|
permission: z.ZodObject<{
|
|
@@ -5274,17 +5274,11 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5274
5274
|
license: z.ZodString;
|
|
5275
5275
|
}, "strip", z.ZodTypeAny, {
|
|
5276
5276
|
name: string;
|
|
5277
|
+
description: string;
|
|
5277
5278
|
uid: string;
|
|
5278
5279
|
id: string;
|
|
5279
|
-
|
|
5280
|
-
|
|
5281
|
-
createTime: string;
|
|
5282
|
-
updateTime: string;
|
|
5283
|
-
recipe: Record<string, any>;
|
|
5284
|
-
dataSpecification: {
|
|
5285
|
-
input?: any;
|
|
5286
|
-
output?: any;
|
|
5287
|
-
};
|
|
5280
|
+
documentationUrl: string;
|
|
5281
|
+
sourceUrl: string;
|
|
5288
5282
|
owner: {
|
|
5289
5283
|
user: {
|
|
5290
5284
|
name: string;
|
|
@@ -5310,8 +5304,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5310
5304
|
name: string;
|
|
5311
5305
|
uid: string;
|
|
5312
5306
|
id: string;
|
|
5313
|
-
createTime: string;
|
|
5314
|
-
updateTime: string;
|
|
5315
5307
|
owner: {
|
|
5316
5308
|
name: string;
|
|
5317
5309
|
uid: string;
|
|
@@ -5331,6 +5323,8 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5331
5323
|
} | undefined;
|
|
5332
5324
|
} | undefined;
|
|
5333
5325
|
};
|
|
5326
|
+
createTime: string;
|
|
5327
|
+
updateTime: string;
|
|
5334
5328
|
profile?: {
|
|
5335
5329
|
displayName?: string | undefined;
|
|
5336
5330
|
bio?: string | undefined;
|
|
@@ -5344,38 +5338,46 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5344
5338
|
} | undefined;
|
|
5345
5339
|
};
|
|
5346
5340
|
};
|
|
5341
|
+
recipe: Record<string, any>;
|
|
5342
|
+
createTime: string;
|
|
5343
|
+
updateTime: string;
|
|
5344
|
+
metadata: Record<string, any>;
|
|
5345
|
+
readme: string;
|
|
5346
|
+
dataSpecification: {
|
|
5347
|
+
input?: any;
|
|
5348
|
+
output?: any;
|
|
5349
|
+
};
|
|
5350
|
+
sharing: {
|
|
5351
|
+
shareCode: {
|
|
5352
|
+
user: string;
|
|
5353
|
+
enabled: boolean;
|
|
5354
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5355
|
+
code?: string | undefined;
|
|
5356
|
+
} | null;
|
|
5357
|
+
users: Record<string, {
|
|
5358
|
+
enabled: boolean;
|
|
5359
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5360
|
+
} | undefined>;
|
|
5361
|
+
};
|
|
5347
5362
|
ownerName: string;
|
|
5348
5363
|
releases: {
|
|
5349
5364
|
name: string;
|
|
5365
|
+
description: string;
|
|
5350
5366
|
uid: string;
|
|
5351
5367
|
id: string;
|
|
5352
|
-
|
|
5353
|
-
readme: string;
|
|
5368
|
+
recipe: Record<string, any>;
|
|
5354
5369
|
createTime: string;
|
|
5355
5370
|
updateTime: string;
|
|
5356
|
-
|
|
5371
|
+
metadata: Record<string, any>;
|
|
5372
|
+
readme: string;
|
|
5373
|
+
rawRecipe: string;
|
|
5357
5374
|
dataSpecification: {
|
|
5358
5375
|
input?: any;
|
|
5359
5376
|
output?: any;
|
|
5360
5377
|
};
|
|
5361
|
-
metadata: Record<string, any>;
|
|
5362
|
-
rawRecipe: string;
|
|
5363
5378
|
deleteTime?: string | undefined;
|
|
5364
5379
|
alias?: string | undefined;
|
|
5365
5380
|
}[];
|
|
5366
|
-
metadata: Record<string, any>;
|
|
5367
|
-
sharing: {
|
|
5368
|
-
users: Record<string, {
|
|
5369
|
-
enabled: boolean;
|
|
5370
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5371
|
-
} | undefined>;
|
|
5372
|
-
shareCode: {
|
|
5373
|
-
user: string;
|
|
5374
|
-
enabled: boolean;
|
|
5375
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5376
|
-
code?: string | undefined;
|
|
5377
|
-
} | null;
|
|
5378
|
-
};
|
|
5379
5381
|
permission: {
|
|
5380
5382
|
canEdit: boolean;
|
|
5381
5383
|
canTrigger: boolean;
|
|
@@ -5386,22 +5388,14 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5386
5388
|
numberOfRuns: number;
|
|
5387
5389
|
};
|
|
5388
5390
|
profileImage: string;
|
|
5389
|
-
sourceUrl: string;
|
|
5390
|
-
documentationUrl: string;
|
|
5391
5391
|
license: string;
|
|
5392
5392
|
}, {
|
|
5393
5393
|
name: string;
|
|
5394
|
+
description: string;
|
|
5394
5395
|
uid: string;
|
|
5395
5396
|
id: string;
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
createTime: string;
|
|
5399
|
-
updateTime: string;
|
|
5400
|
-
recipe: Record<string, any>;
|
|
5401
|
-
dataSpecification: {
|
|
5402
|
-
input?: any;
|
|
5403
|
-
output?: any;
|
|
5404
|
-
};
|
|
5397
|
+
documentationUrl: string;
|
|
5398
|
+
sourceUrl: string;
|
|
5405
5399
|
owner: {
|
|
5406
5400
|
user: {
|
|
5407
5401
|
name: string;
|
|
@@ -5427,8 +5421,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5427
5421
|
name: string;
|
|
5428
5422
|
uid: string;
|
|
5429
5423
|
id: string;
|
|
5430
|
-
createTime: string;
|
|
5431
|
-
updateTime: string;
|
|
5432
5424
|
owner: {
|
|
5433
5425
|
name: string;
|
|
5434
5426
|
uid: string;
|
|
@@ -5448,6 +5440,8 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5448
5440
|
} | undefined;
|
|
5449
5441
|
} | undefined;
|
|
5450
5442
|
};
|
|
5443
|
+
createTime: string;
|
|
5444
|
+
updateTime: string;
|
|
5451
5445
|
profile?: {
|
|
5452
5446
|
displayName?: string | undefined;
|
|
5453
5447
|
bio?: string | undefined;
|
|
@@ -5461,38 +5455,46 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5461
5455
|
} | undefined;
|
|
5462
5456
|
};
|
|
5463
5457
|
};
|
|
5458
|
+
recipe: Record<string, any>;
|
|
5459
|
+
createTime: string;
|
|
5460
|
+
updateTime: string;
|
|
5461
|
+
metadata: Record<string, any>;
|
|
5462
|
+
readme: string;
|
|
5463
|
+
dataSpecification: {
|
|
5464
|
+
input?: any;
|
|
5465
|
+
output?: any;
|
|
5466
|
+
};
|
|
5467
|
+
sharing: {
|
|
5468
|
+
shareCode: {
|
|
5469
|
+
user: string;
|
|
5470
|
+
enabled: boolean;
|
|
5471
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5472
|
+
code?: string | undefined;
|
|
5473
|
+
} | null;
|
|
5474
|
+
users: Record<string, {
|
|
5475
|
+
enabled: boolean;
|
|
5476
|
+
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5477
|
+
} | undefined>;
|
|
5478
|
+
};
|
|
5464
5479
|
ownerName: string;
|
|
5465
5480
|
releases: {
|
|
5466
5481
|
name: string;
|
|
5482
|
+
description: string;
|
|
5467
5483
|
uid: string;
|
|
5468
5484
|
id: string;
|
|
5469
|
-
|
|
5470
|
-
readme: string;
|
|
5485
|
+
recipe: Record<string, any>;
|
|
5471
5486
|
createTime: string;
|
|
5472
5487
|
updateTime: string;
|
|
5473
|
-
|
|
5488
|
+
metadata: Record<string, any>;
|
|
5489
|
+
readme: string;
|
|
5490
|
+
rawRecipe: string;
|
|
5474
5491
|
dataSpecification: {
|
|
5475
5492
|
input?: any;
|
|
5476
5493
|
output?: any;
|
|
5477
5494
|
};
|
|
5478
|
-
metadata: Record<string, any>;
|
|
5479
|
-
rawRecipe: string;
|
|
5480
5495
|
deleteTime?: string | undefined;
|
|
5481
5496
|
alias?: string | undefined;
|
|
5482
5497
|
}[];
|
|
5483
|
-
metadata: Record<string, any>;
|
|
5484
|
-
sharing: {
|
|
5485
|
-
users: Record<string, {
|
|
5486
|
-
enabled: boolean;
|
|
5487
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5488
|
-
} | undefined>;
|
|
5489
|
-
shareCode: {
|
|
5490
|
-
user: string;
|
|
5491
|
-
enabled: boolean;
|
|
5492
|
-
role: "ROLE_UNSPECIFIED" | "ROLE_VIEWER" | "ROLE_EXECUTOR";
|
|
5493
|
-
code?: string | undefined;
|
|
5494
|
-
} | null;
|
|
5495
|
-
};
|
|
5496
5498
|
permission: {
|
|
5497
5499
|
canEdit: boolean;
|
|
5498
5500
|
canTrigger: boolean;
|
|
@@ -5503,8 +5505,6 @@ export declare const updateNamespacePipelineResponseValidator: z.ZodObject<{
|
|
|
5503
5505
|
numberOfRuns: number;
|
|
5504
5506
|
};
|
|
5505
5507
|
profileImage: string;
|
|
5506
|
-
sourceUrl: string;
|
|
5507
|
-
documentationUrl: string;
|
|
5508
5508
|
license: string;
|
|
5509
5509
|
}>;
|
|
5510
5510
|
export type ValidatePipelineRecipeError = {
|