instill-sdk 0.4.0-rc.7 → 0.4.0
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/membership/types.d.ts +144 -144
- package/dist/core/organization/types.d.ts +10 -10
- package/dist/helper/getInstillAdditionalHeaders.d.ts +2 -1
- package/dist/helper/getInstillAdditionalHeaders.d.ts.map +1 -1
- package/dist/index.js +34 -10
- package/dist/index.mjs +34 -10
- package/dist/model/ModelClient.d.ts +2 -2
- package/dist/model/ModelClient.d.ts.map +1 -1
- package/dist/model/types.d.ts +2 -0
- package/dist/model/types.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +40 -40
- package/dist/vdp/component/types.d.ts +96 -96
- package/dist/vdp/pipeline/types.d.ts +750 -750
- package/dist/vdp/release/types.d.ts +8 -8
- package/dist/vdp/trigger/TriggerClient.d.ts +4 -3
- package/dist/vdp/trigger/TriggerClient.d.ts.map +1 -1
- package/dist/vdp/trigger/types.d.ts +2 -0
- package/dist/vdp/trigger/types.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -229,11 +229,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
229
229
|
} | undefined;
|
|
230
230
|
}>>;
|
|
231
231
|
}, "strip", z.ZodTypeAny, {
|
|
232
|
-
name: string;
|
|
233
|
-
uid: string;
|
|
234
|
-
id: string;
|
|
235
|
-
createTime: string;
|
|
236
|
-
updateTime: string;
|
|
237
232
|
owner: {
|
|
238
233
|
name: string;
|
|
239
234
|
uid: string;
|
|
@@ -253,6 +248,11 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
253
248
|
} | undefined;
|
|
254
249
|
} | undefined;
|
|
255
250
|
};
|
|
251
|
+
name: string;
|
|
252
|
+
uid: string;
|
|
253
|
+
id: string;
|
|
254
|
+
createTime: string;
|
|
255
|
+
updateTime: string;
|
|
256
256
|
profile?: {
|
|
257
257
|
displayName?: string | undefined;
|
|
258
258
|
bio?: string | undefined;
|
|
@@ -265,11 +265,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
265
265
|
} | undefined;
|
|
266
266
|
} | undefined;
|
|
267
267
|
}, {
|
|
268
|
-
name: string;
|
|
269
|
-
uid: string;
|
|
270
|
-
id: string;
|
|
271
|
-
createTime: string;
|
|
272
|
-
updateTime: string;
|
|
273
268
|
owner: {
|
|
274
269
|
name: string;
|
|
275
270
|
uid: string;
|
|
@@ -289,6 +284,11 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
289
284
|
} | undefined;
|
|
290
285
|
} | undefined;
|
|
291
286
|
};
|
|
287
|
+
name: string;
|
|
288
|
+
uid: string;
|
|
289
|
+
id: string;
|
|
290
|
+
createTime: string;
|
|
291
|
+
updateTime: string;
|
|
292
292
|
profile?: {
|
|
293
293
|
displayName?: string | undefined;
|
|
294
294
|
bio?: string | undefined;
|
|
@@ -305,6 +305,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
305
305
|
role: z.ZodString;
|
|
306
306
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
+
name: string | null;
|
|
309
|
+
role: string;
|
|
308
310
|
user: {
|
|
309
311
|
name: string;
|
|
310
312
|
uid: string;
|
|
@@ -324,14 +326,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
324
326
|
} | undefined;
|
|
325
327
|
} | undefined;
|
|
326
328
|
};
|
|
327
|
-
role: string;
|
|
328
|
-
name: string | null;
|
|
329
329
|
organization: {
|
|
330
|
-
name: string;
|
|
331
|
-
uid: string;
|
|
332
|
-
id: string;
|
|
333
|
-
createTime: string;
|
|
334
|
-
updateTime: string;
|
|
335
330
|
owner: {
|
|
336
331
|
name: string;
|
|
337
332
|
uid: string;
|
|
@@ -351,6 +346,11 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
351
346
|
} | undefined;
|
|
352
347
|
} | undefined;
|
|
353
348
|
};
|
|
349
|
+
name: string;
|
|
350
|
+
uid: string;
|
|
351
|
+
id: string;
|
|
352
|
+
createTime: string;
|
|
353
|
+
updateTime: string;
|
|
354
354
|
profile?: {
|
|
355
355
|
displayName?: string | undefined;
|
|
356
356
|
bio?: string | undefined;
|
|
@@ -365,6 +365,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
365
365
|
};
|
|
366
366
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
367
367
|
}, {
|
|
368
|
+
name: string | null;
|
|
369
|
+
role: string;
|
|
368
370
|
user: {
|
|
369
371
|
name: string;
|
|
370
372
|
uid: string;
|
|
@@ -384,14 +386,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
384
386
|
} | undefined;
|
|
385
387
|
} | undefined;
|
|
386
388
|
};
|
|
387
|
-
role: string;
|
|
388
|
-
name: string | null;
|
|
389
389
|
organization: {
|
|
390
|
-
name: string;
|
|
391
|
-
uid: string;
|
|
392
|
-
id: string;
|
|
393
|
-
createTime: string;
|
|
394
|
-
updateTime: string;
|
|
395
390
|
owner: {
|
|
396
391
|
name: string;
|
|
397
392
|
uid: string;
|
|
@@ -411,6 +406,11 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
411
406
|
} | undefined;
|
|
412
407
|
} | undefined;
|
|
413
408
|
};
|
|
409
|
+
name: string;
|
|
410
|
+
uid: string;
|
|
411
|
+
id: string;
|
|
412
|
+
createTime: string;
|
|
413
|
+
updateTime: string;
|
|
414
414
|
profile?: {
|
|
415
415
|
displayName?: string | undefined;
|
|
416
416
|
bio?: string | undefined;
|
|
@@ -649,11 +649,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
649
649
|
} | undefined;
|
|
650
650
|
}>>;
|
|
651
651
|
}, "strip", z.ZodTypeAny, {
|
|
652
|
-
name: string;
|
|
653
|
-
uid: string;
|
|
654
|
-
id: string;
|
|
655
|
-
createTime: string;
|
|
656
|
-
updateTime: string;
|
|
657
652
|
owner: {
|
|
658
653
|
name: string;
|
|
659
654
|
uid: string;
|
|
@@ -673,6 +668,11 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
673
668
|
} | undefined;
|
|
674
669
|
} | undefined;
|
|
675
670
|
};
|
|
671
|
+
name: string;
|
|
672
|
+
uid: string;
|
|
673
|
+
id: string;
|
|
674
|
+
createTime: string;
|
|
675
|
+
updateTime: string;
|
|
676
676
|
profile?: {
|
|
677
677
|
displayName?: string | undefined;
|
|
678
678
|
bio?: string | undefined;
|
|
@@ -685,11 +685,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
685
685
|
} | undefined;
|
|
686
686
|
} | undefined;
|
|
687
687
|
}, {
|
|
688
|
-
name: string;
|
|
689
|
-
uid: string;
|
|
690
|
-
id: string;
|
|
691
|
-
createTime: string;
|
|
692
|
-
updateTime: string;
|
|
693
688
|
owner: {
|
|
694
689
|
name: string;
|
|
695
690
|
uid: string;
|
|
@@ -709,6 +704,11 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
709
704
|
} | undefined;
|
|
710
705
|
} | undefined;
|
|
711
706
|
};
|
|
707
|
+
name: string;
|
|
708
|
+
uid: string;
|
|
709
|
+
id: string;
|
|
710
|
+
createTime: string;
|
|
711
|
+
updateTime: string;
|
|
712
712
|
profile?: {
|
|
713
713
|
displayName?: string | undefined;
|
|
714
714
|
bio?: string | undefined;
|
|
@@ -725,6 +725,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
725
725
|
role: z.ZodString;
|
|
726
726
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
727
727
|
}, "strip", z.ZodTypeAny, {
|
|
728
|
+
name: string | null;
|
|
729
|
+
role: string;
|
|
728
730
|
user: {
|
|
729
731
|
name: string;
|
|
730
732
|
uid: string;
|
|
@@ -744,14 +746,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
744
746
|
} | undefined;
|
|
745
747
|
} | undefined;
|
|
746
748
|
};
|
|
747
|
-
role: string;
|
|
748
|
-
name: string | null;
|
|
749
749
|
organization: {
|
|
750
|
-
name: string;
|
|
751
|
-
uid: string;
|
|
752
|
-
id: string;
|
|
753
|
-
createTime: string;
|
|
754
|
-
updateTime: string;
|
|
755
750
|
owner: {
|
|
756
751
|
name: string;
|
|
757
752
|
uid: string;
|
|
@@ -771,6 +766,11 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
771
766
|
} | undefined;
|
|
772
767
|
} | undefined;
|
|
773
768
|
};
|
|
769
|
+
name: string;
|
|
770
|
+
uid: string;
|
|
771
|
+
id: string;
|
|
772
|
+
createTime: string;
|
|
773
|
+
updateTime: string;
|
|
774
774
|
profile?: {
|
|
775
775
|
displayName?: string | undefined;
|
|
776
776
|
bio?: string | undefined;
|
|
@@ -785,6 +785,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
785
785
|
};
|
|
786
786
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
787
787
|
}, {
|
|
788
|
+
name: string | null;
|
|
789
|
+
role: string;
|
|
788
790
|
user: {
|
|
789
791
|
name: string;
|
|
790
792
|
uid: string;
|
|
@@ -804,14 +806,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
804
806
|
} | undefined;
|
|
805
807
|
} | undefined;
|
|
806
808
|
};
|
|
807
|
-
role: string;
|
|
808
|
-
name: string | null;
|
|
809
809
|
organization: {
|
|
810
|
-
name: string;
|
|
811
|
-
uid: string;
|
|
812
|
-
id: string;
|
|
813
|
-
createTime: string;
|
|
814
|
-
updateTime: string;
|
|
815
810
|
owner: {
|
|
816
811
|
name: string;
|
|
817
812
|
uid: string;
|
|
@@ -831,6 +826,11 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
831
826
|
} | undefined;
|
|
832
827
|
} | undefined;
|
|
833
828
|
};
|
|
829
|
+
name: string;
|
|
830
|
+
uid: string;
|
|
831
|
+
id: string;
|
|
832
|
+
createTime: string;
|
|
833
|
+
updateTime: string;
|
|
834
834
|
profile?: {
|
|
835
835
|
displayName?: string | undefined;
|
|
836
836
|
bio?: string | undefined;
|
|
@@ -1068,11 +1068,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1068
1068
|
} | undefined;
|
|
1069
1069
|
}>>;
|
|
1070
1070
|
}, "strip", z.ZodTypeAny, {
|
|
1071
|
-
name: string;
|
|
1072
|
-
uid: string;
|
|
1073
|
-
id: string;
|
|
1074
|
-
createTime: string;
|
|
1075
|
-
updateTime: string;
|
|
1076
1071
|
owner: {
|
|
1077
1072
|
name: string;
|
|
1078
1073
|
uid: string;
|
|
@@ -1092,6 +1087,11 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1092
1087
|
} | undefined;
|
|
1093
1088
|
} | undefined;
|
|
1094
1089
|
};
|
|
1090
|
+
name: string;
|
|
1091
|
+
uid: string;
|
|
1092
|
+
id: string;
|
|
1093
|
+
createTime: string;
|
|
1094
|
+
updateTime: string;
|
|
1095
1095
|
profile?: {
|
|
1096
1096
|
displayName?: string | undefined;
|
|
1097
1097
|
bio?: string | undefined;
|
|
@@ -1104,11 +1104,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1104
1104
|
} | undefined;
|
|
1105
1105
|
} | undefined;
|
|
1106
1106
|
}, {
|
|
1107
|
-
name: string;
|
|
1108
|
-
uid: string;
|
|
1109
|
-
id: string;
|
|
1110
|
-
createTime: string;
|
|
1111
|
-
updateTime: string;
|
|
1112
1107
|
owner: {
|
|
1113
1108
|
name: string;
|
|
1114
1109
|
uid: string;
|
|
@@ -1128,6 +1123,11 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1128
1123
|
} | undefined;
|
|
1129
1124
|
} | undefined;
|
|
1130
1125
|
};
|
|
1126
|
+
name: string;
|
|
1127
|
+
uid: string;
|
|
1128
|
+
id: string;
|
|
1129
|
+
createTime: string;
|
|
1130
|
+
updateTime: string;
|
|
1131
1131
|
profile?: {
|
|
1132
1132
|
displayName?: string | undefined;
|
|
1133
1133
|
bio?: string | undefined;
|
|
@@ -1144,6 +1144,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1144
1144
|
role: z.ZodString;
|
|
1145
1145
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
1146
1146
|
}, "strip", z.ZodTypeAny, {
|
|
1147
|
+
name: string | null;
|
|
1148
|
+
role: string;
|
|
1147
1149
|
user: {
|
|
1148
1150
|
name: string;
|
|
1149
1151
|
uid: string;
|
|
@@ -1163,14 +1165,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1163
1165
|
} | undefined;
|
|
1164
1166
|
} | undefined;
|
|
1165
1167
|
};
|
|
1166
|
-
role: string;
|
|
1167
|
-
name: string | null;
|
|
1168
1168
|
organization: {
|
|
1169
|
-
name: string;
|
|
1170
|
-
uid: string;
|
|
1171
|
-
id: string;
|
|
1172
|
-
createTime: string;
|
|
1173
|
-
updateTime: string;
|
|
1174
1169
|
owner: {
|
|
1175
1170
|
name: string;
|
|
1176
1171
|
uid: string;
|
|
@@ -1190,6 +1185,11 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1190
1185
|
} | undefined;
|
|
1191
1186
|
} | undefined;
|
|
1192
1187
|
};
|
|
1188
|
+
name: string;
|
|
1189
|
+
uid: string;
|
|
1190
|
+
id: string;
|
|
1191
|
+
createTime: string;
|
|
1192
|
+
updateTime: string;
|
|
1193
1193
|
profile?: {
|
|
1194
1194
|
displayName?: string | undefined;
|
|
1195
1195
|
bio?: string | undefined;
|
|
@@ -1204,6 +1204,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1204
1204
|
};
|
|
1205
1205
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1206
1206
|
}, {
|
|
1207
|
+
name: string | null;
|
|
1208
|
+
role: string;
|
|
1207
1209
|
user: {
|
|
1208
1210
|
name: string;
|
|
1209
1211
|
uid: string;
|
|
@@ -1223,14 +1225,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1223
1225
|
} | undefined;
|
|
1224
1226
|
} | undefined;
|
|
1225
1227
|
};
|
|
1226
|
-
role: string;
|
|
1227
|
-
name: string | null;
|
|
1228
1228
|
organization: {
|
|
1229
|
-
name: string;
|
|
1230
|
-
uid: string;
|
|
1231
|
-
id: string;
|
|
1232
|
-
createTime: string;
|
|
1233
|
-
updateTime: string;
|
|
1234
1229
|
owner: {
|
|
1235
1230
|
name: string;
|
|
1236
1231
|
uid: string;
|
|
@@ -1250,6 +1245,11 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1250
1245
|
} | undefined;
|
|
1251
1246
|
} | undefined;
|
|
1252
1247
|
};
|
|
1248
|
+
name: string;
|
|
1249
|
+
uid: string;
|
|
1250
|
+
id: string;
|
|
1251
|
+
createTime: string;
|
|
1252
|
+
updateTime: string;
|
|
1253
1253
|
profile?: {
|
|
1254
1254
|
displayName?: string | undefined;
|
|
1255
1255
|
bio?: string | undefined;
|
|
@@ -1488,11 +1488,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1488
1488
|
} | undefined;
|
|
1489
1489
|
}>>;
|
|
1490
1490
|
}, "strip", z.ZodTypeAny, {
|
|
1491
|
-
name: string;
|
|
1492
|
-
uid: string;
|
|
1493
|
-
id: string;
|
|
1494
|
-
createTime: string;
|
|
1495
|
-
updateTime: string;
|
|
1496
1491
|
owner: {
|
|
1497
1492
|
name: string;
|
|
1498
1493
|
uid: string;
|
|
@@ -1512,6 +1507,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1512
1507
|
} | undefined;
|
|
1513
1508
|
} | undefined;
|
|
1514
1509
|
};
|
|
1510
|
+
name: string;
|
|
1511
|
+
uid: string;
|
|
1512
|
+
id: string;
|
|
1513
|
+
createTime: string;
|
|
1514
|
+
updateTime: string;
|
|
1515
1515
|
profile?: {
|
|
1516
1516
|
displayName?: string | undefined;
|
|
1517
1517
|
bio?: string | undefined;
|
|
@@ -1524,11 +1524,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1524
1524
|
} | undefined;
|
|
1525
1525
|
} | undefined;
|
|
1526
1526
|
}, {
|
|
1527
|
-
name: string;
|
|
1528
|
-
uid: string;
|
|
1529
|
-
id: string;
|
|
1530
|
-
createTime: string;
|
|
1531
|
-
updateTime: string;
|
|
1532
1527
|
owner: {
|
|
1533
1528
|
name: string;
|
|
1534
1529
|
uid: string;
|
|
@@ -1548,6 +1543,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1548
1543
|
} | undefined;
|
|
1549
1544
|
} | undefined;
|
|
1550
1545
|
};
|
|
1546
|
+
name: string;
|
|
1547
|
+
uid: string;
|
|
1548
|
+
id: string;
|
|
1549
|
+
createTime: string;
|
|
1550
|
+
updateTime: string;
|
|
1551
1551
|
profile?: {
|
|
1552
1552
|
displayName?: string | undefined;
|
|
1553
1553
|
bio?: string | undefined;
|
|
@@ -1564,6 +1564,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1564
1564
|
role: z.ZodString;
|
|
1565
1565
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
1566
1566
|
}, "strip", z.ZodTypeAny, {
|
|
1567
|
+
name: string | null;
|
|
1568
|
+
role: string;
|
|
1567
1569
|
user: {
|
|
1568
1570
|
name: string;
|
|
1569
1571
|
uid: string;
|
|
@@ -1583,14 +1585,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1583
1585
|
} | undefined;
|
|
1584
1586
|
} | undefined;
|
|
1585
1587
|
};
|
|
1586
|
-
role: string;
|
|
1587
|
-
name: string | null;
|
|
1588
1588
|
organization: {
|
|
1589
|
-
name: string;
|
|
1590
|
-
uid: string;
|
|
1591
|
-
id: string;
|
|
1592
|
-
createTime: string;
|
|
1593
|
-
updateTime: string;
|
|
1594
1589
|
owner: {
|
|
1595
1590
|
name: string;
|
|
1596
1591
|
uid: string;
|
|
@@ -1610,6 +1605,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1610
1605
|
} | undefined;
|
|
1611
1606
|
} | undefined;
|
|
1612
1607
|
};
|
|
1608
|
+
name: string;
|
|
1609
|
+
uid: string;
|
|
1610
|
+
id: string;
|
|
1611
|
+
createTime: string;
|
|
1612
|
+
updateTime: string;
|
|
1613
1613
|
profile?: {
|
|
1614
1614
|
displayName?: string | undefined;
|
|
1615
1615
|
bio?: string | undefined;
|
|
@@ -1624,6 +1624,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1624
1624
|
};
|
|
1625
1625
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1626
1626
|
}, {
|
|
1627
|
+
name: string | null;
|
|
1628
|
+
role: string;
|
|
1627
1629
|
user: {
|
|
1628
1630
|
name: string;
|
|
1629
1631
|
uid: string;
|
|
@@ -1643,14 +1645,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1643
1645
|
} | undefined;
|
|
1644
1646
|
} | undefined;
|
|
1645
1647
|
};
|
|
1646
|
-
role: string;
|
|
1647
|
-
name: string | null;
|
|
1648
1648
|
organization: {
|
|
1649
|
-
name: string;
|
|
1650
|
-
uid: string;
|
|
1651
|
-
id: string;
|
|
1652
|
-
createTime: string;
|
|
1653
|
-
updateTime: string;
|
|
1654
1649
|
owner: {
|
|
1655
1650
|
name: string;
|
|
1656
1651
|
uid: string;
|
|
@@ -1670,6 +1665,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1670
1665
|
} | undefined;
|
|
1671
1666
|
} | undefined;
|
|
1672
1667
|
};
|
|
1668
|
+
name: string;
|
|
1669
|
+
uid: string;
|
|
1670
|
+
id: string;
|
|
1671
|
+
createTime: string;
|
|
1672
|
+
updateTime: string;
|
|
1673
1673
|
profile?: {
|
|
1674
1674
|
displayName?: string | undefined;
|
|
1675
1675
|
bio?: string | undefined;
|
|
@@ -1907,11 +1907,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1907
1907
|
} | undefined;
|
|
1908
1908
|
}>>;
|
|
1909
1909
|
}, "strip", z.ZodTypeAny, {
|
|
1910
|
-
name: string;
|
|
1911
|
-
uid: string;
|
|
1912
|
-
id: string;
|
|
1913
|
-
createTime: string;
|
|
1914
|
-
updateTime: string;
|
|
1915
1910
|
owner: {
|
|
1916
1911
|
name: string;
|
|
1917
1912
|
uid: string;
|
|
@@ -1931,6 +1926,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1931
1926
|
} | undefined;
|
|
1932
1927
|
} | undefined;
|
|
1933
1928
|
};
|
|
1929
|
+
name: string;
|
|
1930
|
+
uid: string;
|
|
1931
|
+
id: string;
|
|
1932
|
+
createTime: string;
|
|
1933
|
+
updateTime: string;
|
|
1934
1934
|
profile?: {
|
|
1935
1935
|
displayName?: string | undefined;
|
|
1936
1936
|
bio?: string | undefined;
|
|
@@ -1943,11 +1943,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1943
1943
|
} | undefined;
|
|
1944
1944
|
} | undefined;
|
|
1945
1945
|
}, {
|
|
1946
|
-
name: string;
|
|
1947
|
-
uid: string;
|
|
1948
|
-
id: string;
|
|
1949
|
-
createTime: string;
|
|
1950
|
-
updateTime: string;
|
|
1951
1946
|
owner: {
|
|
1952
1947
|
name: string;
|
|
1953
1948
|
uid: string;
|
|
@@ -1967,6 +1962,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1967
1962
|
} | undefined;
|
|
1968
1963
|
} | undefined;
|
|
1969
1964
|
};
|
|
1965
|
+
name: string;
|
|
1966
|
+
uid: string;
|
|
1967
|
+
id: string;
|
|
1968
|
+
createTime: string;
|
|
1969
|
+
updateTime: string;
|
|
1970
1970
|
profile?: {
|
|
1971
1971
|
displayName?: string | undefined;
|
|
1972
1972
|
bio?: string | undefined;
|
|
@@ -1983,6 +1983,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1983
1983
|
role: z.ZodString;
|
|
1984
1984
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
1985
1985
|
}, "strip", z.ZodTypeAny, {
|
|
1986
|
+
name: string | null;
|
|
1987
|
+
role: string;
|
|
1986
1988
|
user: {
|
|
1987
1989
|
name: string;
|
|
1988
1990
|
uid: string;
|
|
@@ -2002,14 +2004,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2002
2004
|
} | undefined;
|
|
2003
2005
|
} | undefined;
|
|
2004
2006
|
};
|
|
2005
|
-
role: string;
|
|
2006
|
-
name: string | null;
|
|
2007
2007
|
organization: {
|
|
2008
|
-
name: string;
|
|
2009
|
-
uid: string;
|
|
2010
|
-
id: string;
|
|
2011
|
-
createTime: string;
|
|
2012
|
-
updateTime: string;
|
|
2013
2008
|
owner: {
|
|
2014
2009
|
name: string;
|
|
2015
2010
|
uid: string;
|
|
@@ -2029,6 +2024,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2029
2024
|
} | undefined;
|
|
2030
2025
|
} | undefined;
|
|
2031
2026
|
};
|
|
2027
|
+
name: string;
|
|
2028
|
+
uid: string;
|
|
2029
|
+
id: string;
|
|
2030
|
+
createTime: string;
|
|
2031
|
+
updateTime: string;
|
|
2032
2032
|
profile?: {
|
|
2033
2033
|
displayName?: string | undefined;
|
|
2034
2034
|
bio?: string | undefined;
|
|
@@ -2043,6 +2043,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2043
2043
|
};
|
|
2044
2044
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2045
2045
|
}, {
|
|
2046
|
+
name: string | null;
|
|
2047
|
+
role: string;
|
|
2046
2048
|
user: {
|
|
2047
2049
|
name: string;
|
|
2048
2050
|
uid: string;
|
|
@@ -2062,14 +2064,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2062
2064
|
} | undefined;
|
|
2063
2065
|
} | undefined;
|
|
2064
2066
|
};
|
|
2065
|
-
role: string;
|
|
2066
|
-
name: string | null;
|
|
2067
2067
|
organization: {
|
|
2068
|
-
name: string;
|
|
2069
|
-
uid: string;
|
|
2070
|
-
id: string;
|
|
2071
|
-
createTime: string;
|
|
2072
|
-
updateTime: string;
|
|
2073
2068
|
owner: {
|
|
2074
2069
|
name: string;
|
|
2075
2070
|
uid: string;
|
|
@@ -2089,6 +2084,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2089
2084
|
} | undefined;
|
|
2090
2085
|
} | undefined;
|
|
2091
2086
|
};
|
|
2087
|
+
name: string;
|
|
2088
|
+
uid: string;
|
|
2089
|
+
id: string;
|
|
2090
|
+
createTime: string;
|
|
2091
|
+
updateTime: string;
|
|
2092
2092
|
profile?: {
|
|
2093
2093
|
displayName?: string | undefined;
|
|
2094
2094
|
bio?: string | undefined;
|
|
@@ -2327,11 +2327,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2327
2327
|
} | undefined;
|
|
2328
2328
|
}>>;
|
|
2329
2329
|
}, "strip", z.ZodTypeAny, {
|
|
2330
|
-
name: string;
|
|
2331
|
-
uid: string;
|
|
2332
|
-
id: string;
|
|
2333
|
-
createTime: string;
|
|
2334
|
-
updateTime: string;
|
|
2335
2330
|
owner: {
|
|
2336
2331
|
name: string;
|
|
2337
2332
|
uid: string;
|
|
@@ -2351,6 +2346,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2351
2346
|
} | undefined;
|
|
2352
2347
|
} | undefined;
|
|
2353
2348
|
};
|
|
2349
|
+
name: string;
|
|
2350
|
+
uid: string;
|
|
2351
|
+
id: string;
|
|
2352
|
+
createTime: string;
|
|
2353
|
+
updateTime: string;
|
|
2354
2354
|
profile?: {
|
|
2355
2355
|
displayName?: string | undefined;
|
|
2356
2356
|
bio?: string | undefined;
|
|
@@ -2363,11 +2363,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2363
2363
|
} | undefined;
|
|
2364
2364
|
} | undefined;
|
|
2365
2365
|
}, {
|
|
2366
|
-
name: string;
|
|
2367
|
-
uid: string;
|
|
2368
|
-
id: string;
|
|
2369
|
-
createTime: string;
|
|
2370
|
-
updateTime: string;
|
|
2371
2366
|
owner: {
|
|
2372
2367
|
name: string;
|
|
2373
2368
|
uid: string;
|
|
@@ -2387,6 +2382,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2387
2382
|
} | undefined;
|
|
2388
2383
|
} | undefined;
|
|
2389
2384
|
};
|
|
2385
|
+
name: string;
|
|
2386
|
+
uid: string;
|
|
2387
|
+
id: string;
|
|
2388
|
+
createTime: string;
|
|
2389
|
+
updateTime: string;
|
|
2390
2390
|
profile?: {
|
|
2391
2391
|
displayName?: string | undefined;
|
|
2392
2392
|
bio?: string | undefined;
|
|
@@ -2403,6 +2403,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2403
2403
|
role: z.ZodString;
|
|
2404
2404
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
2405
2405
|
}, "strip", z.ZodTypeAny, {
|
|
2406
|
+
name: string | null;
|
|
2407
|
+
role: string;
|
|
2406
2408
|
user: {
|
|
2407
2409
|
name: string;
|
|
2408
2410
|
uid: string;
|
|
@@ -2422,14 +2424,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2422
2424
|
} | undefined;
|
|
2423
2425
|
} | undefined;
|
|
2424
2426
|
};
|
|
2425
|
-
role: string;
|
|
2426
|
-
name: string | null;
|
|
2427
2427
|
organization: {
|
|
2428
|
-
name: string;
|
|
2429
|
-
uid: string;
|
|
2430
|
-
id: string;
|
|
2431
|
-
createTime: string;
|
|
2432
|
-
updateTime: string;
|
|
2433
2428
|
owner: {
|
|
2434
2429
|
name: string;
|
|
2435
2430
|
uid: string;
|
|
@@ -2449,6 +2444,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2449
2444
|
} | undefined;
|
|
2450
2445
|
} | undefined;
|
|
2451
2446
|
};
|
|
2447
|
+
name: string;
|
|
2448
|
+
uid: string;
|
|
2449
|
+
id: string;
|
|
2450
|
+
createTime: string;
|
|
2451
|
+
updateTime: string;
|
|
2452
2452
|
profile?: {
|
|
2453
2453
|
displayName?: string | undefined;
|
|
2454
2454
|
bio?: string | undefined;
|
|
@@ -2463,6 +2463,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2463
2463
|
};
|
|
2464
2464
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2465
2465
|
}, {
|
|
2466
|
+
name: string | null;
|
|
2467
|
+
role: string;
|
|
2466
2468
|
user: {
|
|
2467
2469
|
name: string;
|
|
2468
2470
|
uid: string;
|
|
@@ -2482,14 +2484,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2482
2484
|
} | undefined;
|
|
2483
2485
|
} | undefined;
|
|
2484
2486
|
};
|
|
2485
|
-
role: string;
|
|
2486
|
-
name: string | null;
|
|
2487
2487
|
organization: {
|
|
2488
|
-
name: string;
|
|
2489
|
-
uid: string;
|
|
2490
|
-
id: string;
|
|
2491
|
-
createTime: string;
|
|
2492
|
-
updateTime: string;
|
|
2493
2488
|
owner: {
|
|
2494
2489
|
name: string;
|
|
2495
2490
|
uid: string;
|
|
@@ -2509,6 +2504,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2509
2504
|
} | undefined;
|
|
2510
2505
|
} | undefined;
|
|
2511
2506
|
};
|
|
2507
|
+
name: string;
|
|
2508
|
+
uid: string;
|
|
2509
|
+
id: string;
|
|
2510
|
+
createTime: string;
|
|
2511
|
+
updateTime: string;
|
|
2512
2512
|
profile?: {
|
|
2513
2513
|
displayName?: string | undefined;
|
|
2514
2514
|
bio?: string | undefined;
|