@seamapi/types 1.593.0 → 1.595.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 +317 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +639 -99
- package/dist/index.cjs +317 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +432 -0
- package/lib/seam/connect/openapi.js +317 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +108 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +336 -0
- package/src/lib/seam/connect/route-types.ts +108 -0
|
@@ -18487,6 +18487,108 @@ declare const _default: {
|
|
|
18487
18487
|
'x-title': string;
|
|
18488
18488
|
};
|
|
18489
18489
|
};
|
|
18490
|
+
'/access_grants/request_access_methods': {
|
|
18491
|
+
post: {
|
|
18492
|
+
description: string;
|
|
18493
|
+
operationId: string;
|
|
18494
|
+
requestBody: {
|
|
18495
|
+
content: {
|
|
18496
|
+
'application/json': {
|
|
18497
|
+
schema: {
|
|
18498
|
+
properties: {
|
|
18499
|
+
access_grant_id: {
|
|
18500
|
+
description: string;
|
|
18501
|
+
format: string;
|
|
18502
|
+
type: string;
|
|
18503
|
+
};
|
|
18504
|
+
requested_access_methods: {
|
|
18505
|
+
description: string;
|
|
18506
|
+
items: {
|
|
18507
|
+
properties: {
|
|
18508
|
+
code: {
|
|
18509
|
+
description: string;
|
|
18510
|
+
maxLength: number;
|
|
18511
|
+
minLength: number;
|
|
18512
|
+
pattern: string;
|
|
18513
|
+
type: string;
|
|
18514
|
+
};
|
|
18515
|
+
mode: {
|
|
18516
|
+
description: string;
|
|
18517
|
+
enum: string[];
|
|
18518
|
+
type: string;
|
|
18519
|
+
};
|
|
18520
|
+
};
|
|
18521
|
+
required: string[];
|
|
18522
|
+
type: string;
|
|
18523
|
+
};
|
|
18524
|
+
minItems: number;
|
|
18525
|
+
type: string;
|
|
18526
|
+
};
|
|
18527
|
+
};
|
|
18528
|
+
required: string[];
|
|
18529
|
+
type: string;
|
|
18530
|
+
};
|
|
18531
|
+
};
|
|
18532
|
+
};
|
|
18533
|
+
};
|
|
18534
|
+
responses: {
|
|
18535
|
+
200: {
|
|
18536
|
+
content: {
|
|
18537
|
+
'application/json': {
|
|
18538
|
+
schema: {
|
|
18539
|
+
properties: {
|
|
18540
|
+
access_grant: {
|
|
18541
|
+
$ref: string;
|
|
18542
|
+
};
|
|
18543
|
+
ok: {
|
|
18544
|
+
type: string;
|
|
18545
|
+
};
|
|
18546
|
+
};
|
|
18547
|
+
required: string[];
|
|
18548
|
+
type: string;
|
|
18549
|
+
};
|
|
18550
|
+
};
|
|
18551
|
+
};
|
|
18552
|
+
description: string;
|
|
18553
|
+
};
|
|
18554
|
+
400: {
|
|
18555
|
+
description: string;
|
|
18556
|
+
};
|
|
18557
|
+
401: {
|
|
18558
|
+
description: string;
|
|
18559
|
+
};
|
|
18560
|
+
};
|
|
18561
|
+
security: ({
|
|
18562
|
+
pat_with_workspace: never[];
|
|
18563
|
+
console_session_with_workspace?: never;
|
|
18564
|
+
api_key?: never;
|
|
18565
|
+
client_session_with_customer?: never;
|
|
18566
|
+
} | {
|
|
18567
|
+
console_session_with_workspace: never[];
|
|
18568
|
+
pat_with_workspace?: never;
|
|
18569
|
+
api_key?: never;
|
|
18570
|
+
client_session_with_customer?: never;
|
|
18571
|
+
} | {
|
|
18572
|
+
api_key: never[];
|
|
18573
|
+
pat_with_workspace?: never;
|
|
18574
|
+
console_session_with_workspace?: never;
|
|
18575
|
+
client_session_with_customer?: never;
|
|
18576
|
+
} | {
|
|
18577
|
+
client_session_with_customer: never[];
|
|
18578
|
+
pat_with_workspace?: never;
|
|
18579
|
+
console_session_with_workspace?: never;
|
|
18580
|
+
api_key?: never;
|
|
18581
|
+
})[];
|
|
18582
|
+
summary: string;
|
|
18583
|
+
tags: never[];
|
|
18584
|
+
'x-draft': string;
|
|
18585
|
+
'x-fern-sdk-group-name': string[];
|
|
18586
|
+
'x-fern-sdk-method-name': string;
|
|
18587
|
+
'x-fern-sdk-return-value': string;
|
|
18588
|
+
'x-response-key': string;
|
|
18589
|
+
'x-title': string;
|
|
18590
|
+
};
|
|
18591
|
+
};
|
|
18490
18592
|
'/access_grants/unmanaged/get': {
|
|
18491
18593
|
get: {
|
|
18492
18594
|
description: string;
|
|
@@ -19363,6 +19465,172 @@ declare const _default: {
|
|
|
19363
19465
|
'x-title': string;
|
|
19364
19466
|
};
|
|
19365
19467
|
};
|
|
19468
|
+
'/access_grants/unmanaged/update': {
|
|
19469
|
+
patch: {
|
|
19470
|
+
description: string;
|
|
19471
|
+
operationId: string;
|
|
19472
|
+
requestBody: {
|
|
19473
|
+
content: {
|
|
19474
|
+
'application/json': {
|
|
19475
|
+
schema: {
|
|
19476
|
+
properties: {
|
|
19477
|
+
access_grant_id: {
|
|
19478
|
+
description: string;
|
|
19479
|
+
format: string;
|
|
19480
|
+
type: string;
|
|
19481
|
+
};
|
|
19482
|
+
access_grant_key: {
|
|
19483
|
+
description: string;
|
|
19484
|
+
type: string;
|
|
19485
|
+
};
|
|
19486
|
+
is_managed: {
|
|
19487
|
+
description: string;
|
|
19488
|
+
enum: boolean[];
|
|
19489
|
+
type: string;
|
|
19490
|
+
};
|
|
19491
|
+
};
|
|
19492
|
+
required: string[];
|
|
19493
|
+
type: string;
|
|
19494
|
+
};
|
|
19495
|
+
};
|
|
19496
|
+
};
|
|
19497
|
+
};
|
|
19498
|
+
responses: {
|
|
19499
|
+
200: {
|
|
19500
|
+
content: {
|
|
19501
|
+
'application/json': {
|
|
19502
|
+
schema: {
|
|
19503
|
+
properties: {
|
|
19504
|
+
ok: {
|
|
19505
|
+
type: string;
|
|
19506
|
+
};
|
|
19507
|
+
};
|
|
19508
|
+
required: string[];
|
|
19509
|
+
type: string;
|
|
19510
|
+
};
|
|
19511
|
+
};
|
|
19512
|
+
};
|
|
19513
|
+
description: string;
|
|
19514
|
+
};
|
|
19515
|
+
400: {
|
|
19516
|
+
description: string;
|
|
19517
|
+
};
|
|
19518
|
+
401: {
|
|
19519
|
+
description: string;
|
|
19520
|
+
};
|
|
19521
|
+
};
|
|
19522
|
+
security: ({
|
|
19523
|
+
pat_with_workspace: never[];
|
|
19524
|
+
console_session_with_workspace?: never;
|
|
19525
|
+
api_key?: never;
|
|
19526
|
+
client_session_with_customer?: never;
|
|
19527
|
+
} | {
|
|
19528
|
+
console_session_with_workspace: never[];
|
|
19529
|
+
pat_with_workspace?: never;
|
|
19530
|
+
api_key?: never;
|
|
19531
|
+
client_session_with_customer?: never;
|
|
19532
|
+
} | {
|
|
19533
|
+
api_key: never[];
|
|
19534
|
+
pat_with_workspace?: never;
|
|
19535
|
+
console_session_with_workspace?: never;
|
|
19536
|
+
client_session_with_customer?: never;
|
|
19537
|
+
} | {
|
|
19538
|
+
client_session_with_customer: never[];
|
|
19539
|
+
pat_with_workspace?: never;
|
|
19540
|
+
console_session_with_workspace?: never;
|
|
19541
|
+
api_key?: never;
|
|
19542
|
+
})[];
|
|
19543
|
+
summary: string;
|
|
19544
|
+
tags: never[];
|
|
19545
|
+
'x-draft': string;
|
|
19546
|
+
'x-fern-sdk-group-name': string[];
|
|
19547
|
+
'x-fern-sdk-method-name': string;
|
|
19548
|
+
'x-response-key': null;
|
|
19549
|
+
'x-title': string;
|
|
19550
|
+
};
|
|
19551
|
+
post: {
|
|
19552
|
+
description: string;
|
|
19553
|
+
operationId: string;
|
|
19554
|
+
requestBody: {
|
|
19555
|
+
content: {
|
|
19556
|
+
'application/json': {
|
|
19557
|
+
schema: {
|
|
19558
|
+
properties: {
|
|
19559
|
+
access_grant_id: {
|
|
19560
|
+
description: string;
|
|
19561
|
+
format: string;
|
|
19562
|
+
type: string;
|
|
19563
|
+
};
|
|
19564
|
+
access_grant_key: {
|
|
19565
|
+
description: string;
|
|
19566
|
+
type: string;
|
|
19567
|
+
};
|
|
19568
|
+
is_managed: {
|
|
19569
|
+
description: string;
|
|
19570
|
+
enum: boolean[];
|
|
19571
|
+
type: string;
|
|
19572
|
+
};
|
|
19573
|
+
};
|
|
19574
|
+
required: string[];
|
|
19575
|
+
type: string;
|
|
19576
|
+
};
|
|
19577
|
+
};
|
|
19578
|
+
};
|
|
19579
|
+
};
|
|
19580
|
+
responses: {
|
|
19581
|
+
200: {
|
|
19582
|
+
content: {
|
|
19583
|
+
'application/json': {
|
|
19584
|
+
schema: {
|
|
19585
|
+
properties: {
|
|
19586
|
+
ok: {
|
|
19587
|
+
type: string;
|
|
19588
|
+
};
|
|
19589
|
+
};
|
|
19590
|
+
required: string[];
|
|
19591
|
+
type: string;
|
|
19592
|
+
};
|
|
19593
|
+
};
|
|
19594
|
+
};
|
|
19595
|
+
description: string;
|
|
19596
|
+
};
|
|
19597
|
+
400: {
|
|
19598
|
+
description: string;
|
|
19599
|
+
};
|
|
19600
|
+
401: {
|
|
19601
|
+
description: string;
|
|
19602
|
+
};
|
|
19603
|
+
};
|
|
19604
|
+
security: ({
|
|
19605
|
+
pat_with_workspace: never[];
|
|
19606
|
+
console_session_with_workspace?: never;
|
|
19607
|
+
api_key?: never;
|
|
19608
|
+
client_session_with_customer?: never;
|
|
19609
|
+
} | {
|
|
19610
|
+
console_session_with_workspace: never[];
|
|
19611
|
+
pat_with_workspace?: never;
|
|
19612
|
+
api_key?: never;
|
|
19613
|
+
client_session_with_customer?: never;
|
|
19614
|
+
} | {
|
|
19615
|
+
api_key: never[];
|
|
19616
|
+
pat_with_workspace?: never;
|
|
19617
|
+
console_session_with_workspace?: never;
|
|
19618
|
+
client_session_with_customer?: never;
|
|
19619
|
+
} | {
|
|
19620
|
+
client_session_with_customer: never[];
|
|
19621
|
+
pat_with_workspace?: never;
|
|
19622
|
+
console_session_with_workspace?: never;
|
|
19623
|
+
api_key?: never;
|
|
19624
|
+
})[];
|
|
19625
|
+
summary: string;
|
|
19626
|
+
tags: never[];
|
|
19627
|
+
'x-draft': string;
|
|
19628
|
+
'x-fern-sdk-group-name': string[];
|
|
19629
|
+
'x-fern-sdk-method-name': string;
|
|
19630
|
+
'x-response-key': null;
|
|
19631
|
+
'x-title': string;
|
|
19632
|
+
};
|
|
19633
|
+
};
|
|
19366
19634
|
'/access_grants/update': {
|
|
19367
19635
|
patch: {
|
|
19368
19636
|
description: string;
|
|
@@ -53336,6 +53604,170 @@ declare const _default: {
|
|
|
53336
53604
|
'x-title': string;
|
|
53337
53605
|
};
|
|
53338
53606
|
};
|
|
53607
|
+
'/user_identities/unmanaged/update': {
|
|
53608
|
+
patch: {
|
|
53609
|
+
description: string;
|
|
53610
|
+
operationId: string;
|
|
53611
|
+
requestBody: {
|
|
53612
|
+
content: {
|
|
53613
|
+
'application/json': {
|
|
53614
|
+
schema: {
|
|
53615
|
+
properties: {
|
|
53616
|
+
is_managed: {
|
|
53617
|
+
description: string;
|
|
53618
|
+
enum: boolean[];
|
|
53619
|
+
type: string;
|
|
53620
|
+
};
|
|
53621
|
+
user_identity_id: {
|
|
53622
|
+
description: string;
|
|
53623
|
+
format: string;
|
|
53624
|
+
type: string;
|
|
53625
|
+
};
|
|
53626
|
+
user_identity_key: {
|
|
53627
|
+
description: string;
|
|
53628
|
+
type: string;
|
|
53629
|
+
};
|
|
53630
|
+
};
|
|
53631
|
+
required: string[];
|
|
53632
|
+
type: string;
|
|
53633
|
+
};
|
|
53634
|
+
};
|
|
53635
|
+
};
|
|
53636
|
+
};
|
|
53637
|
+
responses: {
|
|
53638
|
+
200: {
|
|
53639
|
+
content: {
|
|
53640
|
+
'application/json': {
|
|
53641
|
+
schema: {
|
|
53642
|
+
properties: {
|
|
53643
|
+
ok: {
|
|
53644
|
+
type: string;
|
|
53645
|
+
};
|
|
53646
|
+
};
|
|
53647
|
+
required: string[];
|
|
53648
|
+
type: string;
|
|
53649
|
+
};
|
|
53650
|
+
};
|
|
53651
|
+
};
|
|
53652
|
+
description: string;
|
|
53653
|
+
};
|
|
53654
|
+
400: {
|
|
53655
|
+
description: string;
|
|
53656
|
+
};
|
|
53657
|
+
401: {
|
|
53658
|
+
description: string;
|
|
53659
|
+
};
|
|
53660
|
+
};
|
|
53661
|
+
security: ({
|
|
53662
|
+
api_key: never[];
|
|
53663
|
+
client_session?: never;
|
|
53664
|
+
pat_with_workspace?: never;
|
|
53665
|
+
console_session_with_workspace?: never;
|
|
53666
|
+
} | {
|
|
53667
|
+
client_session: never[];
|
|
53668
|
+
api_key?: never;
|
|
53669
|
+
pat_with_workspace?: never;
|
|
53670
|
+
console_session_with_workspace?: never;
|
|
53671
|
+
} | {
|
|
53672
|
+
pat_with_workspace: never[];
|
|
53673
|
+
api_key?: never;
|
|
53674
|
+
client_session?: never;
|
|
53675
|
+
console_session_with_workspace?: never;
|
|
53676
|
+
} | {
|
|
53677
|
+
console_session_with_workspace: never[];
|
|
53678
|
+
api_key?: never;
|
|
53679
|
+
client_session?: never;
|
|
53680
|
+
pat_with_workspace?: never;
|
|
53681
|
+
})[];
|
|
53682
|
+
summary: string;
|
|
53683
|
+
tags: string[];
|
|
53684
|
+
'x-fern-sdk-group-name': string[];
|
|
53685
|
+
'x-fern-sdk-method-name': string;
|
|
53686
|
+
'x-response-key': null;
|
|
53687
|
+
'x-title': string;
|
|
53688
|
+
};
|
|
53689
|
+
post: {
|
|
53690
|
+
description: string;
|
|
53691
|
+
operationId: string;
|
|
53692
|
+
requestBody: {
|
|
53693
|
+
content: {
|
|
53694
|
+
'application/json': {
|
|
53695
|
+
schema: {
|
|
53696
|
+
properties: {
|
|
53697
|
+
is_managed: {
|
|
53698
|
+
description: string;
|
|
53699
|
+
enum: boolean[];
|
|
53700
|
+
type: string;
|
|
53701
|
+
};
|
|
53702
|
+
user_identity_id: {
|
|
53703
|
+
description: string;
|
|
53704
|
+
format: string;
|
|
53705
|
+
type: string;
|
|
53706
|
+
};
|
|
53707
|
+
user_identity_key: {
|
|
53708
|
+
description: string;
|
|
53709
|
+
type: string;
|
|
53710
|
+
};
|
|
53711
|
+
};
|
|
53712
|
+
required: string[];
|
|
53713
|
+
type: string;
|
|
53714
|
+
};
|
|
53715
|
+
};
|
|
53716
|
+
};
|
|
53717
|
+
};
|
|
53718
|
+
responses: {
|
|
53719
|
+
200: {
|
|
53720
|
+
content: {
|
|
53721
|
+
'application/json': {
|
|
53722
|
+
schema: {
|
|
53723
|
+
properties: {
|
|
53724
|
+
ok: {
|
|
53725
|
+
type: string;
|
|
53726
|
+
};
|
|
53727
|
+
};
|
|
53728
|
+
required: string[];
|
|
53729
|
+
type: string;
|
|
53730
|
+
};
|
|
53731
|
+
};
|
|
53732
|
+
};
|
|
53733
|
+
description: string;
|
|
53734
|
+
};
|
|
53735
|
+
400: {
|
|
53736
|
+
description: string;
|
|
53737
|
+
};
|
|
53738
|
+
401: {
|
|
53739
|
+
description: string;
|
|
53740
|
+
};
|
|
53741
|
+
};
|
|
53742
|
+
security: ({
|
|
53743
|
+
api_key: never[];
|
|
53744
|
+
client_session?: never;
|
|
53745
|
+
pat_with_workspace?: never;
|
|
53746
|
+
console_session_with_workspace?: never;
|
|
53747
|
+
} | {
|
|
53748
|
+
client_session: never[];
|
|
53749
|
+
api_key?: never;
|
|
53750
|
+
pat_with_workspace?: never;
|
|
53751
|
+
console_session_with_workspace?: never;
|
|
53752
|
+
} | {
|
|
53753
|
+
pat_with_workspace: never[];
|
|
53754
|
+
api_key?: never;
|
|
53755
|
+
client_session?: never;
|
|
53756
|
+
console_session_with_workspace?: never;
|
|
53757
|
+
} | {
|
|
53758
|
+
console_session_with_workspace: never[];
|
|
53759
|
+
api_key?: never;
|
|
53760
|
+
client_session?: never;
|
|
53761
|
+
pat_with_workspace?: never;
|
|
53762
|
+
})[];
|
|
53763
|
+
summary: string;
|
|
53764
|
+
tags: string[];
|
|
53765
|
+
'x-fern-sdk-group-name': string[];
|
|
53766
|
+
'x-fern-sdk-method-name': string;
|
|
53767
|
+
'x-response-key': null;
|
|
53768
|
+
'x-title': string;
|
|
53769
|
+
};
|
|
53770
|
+
};
|
|
53339
53771
|
'/user_identities/update': {
|
|
53340
53772
|
patch: {
|
|
53341
53773
|
description: string;
|