instill-sdk 0.19.0-rc.23 → 0.19.0-rc.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chat/ChatClient.d.ts +1 -1
- package/dist/chat/ChatClient.d.ts.map +1 -1
- package/dist/chat/constant.d.ts +8 -0
- package/dist/chat/constant.d.ts.map +1 -0
- package/dist/chat/types.d.ts +2 -1
- package/dist/chat/types.d.ts.map +1 -1
- 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/index.js +4 -2
- package/dist/index.mjs +4 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types.d.ts +45 -40
- package/dist/types.d.ts.map +1 -1
- 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 +2 -2
- package/dist/helper/makeXMLRequestWithProgress.d.ts +0 -4
- package/dist/helper/makeXMLRequestWithProgress.d.ts.map +0 -1
|
@@ -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,7 +305,6 @@ 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
308
|
user: {
|
|
310
309
|
name: string;
|
|
311
310
|
uid: string;
|
|
@@ -325,12 +324,9 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
325
324
|
} | undefined;
|
|
326
325
|
} | undefined;
|
|
327
326
|
};
|
|
327
|
+
name: string | null;
|
|
328
|
+
role: string;
|
|
328
329
|
organization: {
|
|
329
|
-
name: string;
|
|
330
|
-
uid: string;
|
|
331
|
-
id: string;
|
|
332
|
-
createTime: string;
|
|
333
|
-
updateTime: string;
|
|
334
330
|
owner: {
|
|
335
331
|
name: string;
|
|
336
332
|
uid: string;
|
|
@@ -350,6 +346,11 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
350
346
|
} | undefined;
|
|
351
347
|
} | undefined;
|
|
352
348
|
};
|
|
349
|
+
name: string;
|
|
350
|
+
uid: string;
|
|
351
|
+
id: string;
|
|
352
|
+
createTime: string;
|
|
353
|
+
updateTime: string;
|
|
353
354
|
profile?: {
|
|
354
355
|
displayName?: string | undefined;
|
|
355
356
|
bio?: string | undefined;
|
|
@@ -362,10 +363,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
362
363
|
} | undefined;
|
|
363
364
|
} | undefined;
|
|
364
365
|
};
|
|
365
|
-
role: string;
|
|
366
366
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
367
367
|
}, {
|
|
368
|
-
name: string | null;
|
|
369
368
|
user: {
|
|
370
369
|
name: string;
|
|
371
370
|
uid: string;
|
|
@@ -385,12 +384,9 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
385
384
|
} | undefined;
|
|
386
385
|
} | undefined;
|
|
387
386
|
};
|
|
387
|
+
name: string | null;
|
|
388
|
+
role: string;
|
|
388
389
|
organization: {
|
|
389
|
-
name: string;
|
|
390
|
-
uid: string;
|
|
391
|
-
id: string;
|
|
392
|
-
createTime: string;
|
|
393
|
-
updateTime: string;
|
|
394
390
|
owner: {
|
|
395
391
|
name: string;
|
|
396
392
|
uid: string;
|
|
@@ -410,6 +406,11 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
410
406
|
} | undefined;
|
|
411
407
|
} | undefined;
|
|
412
408
|
};
|
|
409
|
+
name: string;
|
|
410
|
+
uid: string;
|
|
411
|
+
id: string;
|
|
412
|
+
createTime: string;
|
|
413
|
+
updateTime: string;
|
|
413
414
|
profile?: {
|
|
414
415
|
displayName?: string | undefined;
|
|
415
416
|
bio?: string | undefined;
|
|
@@ -422,7 +423,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
|
|
|
422
423
|
} | undefined;
|
|
423
424
|
} | undefined;
|
|
424
425
|
};
|
|
425
|
-
role: string;
|
|
426
426
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
427
427
|
}>;
|
|
428
428
|
export type OrganizationMembership = {
|
|
@@ -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,7 +725,6 @@ 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
728
|
user: {
|
|
730
729
|
name: string;
|
|
731
730
|
uid: string;
|
|
@@ -745,12 +744,9 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
745
744
|
} | undefined;
|
|
746
745
|
} | undefined;
|
|
747
746
|
};
|
|
747
|
+
name: string | null;
|
|
748
|
+
role: string;
|
|
748
749
|
organization: {
|
|
749
|
-
name: string;
|
|
750
|
-
uid: string;
|
|
751
|
-
id: string;
|
|
752
|
-
createTime: string;
|
|
753
|
-
updateTime: string;
|
|
754
750
|
owner: {
|
|
755
751
|
name: string;
|
|
756
752
|
uid: string;
|
|
@@ -770,6 +766,11 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
770
766
|
} | undefined;
|
|
771
767
|
} | undefined;
|
|
772
768
|
};
|
|
769
|
+
name: string;
|
|
770
|
+
uid: string;
|
|
771
|
+
id: string;
|
|
772
|
+
createTime: string;
|
|
773
|
+
updateTime: string;
|
|
773
774
|
profile?: {
|
|
774
775
|
displayName?: string | undefined;
|
|
775
776
|
bio?: string | undefined;
|
|
@@ -782,10 +783,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
782
783
|
} | undefined;
|
|
783
784
|
} | undefined;
|
|
784
785
|
};
|
|
785
|
-
role: string;
|
|
786
786
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
787
787
|
}, {
|
|
788
|
-
name: string | null;
|
|
789
788
|
user: {
|
|
790
789
|
name: string;
|
|
791
790
|
uid: string;
|
|
@@ -805,12 +804,9 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
805
804
|
} | undefined;
|
|
806
805
|
} | undefined;
|
|
807
806
|
};
|
|
807
|
+
name: string | null;
|
|
808
|
+
role: string;
|
|
808
809
|
organization: {
|
|
809
|
-
name: string;
|
|
810
|
-
uid: string;
|
|
811
|
-
id: string;
|
|
812
|
-
createTime: string;
|
|
813
|
-
updateTime: string;
|
|
814
810
|
owner: {
|
|
815
811
|
name: string;
|
|
816
812
|
uid: string;
|
|
@@ -830,6 +826,11 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
830
826
|
} | undefined;
|
|
831
827
|
} | undefined;
|
|
832
828
|
};
|
|
829
|
+
name: string;
|
|
830
|
+
uid: string;
|
|
831
|
+
id: string;
|
|
832
|
+
createTime: string;
|
|
833
|
+
updateTime: string;
|
|
833
834
|
profile?: {
|
|
834
835
|
displayName?: string | undefined;
|
|
835
836
|
bio?: string | undefined;
|
|
@@ -842,7 +843,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
|
|
|
842
843
|
} | undefined;
|
|
843
844
|
} | undefined;
|
|
844
845
|
};
|
|
845
|
-
role: string;
|
|
846
846
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
847
847
|
}>;
|
|
848
848
|
export type ListUserMembershipsRequest = {
|
|
@@ -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,7 +1144,6 @@ 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
1147
|
user: {
|
|
1149
1148
|
name: string;
|
|
1150
1149
|
uid: string;
|
|
@@ -1164,12 +1163,9 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1164
1163
|
} | undefined;
|
|
1165
1164
|
} | undefined;
|
|
1166
1165
|
};
|
|
1166
|
+
name: string | null;
|
|
1167
|
+
role: string;
|
|
1167
1168
|
organization: {
|
|
1168
|
-
name: string;
|
|
1169
|
-
uid: string;
|
|
1170
|
-
id: string;
|
|
1171
|
-
createTime: string;
|
|
1172
|
-
updateTime: string;
|
|
1173
1169
|
owner: {
|
|
1174
1170
|
name: string;
|
|
1175
1171
|
uid: string;
|
|
@@ -1189,6 +1185,11 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1189
1185
|
} | undefined;
|
|
1190
1186
|
} | undefined;
|
|
1191
1187
|
};
|
|
1188
|
+
name: string;
|
|
1189
|
+
uid: string;
|
|
1190
|
+
id: string;
|
|
1191
|
+
createTime: string;
|
|
1192
|
+
updateTime: string;
|
|
1192
1193
|
profile?: {
|
|
1193
1194
|
displayName?: string | undefined;
|
|
1194
1195
|
bio?: string | undefined;
|
|
@@ -1201,10 +1202,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1201
1202
|
} | undefined;
|
|
1202
1203
|
} | undefined;
|
|
1203
1204
|
};
|
|
1204
|
-
role: string;
|
|
1205
1205
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1206
1206
|
}, {
|
|
1207
|
-
name: string | null;
|
|
1208
1207
|
user: {
|
|
1209
1208
|
name: string;
|
|
1210
1209
|
uid: string;
|
|
@@ -1224,12 +1223,9 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1224
1223
|
} | undefined;
|
|
1225
1224
|
} | undefined;
|
|
1226
1225
|
};
|
|
1226
|
+
name: string | null;
|
|
1227
|
+
role: string;
|
|
1227
1228
|
organization: {
|
|
1228
|
-
name: string;
|
|
1229
|
-
uid: string;
|
|
1230
|
-
id: string;
|
|
1231
|
-
createTime: string;
|
|
1232
|
-
updateTime: string;
|
|
1233
1229
|
owner: {
|
|
1234
1230
|
name: string;
|
|
1235
1231
|
uid: string;
|
|
@@ -1249,6 +1245,11 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1249
1245
|
} | undefined;
|
|
1250
1246
|
} | undefined;
|
|
1251
1247
|
};
|
|
1248
|
+
name: string;
|
|
1249
|
+
uid: string;
|
|
1250
|
+
id: string;
|
|
1251
|
+
createTime: string;
|
|
1252
|
+
updateTime: string;
|
|
1252
1253
|
profile?: {
|
|
1253
1254
|
displayName?: string | undefined;
|
|
1254
1255
|
bio?: string | undefined;
|
|
@@ -1261,7 +1262,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
|
|
|
1261
1262
|
} | undefined;
|
|
1262
1263
|
} | undefined;
|
|
1263
1264
|
};
|
|
1264
|
-
role: string;
|
|
1265
1265
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1266
1266
|
}>, "many">;
|
|
1267
1267
|
export type GetUserMembershipRequest = {
|
|
@@ -1489,11 +1489,6 @@ 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;
|
|
1497
1492
|
owner: {
|
|
1498
1493
|
name: string;
|
|
1499
1494
|
uid: string;
|
|
@@ -1513,6 +1508,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1513
1508
|
} | undefined;
|
|
1514
1509
|
} | undefined;
|
|
1515
1510
|
};
|
|
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,11 +1525,6 @@ 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;
|
|
1533
1528
|
owner: {
|
|
1534
1529
|
name: string;
|
|
1535
1530
|
uid: string;
|
|
@@ -1549,6 +1544,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1549
1544
|
} | undefined;
|
|
1550
1545
|
} | undefined;
|
|
1551
1546
|
};
|
|
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,7 +1565,6 @@ 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;
|
|
1569
1568
|
user: {
|
|
1570
1569
|
name: string;
|
|
1571
1570
|
uid: string;
|
|
@@ -1585,12 +1584,9 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1585
1584
|
} | undefined;
|
|
1586
1585
|
} | undefined;
|
|
1587
1586
|
};
|
|
1587
|
+
name: string | null;
|
|
1588
|
+
role: string;
|
|
1588
1589
|
organization: {
|
|
1589
|
-
name: string;
|
|
1590
|
-
uid: string;
|
|
1591
|
-
id: string;
|
|
1592
|
-
createTime: string;
|
|
1593
|
-
updateTime: string;
|
|
1594
1590
|
owner: {
|
|
1595
1591
|
name: string;
|
|
1596
1592
|
uid: string;
|
|
@@ -1610,6 +1606,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1610
1606
|
} | undefined;
|
|
1611
1607
|
} | undefined;
|
|
1612
1608
|
};
|
|
1609
|
+
name: string;
|
|
1610
|
+
uid: string;
|
|
1611
|
+
id: string;
|
|
1612
|
+
createTime: string;
|
|
1613
|
+
updateTime: string;
|
|
1613
1614
|
profile?: {
|
|
1614
1615
|
displayName?: string | undefined;
|
|
1615
1616
|
bio?: string | undefined;
|
|
@@ -1622,10 +1623,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1622
1623
|
} | undefined;
|
|
1623
1624
|
} | undefined;
|
|
1624
1625
|
};
|
|
1625
|
-
role: string;
|
|
1626
1626
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1627
1627
|
}, {
|
|
1628
|
-
name: string | null;
|
|
1629
1628
|
user: {
|
|
1630
1629
|
name: string;
|
|
1631
1630
|
uid: string;
|
|
@@ -1645,12 +1644,9 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1645
1644
|
} | undefined;
|
|
1646
1645
|
} | undefined;
|
|
1647
1646
|
};
|
|
1647
|
+
name: string | null;
|
|
1648
|
+
role: string;
|
|
1648
1649
|
organization: {
|
|
1649
|
-
name: string;
|
|
1650
|
-
uid: string;
|
|
1651
|
-
id: string;
|
|
1652
|
-
createTime: string;
|
|
1653
|
-
updateTime: string;
|
|
1654
1650
|
owner: {
|
|
1655
1651
|
name: string;
|
|
1656
1652
|
uid: string;
|
|
@@ -1670,6 +1666,11 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1670
1666
|
} | undefined;
|
|
1671
1667
|
} | undefined;
|
|
1672
1668
|
};
|
|
1669
|
+
name: string;
|
|
1670
|
+
uid: string;
|
|
1671
|
+
id: string;
|
|
1672
|
+
createTime: string;
|
|
1673
|
+
updateTime: string;
|
|
1673
1674
|
profile?: {
|
|
1674
1675
|
displayName?: string | undefined;
|
|
1675
1676
|
bio?: string | undefined;
|
|
@@ -1682,7 +1683,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
|
|
|
1682
1683
|
} | undefined;
|
|
1683
1684
|
} | undefined;
|
|
1684
1685
|
};
|
|
1685
|
-
role: string;
|
|
1686
1686
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
1687
1687
|
}>;
|
|
1688
1688
|
export type ListOrganizationMembershipsRequest = {
|
|
@@ -1908,11 +1908,6 @@ 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;
|
|
1916
1911
|
owner: {
|
|
1917
1912
|
name: string;
|
|
1918
1913
|
uid: string;
|
|
@@ -1932,6 +1927,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1932
1927
|
} | undefined;
|
|
1933
1928
|
} | undefined;
|
|
1934
1929
|
};
|
|
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,11 +1944,6 @@ 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;
|
|
1952
1947
|
owner: {
|
|
1953
1948
|
name: string;
|
|
1954
1949
|
uid: string;
|
|
@@ -1968,6 +1963,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
1968
1963
|
} | undefined;
|
|
1969
1964
|
} | undefined;
|
|
1970
1965
|
};
|
|
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,7 +1984,6 @@ 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;
|
|
1988
1987
|
user: {
|
|
1989
1988
|
name: string;
|
|
1990
1989
|
uid: string;
|
|
@@ -2004,12 +2003,9 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2004
2003
|
} | undefined;
|
|
2005
2004
|
} | undefined;
|
|
2006
2005
|
};
|
|
2006
|
+
name: string | null;
|
|
2007
|
+
role: string;
|
|
2007
2008
|
organization: {
|
|
2008
|
-
name: string;
|
|
2009
|
-
uid: string;
|
|
2010
|
-
id: string;
|
|
2011
|
-
createTime: string;
|
|
2012
|
-
updateTime: string;
|
|
2013
2009
|
owner: {
|
|
2014
2010
|
name: string;
|
|
2015
2011
|
uid: string;
|
|
@@ -2029,6 +2025,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2029
2025
|
} | undefined;
|
|
2030
2026
|
} | undefined;
|
|
2031
2027
|
};
|
|
2028
|
+
name: string;
|
|
2029
|
+
uid: string;
|
|
2030
|
+
id: string;
|
|
2031
|
+
createTime: string;
|
|
2032
|
+
updateTime: string;
|
|
2032
2033
|
profile?: {
|
|
2033
2034
|
displayName?: string | undefined;
|
|
2034
2035
|
bio?: string | undefined;
|
|
@@ -2041,10 +2042,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2041
2042
|
} | undefined;
|
|
2042
2043
|
} | undefined;
|
|
2043
2044
|
};
|
|
2044
|
-
role: string;
|
|
2045
2045
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2046
2046
|
}, {
|
|
2047
|
-
name: string | null;
|
|
2048
2047
|
user: {
|
|
2049
2048
|
name: string;
|
|
2050
2049
|
uid: string;
|
|
@@ -2064,12 +2063,9 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2064
2063
|
} | undefined;
|
|
2065
2064
|
} | undefined;
|
|
2066
2065
|
};
|
|
2066
|
+
name: string | null;
|
|
2067
|
+
role: string;
|
|
2067
2068
|
organization: {
|
|
2068
|
-
name: string;
|
|
2069
|
-
uid: string;
|
|
2070
|
-
id: string;
|
|
2071
|
-
createTime: string;
|
|
2072
|
-
updateTime: string;
|
|
2073
2069
|
owner: {
|
|
2074
2070
|
name: string;
|
|
2075
2071
|
uid: string;
|
|
@@ -2089,6 +2085,11 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2089
2085
|
} | undefined;
|
|
2090
2086
|
} | undefined;
|
|
2091
2087
|
};
|
|
2088
|
+
name: string;
|
|
2089
|
+
uid: string;
|
|
2090
|
+
id: string;
|
|
2091
|
+
createTime: string;
|
|
2092
|
+
updateTime: string;
|
|
2092
2093
|
profile?: {
|
|
2093
2094
|
displayName?: string | undefined;
|
|
2094
2095
|
bio?: string | undefined;
|
|
@@ -2101,7 +2102,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
|
|
|
2101
2102
|
} | undefined;
|
|
2102
2103
|
} | undefined;
|
|
2103
2104
|
};
|
|
2104
|
-
role: string;
|
|
2105
2105
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2106
2106
|
}>, "many">;
|
|
2107
2107
|
export type GetOrganizationMembershipRequest = {
|
|
@@ -2329,11 +2329,6 @@ 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;
|
|
2337
2332
|
owner: {
|
|
2338
2333
|
name: string;
|
|
2339
2334
|
uid: string;
|
|
@@ -2353,6 +2348,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2353
2348
|
} | undefined;
|
|
2354
2349
|
} | undefined;
|
|
2355
2350
|
};
|
|
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,11 +2365,6 @@ 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;
|
|
2373
2368
|
owner: {
|
|
2374
2369
|
name: string;
|
|
2375
2370
|
uid: string;
|
|
@@ -2389,6 +2384,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2389
2384
|
} | undefined;
|
|
2390
2385
|
} | undefined;
|
|
2391
2386
|
};
|
|
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,7 +2405,6 @@ 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;
|
|
2409
2408
|
user: {
|
|
2410
2409
|
name: string;
|
|
2411
2410
|
uid: string;
|
|
@@ -2425,12 +2424,9 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2425
2424
|
} | undefined;
|
|
2426
2425
|
} | undefined;
|
|
2427
2426
|
};
|
|
2427
|
+
name: string | null;
|
|
2428
|
+
role: string;
|
|
2428
2429
|
organization: {
|
|
2429
|
-
name: string;
|
|
2430
|
-
uid: string;
|
|
2431
|
-
id: string;
|
|
2432
|
-
createTime: string;
|
|
2433
|
-
updateTime: string;
|
|
2434
2430
|
owner: {
|
|
2435
2431
|
name: string;
|
|
2436
2432
|
uid: string;
|
|
@@ -2450,6 +2446,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2450
2446
|
} | undefined;
|
|
2451
2447
|
} | undefined;
|
|
2452
2448
|
};
|
|
2449
|
+
name: string;
|
|
2450
|
+
uid: string;
|
|
2451
|
+
id: string;
|
|
2452
|
+
createTime: string;
|
|
2453
|
+
updateTime: string;
|
|
2453
2454
|
profile?: {
|
|
2454
2455
|
displayName?: string | undefined;
|
|
2455
2456
|
bio?: string | undefined;
|
|
@@ -2462,10 +2463,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2462
2463
|
} | undefined;
|
|
2463
2464
|
} | undefined;
|
|
2464
2465
|
};
|
|
2465
|
-
role: string;
|
|
2466
2466
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2467
2467
|
}, {
|
|
2468
|
-
name: string | null;
|
|
2469
2468
|
user: {
|
|
2470
2469
|
name: string;
|
|
2471
2470
|
uid: string;
|
|
@@ -2485,12 +2484,9 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2485
2484
|
} | undefined;
|
|
2486
2485
|
} | undefined;
|
|
2487
2486
|
};
|
|
2487
|
+
name: string | null;
|
|
2488
|
+
role: string;
|
|
2488
2489
|
organization: {
|
|
2489
|
-
name: string;
|
|
2490
|
-
uid: string;
|
|
2491
|
-
id: string;
|
|
2492
|
-
createTime: string;
|
|
2493
|
-
updateTime: string;
|
|
2494
2490
|
owner: {
|
|
2495
2491
|
name: string;
|
|
2496
2492
|
uid: string;
|
|
@@ -2510,6 +2506,11 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2510
2506
|
} | undefined;
|
|
2511
2507
|
} | undefined;
|
|
2512
2508
|
};
|
|
2509
|
+
name: string;
|
|
2510
|
+
uid: string;
|
|
2511
|
+
id: string;
|
|
2512
|
+
createTime: string;
|
|
2513
|
+
updateTime: string;
|
|
2513
2514
|
profile?: {
|
|
2514
2515
|
displayName?: string | undefined;
|
|
2515
2516
|
bio?: string | undefined;
|
|
@@ -2522,7 +2523,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
|
|
|
2522
2523
|
} | undefined;
|
|
2523
2524
|
} | undefined;
|
|
2524
2525
|
};
|
|
2525
|
-
role: string;
|
|
2526
2526
|
state: "MEMBERSHIP_STATE_ACTIVE" | "MEMBERSHIP_STATE_PENDING";
|
|
2527
2527
|
}>;
|
|
2528
2528
|
export type DeleteUserMembershipRequest = {
|