@seamapi/types 1.72.1 → 1.74.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.
@@ -14594,15 +14594,13 @@ declare const _default: {
14594
14594
  nullable: boolean;
14595
14595
  type: string;
14596
14596
  };
14597
- first_name: {
14598
- nullable: boolean;
14599
- type: string;
14600
- };
14601
- last_name: {
14597
+ full_name: {
14598
+ minLength: number;
14602
14599
  nullable: boolean;
14603
14600
  type: string;
14604
14601
  };
14605
14602
  user_identity_key: {
14603
+ minLength: number;
14606
14604
  nullable: boolean;
14607
14605
  type: string;
14608
14606
  };
@@ -14627,16 +14625,17 @@ declare const _default: {
14627
14625
  format: string;
14628
14626
  type: string;
14629
14627
  };
14630
- email_address: {
14631
- format: string;
14632
- nullable: boolean;
14628
+ display_name: {
14629
+ minLength: number;
14633
14630
  type: string;
14634
14631
  };
14635
- first_name: {
14632
+ email_address: {
14633
+ format: string;
14636
14634
  nullable: boolean;
14637
14635
  type: string;
14638
14636
  };
14639
- last_name: {
14637
+ full_name: {
14638
+ minLength: number;
14640
14639
  nullable: boolean;
14641
14640
  type: string;
14642
14641
  };
@@ -14645,6 +14644,7 @@ declare const _default: {
14645
14644
  type: string;
14646
14645
  };
14647
14646
  user_identity_key: {
14647
+ minLength: number;
14648
14648
  nullable: boolean;
14649
14649
  type: string;
14650
14650
  };
@@ -14995,16 +14995,17 @@ declare const _default: {
14995
14995
  format: string;
14996
14996
  type: string;
14997
14997
  };
14998
- email_address: {
14999
- format: string;
15000
- nullable: boolean;
14998
+ display_name: {
14999
+ minLength: number;
15001
15000
  type: string;
15002
15001
  };
15003
- first_name: {
15002
+ email_address: {
15003
+ format: string;
15004
15004
  nullable: boolean;
15005
15005
  type: string;
15006
15006
  };
15007
- last_name: {
15007
+ full_name: {
15008
+ minLength: number;
15008
15009
  nullable: boolean;
15009
15010
  type: string;
15010
15011
  };
@@ -15013,6 +15014,7 @@ declare const _default: {
15013
15014
  type: string;
15014
15015
  };
15015
15016
  user_identity_key: {
15017
+ minLength: number;
15016
15018
  nullable: boolean;
15017
15019
  type: string;
15018
15020
  };
@@ -15215,16 +15217,17 @@ declare const _default: {
15215
15217
  format: string;
15216
15218
  type: string;
15217
15219
  };
15218
- email_address: {
15219
- format: string;
15220
- nullable: boolean;
15220
+ display_name: {
15221
+ minLength: number;
15221
15222
  type: string;
15222
15223
  };
15223
- first_name: {
15224
+ email_address: {
15225
+ format: string;
15224
15226
  nullable: boolean;
15225
15227
  type: string;
15226
15228
  };
15227
- last_name: {
15229
+ full_name: {
15230
+ minLength: number;
15228
15231
  nullable: boolean;
15229
15232
  type: string;
15230
15233
  };
@@ -15233,6 +15236,7 @@ declare const _default: {
15233
15236
  type: string;
15234
15237
  };
15235
15238
  user_identity_key: {
15239
+ minLength: number;
15236
15240
  nullable: boolean;
15237
15241
  type: string;
15238
15242
  };
@@ -15304,16 +15308,17 @@ declare const _default: {
15304
15308
  format: string;
15305
15309
  type: string;
15306
15310
  };
15307
- email_address: {
15308
- format: string;
15309
- nullable: boolean;
15311
+ display_name: {
15312
+ minLength: number;
15310
15313
  type: string;
15311
15314
  };
15312
- first_name: {
15315
+ email_address: {
15316
+ format: string;
15313
15317
  nullable: boolean;
15314
15318
  type: string;
15315
15319
  };
15316
- last_name: {
15320
+ full_name: {
15321
+ minLength: number;
15317
15322
  nullable: boolean;
15318
15323
  type: string;
15319
15324
  };
@@ -15322,6 +15327,7 @@ declare const _default: {
15322
15327
  type: string;
15323
15328
  };
15324
15329
  user_identity_key: {
15330
+ minLength: number;
15325
15331
  nullable: boolean;
15326
15332
  type: string;
15327
15333
  };
@@ -23613,17 +23619,16 @@ interface Routes {
23613
23619
  commonParams: {
23614
23620
  user_identity_key?: (string | null) | undefined;
23615
23621
  email_address?: (string | null) | undefined;
23616
- first_name?: (string | null) | undefined;
23617
- last_name?: (string | null) | undefined;
23622
+ full_name?: (string | null) | undefined;
23618
23623
  };
23619
23624
  formData: {};
23620
23625
  jsonResponse: {
23621
23626
  user_identity: {
23622
23627
  user_identity_id: string;
23623
- user_identity_key?: (string | null) | undefined;
23624
- email_address?: (string | null) | undefined;
23625
- first_name?: (string | null) | undefined;
23626
- last_name?: (string | null) | undefined;
23628
+ user_identity_key: string | null;
23629
+ email_address: string | null;
23630
+ display_name: string;
23631
+ full_name: string | null;
23627
23632
  created_at: string;
23628
23633
  workspace_id: string;
23629
23634
  };
@@ -23705,10 +23710,10 @@ interface Routes {
23705
23710
  jsonResponse: {
23706
23711
  user_identity: {
23707
23712
  user_identity_id: string;
23708
- user_identity_key?: (string | null) | undefined;
23709
- email_address?: (string | null) | undefined;
23710
- first_name?: (string | null) | undefined;
23711
- last_name?: (string | null) | undefined;
23713
+ user_identity_key: string | null;
23714
+ email_address: string | null;
23715
+ display_name: string;
23716
+ full_name: string | null;
23712
23717
  created_at: string;
23713
23718
  workspace_id: string;
23714
23719
  };
@@ -23736,10 +23741,10 @@ interface Routes {
23736
23741
  jsonResponse: {
23737
23742
  user_identities: Array<{
23738
23743
  user_identity_id: string;
23739
- user_identity_key?: (string | null) | undefined;
23740
- email_address?: (string | null) | undefined;
23741
- first_name?: (string | null) | undefined;
23742
- last_name?: (string | null) | undefined;
23744
+ user_identity_key: string | null;
23745
+ email_address: string | null;
23746
+ display_name: string;
23747
+ full_name: string | null;
23743
23748
  created_at: string;
23744
23749
  workspace_id: string;
23745
23750
  }>;
@@ -14520,15 +14520,13 @@ declare const _default: {
14520
14520
  nullable: boolean;
14521
14521
  type: string;
14522
14522
  };
14523
- first_name: {
14524
- nullable: boolean;
14525
- type: string;
14526
- };
14527
- last_name: {
14523
+ full_name: {
14524
+ minLength: number;
14528
14525
  nullable: boolean;
14529
14526
  type: string;
14530
14527
  };
14531
14528
  user_identity_key: {
14529
+ minLength: number;
14532
14530
  nullable: boolean;
14533
14531
  type: string;
14534
14532
  };
@@ -14553,16 +14551,17 @@ declare const _default: {
14553
14551
  format: string;
14554
14552
  type: string;
14555
14553
  };
14556
- email_address: {
14557
- format: string;
14558
- nullable: boolean;
14554
+ display_name: {
14555
+ minLength: number;
14559
14556
  type: string;
14560
14557
  };
14561
- first_name: {
14558
+ email_address: {
14559
+ format: string;
14562
14560
  nullable: boolean;
14563
14561
  type: string;
14564
14562
  };
14565
- last_name: {
14563
+ full_name: {
14564
+ minLength: number;
14566
14565
  nullable: boolean;
14567
14566
  type: string;
14568
14567
  };
@@ -14571,6 +14570,7 @@ declare const _default: {
14571
14570
  type: string;
14572
14571
  };
14573
14572
  user_identity_key: {
14573
+ minLength: number;
14574
14574
  nullable: boolean;
14575
14575
  type: string;
14576
14576
  };
@@ -14921,16 +14921,17 @@ declare const _default: {
14921
14921
  format: string;
14922
14922
  type: string;
14923
14923
  };
14924
- email_address: {
14925
- format: string;
14926
- nullable: boolean;
14924
+ display_name: {
14925
+ minLength: number;
14927
14926
  type: string;
14928
14927
  };
14929
- first_name: {
14928
+ email_address: {
14929
+ format: string;
14930
14930
  nullable: boolean;
14931
14931
  type: string;
14932
14932
  };
14933
- last_name: {
14933
+ full_name: {
14934
+ minLength: number;
14934
14935
  nullable: boolean;
14935
14936
  type: string;
14936
14937
  };
@@ -14939,6 +14940,7 @@ declare const _default: {
14939
14940
  type: string;
14940
14941
  };
14941
14942
  user_identity_key: {
14943
+ minLength: number;
14942
14944
  nullable: boolean;
14943
14945
  type: string;
14944
14946
  };
@@ -15141,16 +15143,17 @@ declare const _default: {
15141
15143
  format: string;
15142
15144
  type: string;
15143
15145
  };
15144
- email_address: {
15145
- format: string;
15146
- nullable: boolean;
15146
+ display_name: {
15147
+ minLength: number;
15147
15148
  type: string;
15148
15149
  };
15149
- first_name: {
15150
+ email_address: {
15151
+ format: string;
15150
15152
  nullable: boolean;
15151
15153
  type: string;
15152
15154
  };
15153
- last_name: {
15155
+ full_name: {
15156
+ minLength: number;
15154
15157
  nullable: boolean;
15155
15158
  type: string;
15156
15159
  };
@@ -15159,6 +15162,7 @@ declare const _default: {
15159
15162
  type: string;
15160
15163
  };
15161
15164
  user_identity_key: {
15165
+ minLength: number;
15162
15166
  nullable: boolean;
15163
15167
  type: string;
15164
15168
  };
@@ -15230,16 +15234,17 @@ declare const _default: {
15230
15234
  format: string;
15231
15235
  type: string;
15232
15236
  };
15233
- email_address: {
15234
- format: string;
15235
- nullable: boolean;
15237
+ display_name: {
15238
+ minLength: number;
15236
15239
  type: string;
15237
15240
  };
15238
- first_name: {
15241
+ email_address: {
15242
+ format: string;
15239
15243
  nullable: boolean;
15240
15244
  type: string;
15241
15245
  };
15242
- last_name: {
15246
+ full_name: {
15247
+ minLength: number;
15243
15248
  nullable: boolean;
15244
15249
  type: string;
15245
15250
  };
@@ -15248,6 +15253,7 @@ declare const _default: {
15248
15253
  type: string;
15249
15254
  };
15250
15255
  user_identity_key: {
15256
+ minLength: number;
15251
15257
  nullable: boolean;
15252
15258
  type: string;
15253
15259
  };
@@ -10950,9 +10950,12 @@ export default {
10950
10950
  nullable: true,
10951
10951
  type: 'string',
10952
10952
  },
10953
- first_name: { nullable: true, type: 'string' },
10954
- last_name: { nullable: true, type: 'string' },
10955
- user_identity_key: { nullable: true, type: 'string' },
10953
+ full_name: { minLength: 1, nullable: true, type: 'string' },
10954
+ user_identity_key: {
10955
+ minLength: 1,
10956
+ nullable: true,
10957
+ type: 'string',
10958
+ },
10956
10959
  },
10957
10960
  type: 'object',
10958
10961
  },
@@ -10969,19 +10972,31 @@ export default {
10969
10972
  user_identity: {
10970
10973
  properties: {
10971
10974
  created_at: { format: 'date-time', type: 'string' },
10975
+ display_name: { minLength: 1, type: 'string' },
10972
10976
  email_address: {
10973
10977
  format: 'email',
10974
10978
  nullable: true,
10975
10979
  type: 'string',
10976
10980
  },
10977
- first_name: { nullable: true, type: 'string' },
10978
- last_name: { nullable: true, type: 'string' },
10981
+ full_name: {
10982
+ minLength: 1,
10983
+ nullable: true,
10984
+ type: 'string',
10985
+ },
10979
10986
  user_identity_id: { format: 'uuid', type: 'string' },
10980
- user_identity_key: { nullable: true, type: 'string' },
10987
+ user_identity_key: {
10988
+ minLength: 1,
10989
+ nullable: true,
10990
+ type: 'string',
10991
+ },
10981
10992
  workspace_id: { format: 'uuid', type: 'string' },
10982
10993
  },
10983
10994
  required: [
10984
10995
  'user_identity_id',
10996
+ 'user_identity_key',
10997
+ 'email_address',
10998
+ 'display_name',
10999
+ 'full_name',
10985
11000
  'created_at',
10986
11001
  'workspace_id',
10987
11002
  ],
@@ -11231,19 +11246,31 @@ export default {
11231
11246
  user_identity: {
11232
11247
  properties: {
11233
11248
  created_at: { format: 'date-time', type: 'string' },
11249
+ display_name: { minLength: 1, type: 'string' },
11234
11250
  email_address: {
11235
11251
  format: 'email',
11236
11252
  nullable: true,
11237
11253
  type: 'string',
11238
11254
  },
11239
- first_name: { nullable: true, type: 'string' },
11240
- last_name: { nullable: true, type: 'string' },
11255
+ full_name: {
11256
+ minLength: 1,
11257
+ nullable: true,
11258
+ type: 'string',
11259
+ },
11241
11260
  user_identity_id: { format: 'uuid', type: 'string' },
11242
- user_identity_key: { nullable: true, type: 'string' },
11261
+ user_identity_key: {
11262
+ minLength: 1,
11263
+ nullable: true,
11264
+ type: 'string',
11265
+ },
11243
11266
  workspace_id: { format: 'uuid', type: 'string' },
11244
11267
  },
11245
11268
  required: [
11246
11269
  'user_identity_id',
11270
+ 'user_identity_key',
11271
+ 'email_address',
11272
+ 'display_name',
11273
+ 'full_name',
11247
11274
  'created_at',
11248
11275
  'workspace_id',
11249
11276
  ],
@@ -11370,19 +11397,31 @@ export default {
11370
11397
  items: {
11371
11398
  properties: {
11372
11399
  created_at: { format: 'date-time', type: 'string' },
11400
+ display_name: { minLength: 1, type: 'string' },
11373
11401
  email_address: {
11374
11402
  format: 'email',
11375
11403
  nullable: true,
11376
11404
  type: 'string',
11377
11405
  },
11378
- first_name: { nullable: true, type: 'string' },
11379
- last_name: { nullable: true, type: 'string' },
11406
+ full_name: {
11407
+ minLength: 1,
11408
+ nullable: true,
11409
+ type: 'string',
11410
+ },
11380
11411
  user_identity_id: { format: 'uuid', type: 'string' },
11381
- user_identity_key: { nullable: true, type: 'string' },
11412
+ user_identity_key: {
11413
+ minLength: 1,
11414
+ nullable: true,
11415
+ type: 'string',
11416
+ },
11382
11417
  workspace_id: { format: 'uuid', type: 'string' },
11383
11418
  },
11384
11419
  required: [
11385
11420
  'user_identity_id',
11421
+ 'user_identity_key',
11422
+ 'email_address',
11423
+ 'display_name',
11424
+ 'full_name',
11386
11425
  'created_at',
11387
11426
  'workspace_id',
11388
11427
  ],
@@ -11424,19 +11463,31 @@ export default {
11424
11463
  items: {
11425
11464
  properties: {
11426
11465
  created_at: { format: 'date-time', type: 'string' },
11466
+ display_name: { minLength: 1, type: 'string' },
11427
11467
  email_address: {
11428
11468
  format: 'email',
11429
11469
  nullable: true,
11430
11470
  type: 'string',
11431
11471
  },
11432
- first_name: { nullable: true, type: 'string' },
11433
- last_name: { nullable: true, type: 'string' },
11472
+ full_name: {
11473
+ minLength: 1,
11474
+ nullable: true,
11475
+ type: 'string',
11476
+ },
11434
11477
  user_identity_id: { format: 'uuid', type: 'string' },
11435
- user_identity_key: { nullable: true, type: 'string' },
11478
+ user_identity_key: {
11479
+ minLength: 1,
11480
+ nullable: true,
11481
+ type: 'string',
11482
+ },
11436
11483
  workspace_id: { format: 'uuid', type: 'string' },
11437
11484
  },
11438
11485
  required: [
11439
11486
  'user_identity_id',
11487
+ 'user_identity_key',
11488
+ 'email_address',
11489
+ 'display_name',
11490
+ 'full_name',
11440
11491
  'created_at',
11441
11492
  'workspace_id',
11442
11493
  ],