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.
@@ -194,8 +194,6 @@ export declare const OrganizationSchema: z.ZodObject<{
194
194
  name: string;
195
195
  uid: string;
196
196
  id: string;
197
- createTime: string;
198
- updateTime: string;
199
197
  owner: {
200
198
  name: string;
201
199
  uid: string;
@@ -215,6 +213,8 @@ export declare const OrganizationSchema: z.ZodObject<{
215
213
  } | undefined;
216
214
  } | undefined;
217
215
  };
216
+ createTime: string;
217
+ updateTime: string;
218
218
  profile?: {
219
219
  displayName?: string | undefined;
220
220
  bio?: string | undefined;
@@ -230,8 +230,6 @@ export declare const OrganizationSchema: z.ZodObject<{
230
230
  name: string;
231
231
  uid: string;
232
232
  id: string;
233
- createTime: string;
234
- updateTime: string;
235
233
  owner: {
236
234
  name: string;
237
235
  uid: string;
@@ -251,6 +249,8 @@ export declare const OrganizationSchema: z.ZodObject<{
251
249
  } | undefined;
252
250
  } | undefined;
253
251
  };
252
+ createTime: string;
253
+ updateTime: string;
254
254
  profile?: {
255
255
  displayName?: string | undefined;
256
256
  bio?: string | undefined;
@@ -218,12 +218,12 @@ export declare const AuthenticatedUserSchema: z.ZodObject<{
218
218
  } | undefined;
219
219
  }>>;
220
220
  }, "strip", z.ZodTypeAny, {
221
- role: string;
222
221
  name: string;
223
222
  uid: string;
224
223
  id: string;
225
224
  createTime: string;
226
225
  updateTime: string;
226
+ role: string;
227
227
  customerId: string;
228
228
  email: string;
229
229
  newsletterSubscription: boolean;
@@ -242,12 +242,12 @@ export declare const AuthenticatedUserSchema: z.ZodObject<{
242
242
  } | undefined;
243
243
  cookieToken?: string | undefined;
244
244
  }, {
245
- role: string;
246
245
  name: string;
247
246
  uid: string;
248
247
  id: string;
249
248
  createTime: string;
250
249
  updateTime: string;
250
+ role: string;
251
251
  customerId: string;
252
252
  email: string;
253
253
  newsletterSubscription: boolean;
@@ -324,12 +324,12 @@ export declare const getAuthenticatedResponseValidator: z.ZodObject<{
324
324
  } | undefined;
325
325
  }>>;
326
326
  }, "strip", z.ZodTypeAny, {
327
- role: string;
328
327
  name: string;
329
328
  uid: string;
330
329
  id: string;
331
330
  createTime: string;
332
331
  updateTime: string;
332
+ role: string;
333
333
  customerId: string;
334
334
  email: string;
335
335
  newsletterSubscription: boolean;
@@ -348,12 +348,12 @@ export declare const getAuthenticatedResponseValidator: z.ZodObject<{
348
348
  } | undefined;
349
349
  cookieToken?: string | undefined;
350
350
  }, {
351
- role: string;
352
351
  name: string;
353
352
  uid: string;
354
353
  id: string;
355
354
  createTime: string;
356
355
  updateTime: string;
356
+ role: string;
357
357
  customerId: string;
358
358
  email: string;
359
359
  newsletterSubscription: boolean;
@@ -431,12 +431,12 @@ export declare const updateAuthenticatedUserResponseValidator: z.ZodObject<{
431
431
  } | undefined;
432
432
  }>>;
433
433
  }, "strip", z.ZodTypeAny, {
434
- role: string;
435
434
  name: string;
436
435
  uid: string;
437
436
  id: string;
438
437
  createTime: string;
439
438
  updateTime: string;
439
+ role: string;
440
440
  customerId: string;
441
441
  email: string;
442
442
  newsletterSubscription: boolean;
@@ -455,12 +455,12 @@ export declare const updateAuthenticatedUserResponseValidator: z.ZodObject<{
455
455
  } | undefined;
456
456
  cookieToken?: string | undefined;
457
457
  }, {
458
- role: string;
459
458
  name: string;
460
459
  uid: string;
461
460
  id: string;
462
461
  createTime: string;
463
462
  updateTime: string;
463
+ role: string;
464
464
  customerId: string;
465
465
  email: string;
466
466
  newsletterSubscription: boolean;
@@ -579,6 +579,8 @@ export declare const listUsersWithPaginationResponseValidator: z.ZodObject<{
579
579
  nextPageToken: z.ZodString;
580
580
  totalSize: z.ZodNumber;
581
581
  }, "strip", z.ZodTypeAny, {
582
+ nextPageToken: string;
583
+ totalSize: number;
582
584
  users: {
583
585
  name: string;
584
586
  uid: string;
@@ -598,9 +600,9 @@ export declare const listUsersWithPaginationResponseValidator: z.ZodObject<{
598
600
  } | undefined;
599
601
  } | undefined;
600
602
  }[];
603
+ }, {
601
604
  nextPageToken: string;
602
605
  totalSize: number;
603
- }, {
604
606
  users: {
605
607
  name: string;
606
608
  uid: string;
@@ -620,8 +622,6 @@ export declare const listUsersWithPaginationResponseValidator: z.ZodObject<{
620
622
  } | undefined;
621
623
  } | undefined;
622
624
  }[];
623
- nextPageToken: string;
624
- totalSize: number;
625
625
  }>;
626
626
  export type GetUserRequest = {
627
627
  userId: string;