@seamapi/types 1.13.0 → 1.15.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.
@@ -36,6 +36,9 @@ declare const _default: {
36
36
  is_backup_access_code_available: {
37
37
  type: string;
38
38
  };
39
+ is_external_modification_allowed: {
40
+ type: string;
41
+ };
39
42
  is_managed: {
40
43
  enum: boolean[];
41
44
  type: string;
@@ -2579,6 +2582,9 @@ declare const _default: {
2579
2582
  format: string;
2580
2583
  type: string;
2581
2584
  };
2585
+ user_identifier_key: {
2586
+ type: string;
2587
+ };
2582
2588
  };
2583
2589
  type: string;
2584
2590
  };
@@ -3519,6 +3525,9 @@ declare const _default: {
3519
3525
  ends_at: {
3520
3526
  type: string;
3521
3527
  };
3528
+ is_managed: {
3529
+ type: string;
3530
+ };
3522
3531
  name: {
3523
3532
  type: string;
3524
3533
  };
@@ -3626,6 +3635,9 @@ declare const _default: {
3626
3635
  ends_at: {
3627
3636
  type: string;
3628
3637
  };
3638
+ is_managed: {
3639
+ type: string;
3640
+ };
3629
3641
  name: {
3630
3642
  type: string;
3631
3643
  };
@@ -4389,7 +4401,7 @@ declare const _default: {
4389
4401
  'x-fern-sdk-method-name': string;
4390
4402
  };
4391
4403
  };
4392
- '/acs/systems/get': {
4404
+ '/acs/credentials/create': {
4393
4405
  post: {
4394
4406
  operationId: string;
4395
4407
  requestBody: {
@@ -4397,10 +4409,19 @@ declare const _default: {
4397
4409
  'application/json': {
4398
4410
  schema: {
4399
4411
  properties: {
4400
- acs_system_id: {
4412
+ acs_user_id: {
4401
4413
  format: string;
4402
4414
  type: string;
4403
4415
  };
4416
+ code: {
4417
+ oneOf: ({
4418
+ pattern: string;
4419
+ type: string;
4420
+ } | {
4421
+ pattern?: never;
4422
+ type?: never;
4423
+ })[];
4424
+ };
4404
4425
  };
4405
4426
  required: string[];
4406
4427
  type: string;
@@ -4414,8 +4435,35 @@ declare const _default: {
4414
4435
  'application/json': {
4415
4436
  schema: {
4416
4437
  properties: {
4417
- acs_system: {
4418
- $ref: string;
4438
+ acs_credential: {
4439
+ properties: {
4440
+ acs_credential_id: {
4441
+ format: string;
4442
+ type: string;
4443
+ };
4444
+ acs_system_id: {
4445
+ format: string;
4446
+ type: string;
4447
+ };
4448
+ acs_user_id: {
4449
+ format: string;
4450
+ type: string;
4451
+ };
4452
+ code: {
4453
+ nullable: boolean;
4454
+ type: string;
4455
+ };
4456
+ created_at: {
4457
+ format: string;
4458
+ type: string;
4459
+ };
4460
+ workspace_id: {
4461
+ format: string;
4462
+ type: string;
4463
+ };
4464
+ };
4465
+ required: string[];
4466
+ type: string;
4419
4467
  };
4420
4468
  ok: {
4421
4469
  type: string;
@@ -4457,18 +4505,221 @@ declare const _default: {
4457
4505
  'x-fern-sdk-method-name': string;
4458
4506
  };
4459
4507
  };
4460
- '/acs/systems/list': {
4461
- get: {
4508
+ '/acs/credentials/delete': {
4509
+ post: {
4462
4510
  operationId: string;
4511
+ requestBody: {
4512
+ content: {
4513
+ 'application/json': {
4514
+ schema: {
4515
+ properties: {
4516
+ acs_credential_id: {
4517
+ format: string;
4518
+ type: string;
4519
+ };
4520
+ };
4521
+ required: string[];
4522
+ type: string;
4523
+ };
4524
+ };
4525
+ };
4526
+ };
4463
4527
  responses: {
4464
4528
  200: {
4465
4529
  content: {
4466
4530
  'application/json': {
4467
4531
  schema: {
4468
4532
  properties: {
4469
- acs_systems: {
4533
+ ok: {
4534
+ type: string;
4535
+ };
4536
+ };
4537
+ required: string[];
4538
+ type: string;
4539
+ };
4540
+ };
4541
+ };
4542
+ description: string;
4543
+ };
4544
+ 400: {
4545
+ description: string;
4546
+ };
4547
+ 401: {
4548
+ description: string;
4549
+ };
4550
+ };
4551
+ security: ({
4552
+ access_token: never[];
4553
+ seam_workspace: never[];
4554
+ seam_client_session_token?: never;
4555
+ client_session_token?: never;
4556
+ } | {
4557
+ seam_client_session_token: never[];
4558
+ access_token?: never;
4559
+ seam_workspace?: never;
4560
+ client_session_token?: never;
4561
+ } | {
4562
+ client_session_token: never[];
4563
+ access_token?: never;
4564
+ seam_workspace?: never;
4565
+ seam_client_session_token?: never;
4566
+ })[];
4567
+ summary: string;
4568
+ tags: never[];
4569
+ 'x-fern-sdk-group-name': string[];
4570
+ 'x-fern-sdk-method-name': string;
4571
+ };
4572
+ };
4573
+ '/acs/credentials/get': {
4574
+ post: {
4575
+ operationId: string;
4576
+ requestBody: {
4577
+ content: {
4578
+ 'application/json': {
4579
+ schema: {
4580
+ properties: {
4581
+ acs_credentials_id: {
4582
+ format: string;
4583
+ type: string;
4584
+ };
4585
+ };
4586
+ required: string[];
4587
+ type: string;
4588
+ };
4589
+ };
4590
+ };
4591
+ };
4592
+ responses: {
4593
+ 200: {
4594
+ content: {
4595
+ 'application/json': {
4596
+ schema: {
4597
+ properties: {
4598
+ acs_credential: {
4599
+ properties: {
4600
+ acs_credential_id: {
4601
+ format: string;
4602
+ type: string;
4603
+ };
4604
+ acs_system_id: {
4605
+ format: string;
4606
+ type: string;
4607
+ };
4608
+ acs_user_id: {
4609
+ format: string;
4610
+ type: string;
4611
+ };
4612
+ code: {
4613
+ nullable: boolean;
4614
+ type: string;
4615
+ };
4616
+ created_at: {
4617
+ format: string;
4618
+ type: string;
4619
+ };
4620
+ workspace_id: {
4621
+ format: string;
4622
+ type: string;
4623
+ };
4624
+ };
4625
+ required: string[];
4626
+ type: string;
4627
+ };
4628
+ ok: {
4629
+ type: string;
4630
+ };
4631
+ };
4632
+ required: string[];
4633
+ type: string;
4634
+ };
4635
+ };
4636
+ };
4637
+ description: string;
4638
+ };
4639
+ 400: {
4640
+ description: string;
4641
+ };
4642
+ 401: {
4643
+ description: string;
4644
+ };
4645
+ };
4646
+ security: ({
4647
+ access_token: never[];
4648
+ seam_workspace: never[];
4649
+ seam_client_session_token?: never;
4650
+ client_session_token?: never;
4651
+ } | {
4652
+ seam_client_session_token: never[];
4653
+ access_token?: never;
4654
+ seam_workspace?: never;
4655
+ client_session_token?: never;
4656
+ } | {
4657
+ client_session_token: never[];
4658
+ access_token?: never;
4659
+ seam_workspace?: never;
4660
+ seam_client_session_token?: never;
4661
+ })[];
4662
+ summary: string;
4663
+ tags: never[];
4664
+ 'x-fern-sdk-group-name': string[];
4665
+ 'x-fern-sdk-method-name': string;
4666
+ };
4667
+ };
4668
+ '/acs/credentials/list': {
4669
+ post: {
4670
+ operationId: string;
4671
+ requestBody: {
4672
+ content: {
4673
+ 'application/json': {
4674
+ schema: {
4675
+ properties: {
4676
+ acs_user_id: {
4677
+ format: string;
4678
+ type: string;
4679
+ };
4680
+ };
4681
+ required: string[];
4682
+ type: string;
4683
+ };
4684
+ };
4685
+ };
4686
+ };
4687
+ responses: {
4688
+ 200: {
4689
+ content: {
4690
+ 'application/json': {
4691
+ schema: {
4692
+ properties: {
4693
+ acs_credentials: {
4470
4694
  items: {
4471
- $ref: string;
4695
+ properties: {
4696
+ acs_credential_id: {
4697
+ format: string;
4698
+ type: string;
4699
+ };
4700
+ acs_system_id: {
4701
+ format: string;
4702
+ type: string;
4703
+ };
4704
+ acs_user_id: {
4705
+ format: string;
4706
+ type: string;
4707
+ };
4708
+ code: {
4709
+ nullable: boolean;
4710
+ type: string;
4711
+ };
4712
+ created_at: {
4713
+ format: string;
4714
+ type: string;
4715
+ };
4716
+ workspace_id: {
4717
+ format: string;
4718
+ type: string;
4719
+ };
4720
+ };
4721
+ required: string[];
4722
+ type: string;
4472
4723
  };
4473
4724
  type: string;
4474
4725
  };
@@ -4508,10 +4759,96 @@ declare const _default: {
4508
4759
  })[];
4509
4760
  summary: string;
4510
4761
  tags: never[];
4511
- 'x-fern-ignore': boolean;
4762
+ 'x-fern-sdk-group-name': string[];
4763
+ 'x-fern-sdk-method-name': string;
4512
4764
  };
4765
+ };
4766
+ '/acs/systems/get': {
4513
4767
  post: {
4514
4768
  operationId: string;
4769
+ requestBody: {
4770
+ content: {
4771
+ 'application/json': {
4772
+ schema: {
4773
+ properties: {
4774
+ acs_system_id: {
4775
+ format: string;
4776
+ type: string;
4777
+ };
4778
+ };
4779
+ required: string[];
4780
+ type: string;
4781
+ };
4782
+ };
4783
+ };
4784
+ };
4785
+ responses: {
4786
+ 200: {
4787
+ content: {
4788
+ 'application/json': {
4789
+ schema: {
4790
+ properties: {
4791
+ acs_system: {
4792
+ $ref: string;
4793
+ };
4794
+ ok: {
4795
+ type: string;
4796
+ };
4797
+ };
4798
+ required: string[];
4799
+ type: string;
4800
+ };
4801
+ };
4802
+ };
4803
+ description: string;
4804
+ };
4805
+ 400: {
4806
+ description: string;
4807
+ };
4808
+ 401: {
4809
+ description: string;
4810
+ };
4811
+ };
4812
+ security: ({
4813
+ access_token: never[];
4814
+ seam_workspace: never[];
4815
+ seam_client_session_token?: never;
4816
+ client_session_token?: never;
4817
+ } | {
4818
+ seam_client_session_token: never[];
4819
+ access_token?: never;
4820
+ seam_workspace?: never;
4821
+ client_session_token?: never;
4822
+ } | {
4823
+ client_session_token: never[];
4824
+ access_token?: never;
4825
+ seam_workspace?: never;
4826
+ seam_client_session_token?: never;
4827
+ })[];
4828
+ summary: string;
4829
+ tags: never[];
4830
+ 'x-fern-sdk-group-name': string[];
4831
+ 'x-fern-sdk-method-name': string;
4832
+ };
4833
+ };
4834
+ '/acs/systems/list': {
4835
+ post: {
4836
+ operationId: string;
4837
+ requestBody: {
4838
+ content: {
4839
+ 'application/json': {
4840
+ schema: {
4841
+ properties: {
4842
+ connected_account_id: {
4843
+ format: string;
4844
+ type: string;
4845
+ };
4846
+ };
4847
+ type: string;
4848
+ };
4849
+ };
4850
+ };
4851
+ };
4515
4852
  responses: {
4516
4853
  200: {
4517
4854
  content: {
@@ -6656,6 +6993,9 @@ declare const _default: {
6656
6993
  enum: string[];
6657
6994
  type: string;
6658
6995
  };
6996
+ user_identifier_key: {
6997
+ type: string;
6998
+ };
6659
6999
  };
6660
7000
  type: string;
6661
7001
  };
@@ -6935,6 +7275,9 @@ declare const _default: {
6935
7275
  enum: string[];
6936
7276
  type: string;
6937
7277
  };
7278
+ user_identifier_key: {
7279
+ type: string;
7280
+ };
6938
7281
  };
6939
7282
  type: string;
6940
7283
  };
@@ -7832,6 +8175,9 @@ declare const _default: {
7832
8175
  enum: string[];
7833
8176
  type: string;
7834
8177
  };
8178
+ user_identifier_key: {
8179
+ type: string;
8180
+ };
7835
8181
  };
7836
8182
  type: string;
7837
8183
  };
@@ -9539,6 +9885,9 @@ declare const _default: {
9539
9885
  enum: string[];
9540
9886
  type: string;
9541
9887
  };
9888
+ user_identifier_key: {
9889
+ type: string;
9890
+ };
9542
9891
  };
9543
9892
  type: string;
9544
9893
  };