@seamapi/types 1.43.0 → 1.44.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.
Files changed (36) hide show
  1. package/dist/connect.cjs +243 -11
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +456 -18
  4. package/lib/seam/connect/openapi.d.ts +329 -0
  5. package/lib/seam/connect/openapi.js +224 -8
  6. package/lib/seam/connect/openapi.js.map +1 -1
  7. package/lib/seam/connect/route-types.d.ts +98 -15
  8. package/lib/seam/connect/stable/model-types.d.ts +1 -1
  9. package/lib/seam/connect/stable/models/connect-webview.d.ts +21 -0
  10. package/lib/seam/connect/stable/models/connect-webview.js +8 -0
  11. package/lib/seam/connect/stable/models/connect-webview.js.map +1 -1
  12. package/lib/seam/connect/stable/models/custom-metadata.d.ts +3 -0
  13. package/lib/seam/connect/stable/models/custom-metadata.js +7 -0
  14. package/lib/seam/connect/stable/models/custom-metadata.js.map +1 -0
  15. package/lib/seam/connect/stable/models/index.d.ts +1 -0
  16. package/lib/seam/connect/stable/models/index.js +1 -0
  17. package/lib/seam/connect/stable/models/index.js.map +1 -1
  18. package/lib/seam/connect/stable/schemas.d.ts +1 -1
  19. package/lib/seam/connect/stable/schemas.js +1 -1
  20. package/lib/seam/connect/stable/schemas.js.map +1 -1
  21. package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -7
  22. package/lib/seam/connect/unstable/models/acs/credential.js +5 -2
  23. package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
  24. package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
  25. package/lib/seam/connect/unstable/models/acs/user.js +1 -1
  26. package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
  27. package/package.json +1 -1
  28. package/src/lib/seam/connect/openapi.ts +224 -8
  29. package/src/lib/seam/connect/route-types.ts +98 -15
  30. package/src/lib/seam/connect/stable/model-types.ts +1 -1
  31. package/src/lib/seam/connect/stable/models/connect-webview.ts +9 -0
  32. package/src/lib/seam/connect/stable/models/custom-metadata.ts +12 -0
  33. package/src/lib/seam/connect/stable/models/index.ts +1 -0
  34. package/src/lib/seam/connect/stable/schemas.ts +1 -1
  35. package/src/lib/seam/connect/unstable/models/acs/credential.ts +5 -2
  36. package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -1
@@ -437,6 +437,14 @@ declare const _default: {
437
437
  any_provider_allowed: {
438
438
  type: string;
439
439
  };
440
+ authorized_at: {
441
+ format: string;
442
+ nullable: boolean;
443
+ type: string;
444
+ };
445
+ automatically_manage_new_devices: {
446
+ type: string;
447
+ };
440
448
  connect_webview_id: {
441
449
  format: string;
442
450
  type: string;
@@ -449,6 +457,38 @@ declare const _default: {
449
457
  format: string;
450
458
  type: string;
451
459
  };
460
+ custom_metadata: {
461
+ additionalProperties: {
462
+ nullable: boolean;
463
+ oneOf: ({
464
+ maxLength: number;
465
+ type: string;
466
+ format?: never;
467
+ nullable?: never;
468
+ } | {
469
+ type: string;
470
+ maxLength?: never;
471
+ format?: never;
472
+ nullable?: never;
473
+ } | {
474
+ format: string;
475
+ nullable: boolean;
476
+ type: string;
477
+ maxLength?: never;
478
+ })[];
479
+ };
480
+ type: string;
481
+ };
482
+ custom_redirect_failure_url: {
483
+ format: string;
484
+ nullable: boolean;
485
+ type: string;
486
+ };
487
+ custom_redirect_url: {
488
+ format: string;
489
+ nullable: boolean;
490
+ type: string;
491
+ };
452
492
  device_selection_mode: {
453
493
  enum: string[];
454
494
  type: string;
@@ -456,6 +496,10 @@ declare const _default: {
456
496
  login_successful: {
457
497
  type: string;
458
498
  };
499
+ selected_provider: {
500
+ nullable: boolean;
501
+ type: string;
502
+ };
459
503
  status: {
460
504
  enum: string[];
461
505
  type: string;
@@ -464,6 +508,9 @@ declare const _default: {
464
508
  format: string;
465
509
  type: string;
466
510
  };
511
+ wait_for_device_creation: {
512
+ type: string;
513
+ };
467
514
  workspace_id: {
468
515
  format: string;
469
516
  type: string;
@@ -4577,6 +4624,141 @@ declare const _default: {
4577
4624
  'x-fern-sdk-method-name': string;
4578
4625
  };
4579
4626
  };
4627
+ '/acs/credentials/assign': {
4628
+ patch: {
4629
+ operationId: string;
4630
+ requestBody: {
4631
+ content: {
4632
+ 'application/json': {
4633
+ schema: {
4634
+ properties: {
4635
+ acs_credential_id: {
4636
+ format: string;
4637
+ type: string;
4638
+ };
4639
+ acs_user_id: {
4640
+ format: string;
4641
+ type: string;
4642
+ };
4643
+ };
4644
+ required: string[];
4645
+ type: string;
4646
+ };
4647
+ };
4648
+ };
4649
+ };
4650
+ responses: {
4651
+ 200: {
4652
+ content: {
4653
+ 'application/json': {
4654
+ schema: {
4655
+ properties: {
4656
+ ok: {
4657
+ type: string;
4658
+ };
4659
+ };
4660
+ required: string[];
4661
+ type: string;
4662
+ };
4663
+ };
4664
+ };
4665
+ description: string;
4666
+ };
4667
+ 400: {
4668
+ description: string;
4669
+ };
4670
+ 401: {
4671
+ description: string;
4672
+ };
4673
+ };
4674
+ security: ({
4675
+ access_token: never[];
4676
+ seam_workspace: never[];
4677
+ seam_client_session_token?: never;
4678
+ client_session_token?: never;
4679
+ } | {
4680
+ seam_client_session_token: never[];
4681
+ access_token?: never;
4682
+ seam_workspace?: never;
4683
+ client_session_token?: never;
4684
+ } | {
4685
+ client_session_token: never[];
4686
+ access_token?: never;
4687
+ seam_workspace?: never;
4688
+ seam_client_session_token?: never;
4689
+ })[];
4690
+ summary: string;
4691
+ tags: never[];
4692
+ 'x-fern-ignore': boolean;
4693
+ };
4694
+ post: {
4695
+ operationId: string;
4696
+ requestBody: {
4697
+ content: {
4698
+ 'application/json': {
4699
+ schema: {
4700
+ properties: {
4701
+ acs_credential_id: {
4702
+ format: string;
4703
+ type: string;
4704
+ };
4705
+ acs_user_id: {
4706
+ format: string;
4707
+ type: string;
4708
+ };
4709
+ };
4710
+ required: string[];
4711
+ type: string;
4712
+ };
4713
+ };
4714
+ };
4715
+ };
4716
+ responses: {
4717
+ 200: {
4718
+ content: {
4719
+ 'application/json': {
4720
+ schema: {
4721
+ properties: {
4722
+ ok: {
4723
+ type: string;
4724
+ };
4725
+ };
4726
+ required: string[];
4727
+ type: string;
4728
+ };
4729
+ };
4730
+ };
4731
+ description: string;
4732
+ };
4733
+ 400: {
4734
+ description: string;
4735
+ };
4736
+ 401: {
4737
+ description: string;
4738
+ };
4739
+ };
4740
+ security: ({
4741
+ access_token: never[];
4742
+ seam_workspace: never[];
4743
+ seam_client_session_token?: never;
4744
+ client_session_token?: never;
4745
+ } | {
4746
+ seam_client_session_token: never[];
4747
+ access_token?: never;
4748
+ seam_workspace?: never;
4749
+ client_session_token?: never;
4750
+ } | {
4751
+ client_session_token: never[];
4752
+ access_token?: never;
4753
+ seam_workspace?: never;
4754
+ seam_client_session_token?: never;
4755
+ })[];
4756
+ summary: string;
4757
+ tags: never[];
4758
+ 'x-fern-sdk-group-name': string[];
4759
+ 'x-fern-sdk-method-name': string;
4760
+ };
4761
+ };
4580
4762
  '/acs/credentials/create': {
4581
4763
  post: {
4582
4764
  operationId: string;
@@ -4981,6 +5163,141 @@ declare const _default: {
4981
5163
  'x-fern-sdk-method-name': string;
4982
5164
  };
4983
5165
  };
5166
+ '/acs/credentials/unassign': {
5167
+ patch: {
5168
+ operationId: string;
5169
+ requestBody: {
5170
+ content: {
5171
+ 'application/json': {
5172
+ schema: {
5173
+ properties: {
5174
+ acs_credential_id: {
5175
+ format: string;
5176
+ type: string;
5177
+ };
5178
+ acs_user_id: {
5179
+ format: string;
5180
+ type: string;
5181
+ };
5182
+ };
5183
+ required: string[];
5184
+ type: string;
5185
+ };
5186
+ };
5187
+ };
5188
+ };
5189
+ responses: {
5190
+ 200: {
5191
+ content: {
5192
+ 'application/json': {
5193
+ schema: {
5194
+ properties: {
5195
+ ok: {
5196
+ type: string;
5197
+ };
5198
+ };
5199
+ required: string[];
5200
+ type: string;
5201
+ };
5202
+ };
5203
+ };
5204
+ description: string;
5205
+ };
5206
+ 400: {
5207
+ description: string;
5208
+ };
5209
+ 401: {
5210
+ description: string;
5211
+ };
5212
+ };
5213
+ security: ({
5214
+ access_token: never[];
5215
+ seam_workspace: never[];
5216
+ seam_client_session_token?: never;
5217
+ client_session_token?: never;
5218
+ } | {
5219
+ seam_client_session_token: never[];
5220
+ access_token?: never;
5221
+ seam_workspace?: never;
5222
+ client_session_token?: never;
5223
+ } | {
5224
+ client_session_token: never[];
5225
+ access_token?: never;
5226
+ seam_workspace?: never;
5227
+ seam_client_session_token?: never;
5228
+ })[];
5229
+ summary: string;
5230
+ tags: never[];
5231
+ 'x-fern-ignore': boolean;
5232
+ };
5233
+ post: {
5234
+ operationId: string;
5235
+ requestBody: {
5236
+ content: {
5237
+ 'application/json': {
5238
+ schema: {
5239
+ properties: {
5240
+ acs_credential_id: {
5241
+ format: string;
5242
+ type: string;
5243
+ };
5244
+ acs_user_id: {
5245
+ format: string;
5246
+ type: string;
5247
+ };
5248
+ };
5249
+ required: string[];
5250
+ type: string;
5251
+ };
5252
+ };
5253
+ };
5254
+ };
5255
+ responses: {
5256
+ 200: {
5257
+ content: {
5258
+ 'application/json': {
5259
+ schema: {
5260
+ properties: {
5261
+ ok: {
5262
+ type: string;
5263
+ };
5264
+ };
5265
+ required: string[];
5266
+ type: string;
5267
+ };
5268
+ };
5269
+ };
5270
+ description: string;
5271
+ };
5272
+ 400: {
5273
+ description: string;
5274
+ };
5275
+ 401: {
5276
+ description: string;
5277
+ };
5278
+ };
5279
+ security: ({
5280
+ access_token: never[];
5281
+ seam_workspace: never[];
5282
+ seam_client_session_token?: never;
5283
+ client_session_token?: never;
5284
+ } | {
5285
+ seam_client_session_token: never[];
5286
+ access_token?: never;
5287
+ seam_workspace?: never;
5288
+ client_session_token?: never;
5289
+ } | {
5290
+ client_session_token: never[];
5291
+ access_token?: never;
5292
+ seam_workspace?: never;
5293
+ seam_client_session_token?: never;
5294
+ })[];
5295
+ summary: string;
5296
+ tags: never[];
5297
+ 'x-fern-sdk-group-name': string[];
5298
+ 'x-fern-sdk-method-name': string;
5299
+ };
5300
+ };
4984
5301
  '/acs/systems/get': {
4985
5302
  post: {
4986
5303
  operationId: string;
@@ -5253,6 +5570,10 @@ declare const _default: {
5253
5570
  format: string;
5254
5571
  type: string;
5255
5572
  };
5573
+ email_address: {
5574
+ format: string;
5575
+ type: string;
5576
+ };
5256
5577
  full_name: {
5257
5578
  type: string;
5258
5579
  };
@@ -5723,6 +6044,10 @@ declare const _default: {
5723
6044
  format: string;
5724
6045
  type: string;
5725
6046
  };
6047
+ email_address: {
6048
+ format: string;
6049
+ type: string;
6050
+ };
5726
6051
  full_name: {
5727
6052
  type: string;
5728
6053
  };
@@ -5797,6 +6122,10 @@ declare const _default: {
5797
6122
  format: string;
5798
6123
  type: string;
5799
6124
  };
6125
+ email_address: {
6126
+ format: string;
6127
+ type: string;
6128
+ };
5800
6129
  full_name: {
5801
6130
  type: string;
5802
6131
  };