@seamapi/types 1.72.0 → 1.73.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.
@@ -14627,6 +14627,9 @@ declare const _default: {
14627
14627
  format: string;
14628
14628
  type: string;
14629
14629
  };
14630
+ display_name: {
14631
+ type: string;
14632
+ };
14630
14633
  email_address: {
14631
14634
  format: string;
14632
14635
  nullable: boolean;
@@ -14995,6 +14998,9 @@ declare const _default: {
14995
14998
  format: string;
14996
14999
  type: string;
14997
15000
  };
15001
+ display_name: {
15002
+ type: string;
15003
+ };
14998
15004
  email_address: {
14999
15005
  format: string;
15000
15006
  nullable: boolean;
@@ -15215,6 +15221,9 @@ declare const _default: {
15215
15221
  format: string;
15216
15222
  type: string;
15217
15223
  };
15224
+ display_name: {
15225
+ type: string;
15226
+ };
15218
15227
  email_address: {
15219
15228
  format: string;
15220
15229
  nullable: boolean;
@@ -15304,6 +15313,9 @@ declare const _default: {
15304
15313
  format: string;
15305
15314
  type: string;
15306
15315
  };
15316
+ display_name: {
15317
+ type: string;
15318
+ };
15307
15319
  email_address: {
15308
15320
  format: string;
15309
15321
  nullable: boolean;
@@ -23624,6 +23636,7 @@ interface Routes {
23624
23636
  email_address?: (string | null) | undefined;
23625
23637
  first_name?: (string | null) | undefined;
23626
23638
  last_name?: (string | null) | undefined;
23639
+ display_name: string;
23627
23640
  created_at: string;
23628
23641
  workspace_id: string;
23629
23642
  };
@@ -23709,6 +23722,7 @@ interface Routes {
23709
23722
  email_address?: (string | null) | undefined;
23710
23723
  first_name?: (string | null) | undefined;
23711
23724
  last_name?: (string | null) | undefined;
23725
+ display_name: string;
23712
23726
  created_at: string;
23713
23727
  workspace_id: string;
23714
23728
  };
@@ -23740,6 +23754,7 @@ interface Routes {
23740
23754
  email_address?: (string | null) | undefined;
23741
23755
  first_name?: (string | null) | undefined;
23742
23756
  last_name?: (string | null) | undefined;
23757
+ display_name: string;
23743
23758
  created_at: string;
23744
23759
  workspace_id: string;
23745
23760
  }>;
@@ -3591,4 +3591,4 @@ type RouteResponse<Path extends keyof Routes> = Routes[Path]['jsonResponse'];
3591
3591
  type RouteRequestBody<Path extends keyof Routes> = Routes[Path]['jsonBody'] & Routes[Path]['commonParams'];
3592
3592
  type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams'] & Routes[Path]['commonParams'];
3593
3593
 
3594
- export { type DeviceCategory, type DeviceConnectionType, type DeviceModelV1, type ImageReference, type Manufacturer, type ManufacturerAnnotationCode, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
3594
+ export { type DeviceCategory, type DeviceConnectionType, type DeviceModelV1, type ImageReference, type Manufacturer, type ManufacturerAnnotation, type ManufacturerAnnotationCode, type ManufacturerIntegrationSupportLevel, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, routes, index as schemas };
@@ -14553,6 +14553,9 @@ declare const _default: {
14553
14553
  format: string;
14554
14554
  type: string;
14555
14555
  };
14556
+ display_name: {
14557
+ type: string;
14558
+ };
14556
14559
  email_address: {
14557
14560
  format: string;
14558
14561
  nullable: boolean;
@@ -14921,6 +14924,9 @@ declare const _default: {
14921
14924
  format: string;
14922
14925
  type: string;
14923
14926
  };
14927
+ display_name: {
14928
+ type: string;
14929
+ };
14924
14930
  email_address: {
14925
14931
  format: string;
14926
14932
  nullable: boolean;
@@ -15141,6 +15147,9 @@ declare const _default: {
15141
15147
  format: string;
15142
15148
  type: string;
15143
15149
  };
15150
+ display_name: {
15151
+ type: string;
15152
+ };
15144
15153
  email_address: {
15145
15154
  format: string;
15146
15155
  nullable: boolean;
@@ -15230,6 +15239,9 @@ declare const _default: {
15230
15239
  format: string;
15231
15240
  type: string;
15232
15241
  };
15242
+ display_name: {
15243
+ type: string;
15244
+ };
15233
15245
  email_address: {
15234
15246
  format: string;
15235
15247
  nullable: boolean;
@@ -10969,6 +10969,7 @@ export default {
10969
10969
  user_identity: {
10970
10970
  properties: {
10971
10971
  created_at: { format: 'date-time', type: 'string' },
10972
+ display_name: { type: 'string' },
10972
10973
  email_address: {
10973
10974
  format: 'email',
10974
10975
  nullable: true,
@@ -10982,6 +10983,7 @@ export default {
10982
10983
  },
10983
10984
  required: [
10984
10985
  'user_identity_id',
10986
+ 'display_name',
10985
10987
  'created_at',
10986
10988
  'workspace_id',
10987
10989
  ],
@@ -11231,6 +11233,7 @@ export default {
11231
11233
  user_identity: {
11232
11234
  properties: {
11233
11235
  created_at: { format: 'date-time', type: 'string' },
11236
+ display_name: { type: 'string' },
11234
11237
  email_address: {
11235
11238
  format: 'email',
11236
11239
  nullable: true,
@@ -11244,6 +11247,7 @@ export default {
11244
11247
  },
11245
11248
  required: [
11246
11249
  'user_identity_id',
11250
+ 'display_name',
11247
11251
  'created_at',
11248
11252
  'workspace_id',
11249
11253
  ],
@@ -11370,6 +11374,7 @@ export default {
11370
11374
  items: {
11371
11375
  properties: {
11372
11376
  created_at: { format: 'date-time', type: 'string' },
11377
+ display_name: { type: 'string' },
11373
11378
  email_address: {
11374
11379
  format: 'email',
11375
11380
  nullable: true,
@@ -11383,6 +11388,7 @@ export default {
11383
11388
  },
11384
11389
  required: [
11385
11390
  'user_identity_id',
11391
+ 'display_name',
11386
11392
  'created_at',
11387
11393
  'workspace_id',
11388
11394
  ],
@@ -11424,6 +11430,7 @@ export default {
11424
11430
  items: {
11425
11431
  properties: {
11426
11432
  created_at: { format: 'date-time', type: 'string' },
11433
+ display_name: { type: 'string' },
11427
11434
  email_address: {
11428
11435
  format: 'email',
11429
11436
  nullable: true,
@@ -11437,6 +11444,7 @@ export default {
11437
11444
  },
11438
11445
  required: [
11439
11446
  'user_identity_id',
11447
+ 'display_name',
11440
11448
  'created_at',
11441
11449
  'workspace_id',
11442
11450
  ],