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