@seamapi/types 1.511.0 → 1.513.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 +494 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +636 -3
- package/dist/index.cjs +494 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +557 -2
- package/lib/seam/connect/openapi.js +494 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +79 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +502 -2
- package/src/lib/seam/connect/route-types.ts +90 -1
|
@@ -33533,7 +33533,6 @@ declare const _default: {
|
|
|
33533
33533
|
parameters: {
|
|
33534
33534
|
in: string;
|
|
33535
33535
|
name: string;
|
|
33536
|
-
required: boolean;
|
|
33537
33536
|
schema: {
|
|
33538
33537
|
description: string;
|
|
33539
33538
|
format: string;
|
|
@@ -33601,8 +33600,12 @@ declare const _default: {
|
|
|
33601
33600
|
format: string;
|
|
33602
33601
|
type: string;
|
|
33603
33602
|
};
|
|
33603
|
+
instant_key_url: {
|
|
33604
|
+
description: string;
|
|
33605
|
+
format: string;
|
|
33606
|
+
type: string;
|
|
33607
|
+
};
|
|
33604
33608
|
};
|
|
33605
|
-
required: string[];
|
|
33606
33609
|
type: string;
|
|
33607
33610
|
};
|
|
33608
33611
|
};
|
|
@@ -37339,6 +37342,558 @@ declare const _default: {
|
|
|
37339
37342
|
'x-undocumented': string;
|
|
37340
37343
|
};
|
|
37341
37344
|
};
|
|
37345
|
+
'/seam/console/v1/timelines/get': {
|
|
37346
|
+
get: {
|
|
37347
|
+
description: string;
|
|
37348
|
+
operationId: string;
|
|
37349
|
+
parameters: ({
|
|
37350
|
+
in: string;
|
|
37351
|
+
name: string;
|
|
37352
|
+
required: boolean;
|
|
37353
|
+
schema: {
|
|
37354
|
+
description: string;
|
|
37355
|
+
format: string;
|
|
37356
|
+
type: string;
|
|
37357
|
+
default?: never;
|
|
37358
|
+
exclusiveMinimum?: never;
|
|
37359
|
+
minimum?: never;
|
|
37360
|
+
};
|
|
37361
|
+
} | {
|
|
37362
|
+
in: string;
|
|
37363
|
+
name: string;
|
|
37364
|
+
required: boolean;
|
|
37365
|
+
schema: {
|
|
37366
|
+
default: number;
|
|
37367
|
+
description: string;
|
|
37368
|
+
exclusiveMinimum: boolean;
|
|
37369
|
+
minimum: number;
|
|
37370
|
+
type: string;
|
|
37371
|
+
format?: never;
|
|
37372
|
+
};
|
|
37373
|
+
} | {
|
|
37374
|
+
in: string;
|
|
37375
|
+
name: string;
|
|
37376
|
+
required: boolean;
|
|
37377
|
+
schema: {
|
|
37378
|
+
description: string;
|
|
37379
|
+
type: string;
|
|
37380
|
+
format?: never;
|
|
37381
|
+
default?: never;
|
|
37382
|
+
exclusiveMinimum?: never;
|
|
37383
|
+
minimum?: never;
|
|
37384
|
+
};
|
|
37385
|
+
})[];
|
|
37386
|
+
responses: {
|
|
37387
|
+
200: {
|
|
37388
|
+
content: {
|
|
37389
|
+
'application/json': {
|
|
37390
|
+
schema: {
|
|
37391
|
+
properties: {
|
|
37392
|
+
ok: {
|
|
37393
|
+
type: string;
|
|
37394
|
+
};
|
|
37395
|
+
pagination: {
|
|
37396
|
+
$ref: string;
|
|
37397
|
+
};
|
|
37398
|
+
timeline: {
|
|
37399
|
+
items: {
|
|
37400
|
+
properties: {
|
|
37401
|
+
context: {
|
|
37402
|
+
oneOf: ({
|
|
37403
|
+
properties: {
|
|
37404
|
+
context_type: {
|
|
37405
|
+
enum: string[];
|
|
37406
|
+
type: string;
|
|
37407
|
+
};
|
|
37408
|
+
request_id: {
|
|
37409
|
+
type: string;
|
|
37410
|
+
};
|
|
37411
|
+
request_payload: {
|
|
37412
|
+
additionalProperties: {
|
|
37413
|
+
$ref: string;
|
|
37414
|
+
};
|
|
37415
|
+
type: string;
|
|
37416
|
+
};
|
|
37417
|
+
response_payload: {
|
|
37418
|
+
additionalProperties: {
|
|
37419
|
+
$ref: string;
|
|
37420
|
+
};
|
|
37421
|
+
type: string;
|
|
37422
|
+
};
|
|
37423
|
+
job_id?: never;
|
|
37424
|
+
};
|
|
37425
|
+
required: string[];
|
|
37426
|
+
type: string;
|
|
37427
|
+
} | {
|
|
37428
|
+
properties: {
|
|
37429
|
+
context_type: {
|
|
37430
|
+
enum: string[];
|
|
37431
|
+
type: string;
|
|
37432
|
+
};
|
|
37433
|
+
job_id: {
|
|
37434
|
+
type: string;
|
|
37435
|
+
};
|
|
37436
|
+
request_id?: never;
|
|
37437
|
+
request_payload?: never;
|
|
37438
|
+
response_payload?: never;
|
|
37439
|
+
};
|
|
37440
|
+
required: string[];
|
|
37441
|
+
type: string;
|
|
37442
|
+
})[];
|
|
37443
|
+
};
|
|
37444
|
+
created_at: {
|
|
37445
|
+
type: string;
|
|
37446
|
+
};
|
|
37447
|
+
entries: {
|
|
37448
|
+
items: {
|
|
37449
|
+
properties: {
|
|
37450
|
+
body: {
|
|
37451
|
+
oneOf: ({
|
|
37452
|
+
properties: {
|
|
37453
|
+
description: {
|
|
37454
|
+
type: string;
|
|
37455
|
+
};
|
|
37456
|
+
entry_type: {
|
|
37457
|
+
enum: string[];
|
|
37458
|
+
type: string;
|
|
37459
|
+
};
|
|
37460
|
+
errors?: never;
|
|
37461
|
+
properties_updated?: never;
|
|
37462
|
+
warnings?: never;
|
|
37463
|
+
event_id?: never;
|
|
37464
|
+
event_type?: never;
|
|
37465
|
+
response_body?: never;
|
|
37466
|
+
response_status_code?: never;
|
|
37467
|
+
};
|
|
37468
|
+
required: string[];
|
|
37469
|
+
type: string;
|
|
37470
|
+
} | {
|
|
37471
|
+
properties: {
|
|
37472
|
+
description: {
|
|
37473
|
+
type: string;
|
|
37474
|
+
};
|
|
37475
|
+
entry_type: {
|
|
37476
|
+
enum: string[];
|
|
37477
|
+
type: string;
|
|
37478
|
+
};
|
|
37479
|
+
errors: {
|
|
37480
|
+
items: {
|
|
37481
|
+
type: string;
|
|
37482
|
+
};
|
|
37483
|
+
type: string;
|
|
37484
|
+
};
|
|
37485
|
+
properties_updated: {
|
|
37486
|
+
additionalProperties: {
|
|
37487
|
+
$ref: string;
|
|
37488
|
+
};
|
|
37489
|
+
type: string;
|
|
37490
|
+
};
|
|
37491
|
+
warnings: {
|
|
37492
|
+
items: {
|
|
37493
|
+
type: string;
|
|
37494
|
+
};
|
|
37495
|
+
type: string;
|
|
37496
|
+
};
|
|
37497
|
+
event_id?: never;
|
|
37498
|
+
event_type?: never;
|
|
37499
|
+
response_body?: never;
|
|
37500
|
+
response_status_code?: never;
|
|
37501
|
+
};
|
|
37502
|
+
required: string[];
|
|
37503
|
+
type: string;
|
|
37504
|
+
} | {
|
|
37505
|
+
properties: {
|
|
37506
|
+
entry_type: {
|
|
37507
|
+
enum: string[];
|
|
37508
|
+
type: string;
|
|
37509
|
+
};
|
|
37510
|
+
event_id: {
|
|
37511
|
+
type: string;
|
|
37512
|
+
};
|
|
37513
|
+
event_type: {
|
|
37514
|
+
type: string;
|
|
37515
|
+
};
|
|
37516
|
+
description?: never;
|
|
37517
|
+
errors?: never;
|
|
37518
|
+
properties_updated?: never;
|
|
37519
|
+
warnings?: never;
|
|
37520
|
+
response_body?: never;
|
|
37521
|
+
response_status_code?: never;
|
|
37522
|
+
};
|
|
37523
|
+
required: string[];
|
|
37524
|
+
type: string;
|
|
37525
|
+
} | {
|
|
37526
|
+
properties: {
|
|
37527
|
+
description: {
|
|
37528
|
+
type: string;
|
|
37529
|
+
};
|
|
37530
|
+
entry_type: {
|
|
37531
|
+
enum: string[];
|
|
37532
|
+
type: string;
|
|
37533
|
+
};
|
|
37534
|
+
response_body: {
|
|
37535
|
+
additionalProperties: {
|
|
37536
|
+
$ref: string;
|
|
37537
|
+
};
|
|
37538
|
+
type: string;
|
|
37539
|
+
};
|
|
37540
|
+
response_status_code: {
|
|
37541
|
+
format: string;
|
|
37542
|
+
type: string;
|
|
37543
|
+
};
|
|
37544
|
+
errors?: never;
|
|
37545
|
+
properties_updated?: never;
|
|
37546
|
+
warnings?: never;
|
|
37547
|
+
event_id?: never;
|
|
37548
|
+
event_type?: never;
|
|
37549
|
+
};
|
|
37550
|
+
required: string[];
|
|
37551
|
+
type: string;
|
|
37552
|
+
})[];
|
|
37553
|
+
};
|
|
37554
|
+
created_at: {
|
|
37555
|
+
type: string;
|
|
37556
|
+
};
|
|
37557
|
+
entry_type: {
|
|
37558
|
+
type: string;
|
|
37559
|
+
};
|
|
37560
|
+
resource_id: {
|
|
37561
|
+
type: string;
|
|
37562
|
+
};
|
|
37563
|
+
resource_type: {
|
|
37564
|
+
type: string;
|
|
37565
|
+
};
|
|
37566
|
+
};
|
|
37567
|
+
required: string[];
|
|
37568
|
+
type: string;
|
|
37569
|
+
};
|
|
37570
|
+
type: string;
|
|
37571
|
+
};
|
|
37572
|
+
};
|
|
37573
|
+
required: string[];
|
|
37574
|
+
type: string;
|
|
37575
|
+
};
|
|
37576
|
+
type: string;
|
|
37577
|
+
};
|
|
37578
|
+
};
|
|
37579
|
+
required: string[];
|
|
37580
|
+
type: string;
|
|
37581
|
+
};
|
|
37582
|
+
};
|
|
37583
|
+
};
|
|
37584
|
+
description: string;
|
|
37585
|
+
};
|
|
37586
|
+
400: {
|
|
37587
|
+
description: string;
|
|
37588
|
+
};
|
|
37589
|
+
401: {
|
|
37590
|
+
description: string;
|
|
37591
|
+
};
|
|
37592
|
+
};
|
|
37593
|
+
security: ({
|
|
37594
|
+
client_session: never[];
|
|
37595
|
+
pat_with_workspace?: never;
|
|
37596
|
+
console_session_with_workspace?: never;
|
|
37597
|
+
api_key?: never;
|
|
37598
|
+
} | {
|
|
37599
|
+
pat_with_workspace: never[];
|
|
37600
|
+
client_session?: never;
|
|
37601
|
+
console_session_with_workspace?: never;
|
|
37602
|
+
api_key?: never;
|
|
37603
|
+
} | {
|
|
37604
|
+
console_session_with_workspace: never[];
|
|
37605
|
+
client_session?: never;
|
|
37606
|
+
pat_with_workspace?: never;
|
|
37607
|
+
api_key?: never;
|
|
37608
|
+
} | {
|
|
37609
|
+
api_key: never[];
|
|
37610
|
+
client_session?: never;
|
|
37611
|
+
pat_with_workspace?: never;
|
|
37612
|
+
console_session_with_workspace?: never;
|
|
37613
|
+
})[];
|
|
37614
|
+
summary: string;
|
|
37615
|
+
tags: never[];
|
|
37616
|
+
'x-fern-sdk-group-name': string[];
|
|
37617
|
+
'x-fern-sdk-method-name': string;
|
|
37618
|
+
'x-fern-sdk-return-value': string;
|
|
37619
|
+
'x-response-key': string;
|
|
37620
|
+
'x-title': string;
|
|
37621
|
+
'x-undocumented': string;
|
|
37622
|
+
};
|
|
37623
|
+
post: {
|
|
37624
|
+
description: string;
|
|
37625
|
+
operationId: string;
|
|
37626
|
+
requestBody: {
|
|
37627
|
+
content: {
|
|
37628
|
+
'application/json': {
|
|
37629
|
+
schema: {
|
|
37630
|
+
properties: {
|
|
37631
|
+
created_before: {
|
|
37632
|
+
description: string;
|
|
37633
|
+
format: string;
|
|
37634
|
+
type: string;
|
|
37635
|
+
};
|
|
37636
|
+
limit: {
|
|
37637
|
+
default: number;
|
|
37638
|
+
description: string;
|
|
37639
|
+
exclusiveMinimum: boolean;
|
|
37640
|
+
minimum: number;
|
|
37641
|
+
type: string;
|
|
37642
|
+
};
|
|
37643
|
+
page_cursor: {
|
|
37644
|
+
description: string;
|
|
37645
|
+
type: string;
|
|
37646
|
+
};
|
|
37647
|
+
resource_id: {
|
|
37648
|
+
description: string;
|
|
37649
|
+
format: string;
|
|
37650
|
+
type: string;
|
|
37651
|
+
};
|
|
37652
|
+
};
|
|
37653
|
+
required: string[];
|
|
37654
|
+
type: string;
|
|
37655
|
+
};
|
|
37656
|
+
};
|
|
37657
|
+
};
|
|
37658
|
+
};
|
|
37659
|
+
responses: {
|
|
37660
|
+
200: {
|
|
37661
|
+
content: {
|
|
37662
|
+
'application/json': {
|
|
37663
|
+
schema: {
|
|
37664
|
+
properties: {
|
|
37665
|
+
ok: {
|
|
37666
|
+
type: string;
|
|
37667
|
+
};
|
|
37668
|
+
pagination: {
|
|
37669
|
+
$ref: string;
|
|
37670
|
+
};
|
|
37671
|
+
timeline: {
|
|
37672
|
+
items: {
|
|
37673
|
+
properties: {
|
|
37674
|
+
context: {
|
|
37675
|
+
oneOf: ({
|
|
37676
|
+
properties: {
|
|
37677
|
+
context_type: {
|
|
37678
|
+
enum: string[];
|
|
37679
|
+
type: string;
|
|
37680
|
+
};
|
|
37681
|
+
request_id: {
|
|
37682
|
+
type: string;
|
|
37683
|
+
};
|
|
37684
|
+
request_payload: {
|
|
37685
|
+
additionalProperties: {
|
|
37686
|
+
$ref: string;
|
|
37687
|
+
};
|
|
37688
|
+
type: string;
|
|
37689
|
+
};
|
|
37690
|
+
response_payload: {
|
|
37691
|
+
additionalProperties: {
|
|
37692
|
+
$ref: string;
|
|
37693
|
+
};
|
|
37694
|
+
type: string;
|
|
37695
|
+
};
|
|
37696
|
+
job_id?: never;
|
|
37697
|
+
};
|
|
37698
|
+
required: string[];
|
|
37699
|
+
type: string;
|
|
37700
|
+
} | {
|
|
37701
|
+
properties: {
|
|
37702
|
+
context_type: {
|
|
37703
|
+
enum: string[];
|
|
37704
|
+
type: string;
|
|
37705
|
+
};
|
|
37706
|
+
job_id: {
|
|
37707
|
+
type: string;
|
|
37708
|
+
};
|
|
37709
|
+
request_id?: never;
|
|
37710
|
+
request_payload?: never;
|
|
37711
|
+
response_payload?: never;
|
|
37712
|
+
};
|
|
37713
|
+
required: string[];
|
|
37714
|
+
type: string;
|
|
37715
|
+
})[];
|
|
37716
|
+
};
|
|
37717
|
+
created_at: {
|
|
37718
|
+
type: string;
|
|
37719
|
+
};
|
|
37720
|
+
entries: {
|
|
37721
|
+
items: {
|
|
37722
|
+
properties: {
|
|
37723
|
+
body: {
|
|
37724
|
+
oneOf: ({
|
|
37725
|
+
properties: {
|
|
37726
|
+
description: {
|
|
37727
|
+
type: string;
|
|
37728
|
+
};
|
|
37729
|
+
entry_type: {
|
|
37730
|
+
enum: string[];
|
|
37731
|
+
type: string;
|
|
37732
|
+
};
|
|
37733
|
+
errors?: never;
|
|
37734
|
+
properties_updated?: never;
|
|
37735
|
+
warnings?: never;
|
|
37736
|
+
event_id?: never;
|
|
37737
|
+
event_type?: never;
|
|
37738
|
+
response_body?: never;
|
|
37739
|
+
response_status_code?: never;
|
|
37740
|
+
};
|
|
37741
|
+
required: string[];
|
|
37742
|
+
type: string;
|
|
37743
|
+
} | {
|
|
37744
|
+
properties: {
|
|
37745
|
+
description: {
|
|
37746
|
+
type: string;
|
|
37747
|
+
};
|
|
37748
|
+
entry_type: {
|
|
37749
|
+
enum: string[];
|
|
37750
|
+
type: string;
|
|
37751
|
+
};
|
|
37752
|
+
errors: {
|
|
37753
|
+
items: {
|
|
37754
|
+
type: string;
|
|
37755
|
+
};
|
|
37756
|
+
type: string;
|
|
37757
|
+
};
|
|
37758
|
+
properties_updated: {
|
|
37759
|
+
additionalProperties: {
|
|
37760
|
+
$ref: string;
|
|
37761
|
+
};
|
|
37762
|
+
type: string;
|
|
37763
|
+
};
|
|
37764
|
+
warnings: {
|
|
37765
|
+
items: {
|
|
37766
|
+
type: string;
|
|
37767
|
+
};
|
|
37768
|
+
type: string;
|
|
37769
|
+
};
|
|
37770
|
+
event_id?: never;
|
|
37771
|
+
event_type?: never;
|
|
37772
|
+
response_body?: never;
|
|
37773
|
+
response_status_code?: never;
|
|
37774
|
+
};
|
|
37775
|
+
required: string[];
|
|
37776
|
+
type: string;
|
|
37777
|
+
} | {
|
|
37778
|
+
properties: {
|
|
37779
|
+
entry_type: {
|
|
37780
|
+
enum: string[];
|
|
37781
|
+
type: string;
|
|
37782
|
+
};
|
|
37783
|
+
event_id: {
|
|
37784
|
+
type: string;
|
|
37785
|
+
};
|
|
37786
|
+
event_type: {
|
|
37787
|
+
type: string;
|
|
37788
|
+
};
|
|
37789
|
+
description?: never;
|
|
37790
|
+
errors?: never;
|
|
37791
|
+
properties_updated?: never;
|
|
37792
|
+
warnings?: never;
|
|
37793
|
+
response_body?: never;
|
|
37794
|
+
response_status_code?: never;
|
|
37795
|
+
};
|
|
37796
|
+
required: string[];
|
|
37797
|
+
type: string;
|
|
37798
|
+
} | {
|
|
37799
|
+
properties: {
|
|
37800
|
+
description: {
|
|
37801
|
+
type: string;
|
|
37802
|
+
};
|
|
37803
|
+
entry_type: {
|
|
37804
|
+
enum: string[];
|
|
37805
|
+
type: string;
|
|
37806
|
+
};
|
|
37807
|
+
response_body: {
|
|
37808
|
+
additionalProperties: {
|
|
37809
|
+
$ref: string;
|
|
37810
|
+
};
|
|
37811
|
+
type: string;
|
|
37812
|
+
};
|
|
37813
|
+
response_status_code: {
|
|
37814
|
+
format: string;
|
|
37815
|
+
type: string;
|
|
37816
|
+
};
|
|
37817
|
+
errors?: never;
|
|
37818
|
+
properties_updated?: never;
|
|
37819
|
+
warnings?: never;
|
|
37820
|
+
event_id?: never;
|
|
37821
|
+
event_type?: never;
|
|
37822
|
+
};
|
|
37823
|
+
required: string[];
|
|
37824
|
+
type: string;
|
|
37825
|
+
})[];
|
|
37826
|
+
};
|
|
37827
|
+
created_at: {
|
|
37828
|
+
type: string;
|
|
37829
|
+
};
|
|
37830
|
+
entry_type: {
|
|
37831
|
+
type: string;
|
|
37832
|
+
};
|
|
37833
|
+
resource_id: {
|
|
37834
|
+
type: string;
|
|
37835
|
+
};
|
|
37836
|
+
resource_type: {
|
|
37837
|
+
type: string;
|
|
37838
|
+
};
|
|
37839
|
+
};
|
|
37840
|
+
required: string[];
|
|
37841
|
+
type: string;
|
|
37842
|
+
};
|
|
37843
|
+
type: string;
|
|
37844
|
+
};
|
|
37845
|
+
};
|
|
37846
|
+
required: string[];
|
|
37847
|
+
type: string;
|
|
37848
|
+
};
|
|
37849
|
+
type: string;
|
|
37850
|
+
};
|
|
37851
|
+
};
|
|
37852
|
+
required: string[];
|
|
37853
|
+
type: string;
|
|
37854
|
+
};
|
|
37855
|
+
};
|
|
37856
|
+
};
|
|
37857
|
+
description: string;
|
|
37858
|
+
};
|
|
37859
|
+
400: {
|
|
37860
|
+
description: string;
|
|
37861
|
+
};
|
|
37862
|
+
401: {
|
|
37863
|
+
description: string;
|
|
37864
|
+
};
|
|
37865
|
+
};
|
|
37866
|
+
security: ({
|
|
37867
|
+
client_session: never[];
|
|
37868
|
+
pat_with_workspace?: never;
|
|
37869
|
+
console_session_with_workspace?: never;
|
|
37870
|
+
api_key?: never;
|
|
37871
|
+
} | {
|
|
37872
|
+
pat_with_workspace: never[];
|
|
37873
|
+
client_session?: never;
|
|
37874
|
+
console_session_with_workspace?: never;
|
|
37875
|
+
api_key?: never;
|
|
37876
|
+
} | {
|
|
37877
|
+
console_session_with_workspace: never[];
|
|
37878
|
+
client_session?: never;
|
|
37879
|
+
pat_with_workspace?: never;
|
|
37880
|
+
api_key?: never;
|
|
37881
|
+
} | {
|
|
37882
|
+
api_key: never[];
|
|
37883
|
+
client_session?: never;
|
|
37884
|
+
pat_with_workspace?: never;
|
|
37885
|
+
console_session_with_workspace?: never;
|
|
37886
|
+
})[];
|
|
37887
|
+
summary: string;
|
|
37888
|
+
tags: never[];
|
|
37889
|
+
'x-fern-sdk-group-name': string[];
|
|
37890
|
+
'x-fern-sdk-method-name': string;
|
|
37891
|
+
'x-fern-sdk-return-value': string;
|
|
37892
|
+
'x-response-key': string;
|
|
37893
|
+
'x-title': string;
|
|
37894
|
+
'x-undocumented': string;
|
|
37895
|
+
};
|
|
37896
|
+
};
|
|
37342
37897
|
'/seam/customer/v1/automation_runs/list': {
|
|
37343
37898
|
get: {
|
|
37344
37899
|
description: string;
|