instill-sdk 0.19.0-rc.3 → 0.19.0-rc.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ export declare const instillChatMessageEnum: {
2
+ readonly Started: "CHAT_STARTED";
3
+ readonly StatusUpdated: "CHAT_STATUS_UPDATED";
4
+ readonly OutputUpdated: "CHAT_OUTPUT_UPDATED";
5
+ readonly Ended: "CHAT_ENDED";
6
+ readonly UserMessage: "CHAT_USER_MESSAGE";
7
+ };
8
+ //# sourceMappingURL=constant.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constant.d.ts","sourceRoot":"","sources":["../../src/chat/constant.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB;;;;;;CAMzB,CAAC"}
@@ -79,13 +79,13 @@ export declare const IntegrationSchema: z.ZodObject<{
79
79
  }>>;
80
80
  view: z.ZodEnum<["VIEW_FULL", "VIEW_BASIC"]>;
81
81
  }, "strip", z.ZodTypeAny, {
82
+ title: string;
83
+ description: string;
82
84
  uid: string;
83
85
  id: string;
84
- description: string;
85
- view: "VIEW_FULL" | "VIEW_BASIC";
86
- title: string;
87
86
  icon: string;
88
87
  vendor: string;
88
+ view: "VIEW_FULL" | "VIEW_BASIC";
89
89
  helpLink: {
90
90
  text: string;
91
91
  url: string;
@@ -97,13 +97,13 @@ export declare const IntegrationSchema: z.ZodObject<{
97
97
  } | null;
98
98
  setupSchema?: any;
99
99
  }, {
100
+ title: string;
101
+ description: string;
100
102
  uid: string;
101
103
  id: string;
102
- description: string;
103
- view: "VIEW_FULL" | "VIEW_BASIC";
104
- title: string;
105
104
  icon: string;
106
105
  vendor: string;
106
+ view: "VIEW_FULL" | "VIEW_BASIC";
107
107
  helpLink: {
108
108
  text: string;
109
109
  url: string;
@@ -174,13 +174,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
174
174
  }>>;
175
175
  view: z.ZodEnum<["VIEW_FULL", "VIEW_BASIC"]>;
176
176
  }, "strip", z.ZodTypeAny, {
177
+ title: string;
178
+ description: string;
177
179
  uid: string;
178
180
  id: string;
179
- description: string;
180
- view: "VIEW_FULL" | "VIEW_BASIC";
181
- title: string;
182
181
  icon: string;
183
182
  vendor: string;
183
+ view: "VIEW_FULL" | "VIEW_BASIC";
184
184
  helpLink: {
185
185
  text: string;
186
186
  url: string;
@@ -192,13 +192,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
192
192
  } | null;
193
193
  setupSchema?: any;
194
194
  }, {
195
+ title: string;
196
+ description: string;
195
197
  uid: string;
196
198
  id: string;
197
- description: string;
198
- view: "VIEW_FULL" | "VIEW_BASIC";
199
- title: string;
200
199
  icon: string;
201
200
  vendor: string;
201
+ view: "VIEW_FULL" | "VIEW_BASIC";
202
202
  helpLink: {
203
203
  text: string;
204
204
  url: string;
@@ -216,13 +216,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
216
216
  nextPageToken: string | null;
217
217
  totalSize: number;
218
218
  integrations: {
219
+ title: string;
220
+ description: string;
219
221
  uid: string;
220
222
  id: string;
221
- description: string;
222
- view: "VIEW_FULL" | "VIEW_BASIC";
223
- title: string;
224
223
  icon: string;
225
224
  vendor: string;
225
+ view: "VIEW_FULL" | "VIEW_BASIC";
226
226
  helpLink: {
227
227
  text: string;
228
228
  url: string;
@@ -238,13 +238,13 @@ export declare const listPaginatedIntegrationsResponseValidator: z.ZodObject<{
238
238
  nextPageToken: string | null;
239
239
  totalSize: number;
240
240
  integrations: {
241
+ title: string;
242
+ description: string;
241
243
  uid: string;
242
244
  id: string;
243
- description: string;
244
- view: "VIEW_FULL" | "VIEW_BASIC";
245
- title: string;
246
245
  icon: string;
247
246
  vendor: string;
247
+ view: "VIEW_FULL" | "VIEW_BASIC";
248
248
  helpLink: {
249
249
  text: string;
250
250
  url: string;
@@ -232,8 +232,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
232
232
  name: string;
233
233
  uid: string;
234
234
  id: string;
235
- createTime: string;
236
- updateTime: string;
237
235
  owner: {
238
236
  name: string;
239
237
  uid: string;
@@ -253,6 +251,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
253
251
  } | undefined;
254
252
  } | undefined;
255
253
  };
254
+ createTime: string;
255
+ updateTime: string;
256
256
  profile?: {
257
257
  displayName?: string | undefined;
258
258
  bio?: string | undefined;
@@ -268,8 +268,6 @@ export declare const UserMembershipSchema: z.ZodObject<{
268
268
  name: string;
269
269
  uid: string;
270
270
  id: string;
271
- createTime: string;
272
- updateTime: string;
273
271
  owner: {
274
272
  name: string;
275
273
  uid: string;
@@ -289,6 +287,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
289
287
  } | undefined;
290
288
  } | undefined;
291
289
  };
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;
@@ -325,13 +326,10 @@ export declare const UserMembershipSchema: z.ZodObject<{
325
326
  } | undefined;
326
327
  };
327
328
  role: string;
328
- name: string | null;
329
329
  organization: {
330
330
  name: string;
331
331
  uid: string;
332
332
  id: string;
333
- createTime: string;
334
- updateTime: string;
335
333
  owner: {
336
334
  name: string;
337
335
  uid: string;
@@ -351,6 +349,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
351
349
  } | undefined;
352
350
  } | undefined;
353
351
  };
352
+ createTime: string;
353
+ updateTime: string;
354
354
  profile?: {
355
355
  displayName?: string | undefined;
356
356
  bio?: string | undefined;
@@ -365,6 +365,7 @@ export declare const UserMembershipSchema: z.ZodObject<{
365
365
  };
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;
@@ -385,13 +386,10 @@ export declare const UserMembershipSchema: z.ZodObject<{
385
386
  } | undefined;
386
387
  };
387
388
  role: string;
388
- name: string | null;
389
389
  organization: {
390
390
  name: string;
391
391
  uid: string;
392
392
  id: string;
393
- createTime: string;
394
- updateTime: string;
395
393
  owner: {
396
394
  name: string;
397
395
  uid: string;
@@ -411,6 +409,8 @@ export declare const UserMembershipSchema: z.ZodObject<{
411
409
  } | undefined;
412
410
  } | undefined;
413
411
  };
412
+ createTime: string;
413
+ updateTime: string;
414
414
  profile?: {
415
415
  displayName?: string | undefined;
416
416
  bio?: string | undefined;
@@ -652,8 +652,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
652
652
  name: string;
653
653
  uid: string;
654
654
  id: string;
655
- createTime: string;
656
- updateTime: string;
657
655
  owner: {
658
656
  name: string;
659
657
  uid: string;
@@ -673,6 +671,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
673
671
  } | undefined;
674
672
  } | undefined;
675
673
  };
674
+ createTime: string;
675
+ updateTime: string;
676
676
  profile?: {
677
677
  displayName?: string | undefined;
678
678
  bio?: string | undefined;
@@ -688,8 +688,6 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
688
688
  name: string;
689
689
  uid: string;
690
690
  id: string;
691
- createTime: string;
692
- updateTime: string;
693
691
  owner: {
694
692
  name: string;
695
693
  uid: string;
@@ -709,6 +707,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
709
707
  } | undefined;
710
708
  } | undefined;
711
709
  };
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;
@@ -745,13 +746,10 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
745
746
  } | undefined;
746
747
  };
747
748
  role: string;
748
- name: string | null;
749
749
  organization: {
750
750
  name: string;
751
751
  uid: string;
752
752
  id: string;
753
- createTime: string;
754
- updateTime: string;
755
753
  owner: {
756
754
  name: string;
757
755
  uid: string;
@@ -771,6 +769,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
771
769
  } | undefined;
772
770
  } | undefined;
773
771
  };
772
+ createTime: string;
773
+ updateTime: string;
774
774
  profile?: {
775
775
  displayName?: string | undefined;
776
776
  bio?: string | undefined;
@@ -785,6 +785,7 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
785
785
  };
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;
@@ -805,13 +806,10 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
805
806
  } | undefined;
806
807
  };
807
808
  role: string;
808
- name: string | null;
809
809
  organization: {
810
810
  name: string;
811
811
  uid: string;
812
812
  id: string;
813
- createTime: string;
814
- updateTime: string;
815
813
  owner: {
816
814
  name: string;
817
815
  uid: string;
@@ -831,6 +829,8 @@ export declare const OrganizationMembershipSchema: z.ZodObject<{
831
829
  } | undefined;
832
830
  } | undefined;
833
831
  };
832
+ createTime: string;
833
+ updateTime: string;
834
834
  profile?: {
835
835
  displayName?: string | undefined;
836
836
  bio?: string | undefined;
@@ -1071,8 +1071,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1071
1071
  name: string;
1072
1072
  uid: string;
1073
1073
  id: string;
1074
- createTime: string;
1075
- updateTime: string;
1076
1074
  owner: {
1077
1075
  name: string;
1078
1076
  uid: string;
@@ -1092,6 +1090,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1092
1090
  } | undefined;
1093
1091
  } | undefined;
1094
1092
  };
1093
+ createTime: string;
1094
+ updateTime: string;
1095
1095
  profile?: {
1096
1096
  displayName?: string | undefined;
1097
1097
  bio?: string | undefined;
@@ -1107,8 +1107,6 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1107
1107
  name: string;
1108
1108
  uid: string;
1109
1109
  id: string;
1110
- createTime: string;
1111
- updateTime: string;
1112
1110
  owner: {
1113
1111
  name: string;
1114
1112
  uid: string;
@@ -1128,6 +1126,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1128
1126
  } | undefined;
1129
1127
  } | undefined;
1130
1128
  };
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;
@@ -1164,13 +1165,10 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1164
1165
  } | undefined;
1165
1166
  };
1166
1167
  role: string;
1167
- name: string | null;
1168
1168
  organization: {
1169
1169
  name: string;
1170
1170
  uid: string;
1171
1171
  id: string;
1172
- createTime: string;
1173
- updateTime: string;
1174
1172
  owner: {
1175
1173
  name: string;
1176
1174
  uid: string;
@@ -1190,6 +1188,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1190
1188
  } | undefined;
1191
1189
  } | undefined;
1192
1190
  };
1191
+ createTime: string;
1192
+ updateTime: string;
1193
1193
  profile?: {
1194
1194
  displayName?: string | undefined;
1195
1195
  bio?: string | undefined;
@@ -1204,6 +1204,7 @@ 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;
1207
1208
  user: {
1208
1209
  name: string;
1209
1210
  uid: string;
@@ -1224,13 +1225,10 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1224
1225
  } | undefined;
1225
1226
  };
1226
1227
  role: string;
1227
- name: string | null;
1228
1228
  organization: {
1229
1229
  name: string;
1230
1230
  uid: string;
1231
1231
  id: string;
1232
- createTime: string;
1233
- updateTime: string;
1234
1232
  owner: {
1235
1233
  name: string;
1236
1234
  uid: string;
@@ -1250,6 +1248,8 @@ export declare const listUserMembershipsResponseValidator: z.ZodArray<z.ZodObjec
1250
1248
  } | undefined;
1251
1249
  } | undefined;
1252
1250
  };
1251
+ createTime: string;
1252
+ updateTime: string;
1253
1253
  profile?: {
1254
1254
  displayName?: string | undefined;
1255
1255
  bio?: string | undefined;
@@ -1492,8 +1492,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1492
1492
  name: string;
1493
1493
  uid: string;
1494
1494
  id: string;
1495
- createTime: string;
1496
- updateTime: string;
1497
1495
  owner: {
1498
1496
  name: string;
1499
1497
  uid: string;
@@ -1513,6 +1511,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1513
1511
  } | undefined;
1514
1512
  } | undefined;
1515
1513
  };
1514
+ createTime: string;
1515
+ updateTime: string;
1516
1516
  profile?: {
1517
1517
  displayName?: string | undefined;
1518
1518
  bio?: string | undefined;
@@ -1528,8 +1528,6 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1528
1528
  name: string;
1529
1529
  uid: string;
1530
1530
  id: string;
1531
- createTime: string;
1532
- updateTime: string;
1533
1531
  owner: {
1534
1532
  name: string;
1535
1533
  uid: string;
@@ -1549,6 +1547,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1549
1547
  } | undefined;
1550
1548
  } | undefined;
1551
1549
  };
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;
@@ -1585,13 +1586,10 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1585
1586
  } | undefined;
1586
1587
  };
1587
1588
  role: string;
1588
- name: string | null;
1589
1589
  organization: {
1590
1590
  name: string;
1591
1591
  uid: string;
1592
1592
  id: string;
1593
- createTime: string;
1594
- updateTime: string;
1595
1593
  owner: {
1596
1594
  name: string;
1597
1595
  uid: string;
@@ -1611,6 +1609,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1611
1609
  } | undefined;
1612
1610
  } | undefined;
1613
1611
  };
1612
+ createTime: string;
1613
+ updateTime: string;
1614
1614
  profile?: {
1615
1615
  displayName?: string | undefined;
1616
1616
  bio?: string | undefined;
@@ -1625,6 +1625,7 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1625
1625
  };
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;
@@ -1645,13 +1646,10 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1645
1646
  } | undefined;
1646
1647
  };
1647
1648
  role: string;
1648
- name: string | null;
1649
1649
  organization: {
1650
1650
  name: string;
1651
1651
  uid: string;
1652
1652
  id: string;
1653
- createTime: string;
1654
- updateTime: string;
1655
1653
  owner: {
1656
1654
  name: string;
1657
1655
  uid: string;
@@ -1671,6 +1669,8 @@ export declare const getUserMembershipResponseValidator: z.ZodObject<{
1671
1669
  } | undefined;
1672
1670
  } | undefined;
1673
1671
  };
1672
+ createTime: string;
1673
+ updateTime: string;
1674
1674
  profile?: {
1675
1675
  displayName?: string | undefined;
1676
1676
  bio?: string | undefined;
@@ -1911,8 +1911,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
1911
1911
  name: string;
1912
1912
  uid: string;
1913
1913
  id: string;
1914
- createTime: string;
1915
- updateTime: string;
1916
1914
  owner: {
1917
1915
  name: string;
1918
1916
  uid: string;
@@ -1932,6 +1930,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
1932
1930
  } | undefined;
1933
1931
  } | undefined;
1934
1932
  };
1933
+ createTime: string;
1934
+ updateTime: string;
1935
1935
  profile?: {
1936
1936
  displayName?: string | undefined;
1937
1937
  bio?: string | undefined;
@@ -1947,8 +1947,6 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
1947
1947
  name: string;
1948
1948
  uid: string;
1949
1949
  id: string;
1950
- createTime: string;
1951
- updateTime: string;
1952
1950
  owner: {
1953
1951
  name: string;
1954
1952
  uid: string;
@@ -1968,6 +1966,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
1968
1966
  } | undefined;
1969
1967
  } | undefined;
1970
1968
  };
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;
@@ -2004,13 +2005,10 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
2004
2005
  } | undefined;
2005
2006
  };
2006
2007
  role: string;
2007
- name: string | null;
2008
2008
  organization: {
2009
2009
  name: string;
2010
2010
  uid: string;
2011
2011
  id: string;
2012
- createTime: string;
2013
- updateTime: string;
2014
2012
  owner: {
2015
2013
  name: string;
2016
2014
  uid: string;
@@ -2030,6 +2028,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
2030
2028
  } | undefined;
2031
2029
  } | undefined;
2032
2030
  };
2031
+ createTime: string;
2032
+ updateTime: string;
2033
2033
  profile?: {
2034
2034
  displayName?: string | undefined;
2035
2035
  bio?: string | undefined;
@@ -2044,6 +2044,7 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
2044
2044
  };
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;
@@ -2064,13 +2065,10 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
2064
2065
  } | undefined;
2065
2066
  };
2066
2067
  role: string;
2067
- name: string | null;
2068
2068
  organization: {
2069
2069
  name: string;
2070
2070
  uid: string;
2071
2071
  id: string;
2072
- createTime: string;
2073
- updateTime: string;
2074
2072
  owner: {
2075
2073
  name: string;
2076
2074
  uid: string;
@@ -2090,6 +2088,8 @@ export declare const listOrganizationMembershipsResponseValidator: z.ZodArray<z.
2090
2088
  } | undefined;
2091
2089
  } | undefined;
2092
2090
  };
2091
+ createTime: string;
2092
+ updateTime: string;
2093
2093
  profile?: {
2094
2094
  displayName?: string | undefined;
2095
2095
  bio?: string | undefined;
@@ -2332,8 +2332,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2332
2332
  name: string;
2333
2333
  uid: string;
2334
2334
  id: string;
2335
- createTime: string;
2336
- updateTime: string;
2337
2335
  owner: {
2338
2336
  name: string;
2339
2337
  uid: string;
@@ -2353,6 +2351,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2353
2351
  } | undefined;
2354
2352
  } | undefined;
2355
2353
  };
2354
+ createTime: string;
2355
+ updateTime: string;
2356
2356
  profile?: {
2357
2357
  displayName?: string | undefined;
2358
2358
  bio?: string | undefined;
@@ -2368,8 +2368,6 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2368
2368
  name: string;
2369
2369
  uid: string;
2370
2370
  id: string;
2371
- createTime: string;
2372
- updateTime: string;
2373
2371
  owner: {
2374
2372
  name: string;
2375
2373
  uid: string;
@@ -2389,6 +2387,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2389
2387
  } | undefined;
2390
2388
  } | undefined;
2391
2389
  };
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;
@@ -2425,13 +2426,10 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2425
2426
  } | undefined;
2426
2427
  };
2427
2428
  role: string;
2428
- name: string | null;
2429
2429
  organization: {
2430
2430
  name: string;
2431
2431
  uid: string;
2432
2432
  id: string;
2433
- createTime: string;
2434
- updateTime: string;
2435
2433
  owner: {
2436
2434
  name: string;
2437
2435
  uid: string;
@@ -2451,6 +2449,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2451
2449
  } | undefined;
2452
2450
  } | undefined;
2453
2451
  };
2452
+ createTime: string;
2453
+ updateTime: string;
2454
2454
  profile?: {
2455
2455
  displayName?: string | undefined;
2456
2456
  bio?: string | undefined;
@@ -2465,6 +2465,7 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2465
2465
  };
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;
@@ -2485,13 +2486,10 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2485
2486
  } | undefined;
2486
2487
  };
2487
2488
  role: string;
2488
- name: string | null;
2489
2489
  organization: {
2490
2490
  name: string;
2491
2491
  uid: string;
2492
2492
  id: string;
2493
- createTime: string;
2494
- updateTime: string;
2495
2493
  owner: {
2496
2494
  name: string;
2497
2495
  uid: string;
@@ -2511,6 +2509,8 @@ export declare const getOrganizationMembershipResponseValidator: z.ZodObject<{
2511
2509
  } | undefined;
2512
2510
  } | undefined;
2513
2511
  };
2512
+ createTime: string;
2513
+ updateTime: string;
2514
2514
  profile?: {
2515
2515
  displayName?: string | undefined;
2516
2516
  bio?: string | undefined;