@seamapi/types 1.12.0 → 1.14.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.
- package/dist/connect.cjs +243 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4378 -339
- package/lib/seam/connect/index.d.ts +1 -0
- package/lib/seam/connect/index.js +1 -0
- package/lib/seam/connect/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +363 -0
- package/lib/seam/connect/openapi.js +242 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +79 -1
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +24 -0
- package/lib/seam/connect/unstable/models/acs/credential.js +11 -0
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js +1 -0
- package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +0 -14
- package/lib/seam/connect/unstable/models/acs/user.js +0 -5
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +242 -0
- package/src/lib/seam/connect/route-types.ts +79 -0
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +13 -0
- package/src/lib/seam/connect/unstable/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/unstable/models/acs/user.ts +0 -8
- package/src/lib/seam/connect/unstable/schemas.ts +1 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as schemas from './stable/schemas.js';
|
|
2
2
|
export { schemas };
|
|
3
3
|
export { default as openapi } from './openapi.js';
|
|
4
|
+
export * from './route-types.js';
|
|
4
5
|
export * from './stable/model-types.js';
|
|
5
6
|
// UPSTREAM: Reserve this named export until nextlove is able to generate this.
|
|
6
7
|
export const routes = {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAA;AAE9C,OAAO,EAAE,OAAO,EAAE,CAAA;AAElB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,cAAc,yBAAyB,CAAA;AAEvC,+EAA+E;AAC/E,MAAM,CAAC,MAAM,MAAM,GAAG,EAAE,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/connect/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,qBAAqB,CAAA;AAE9C,OAAO,EAAE,OAAO,EAAE,CAAA;AAElB,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,cAAc,CAAA;AACjD,cAAc,kBAAkB,CAAA;AAChC,cAAc,yBAAyB,CAAA;AAEvC,+EAA+E;AAC/E,MAAM,CAAC,MAAM,MAAM,GAAG,EAAE,CAAA"}
|
|
@@ -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;
|
|
@@ -3519,6 +3522,9 @@ declare const _default: {
|
|
|
3519
3522
|
ends_at: {
|
|
3520
3523
|
type: string;
|
|
3521
3524
|
};
|
|
3525
|
+
is_managed: {
|
|
3526
|
+
type: string;
|
|
3527
|
+
};
|
|
3522
3528
|
name: {
|
|
3523
3529
|
type: string;
|
|
3524
3530
|
};
|
|
@@ -3626,6 +3632,9 @@ declare const _default: {
|
|
|
3626
3632
|
ends_at: {
|
|
3627
3633
|
type: string;
|
|
3628
3634
|
};
|
|
3635
|
+
is_managed: {
|
|
3636
|
+
type: string;
|
|
3637
|
+
};
|
|
3629
3638
|
name: {
|
|
3630
3639
|
type: string;
|
|
3631
3640
|
};
|
|
@@ -4389,6 +4398,360 @@ declare const _default: {
|
|
|
4389
4398
|
'x-fern-sdk-method-name': string;
|
|
4390
4399
|
};
|
|
4391
4400
|
};
|
|
4401
|
+
'/acs/credentials/create': {
|
|
4402
|
+
post: {
|
|
4403
|
+
operationId: string;
|
|
4404
|
+
requestBody: {
|
|
4405
|
+
content: {
|
|
4406
|
+
'application/json': {
|
|
4407
|
+
schema: {
|
|
4408
|
+
properties: {
|
|
4409
|
+
acs_user_id: {
|
|
4410
|
+
format: string;
|
|
4411
|
+
type: string;
|
|
4412
|
+
};
|
|
4413
|
+
code: {
|
|
4414
|
+
pattern: string;
|
|
4415
|
+
type: string;
|
|
4416
|
+
};
|
|
4417
|
+
};
|
|
4418
|
+
required: string[];
|
|
4419
|
+
type: string;
|
|
4420
|
+
};
|
|
4421
|
+
};
|
|
4422
|
+
};
|
|
4423
|
+
};
|
|
4424
|
+
responses: {
|
|
4425
|
+
200: {
|
|
4426
|
+
content: {
|
|
4427
|
+
'application/json': {
|
|
4428
|
+
schema: {
|
|
4429
|
+
properties: {
|
|
4430
|
+
acs_credential: {
|
|
4431
|
+
properties: {
|
|
4432
|
+
acs_credential_id: {
|
|
4433
|
+
format: string;
|
|
4434
|
+
type: string;
|
|
4435
|
+
};
|
|
4436
|
+
acs_system_id: {
|
|
4437
|
+
format: string;
|
|
4438
|
+
type: string;
|
|
4439
|
+
};
|
|
4440
|
+
acs_user_id: {
|
|
4441
|
+
format: string;
|
|
4442
|
+
type: string;
|
|
4443
|
+
};
|
|
4444
|
+
code: {
|
|
4445
|
+
type: string;
|
|
4446
|
+
};
|
|
4447
|
+
created_at: {
|
|
4448
|
+
format: string;
|
|
4449
|
+
type: string;
|
|
4450
|
+
};
|
|
4451
|
+
workspace_id: {
|
|
4452
|
+
format: string;
|
|
4453
|
+
type: string;
|
|
4454
|
+
};
|
|
4455
|
+
};
|
|
4456
|
+
required: string[];
|
|
4457
|
+
type: string;
|
|
4458
|
+
};
|
|
4459
|
+
ok: {
|
|
4460
|
+
type: string;
|
|
4461
|
+
};
|
|
4462
|
+
};
|
|
4463
|
+
required: string[];
|
|
4464
|
+
type: string;
|
|
4465
|
+
};
|
|
4466
|
+
};
|
|
4467
|
+
};
|
|
4468
|
+
description: string;
|
|
4469
|
+
};
|
|
4470
|
+
400: {
|
|
4471
|
+
description: string;
|
|
4472
|
+
};
|
|
4473
|
+
401: {
|
|
4474
|
+
description: string;
|
|
4475
|
+
};
|
|
4476
|
+
};
|
|
4477
|
+
security: ({
|
|
4478
|
+
access_token: never[];
|
|
4479
|
+
seam_workspace: never[];
|
|
4480
|
+
seam_client_session_token?: never;
|
|
4481
|
+
client_session_token?: never;
|
|
4482
|
+
} | {
|
|
4483
|
+
seam_client_session_token: never[];
|
|
4484
|
+
access_token?: never;
|
|
4485
|
+
seam_workspace?: never;
|
|
4486
|
+
client_session_token?: never;
|
|
4487
|
+
} | {
|
|
4488
|
+
client_session_token: never[];
|
|
4489
|
+
access_token?: never;
|
|
4490
|
+
seam_workspace?: never;
|
|
4491
|
+
seam_client_session_token?: never;
|
|
4492
|
+
})[];
|
|
4493
|
+
summary: string;
|
|
4494
|
+
tags: never[];
|
|
4495
|
+
'x-fern-sdk-group-name': string[];
|
|
4496
|
+
'x-fern-sdk-method-name': string;
|
|
4497
|
+
};
|
|
4498
|
+
};
|
|
4499
|
+
'/acs/credentials/delete': {
|
|
4500
|
+
post: {
|
|
4501
|
+
operationId: string;
|
|
4502
|
+
requestBody: {
|
|
4503
|
+
content: {
|
|
4504
|
+
'application/json': {
|
|
4505
|
+
schema: {
|
|
4506
|
+
properties: {
|
|
4507
|
+
acs_credential_id: {
|
|
4508
|
+
format: string;
|
|
4509
|
+
type: string;
|
|
4510
|
+
};
|
|
4511
|
+
};
|
|
4512
|
+
required: string[];
|
|
4513
|
+
type: string;
|
|
4514
|
+
};
|
|
4515
|
+
};
|
|
4516
|
+
};
|
|
4517
|
+
};
|
|
4518
|
+
responses: {
|
|
4519
|
+
200: {
|
|
4520
|
+
content: {
|
|
4521
|
+
'application/json': {
|
|
4522
|
+
schema: {
|
|
4523
|
+
properties: {
|
|
4524
|
+
ok: {
|
|
4525
|
+
type: string;
|
|
4526
|
+
};
|
|
4527
|
+
};
|
|
4528
|
+
required: string[];
|
|
4529
|
+
type: string;
|
|
4530
|
+
};
|
|
4531
|
+
};
|
|
4532
|
+
};
|
|
4533
|
+
description: string;
|
|
4534
|
+
};
|
|
4535
|
+
400: {
|
|
4536
|
+
description: string;
|
|
4537
|
+
};
|
|
4538
|
+
401: {
|
|
4539
|
+
description: string;
|
|
4540
|
+
};
|
|
4541
|
+
};
|
|
4542
|
+
security: ({
|
|
4543
|
+
access_token: never[];
|
|
4544
|
+
seam_workspace: never[];
|
|
4545
|
+
seam_client_session_token?: never;
|
|
4546
|
+
client_session_token?: never;
|
|
4547
|
+
} | {
|
|
4548
|
+
seam_client_session_token: never[];
|
|
4549
|
+
access_token?: never;
|
|
4550
|
+
seam_workspace?: never;
|
|
4551
|
+
client_session_token?: never;
|
|
4552
|
+
} | {
|
|
4553
|
+
client_session_token: never[];
|
|
4554
|
+
access_token?: never;
|
|
4555
|
+
seam_workspace?: never;
|
|
4556
|
+
seam_client_session_token?: never;
|
|
4557
|
+
})[];
|
|
4558
|
+
summary: string;
|
|
4559
|
+
tags: never[];
|
|
4560
|
+
'x-fern-sdk-group-name': string[];
|
|
4561
|
+
'x-fern-sdk-method-name': string;
|
|
4562
|
+
};
|
|
4563
|
+
};
|
|
4564
|
+
'/acs/credentials/get': {
|
|
4565
|
+
post: {
|
|
4566
|
+
operationId: string;
|
|
4567
|
+
requestBody: {
|
|
4568
|
+
content: {
|
|
4569
|
+
'application/json': {
|
|
4570
|
+
schema: {
|
|
4571
|
+
properties: {
|
|
4572
|
+
acs_credentials_id: {
|
|
4573
|
+
format: string;
|
|
4574
|
+
type: string;
|
|
4575
|
+
};
|
|
4576
|
+
};
|
|
4577
|
+
required: string[];
|
|
4578
|
+
type: string;
|
|
4579
|
+
};
|
|
4580
|
+
};
|
|
4581
|
+
};
|
|
4582
|
+
};
|
|
4583
|
+
responses: {
|
|
4584
|
+
200: {
|
|
4585
|
+
content: {
|
|
4586
|
+
'application/json': {
|
|
4587
|
+
schema: {
|
|
4588
|
+
properties: {
|
|
4589
|
+
acs_credential: {
|
|
4590
|
+
properties: {
|
|
4591
|
+
acs_credential_id: {
|
|
4592
|
+
format: string;
|
|
4593
|
+
type: string;
|
|
4594
|
+
};
|
|
4595
|
+
acs_system_id: {
|
|
4596
|
+
format: string;
|
|
4597
|
+
type: string;
|
|
4598
|
+
};
|
|
4599
|
+
acs_user_id: {
|
|
4600
|
+
format: string;
|
|
4601
|
+
type: string;
|
|
4602
|
+
};
|
|
4603
|
+
code: {
|
|
4604
|
+
type: string;
|
|
4605
|
+
};
|
|
4606
|
+
created_at: {
|
|
4607
|
+
format: string;
|
|
4608
|
+
type: string;
|
|
4609
|
+
};
|
|
4610
|
+
workspace_id: {
|
|
4611
|
+
format: string;
|
|
4612
|
+
type: string;
|
|
4613
|
+
};
|
|
4614
|
+
};
|
|
4615
|
+
required: string[];
|
|
4616
|
+
type: string;
|
|
4617
|
+
};
|
|
4618
|
+
ok: {
|
|
4619
|
+
type: string;
|
|
4620
|
+
};
|
|
4621
|
+
};
|
|
4622
|
+
required: string[];
|
|
4623
|
+
type: string;
|
|
4624
|
+
};
|
|
4625
|
+
};
|
|
4626
|
+
};
|
|
4627
|
+
description: string;
|
|
4628
|
+
};
|
|
4629
|
+
400: {
|
|
4630
|
+
description: string;
|
|
4631
|
+
};
|
|
4632
|
+
401: {
|
|
4633
|
+
description: string;
|
|
4634
|
+
};
|
|
4635
|
+
};
|
|
4636
|
+
security: ({
|
|
4637
|
+
access_token: never[];
|
|
4638
|
+
seam_workspace: never[];
|
|
4639
|
+
seam_client_session_token?: never;
|
|
4640
|
+
client_session_token?: never;
|
|
4641
|
+
} | {
|
|
4642
|
+
seam_client_session_token: never[];
|
|
4643
|
+
access_token?: never;
|
|
4644
|
+
seam_workspace?: never;
|
|
4645
|
+
client_session_token?: never;
|
|
4646
|
+
} | {
|
|
4647
|
+
client_session_token: never[];
|
|
4648
|
+
access_token?: never;
|
|
4649
|
+
seam_workspace?: never;
|
|
4650
|
+
seam_client_session_token?: never;
|
|
4651
|
+
})[];
|
|
4652
|
+
summary: string;
|
|
4653
|
+
tags: never[];
|
|
4654
|
+
'x-fern-sdk-group-name': string[];
|
|
4655
|
+
'x-fern-sdk-method-name': string;
|
|
4656
|
+
};
|
|
4657
|
+
};
|
|
4658
|
+
'/acs/credentials/list': {
|
|
4659
|
+
post: {
|
|
4660
|
+
operationId: string;
|
|
4661
|
+
requestBody: {
|
|
4662
|
+
content: {
|
|
4663
|
+
'application/json': {
|
|
4664
|
+
schema: {
|
|
4665
|
+
properties: {
|
|
4666
|
+
acs_user_id: {
|
|
4667
|
+
format: string;
|
|
4668
|
+
type: string;
|
|
4669
|
+
};
|
|
4670
|
+
};
|
|
4671
|
+
required: string[];
|
|
4672
|
+
type: string;
|
|
4673
|
+
};
|
|
4674
|
+
};
|
|
4675
|
+
};
|
|
4676
|
+
};
|
|
4677
|
+
responses: {
|
|
4678
|
+
200: {
|
|
4679
|
+
content: {
|
|
4680
|
+
'application/json': {
|
|
4681
|
+
schema: {
|
|
4682
|
+
properties: {
|
|
4683
|
+
acs_credentials: {
|
|
4684
|
+
items: {
|
|
4685
|
+
properties: {
|
|
4686
|
+
acs_credential_id: {
|
|
4687
|
+
format: string;
|
|
4688
|
+
type: string;
|
|
4689
|
+
};
|
|
4690
|
+
acs_system_id: {
|
|
4691
|
+
format: string;
|
|
4692
|
+
type: string;
|
|
4693
|
+
};
|
|
4694
|
+
acs_user_id: {
|
|
4695
|
+
format: string;
|
|
4696
|
+
type: string;
|
|
4697
|
+
};
|
|
4698
|
+
code: {
|
|
4699
|
+
type: string;
|
|
4700
|
+
};
|
|
4701
|
+
created_at: {
|
|
4702
|
+
format: string;
|
|
4703
|
+
type: string;
|
|
4704
|
+
};
|
|
4705
|
+
workspace_id: {
|
|
4706
|
+
format: string;
|
|
4707
|
+
type: string;
|
|
4708
|
+
};
|
|
4709
|
+
};
|
|
4710
|
+
required: string[];
|
|
4711
|
+
type: string;
|
|
4712
|
+
};
|
|
4713
|
+
type: string;
|
|
4714
|
+
};
|
|
4715
|
+
ok: {
|
|
4716
|
+
type: string;
|
|
4717
|
+
};
|
|
4718
|
+
};
|
|
4719
|
+
required: string[];
|
|
4720
|
+
type: string;
|
|
4721
|
+
};
|
|
4722
|
+
};
|
|
4723
|
+
};
|
|
4724
|
+
description: string;
|
|
4725
|
+
};
|
|
4726
|
+
400: {
|
|
4727
|
+
description: string;
|
|
4728
|
+
};
|
|
4729
|
+
401: {
|
|
4730
|
+
description: string;
|
|
4731
|
+
};
|
|
4732
|
+
};
|
|
4733
|
+
security: ({
|
|
4734
|
+
access_token: never[];
|
|
4735
|
+
seam_workspace: never[];
|
|
4736
|
+
seam_client_session_token?: never;
|
|
4737
|
+
client_session_token?: never;
|
|
4738
|
+
} | {
|
|
4739
|
+
seam_client_session_token: never[];
|
|
4740
|
+
access_token?: never;
|
|
4741
|
+
seam_workspace?: never;
|
|
4742
|
+
client_session_token?: never;
|
|
4743
|
+
} | {
|
|
4744
|
+
client_session_token: never[];
|
|
4745
|
+
access_token?: never;
|
|
4746
|
+
seam_workspace?: never;
|
|
4747
|
+
seam_client_session_token?: never;
|
|
4748
|
+
})[];
|
|
4749
|
+
summary: string;
|
|
4750
|
+
tags: never[];
|
|
4751
|
+
'x-fern-sdk-group-name': string[];
|
|
4752
|
+
'x-fern-sdk-method-name': string;
|
|
4753
|
+
};
|
|
4754
|
+
};
|
|
4392
4755
|
'/acs/systems/get': {
|
|
4393
4756
|
post: {
|
|
4394
4757
|
operationId: string;
|