@seamapi/types 1.623.0 → 1.625.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 +322 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +502 -3
- package/dist/index.cjs +322 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +392 -2
- package/lib/seam/connect/openapi.js +321 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +110 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +333 -3
- package/src/lib/seam/connect/route-types.ts +110 -1
|
@@ -43508,9 +43508,19 @@ declare const _default: {
|
|
|
43508
43508
|
description: string;
|
|
43509
43509
|
};
|
|
43510
43510
|
};
|
|
43511
|
-
security: {
|
|
43511
|
+
security: ({
|
|
43512
43512
|
api_key: never[];
|
|
43513
|
-
|
|
43513
|
+
client_session_with_customer?: never;
|
|
43514
|
+
console_session_with_workspace?: never;
|
|
43515
|
+
} | {
|
|
43516
|
+
client_session_with_customer: never[];
|
|
43517
|
+
api_key?: never;
|
|
43518
|
+
console_session_with_workspace?: never;
|
|
43519
|
+
} | {
|
|
43520
|
+
console_session_with_workspace: never[];
|
|
43521
|
+
api_key?: never;
|
|
43522
|
+
client_session_with_customer?: never;
|
|
43523
|
+
})[];
|
|
43514
43524
|
summary: string;
|
|
43515
43525
|
tags: never[];
|
|
43516
43526
|
'x-fern-sdk-group-name': string[];
|
|
@@ -43518,6 +43528,169 @@ declare const _default: {
|
|
|
43518
43528
|
'x-fern-sdk-return-value': string;
|
|
43519
43529
|
'x-response-key': string;
|
|
43520
43530
|
'x-title': string;
|
|
43531
|
+
'x-undocumented': string;
|
|
43532
|
+
};
|
|
43533
|
+
};
|
|
43534
|
+
'/seam/customer/v1/connectors/list': {
|
|
43535
|
+
get: {
|
|
43536
|
+
description: string;
|
|
43537
|
+
operationId: string;
|
|
43538
|
+
responses: {
|
|
43539
|
+
200: {
|
|
43540
|
+
content: {
|
|
43541
|
+
'application/json': {
|
|
43542
|
+
schema: {
|
|
43543
|
+
properties: {
|
|
43544
|
+
connectors: {
|
|
43545
|
+
items: {
|
|
43546
|
+
properties: {
|
|
43547
|
+
config: {
|
|
43548
|
+
additionalProperties: {
|
|
43549
|
+
$ref: string;
|
|
43550
|
+
};
|
|
43551
|
+
type: string;
|
|
43552
|
+
};
|
|
43553
|
+
connector_id: {
|
|
43554
|
+
type: string;
|
|
43555
|
+
};
|
|
43556
|
+
connector_type: {
|
|
43557
|
+
type: string;
|
|
43558
|
+
};
|
|
43559
|
+
created_at: {
|
|
43560
|
+
type: string;
|
|
43561
|
+
};
|
|
43562
|
+
status: {
|
|
43563
|
+
enum: string[];
|
|
43564
|
+
type: string;
|
|
43565
|
+
};
|
|
43566
|
+
updated_at: {
|
|
43567
|
+
type: string;
|
|
43568
|
+
};
|
|
43569
|
+
};
|
|
43570
|
+
required: string[];
|
|
43571
|
+
type: string;
|
|
43572
|
+
};
|
|
43573
|
+
type: string;
|
|
43574
|
+
};
|
|
43575
|
+
ok: {
|
|
43576
|
+
type: string;
|
|
43577
|
+
};
|
|
43578
|
+
};
|
|
43579
|
+
required: string[];
|
|
43580
|
+
type: string;
|
|
43581
|
+
};
|
|
43582
|
+
};
|
|
43583
|
+
};
|
|
43584
|
+
description: string;
|
|
43585
|
+
};
|
|
43586
|
+
400: {
|
|
43587
|
+
description: string;
|
|
43588
|
+
};
|
|
43589
|
+
401: {
|
|
43590
|
+
description: string;
|
|
43591
|
+
};
|
|
43592
|
+
};
|
|
43593
|
+
security: ({
|
|
43594
|
+
api_key: never[];
|
|
43595
|
+
client_session_with_customer?: never;
|
|
43596
|
+
console_session_with_workspace?: never;
|
|
43597
|
+
} | {
|
|
43598
|
+
client_session_with_customer: never[];
|
|
43599
|
+
api_key?: never;
|
|
43600
|
+
console_session_with_workspace?: never;
|
|
43601
|
+
} | {
|
|
43602
|
+
console_session_with_workspace: never[];
|
|
43603
|
+
api_key?: never;
|
|
43604
|
+
client_session_with_customer?: never;
|
|
43605
|
+
})[];
|
|
43606
|
+
summary: string;
|
|
43607
|
+
tags: never[];
|
|
43608
|
+
'x-fern-sdk-group-name': string[];
|
|
43609
|
+
'x-fern-sdk-method-name': string;
|
|
43610
|
+
'x-fern-sdk-return-value': string;
|
|
43611
|
+
'x-response-key': string;
|
|
43612
|
+
'x-title': string;
|
|
43613
|
+
'x-undocumented': string;
|
|
43614
|
+
};
|
|
43615
|
+
post: {
|
|
43616
|
+
description: string;
|
|
43617
|
+
operationId: string;
|
|
43618
|
+
responses: {
|
|
43619
|
+
200: {
|
|
43620
|
+
content: {
|
|
43621
|
+
'application/json': {
|
|
43622
|
+
schema: {
|
|
43623
|
+
properties: {
|
|
43624
|
+
connectors: {
|
|
43625
|
+
items: {
|
|
43626
|
+
properties: {
|
|
43627
|
+
config: {
|
|
43628
|
+
additionalProperties: {
|
|
43629
|
+
$ref: string;
|
|
43630
|
+
};
|
|
43631
|
+
type: string;
|
|
43632
|
+
};
|
|
43633
|
+
connector_id: {
|
|
43634
|
+
type: string;
|
|
43635
|
+
};
|
|
43636
|
+
connector_type: {
|
|
43637
|
+
type: string;
|
|
43638
|
+
};
|
|
43639
|
+
created_at: {
|
|
43640
|
+
type: string;
|
|
43641
|
+
};
|
|
43642
|
+
status: {
|
|
43643
|
+
enum: string[];
|
|
43644
|
+
type: string;
|
|
43645
|
+
};
|
|
43646
|
+
updated_at: {
|
|
43647
|
+
type: string;
|
|
43648
|
+
};
|
|
43649
|
+
};
|
|
43650
|
+
required: string[];
|
|
43651
|
+
type: string;
|
|
43652
|
+
};
|
|
43653
|
+
type: string;
|
|
43654
|
+
};
|
|
43655
|
+
ok: {
|
|
43656
|
+
type: string;
|
|
43657
|
+
};
|
|
43658
|
+
};
|
|
43659
|
+
required: string[];
|
|
43660
|
+
type: string;
|
|
43661
|
+
};
|
|
43662
|
+
};
|
|
43663
|
+
};
|
|
43664
|
+
description: string;
|
|
43665
|
+
};
|
|
43666
|
+
400: {
|
|
43667
|
+
description: string;
|
|
43668
|
+
};
|
|
43669
|
+
401: {
|
|
43670
|
+
description: string;
|
|
43671
|
+
};
|
|
43672
|
+
};
|
|
43673
|
+
security: ({
|
|
43674
|
+
api_key: never[];
|
|
43675
|
+
client_session_with_customer?: never;
|
|
43676
|
+
console_session_with_workspace?: never;
|
|
43677
|
+
} | {
|
|
43678
|
+
client_session_with_customer: never[];
|
|
43679
|
+
api_key?: never;
|
|
43680
|
+
console_session_with_workspace?: never;
|
|
43681
|
+
} | {
|
|
43682
|
+
console_session_with_workspace: never[];
|
|
43683
|
+
api_key?: never;
|
|
43684
|
+
client_session_with_customer?: never;
|
|
43685
|
+
})[];
|
|
43686
|
+
summary: string;
|
|
43687
|
+
tags: never[];
|
|
43688
|
+
'x-fern-sdk-group-name': string[];
|
|
43689
|
+
'x-fern-sdk-method-name': string;
|
|
43690
|
+
'x-fern-sdk-return-value': string;
|
|
43691
|
+
'x-response-key': string;
|
|
43692
|
+
'x-title': string;
|
|
43693
|
+
'x-undocumented': string;
|
|
43521
43694
|
};
|
|
43522
43695
|
};
|
|
43523
43696
|
'/seam/customer/v1/connectors/sync': {
|
|
@@ -45685,6 +45858,223 @@ declare const _default: {
|
|
|
45685
45858
|
'x-title': string;
|
|
45686
45859
|
};
|
|
45687
45860
|
};
|
|
45861
|
+
'/seam/customer/v1/staff_members/get': {
|
|
45862
|
+
get: {
|
|
45863
|
+
description: string;
|
|
45864
|
+
operationId: string;
|
|
45865
|
+
parameters: {
|
|
45866
|
+
in: string;
|
|
45867
|
+
name: string;
|
|
45868
|
+
required: boolean;
|
|
45869
|
+
schema: {
|
|
45870
|
+
description: string;
|
|
45871
|
+
type: string;
|
|
45872
|
+
};
|
|
45873
|
+
}[];
|
|
45874
|
+
responses: {
|
|
45875
|
+
200: {
|
|
45876
|
+
content: {
|
|
45877
|
+
'application/json': {
|
|
45878
|
+
schema: {
|
|
45879
|
+
properties: {
|
|
45880
|
+
access_grant: {
|
|
45881
|
+
$ref: string;
|
|
45882
|
+
};
|
|
45883
|
+
ok: {
|
|
45884
|
+
type: string;
|
|
45885
|
+
};
|
|
45886
|
+
spaces: {
|
|
45887
|
+
items: {
|
|
45888
|
+
properties: {
|
|
45889
|
+
child_space_keys: {
|
|
45890
|
+
items: {
|
|
45891
|
+
type: string;
|
|
45892
|
+
};
|
|
45893
|
+
type: string;
|
|
45894
|
+
};
|
|
45895
|
+
space_key: {
|
|
45896
|
+
type: string;
|
|
45897
|
+
};
|
|
45898
|
+
};
|
|
45899
|
+
required: string[];
|
|
45900
|
+
type: string;
|
|
45901
|
+
};
|
|
45902
|
+
type: string;
|
|
45903
|
+
};
|
|
45904
|
+
staff_member: {
|
|
45905
|
+
description: string;
|
|
45906
|
+
properties: {
|
|
45907
|
+
email_address: {
|
|
45908
|
+
description: string;
|
|
45909
|
+
type: string;
|
|
45910
|
+
};
|
|
45911
|
+
name: {
|
|
45912
|
+
description: string;
|
|
45913
|
+
type: string;
|
|
45914
|
+
};
|
|
45915
|
+
phone_number: {
|
|
45916
|
+
description: string;
|
|
45917
|
+
type: string;
|
|
45918
|
+
};
|
|
45919
|
+
space_keys: {
|
|
45920
|
+
description: string;
|
|
45921
|
+
items: {
|
|
45922
|
+
type: string;
|
|
45923
|
+
};
|
|
45924
|
+
type: string;
|
|
45925
|
+
};
|
|
45926
|
+
staff_member_key: {
|
|
45927
|
+
description: string;
|
|
45928
|
+
type: string;
|
|
45929
|
+
};
|
|
45930
|
+
user_identity_id: {
|
|
45931
|
+
format: string;
|
|
45932
|
+
type: string;
|
|
45933
|
+
};
|
|
45934
|
+
};
|
|
45935
|
+
required: string[];
|
|
45936
|
+
type: string;
|
|
45937
|
+
'x-route-path': string;
|
|
45938
|
+
};
|
|
45939
|
+
};
|
|
45940
|
+
required: string[];
|
|
45941
|
+
type: string;
|
|
45942
|
+
};
|
|
45943
|
+
};
|
|
45944
|
+
};
|
|
45945
|
+
description: string;
|
|
45946
|
+
};
|
|
45947
|
+
400: {
|
|
45948
|
+
description: string;
|
|
45949
|
+
};
|
|
45950
|
+
401: {
|
|
45951
|
+
description: string;
|
|
45952
|
+
};
|
|
45953
|
+
};
|
|
45954
|
+
security: {
|
|
45955
|
+
client_session_with_customer: never[];
|
|
45956
|
+
}[];
|
|
45957
|
+
summary: string;
|
|
45958
|
+
tags: never[];
|
|
45959
|
+
'x-fern-sdk-group-name': string[];
|
|
45960
|
+
'x-fern-sdk-method-name': string;
|
|
45961
|
+
'x-fern-sdk-return-value': string;
|
|
45962
|
+
'x-response-key': string;
|
|
45963
|
+
'x-title': string;
|
|
45964
|
+
'x-undocumented': string;
|
|
45965
|
+
};
|
|
45966
|
+
post: {
|
|
45967
|
+
description: string;
|
|
45968
|
+
operationId: string;
|
|
45969
|
+
requestBody: {
|
|
45970
|
+
content: {
|
|
45971
|
+
'application/json': {
|
|
45972
|
+
schema: {
|
|
45973
|
+
properties: {
|
|
45974
|
+
staff_member_key: {
|
|
45975
|
+
description: string;
|
|
45976
|
+
type: string;
|
|
45977
|
+
};
|
|
45978
|
+
};
|
|
45979
|
+
required: string[];
|
|
45980
|
+
type: string;
|
|
45981
|
+
};
|
|
45982
|
+
};
|
|
45983
|
+
};
|
|
45984
|
+
};
|
|
45985
|
+
responses: {
|
|
45986
|
+
200: {
|
|
45987
|
+
content: {
|
|
45988
|
+
'application/json': {
|
|
45989
|
+
schema: {
|
|
45990
|
+
properties: {
|
|
45991
|
+
access_grant: {
|
|
45992
|
+
$ref: string;
|
|
45993
|
+
};
|
|
45994
|
+
ok: {
|
|
45995
|
+
type: string;
|
|
45996
|
+
};
|
|
45997
|
+
spaces: {
|
|
45998
|
+
items: {
|
|
45999
|
+
properties: {
|
|
46000
|
+
child_space_keys: {
|
|
46001
|
+
items: {
|
|
46002
|
+
type: string;
|
|
46003
|
+
};
|
|
46004
|
+
type: string;
|
|
46005
|
+
};
|
|
46006
|
+
space_key: {
|
|
46007
|
+
type: string;
|
|
46008
|
+
};
|
|
46009
|
+
};
|
|
46010
|
+
required: string[];
|
|
46011
|
+
type: string;
|
|
46012
|
+
};
|
|
46013
|
+
type: string;
|
|
46014
|
+
};
|
|
46015
|
+
staff_member: {
|
|
46016
|
+
description: string;
|
|
46017
|
+
properties: {
|
|
46018
|
+
email_address: {
|
|
46019
|
+
description: string;
|
|
46020
|
+
type: string;
|
|
46021
|
+
};
|
|
46022
|
+
name: {
|
|
46023
|
+
description: string;
|
|
46024
|
+
type: string;
|
|
46025
|
+
};
|
|
46026
|
+
phone_number: {
|
|
46027
|
+
description: string;
|
|
46028
|
+
type: string;
|
|
46029
|
+
};
|
|
46030
|
+
space_keys: {
|
|
46031
|
+
description: string;
|
|
46032
|
+
items: {
|
|
46033
|
+
type: string;
|
|
46034
|
+
};
|
|
46035
|
+
type: string;
|
|
46036
|
+
};
|
|
46037
|
+
staff_member_key: {
|
|
46038
|
+
description: string;
|
|
46039
|
+
type: string;
|
|
46040
|
+
};
|
|
46041
|
+
user_identity_id: {
|
|
46042
|
+
format: string;
|
|
46043
|
+
type: string;
|
|
46044
|
+
};
|
|
46045
|
+
};
|
|
46046
|
+
required: string[];
|
|
46047
|
+
type: string;
|
|
46048
|
+
'x-route-path': string;
|
|
46049
|
+
};
|
|
46050
|
+
};
|
|
46051
|
+
required: string[];
|
|
46052
|
+
type: string;
|
|
46053
|
+
};
|
|
46054
|
+
};
|
|
46055
|
+
};
|
|
46056
|
+
description: string;
|
|
46057
|
+
};
|
|
46058
|
+
400: {
|
|
46059
|
+
description: string;
|
|
46060
|
+
};
|
|
46061
|
+
401: {
|
|
46062
|
+
description: string;
|
|
46063
|
+
};
|
|
46064
|
+
};
|
|
46065
|
+
security: {
|
|
46066
|
+
client_session_with_customer: never[];
|
|
46067
|
+
}[];
|
|
46068
|
+
summary: string;
|
|
46069
|
+
tags: never[];
|
|
46070
|
+
'x-fern-sdk-group-name': string[];
|
|
46071
|
+
'x-fern-sdk-method-name': string;
|
|
46072
|
+
'x-fern-sdk-return-value': string;
|
|
46073
|
+
'x-response-key': string;
|
|
46074
|
+
'x-title': string;
|
|
46075
|
+
'x-undocumented': string;
|
|
46076
|
+
};
|
|
46077
|
+
};
|
|
45688
46078
|
'/seam/customer/v1/staff_members/list': {
|
|
45689
46079
|
get: {
|
|
45690
46080
|
description: string;
|