instill-sdk 0.19.0-rc.22 → 0.19.0-rc.23
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 +144 -144
- package/dist/core/organization/types.d.ts +10 -10
- package/dist/helper/makeXMLRequestWithProgress.d.ts +4 -0
- package/dist/helper/makeXMLRequestWithProgress.d.ts.map +1 -0
- package/dist/index.js +32 -0
- package/dist/index.mjs +32 -0
- package/dist/table/TableClient.d.ts +3 -1
- package/dist/table/TableClient.d.ts.map +1 -1
- package/dist/table/types.d.ts +23 -0
- package/dist/table/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 +72 -72
- package/dist/vdp/pipeline/types.d.ts +352 -352
- package/dist/vdp/release/types.d.ts +4 -4
- package/dist/vdp/types.d.ts +8 -8
- package/package.json +3 -3
- package/dist/chat/constant.d.ts +0 -8
- package/dist/chat/constant.d.ts.map +0 -1
|
@@ -229,6 +229,11 @@ 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;
|
|
232
237
|
owner: {
|
|
233
238
|
name: string;
|
|
234
239
|
uid: string;
|
|
@@ -248,11 +253,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
248
253
|
} | undefined;
|
|
249
254
|
} | undefined;
|
|
250
255
|
};
|
|
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,6 +265,11 @@ 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;
|
|
268
273
|
owner: {
|
|
269
274
|
name: string;
|
|
270
275
|
uid: string;
|
|
@@ -284,11 +289,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
284
289
|
} | undefined;
|
|
285
290
|
} | undefined;
|
|
286
291
|
};
|
|
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,7 @@ 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;
|
|
308
309
|
user: {
|
|
309
310
|
name: string;
|
|
310
311
|
uid: string;
|
|
@@ -324,9 +325,12 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
324
325
|
} | undefined;
|
|
325
326
|
} | undefined;
|
|
326
327
|
};
|
|
327
|
-
name: string | null;
|
|
328
|
-
role: string;
|
|
329
328
|
organization: {
|
|
329
|
+
name: string;
|
|
330
|
+
uid: string;
|
|
331
|
+
id: string;
|
|
332
|
+
createTime: string;
|
|
333
|
+
updateTime: string;
|
|
330
334
|
owner: {
|
|
331
335
|
name: string;
|
|
332
336
|
uid: string;
|
|
@@ -346,11 +350,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
346
350
|
} | undefined;
|
|
347
351
|
} | undefined;
|
|
348
352
|
};
|
|
349
|
-
name: string;
|
|
350
|
-
uid: string;
|
|
351
|
-
id: string;
|
|
352
|
-
createTime: string;
|
|
353
|
-
updateTime: string;
|
|
354
353
|
profile?: {
|
|
355
354
|
displayName?: string | undefined;
|
|
356
355
|
bio?: string | undefined;
|
|
@@ -363,8 +362,10 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
363
362
|
} | undefined;
|
|
364
363
|
} | undefined;
|
|
365
364
|
};
|
|
365
|
+
role: string;
|
|
366
366
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
367
367
|
}, {
|
|
368
|
+
name: string | null;
|
|
368
369
|
user: {
|
|
369
370
|
name: string;
|
|
370
371
|
uid: string;
|
|
@@ -384,9 +385,12 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
384
385
|
} | undefined;
|
|
385
386
|
} | undefined;
|
|
386
387
|
};
|
|
387
|
-
name: string | null;
|
|
388
|
-
role: string;
|
|
389
388
|
organization: {
|
|
389
|
+
name: string;
|
|
390
|
+
uid: string;
|
|
391
|
+
id: string;
|
|
392
|
+
createTime: string;
|
|
393
|
+
updateTime: string;
|
|
390
394
|
owner: {
|
|
391
395
|
name: string;
|
|
392
396
|
uid: string;
|
|
@@ -406,11 +410,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
406
410
|
} | undefined;
|
|
407
411
|
} | undefined;
|
|
408
412
|
};
|
|
409
|
-
name: string;
|
|
410
|
-
uid: string;
|
|
411
|
-
id: string;
|
|
412
|
-
createTime: string;
|
|
413
|
-
updateTime: string;
|
|
414
413
|
profile?: {
|
|
415
414
|
displayName?: string | undefined;
|
|
416
415
|
bio?: string | undefined;
|
|
@@ -423,6 +422,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
423
422
|
} | undefined;
|
|
424
423
|
} | undefined;
|
|
425
424
|
};
|
|
425
|
+
role: string;
|
|
426
426
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
427
427
|
}>;
|
|
428
428
|
export type OrganizationMembership = {
|
|
@@ -649,6 +649,11 @@ 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;
|
|
652
657
|
owner: {
|
|
653
658
|
name: string;
|
|
654
659
|
uid: string;
|
|
@@ -668,11 +673,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
668
673
|
} | undefined;
|
|
669
674
|
} | undefined;
|
|
670
675
|
};
|
|
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,6 +685,11 @@ 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;
|
|
688
693
|
owner: {
|
|
689
694
|
name: string;
|
|
690
695
|
uid: string;
|
|
@@ -704,11 +709,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
704
709
|
} | undefined;
|
|
705
710
|
} | undefined;
|
|
706
711
|
};
|
|
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,7 @@ 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;
|
|
728
729
|
user: {
|
|
729
730
|
name: string;
|
|
730
731
|
uid: string;
|
|
@@ -744,9 +745,12 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
744
745
|
} | undefined;
|
|
745
746
|
} | undefined;
|
|
746
747
|
};
|
|
747
|
-
name: string | null;
|
|
748
|
-
role: string;
|
|
749
748
|
organization: {
|
|
749
|
+
name: string;
|
|
750
|
+
uid: string;
|
|
751
|
+
id: string;
|
|
752
|
+
createTime: string;
|
|
753
|
+
updateTime: string;
|
|
750
754
|
owner: {
|
|
751
755
|
name: string;
|
|
752
756
|
uid: string;
|
|
@@ -766,11 +770,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
766
770
|
} | undefined;
|
|
767
771
|
} | undefined;
|
|
768
772
|
};
|
|
769
|
-
name: string;
|
|
770
|
-
uid: string;
|
|
771
|
-
id: string;
|
|
772
|
-
createTime: string;
|
|
773
|
-
updateTime: string;
|
|
774
773
|
profile?: {
|
|
775
774
|
displayName?: string | undefined;
|
|
776
775
|
bio?: string | undefined;
|
|
@@ -783,8 +782,10 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
783
782
|
} | undefined;
|
|
784
783
|
} | undefined;
|
|
785
784
|
};
|
|
785
|
+
role: string;
|
|
786
786
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
787
787
|
}, {
|
|
788
|
+
name: string | null;
|
|
788
789
|
user: {
|
|
789
790
|
name: string;
|
|
790
791
|
uid: string;
|
|
@@ -804,9 +805,12 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
804
805
|
} | undefined;
|
|
805
806
|
} | undefined;
|
|
806
807
|
};
|
|
807
|
-
name: string | null;
|
|
808
|
-
role: string;
|
|
809
808
|
organization: {
|
|
809
|
+
name: string;
|
|
810
|
+
uid: string;
|
|
811
|
+
id: string;
|
|
812
|
+
createTime: string;
|
|
813
|
+
updateTime: string;
|
|
810
814
|
owner: {
|
|
811
815
|
name: string;
|
|
812
816
|
uid: string;
|
|
@@ -826,11 +830,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
826
830
|
} | undefined;
|
|
827
831
|
} | undefined;
|
|
828
832
|
};
|
|
829
|
-
name: string;
|
|
830
|
-
uid: string;
|
|
831
|
-
id: string;
|
|
832
|
-
createTime: string;
|
|
833
|
-
updateTime: string;
|
|
834
833
|
profile?: {
|
|
835
834
|
displayName?: string | undefined;
|
|
836
835
|
bio?: string | undefined;
|
|
@@ -843,6 +842,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
843
842
|
} | undefined;
|
|
844
843
|
} | undefined;
|
|
845
844
|
};
|
|
845
|
+
role: string;
|
|
846
846
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
847
847
|
}>;
|
|
848
848
|
export type ListUserMembershipsRequest = {
|
|
@@ -1068,6 +1068,11 @@ 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;
|
|
1071
1076
|
owner: {
|
|
1072
1077
|
name: string;
|
|
1073
1078
|
uid: string;
|
|
@@ -1087,11 +1092,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1087
1092
|
} | undefined;
|
|
1088
1093
|
} | undefined;
|
|
1089
1094
|
};
|
|
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,6 +1104,11 @@ 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;
|
|
1107
1112
|
owner: {
|
|
1108
1113
|
name: string;
|
|
1109
1114
|
uid: string;
|
|
@@ -1123,11 +1128,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1123
1128
|
} | undefined;
|
|
1124
1129
|
} | undefined;
|
|
1125
1130
|
};
|
|
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,7 @@ 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;
|
|
1147
1148
|
user: {
|
|
1148
1149
|
name: string;
|
|
1149
1150
|
uid: string;
|
|
@@ -1163,9 +1164,12 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1163
1164
|
} | undefined;
|
|
1164
1165
|
} | undefined;
|
|
1165
1166
|
};
|
|
1166
|
-
name: string | null;
|
|
1167
|
-
role: string;
|
|
1168
1167
|
organization: {
|
|
1168
|
+
name: string;
|
|
1169
|
+
uid: string;
|
|
1170
|
+
id: string;
|
|
1171
|
+
createTime: string;
|
|
1172
|
+
updateTime: string;
|
|
1169
1173
|
owner: {
|
|
1170
1174
|
name: string;
|
|
1171
1175
|
uid: string;
|
|
@@ -1185,11 +1189,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1185
1189
|
} | undefined;
|
|
1186
1190
|
} | undefined;
|
|
1187
1191
|
};
|
|
1188
|
-
name: string;
|
|
1189
|
-
uid: string;
|
|
1190
|
-
id: string;
|
|
1191
|
-
createTime: string;
|
|
1192
|
-
updateTime: string;
|
|
1193
1192
|
profile?: {
|
|
1194
1193
|
displayName?: string | undefined;
|
|
1195
1194
|
bio?: string | undefined;
|
|
@@ -1202,8 +1201,10 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1202
1201
|
} | undefined;
|
|
1203
1202
|
} | undefined;
|
|
1204
1203
|
};
|
|
1204
|
+
role: string;
|
|
1205
1205
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1206
1206
|
}, {
|
|
1207
|
+
name: string | null;
|
|
1207
1208
|
user: {
|
|
1208
1209
|
name: string;
|
|
1209
1210
|
uid: string;
|
|
@@ -1223,9 +1224,12 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1223
1224
|
} | undefined;
|
|
1224
1225
|
} | undefined;
|
|
1225
1226
|
};
|
|
1226
|
-
name: string | null;
|
|
1227
|
-
role: string;
|
|
1228
1227
|
organization: {
|
|
1228
|
+
name: string;
|
|
1229
|
+
uid: string;
|
|
1230
|
+
id: string;
|
|
1231
|
+
createTime: string;
|
|
1232
|
+
updateTime: string;
|
|
1229
1233
|
owner: {
|
|
1230
1234
|
name: string;
|
|
1231
1235
|
uid: string;
|
|
@@ -1245,11 +1249,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1245
1249
|
} | undefined;
|
|
1246
1250
|
} | undefined;
|
|
1247
1251
|
};
|
|
1248
|
-
name: string;
|
|
1249
|
-
uid: string;
|
|
1250
|
-
id: string;
|
|
1251
|
-
createTime: string;
|
|
1252
|
-
updateTime: string;
|
|
1253
1252
|
profile?: {
|
|
1254
1253
|
displayName?: string | undefined;
|
|
1255
1254
|
bio?: string | undefined;
|
|
@@ -1262,6 +1261,7 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1262
1261
|
} | undefined;
|
|
1263
1262
|
} | undefined;
|
|
1264
1263
|
};
|
|
1264
|
+
role: string;
|
|
1265
1265
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1266
1266
|
}>, "many">;
|
|
1267
1267
|
export type GetUserMembershipRequest = {
|
|
@@ -1489,6 +1489,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1489
1489
|
} | undefined;
|
|
1490
1490
|
}>>;
|
|
1491
1491
|
}, "strip", z.ZodTypeAny, {
|
|
1492
|
+
name: string;
|
|
1493
|
+
uid: string;
|
|
1494
|
+
id: string;
|
|
1495
|
+
createTime: string;
|
|
1496
|
+
updateTime: string;
|
|
1492
1497
|
owner: {
|
|
1493
1498
|
name: string;
|
|
1494
1499
|
uid: string;
|
|
@@ -1508,11 +1513,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1508
1513
|
} | undefined;
|
|
1509
1514
|
} | undefined;
|
|
1510
1515
|
};
|
|
1511
|
-
name: string;
|
|
1512
|
-
uid: string;
|
|
1513
|
-
id: string;
|
|
1514
|
-
createTime: string;
|
|
1515
|
-
updateTime: string;
|
|
1516
1516
|
profile?: {
|
|
1517
1517
|
displayName?: string | undefined;
|
|
1518
1518
|
bio?: string | undefined;
|
|
@@ -1525,6 +1525,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1525
1525
|
} | undefined;
|
|
1526
1526
|
} | undefined;
|
|
1527
1527
|
}, {
|
|
1528
|
+
name: string;
|
|
1529
|
+
uid: string;
|
|
1530
|
+
id: string;
|
|
1531
|
+
createTime: string;
|
|
1532
|
+
updateTime: string;
|
|
1528
1533
|
owner: {
|
|
1529
1534
|
name: string;
|
|
1530
1535
|
uid: string;
|
|
@@ -1544,11 +1549,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1544
1549
|
} | undefined;
|
|
1545
1550
|
} | undefined;
|
|
1546
1551
|
};
|
|
1547
|
-
name: string;
|
|
1548
|
-
uid: string;
|
|
1549
|
-
id: string;
|
|
1550
|
-
createTime: string;
|
|
1551
|
-
updateTime: string;
|
|
1552
1552
|
profile?: {
|
|
1553
1553
|
displayName?: string | undefined;
|
|
1554
1554
|
bio?: string | undefined;
|
|
@@ -1565,6 +1565,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1565
1565
|
role: z.ZodString;
|
|
1566
1566
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
1567
1567
|
}, "strip", z.ZodTypeAny, {
|
|
1568
|
+
name: string | null;
|
|
1568
1569
|
user: {
|
|
1569
1570
|
name: string;
|
|
1570
1571
|
uid: string;
|
|
@@ -1584,9 +1585,12 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1584
1585
|
} | undefined;
|
|
1585
1586
|
} | undefined;
|
|
1586
1587
|
};
|
|
1587
|
-
name: string | null;
|
|
1588
|
-
role: string;
|
|
1589
1588
|
organization: {
|
|
1589
|
+
name: string;
|
|
1590
|
+
uid: string;
|
|
1591
|
+
id: string;
|
|
1592
|
+
createTime: string;
|
|
1593
|
+
updateTime: string;
|
|
1590
1594
|
owner: {
|
|
1591
1595
|
name: string;
|
|
1592
1596
|
uid: string;
|
|
@@ -1606,11 +1610,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1606
1610
|
} | undefined;
|
|
1607
1611
|
} | undefined;
|
|
1608
1612
|
};
|
|
1609
|
-
name: string;
|
|
1610
|
-
uid: string;
|
|
1611
|
-
id: string;
|
|
1612
|
-
createTime: string;
|
|
1613
|
-
updateTime: string;
|
|
1614
1613
|
profile?: {
|
|
1615
1614
|
displayName?: string | undefined;
|
|
1616
1615
|
bio?: string | undefined;
|
|
@@ -1623,8 +1622,10 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1623
1622
|
} | undefined;
|
|
1624
1623
|
} | undefined;
|
|
1625
1624
|
};
|
|
1625
|
+
role: string;
|
|
1626
1626
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1627
1627
|
}, {
|
|
1628
|
+
name: string | null;
|
|
1628
1629
|
user: {
|
|
1629
1630
|
name: string;
|
|
1630
1631
|
uid: string;
|
|
@@ -1644,9 +1645,12 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1644
1645
|
} | undefined;
|
|
1645
1646
|
} | undefined;
|
|
1646
1647
|
};
|
|
1647
|
-
name: string | null;
|
|
1648
|
-
role: string;
|
|
1649
1648
|
organization: {
|
|
1649
|
+
name: string;
|
|
1650
|
+
uid: string;
|
|
1651
|
+
id: string;
|
|
1652
|
+
createTime: string;
|
|
1653
|
+
updateTime: string;
|
|
1650
1654
|
owner: {
|
|
1651
1655
|
name: string;
|
|
1652
1656
|
uid: string;
|
|
@@ -1666,11 +1670,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1666
1670
|
} | undefined;
|
|
1667
1671
|
} | undefined;
|
|
1668
1672
|
};
|
|
1669
|
-
name: string;
|
|
1670
|
-
uid: string;
|
|
1671
|
-
id: string;
|
|
1672
|
-
createTime: string;
|
|
1673
|
-
updateTime: string;
|
|
1674
1673
|
profile?: {
|
|
1675
1674
|
displayName?: string | undefined;
|
|
1676
1675
|
bio?: string | undefined;
|
|
@@ -1683,6 +1682,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1683
1682
|
} | undefined;
|
|
1684
1683
|
} | undefined;
|
|
1685
1684
|
};
|
|
1685
|
+
role: string;
|
|
1686
1686
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1687
1687
|
}>;
|
|
1688
1688
|
export type ListOrganizationMembershipsRequest = {
|
|
@@ -1908,6 +1908,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1908
1908
|
} | undefined;
|
|
1909
1909
|
}>>;
|
|
1910
1910
|
}, "strip", z.ZodTypeAny, {
|
|
1911
|
+
name: string;
|
|
1912
|
+
uid: string;
|
|
1913
|
+
id: string;
|
|
1914
|
+
createTime: string;
|
|
1915
|
+
updateTime: string;
|
|
1911
1916
|
owner: {
|
|
1912
1917
|
name: string;
|
|
1913
1918
|
uid: string;
|
|
@@ -1927,11 +1932,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1927
1932
|
} | undefined;
|
|
1928
1933
|
} | undefined;
|
|
1929
1934
|
};
|
|
1930
|
-
name: string;
|
|
1931
|
-
uid: string;
|
|
1932
|
-
id: string;
|
|
1933
|
-
createTime: string;
|
|
1934
|
-
updateTime: string;
|
|
1935
1935
|
profile?: {
|
|
1936
1936
|
displayName?: string | undefined;
|
|
1937
1937
|
bio?: string | undefined;
|
|
@@ -1944,6 +1944,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1944
1944
|
} | undefined;
|
|
1945
1945
|
} | undefined;
|
|
1946
1946
|
}, {
|
|
1947
|
+
name: string;
|
|
1948
|
+
uid: string;
|
|
1949
|
+
id: string;
|
|
1950
|
+
createTime: string;
|
|
1951
|
+
updateTime: string;
|
|
1947
1952
|
owner: {
|
|
1948
1953
|
name: string;
|
|
1949
1954
|
uid: string;
|
|
@@ -1963,11 +1968,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1963
1968
|
} | undefined;
|
|
1964
1969
|
} | undefined;
|
|
1965
1970
|
};
|
|
1966
|
-
name: string;
|
|
1967
|
-
uid: string;
|
|
1968
|
-
id: string;
|
|
1969
|
-
createTime: string;
|
|
1970
|
-
updateTime: string;
|
|
1971
1971
|
profile?: {
|
|
1972
1972
|
displayName?: string | undefined;
|
|
1973
1973
|
bio?: string | undefined;
|
|
@@ -1984,6 +1984,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1984
1984
|
role: z.ZodString;
|
|
1985
1985
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
1986
1986
|
}, "strip", z.ZodTypeAny, {
|
|
1987
|
+
name: string | null;
|
|
1987
1988
|
user: {
|
|
1988
1989
|
name: string;
|
|
1989
1990
|
uid: string;
|
|
@@ -2003,9 +2004,12 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2003
2004
|
} | undefined;
|
|
2004
2005
|
} | undefined;
|
|
2005
2006
|
};
|
|
2006
|
-
name: string | null;
|
|
2007
|
-
role: string;
|
|
2008
2007
|
organization: {
|
|
2008
|
+
name: string;
|
|
2009
|
+
uid: string;
|
|
2010
|
+
id: string;
|
|
2011
|
+
createTime: string;
|
|
2012
|
+
updateTime: string;
|
|
2009
2013
|
owner: {
|
|
2010
2014
|
name: string;
|
|
2011
2015
|
uid: string;
|
|
@@ -2025,11 +2029,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2025
2029
|
} | undefined;
|
|
2026
2030
|
} | undefined;
|
|
2027
2031
|
};
|
|
2028
|
-
name: string;
|
|
2029
|
-
uid: string;
|
|
2030
|
-
id: string;
|
|
2031
|
-
createTime: string;
|
|
2032
|
-
updateTime: string;
|
|
2033
2032
|
profile?: {
|
|
2034
2033
|
displayName?: string | undefined;
|
|
2035
2034
|
bio?: string | undefined;
|
|
@@ -2042,8 +2041,10 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2042
2041
|
} | undefined;
|
|
2043
2042
|
} | undefined;
|
|
2044
2043
|
};
|
|
2044
|
+
role: string;
|
|
2045
2045
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2046
2046
|
}, {
|
|
2047
|
+
name: string | null;
|
|
2047
2048
|
user: {
|
|
2048
2049
|
name: string;
|
|
2049
2050
|
uid: string;
|
|
@@ -2063,9 +2064,12 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2063
2064
|
} | undefined;
|
|
2064
2065
|
} | undefined;
|
|
2065
2066
|
};
|
|
2066
|
-
name: string | null;
|
|
2067
|
-
role: string;
|
|
2068
2067
|
organization: {
|
|
2068
|
+
name: string;
|
|
2069
|
+
uid: string;
|
|
2070
|
+
id: string;
|
|
2071
|
+
createTime: string;
|
|
2072
|
+
updateTime: string;
|
|
2069
2073
|
owner: {
|
|
2070
2074
|
name: string;
|
|
2071
2075
|
uid: string;
|
|
@@ -2085,11 +2089,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2085
2089
|
} | undefined;
|
|
2086
2090
|
} | undefined;
|
|
2087
2091
|
};
|
|
2088
|
-
name: string;
|
|
2089
|
-
uid: string;
|
|
2090
|
-
id: string;
|
|
2091
|
-
createTime: string;
|
|
2092
|
-
updateTime: string;
|
|
2093
2092
|
profile?: {
|
|
2094
2093
|
displayName?: string | undefined;
|
|
2095
2094
|
bio?: string | undefined;
|
|
@@ -2102,6 +2101,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2102
2101
|
} | undefined;
|
|
2103
2102
|
} | undefined;
|
|
2104
2103
|
};
|
|
2104
|
+
role: string;
|
|
2105
2105
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2106
2106
|
}>, "many">;
|
|
2107
2107
|
export type GetOrganizationMembershipRequest = {
|
|
@@ -2329,6 +2329,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2329
2329
|
} | undefined;
|
|
2330
2330
|
}>>;
|
|
2331
2331
|
}, "strip", z.ZodTypeAny, {
|
|
2332
|
+
name: string;
|
|
2333
|
+
uid: string;
|
|
2334
|
+
id: string;
|
|
2335
|
+
createTime: string;
|
|
2336
|
+
updateTime: string;
|
|
2332
2337
|
owner: {
|
|
2333
2338
|
name: string;
|
|
2334
2339
|
uid: string;
|
|
@@ -2348,11 +2353,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2348
2353
|
} | undefined;
|
|
2349
2354
|
} | undefined;
|
|
2350
2355
|
};
|
|
2351
|
-
name: string;
|
|
2352
|
-
uid: string;
|
|
2353
|
-
id: string;
|
|
2354
|
-
createTime: string;
|
|
2355
|
-
updateTime: string;
|
|
2356
2356
|
profile?: {
|
|
2357
2357
|
displayName?: string | undefined;
|
|
2358
2358
|
bio?: string | undefined;
|
|
@@ -2365,6 +2365,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2365
2365
|
} | undefined;
|
|
2366
2366
|
} | undefined;
|
|
2367
2367
|
}, {
|
|
2368
|
+
name: string;
|
|
2369
|
+
uid: string;
|
|
2370
|
+
id: string;
|
|
2371
|
+
createTime: string;
|
|
2372
|
+
updateTime: string;
|
|
2368
2373
|
owner: {
|
|
2369
2374
|
name: string;
|
|
2370
2375
|
uid: string;
|
|
@@ -2384,11 +2389,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2384
2389
|
} | undefined;
|
|
2385
2390
|
} | undefined;
|
|
2386
2391
|
};
|
|
2387
|
-
name: string;
|
|
2388
|
-
uid: string;
|
|
2389
|
-
id: string;
|
|
2390
|
-
createTime: string;
|
|
2391
|
-
updateTime: string;
|
|
2392
2392
|
profile?: {
|
|
2393
2393
|
displayName?: string | undefined;
|
|
2394
2394
|
bio?: string | undefined;
|
|
@@ -2405,6 +2405,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2405
2405
|
role: z.ZodString;
|
|
2406
2406
|
state: z.ZodEnum<["MEMBERSHIP_STATE_ACTIVE", "MEMBERSHIP_STATE_PENDING"]>;
|
|
2407
2407
|
}, "strip", z.ZodTypeAny, {
|
|
2408
|
+
name: string | null;
|
|
2408
2409
|
user: {
|
|
2409
2410
|
name: string;
|
|
2410
2411
|
uid: string;
|
|
@@ -2424,9 +2425,12 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2424
2425
|
} | undefined;
|
|
2425
2426
|
} | undefined;
|
|
2426
2427
|
};
|
|
2427
|
-
name: string | null;
|
|
2428
|
-
role: string;
|
|
2429
2428
|
organization: {
|
|
2429
|
+
name: string;
|
|
2430
|
+
uid: string;
|
|
2431
|
+
id: string;
|
|
2432
|
+
createTime: string;
|
|
2433
|
+
updateTime: string;
|
|
2430
2434
|
owner: {
|
|
2431
2435
|
name: string;
|
|
2432
2436
|
uid: string;
|
|
@@ -2446,11 +2450,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2446
2450
|
} | undefined;
|
|
2447
2451
|
} | undefined;
|
|
2448
2452
|
};
|
|
2449
|
-
name: string;
|
|
2450
|
-
uid: string;
|
|
2451
|
-
id: string;
|
|
2452
|
-
createTime: string;
|
|
2453
|
-
updateTime: string;
|
|
2454
2453
|
profile?: {
|
|
2455
2454
|
displayName?: string | undefined;
|
|
2456
2455
|
bio?: string | undefined;
|
|
@@ -2463,8 +2462,10 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2463
2462
|
} | undefined;
|
|
2464
2463
|
} | undefined;
|
|
2465
2464
|
};
|
|
2465
|
+
role: string;
|
|
2466
2466
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2467
2467
|
}, {
|
|
2468
|
+
name: string | null;
|
|
2468
2469
|
user: {
|
|
2469
2470
|
name: string;
|
|
2470
2471
|
uid: string;
|
|
@@ -2484,9 +2485,12 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2484
2485
|
} | undefined;
|
|
2485
2486
|
} | undefined;
|
|
2486
2487
|
};
|
|
2487
|
-
name: string | null;
|
|
2488
|
-
role: string;
|
|
2489
2488
|
organization: {
|
|
2489
|
+
name: string;
|
|
2490
|
+
uid: string;
|
|
2491
|
+
id: string;
|
|
2492
|
+
createTime: string;
|
|
2493
|
+
updateTime: string;
|
|
2490
2494
|
owner: {
|
|
2491
2495
|
name: string;
|
|
2492
2496
|
uid: string;
|
|
@@ -2506,11 +2510,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2506
2510
|
} | undefined;
|
|
2507
2511
|
} | undefined;
|
|
2508
2512
|
};
|
|
2509
|
-
name: string;
|
|
2510
|
-
uid: string;
|
|
2511
|
-
id: string;
|
|
2512
|
-
createTime: string;
|
|
2513
|
-
updateTime: string;
|
|
2514
2513
|
profile?: {
|
|
2515
2514
|
displayName?: string | undefined;
|
|
2516
2515
|
bio?: string | undefined;
|
|
@@ -2523,6 +2522,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2523
2522
|
} | undefined;
|
|
2524
2523
|
} | undefined;
|
|
2525
2524
|
};
|
|
2525
|
+
role: string;
|
|
2526
2526
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2527
2527
|
}>;
|
|
2528
2528
|
export type DeleteUserMembershipRequest = {
|