@seamapi/types 1.43.0 → 1.44.1
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 +189 -121
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +352 -214
- package/lib/seam/connect/openapi.d.ts +230 -152
- package/lib/seam/connect/openapi.js +168 -116
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +93 -59
- package/lib/seam/connect/stable/model-types.d.ts +1 -1
- package/lib/seam/connect/stable/models/connect-webview.d.ts +21 -0
- package/lib/seam/connect/stable/models/connect-webview.js +8 -0
- package/lib/seam/connect/stable/models/connect-webview.js.map +1 -1
- package/lib/seam/connect/stable/models/custom-metadata.d.ts +3 -0
- package/lib/seam/connect/stable/models/custom-metadata.js +7 -0
- package/lib/seam/connect/stable/models/custom-metadata.js.map +1 -0
- package/lib/seam/connect/stable/models/index.d.ts +1 -0
- package/lib/seam/connect/stable/models/index.js +1 -0
- package/lib/seam/connect/stable/models/index.js.map +1 -1
- package/lib/seam/connect/stable/schemas.d.ts +1 -1
- package/lib/seam/connect/stable/schemas.js +1 -1
- package/lib/seam/connect/stable/schemas.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/credential.js +5 -2
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/user.d.ts +4 -4
- package/lib/seam/connect/unstable/models/acs/user.js +1 -1
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +168 -116
- package/src/lib/seam/connect/route-types.ts +93 -66
- package/src/lib/seam/connect/stable/model-types.ts +1 -1
- package/src/lib/seam/connect/stable/models/connect-webview.ts +9 -0
- package/src/lib/seam/connect/stable/models/custom-metadata.ts +12 -0
- package/src/lib/seam/connect/stable/models/index.ts +1 -0
- package/src/lib/seam/connect/stable/schemas.ts +1 -1
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +5 -2
- package/src/lib/seam/connect/unstable/models/acs/user.ts +1 -1
|
@@ -437,6 +437,14 @@ declare const _default: {
|
|
|
437
437
|
any_provider_allowed: {
|
|
438
438
|
type: string;
|
|
439
439
|
};
|
|
440
|
+
authorized_at: {
|
|
441
|
+
format: string;
|
|
442
|
+
nullable: boolean;
|
|
443
|
+
type: string;
|
|
444
|
+
};
|
|
445
|
+
automatically_manage_new_devices: {
|
|
446
|
+
type: string;
|
|
447
|
+
};
|
|
440
448
|
connect_webview_id: {
|
|
441
449
|
format: string;
|
|
442
450
|
type: string;
|
|
@@ -449,6 +457,38 @@ declare const _default: {
|
|
|
449
457
|
format: string;
|
|
450
458
|
type: string;
|
|
451
459
|
};
|
|
460
|
+
custom_metadata: {
|
|
461
|
+
additionalProperties: {
|
|
462
|
+
nullable: boolean;
|
|
463
|
+
oneOf: ({
|
|
464
|
+
maxLength: number;
|
|
465
|
+
type: string;
|
|
466
|
+
format?: never;
|
|
467
|
+
nullable?: never;
|
|
468
|
+
} | {
|
|
469
|
+
type: string;
|
|
470
|
+
maxLength?: never;
|
|
471
|
+
format?: never;
|
|
472
|
+
nullable?: never;
|
|
473
|
+
} | {
|
|
474
|
+
format: string;
|
|
475
|
+
nullable: boolean;
|
|
476
|
+
type: string;
|
|
477
|
+
maxLength?: never;
|
|
478
|
+
})[];
|
|
479
|
+
};
|
|
480
|
+
type: string;
|
|
481
|
+
};
|
|
482
|
+
custom_redirect_failure_url: {
|
|
483
|
+
format: string;
|
|
484
|
+
nullable: boolean;
|
|
485
|
+
type: string;
|
|
486
|
+
};
|
|
487
|
+
custom_redirect_url: {
|
|
488
|
+
format: string;
|
|
489
|
+
nullable: boolean;
|
|
490
|
+
type: string;
|
|
491
|
+
};
|
|
452
492
|
device_selection_mode: {
|
|
453
493
|
enum: string[];
|
|
454
494
|
type: string;
|
|
@@ -456,6 +496,10 @@ declare const _default: {
|
|
|
456
496
|
login_successful: {
|
|
457
497
|
type: string;
|
|
458
498
|
};
|
|
499
|
+
selected_provider: {
|
|
500
|
+
nullable: boolean;
|
|
501
|
+
type: string;
|
|
502
|
+
};
|
|
459
503
|
status: {
|
|
460
504
|
enum: string[];
|
|
461
505
|
type: string;
|
|
@@ -464,6 +508,9 @@ declare const _default: {
|
|
|
464
508
|
format: string;
|
|
465
509
|
type: string;
|
|
466
510
|
};
|
|
511
|
+
wait_for_device_creation: {
|
|
512
|
+
type: string;
|
|
513
|
+
};
|
|
467
514
|
workspace_id: {
|
|
468
515
|
format: string;
|
|
469
516
|
type: string;
|
|
@@ -2147,6 +2194,16 @@ declare const _default: {
|
|
|
2147
2194
|
scheme: string;
|
|
2148
2195
|
type: string;
|
|
2149
2196
|
};
|
|
2197
|
+
api_key: {
|
|
2198
|
+
bearerFormat: string;
|
|
2199
|
+
scheme: string;
|
|
2200
|
+
type: string;
|
|
2201
|
+
};
|
|
2202
|
+
client_session: {
|
|
2203
|
+
bearerFormat: string;
|
|
2204
|
+
scheme: string;
|
|
2205
|
+
type: string;
|
|
2206
|
+
};
|
|
2150
2207
|
client_session_token: {
|
|
2151
2208
|
in: string;
|
|
2152
2209
|
name: string;
|
|
@@ -2162,6 +2219,11 @@ declare const _default: {
|
|
|
2162
2219
|
name: string;
|
|
2163
2220
|
type: string;
|
|
2164
2221
|
};
|
|
2222
|
+
user_session: {
|
|
2223
|
+
bearerFormat: string;
|
|
2224
|
+
scheme: string;
|
|
2225
|
+
type: string;
|
|
2226
|
+
};
|
|
2165
2227
|
};
|
|
2166
2228
|
};
|
|
2167
2229
|
info: {
|
|
@@ -2736,20 +2798,25 @@ declare const _default: {
|
|
|
2736
2798
|
};
|
|
2737
2799
|
};
|
|
2738
2800
|
security: ({
|
|
2801
|
+
api_key: never[];
|
|
2802
|
+
access_token?: never;
|
|
2803
|
+
user_session?: never;
|
|
2804
|
+
client_session?: never;
|
|
2805
|
+
} | {
|
|
2739
2806
|
access_token: never[];
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2807
|
+
api_key?: never;
|
|
2808
|
+
user_session?: never;
|
|
2809
|
+
client_session?: never;
|
|
2743
2810
|
} | {
|
|
2744
|
-
|
|
2811
|
+
user_session: never[];
|
|
2812
|
+
api_key?: never;
|
|
2745
2813
|
access_token?: never;
|
|
2746
|
-
|
|
2747
|
-
client_session_token?: never;
|
|
2814
|
+
client_session?: never;
|
|
2748
2815
|
} | {
|
|
2749
|
-
|
|
2816
|
+
client_session: never[];
|
|
2817
|
+
api_key?: never;
|
|
2750
2818
|
access_token?: never;
|
|
2751
|
-
|
|
2752
|
-
seam_client_session_token?: never;
|
|
2819
|
+
user_session?: never;
|
|
2753
2820
|
})[];
|
|
2754
2821
|
summary: string;
|
|
2755
2822
|
tags: string[];
|
|
@@ -4024,142 +4091,6 @@ declare const _default: {
|
|
|
4024
4091
|
'x-fern-ignore': boolean;
|
|
4025
4092
|
};
|
|
4026
4093
|
};
|
|
4027
|
-
'/acs/access_groups/create': {
|
|
4028
|
-
post: {
|
|
4029
|
-
operationId: string;
|
|
4030
|
-
requestBody: {
|
|
4031
|
-
content: {
|
|
4032
|
-
'application/json': {
|
|
4033
|
-
schema: {
|
|
4034
|
-
properties: {
|
|
4035
|
-
acs_system_id: {
|
|
4036
|
-
format: string;
|
|
4037
|
-
type: string;
|
|
4038
|
-
};
|
|
4039
|
-
name: {
|
|
4040
|
-
type: string;
|
|
4041
|
-
};
|
|
4042
|
-
};
|
|
4043
|
-
required: string[];
|
|
4044
|
-
type: string;
|
|
4045
|
-
};
|
|
4046
|
-
};
|
|
4047
|
-
};
|
|
4048
|
-
};
|
|
4049
|
-
responses: {
|
|
4050
|
-
200: {
|
|
4051
|
-
content: {
|
|
4052
|
-
'application/json': {
|
|
4053
|
-
schema: {
|
|
4054
|
-
properties: {
|
|
4055
|
-
acs_access_group: {
|
|
4056
|
-
$ref: string;
|
|
4057
|
-
};
|
|
4058
|
-
ok: {
|
|
4059
|
-
type: string;
|
|
4060
|
-
};
|
|
4061
|
-
};
|
|
4062
|
-
required: string[];
|
|
4063
|
-
type: string;
|
|
4064
|
-
};
|
|
4065
|
-
};
|
|
4066
|
-
};
|
|
4067
|
-
description: string;
|
|
4068
|
-
};
|
|
4069
|
-
400: {
|
|
4070
|
-
description: string;
|
|
4071
|
-
};
|
|
4072
|
-
401: {
|
|
4073
|
-
description: string;
|
|
4074
|
-
};
|
|
4075
|
-
};
|
|
4076
|
-
security: ({
|
|
4077
|
-
access_token: never[];
|
|
4078
|
-
seam_workspace: never[];
|
|
4079
|
-
seam_client_session_token?: never;
|
|
4080
|
-
client_session_token?: never;
|
|
4081
|
-
} | {
|
|
4082
|
-
seam_client_session_token: never[];
|
|
4083
|
-
access_token?: never;
|
|
4084
|
-
seam_workspace?: never;
|
|
4085
|
-
client_session_token?: never;
|
|
4086
|
-
} | {
|
|
4087
|
-
client_session_token: never[];
|
|
4088
|
-
access_token?: never;
|
|
4089
|
-
seam_workspace?: never;
|
|
4090
|
-
seam_client_session_token?: never;
|
|
4091
|
-
})[];
|
|
4092
|
-
summary: string;
|
|
4093
|
-
tags: never[];
|
|
4094
|
-
'x-fern-sdk-group-name': string[];
|
|
4095
|
-
'x-fern-sdk-method-name': string;
|
|
4096
|
-
};
|
|
4097
|
-
};
|
|
4098
|
-
'/acs/access_groups/delete': {
|
|
4099
|
-
post: {
|
|
4100
|
-
operationId: string;
|
|
4101
|
-
requestBody: {
|
|
4102
|
-
content: {
|
|
4103
|
-
'application/json': {
|
|
4104
|
-
schema: {
|
|
4105
|
-
properties: {
|
|
4106
|
-
acs_access_group_id: {
|
|
4107
|
-
format: string;
|
|
4108
|
-
type: string;
|
|
4109
|
-
};
|
|
4110
|
-
};
|
|
4111
|
-
required: string[];
|
|
4112
|
-
type: string;
|
|
4113
|
-
};
|
|
4114
|
-
};
|
|
4115
|
-
};
|
|
4116
|
-
};
|
|
4117
|
-
responses: {
|
|
4118
|
-
200: {
|
|
4119
|
-
content: {
|
|
4120
|
-
'application/json': {
|
|
4121
|
-
schema: {
|
|
4122
|
-
properties: {
|
|
4123
|
-
ok: {
|
|
4124
|
-
type: string;
|
|
4125
|
-
};
|
|
4126
|
-
};
|
|
4127
|
-
required: string[];
|
|
4128
|
-
type: string;
|
|
4129
|
-
};
|
|
4130
|
-
};
|
|
4131
|
-
};
|
|
4132
|
-
description: string;
|
|
4133
|
-
};
|
|
4134
|
-
400: {
|
|
4135
|
-
description: string;
|
|
4136
|
-
};
|
|
4137
|
-
401: {
|
|
4138
|
-
description: string;
|
|
4139
|
-
};
|
|
4140
|
-
};
|
|
4141
|
-
security: ({
|
|
4142
|
-
access_token: never[];
|
|
4143
|
-
seam_workspace: never[];
|
|
4144
|
-
seam_client_session_token?: never;
|
|
4145
|
-
client_session_token?: never;
|
|
4146
|
-
} | {
|
|
4147
|
-
seam_client_session_token: never[];
|
|
4148
|
-
access_token?: never;
|
|
4149
|
-
seam_workspace?: never;
|
|
4150
|
-
client_session_token?: never;
|
|
4151
|
-
} | {
|
|
4152
|
-
client_session_token: never[];
|
|
4153
|
-
access_token?: never;
|
|
4154
|
-
seam_workspace?: never;
|
|
4155
|
-
seam_client_session_token?: never;
|
|
4156
|
-
})[];
|
|
4157
|
-
summary: string;
|
|
4158
|
-
tags: never[];
|
|
4159
|
-
'x-fern-sdk-group-name': string[];
|
|
4160
|
-
'x-fern-sdk-method-name': string;
|
|
4161
|
-
};
|
|
4162
|
-
};
|
|
4163
4094
|
'/acs/access_groups/get': {
|
|
4164
4095
|
post: {
|
|
4165
4096
|
operationId: string;
|
|
@@ -4442,7 +4373,7 @@ declare const _default: {
|
|
|
4442
4373
|
'x-fern-sdk-method-name': string;
|
|
4443
4374
|
};
|
|
4444
4375
|
};
|
|
4445
|
-
'/acs/
|
|
4376
|
+
'/acs/credentials/assign': {
|
|
4446
4377
|
patch: {
|
|
4447
4378
|
operationId: string;
|
|
4448
4379
|
requestBody: {
|
|
@@ -4450,12 +4381,12 @@ declare const _default: {
|
|
|
4450
4381
|
'application/json': {
|
|
4451
4382
|
schema: {
|
|
4452
4383
|
properties: {
|
|
4453
|
-
|
|
4384
|
+
acs_credential_id: {
|
|
4454
4385
|
format: string;
|
|
4455
4386
|
type: string;
|
|
4456
4387
|
};
|
|
4457
|
-
|
|
4458
|
-
|
|
4388
|
+
acs_user_id: {
|
|
4389
|
+
format: string;
|
|
4459
4390
|
type: string;
|
|
4460
4391
|
};
|
|
4461
4392
|
};
|
|
@@ -4516,12 +4447,12 @@ declare const _default: {
|
|
|
4516
4447
|
'application/json': {
|
|
4517
4448
|
schema: {
|
|
4518
4449
|
properties: {
|
|
4519
|
-
|
|
4450
|
+
acs_credential_id: {
|
|
4520
4451
|
format: string;
|
|
4521
4452
|
type: string;
|
|
4522
4453
|
};
|
|
4523
|
-
|
|
4524
|
-
|
|
4454
|
+
acs_user_id: {
|
|
4455
|
+
format: string;
|
|
4525
4456
|
type: string;
|
|
4526
4457
|
};
|
|
4527
4458
|
};
|
|
@@ -4981,6 +4912,141 @@ declare const _default: {
|
|
|
4981
4912
|
'x-fern-sdk-method-name': string;
|
|
4982
4913
|
};
|
|
4983
4914
|
};
|
|
4915
|
+
'/acs/credentials/unassign': {
|
|
4916
|
+
patch: {
|
|
4917
|
+
operationId: string;
|
|
4918
|
+
requestBody: {
|
|
4919
|
+
content: {
|
|
4920
|
+
'application/json': {
|
|
4921
|
+
schema: {
|
|
4922
|
+
properties: {
|
|
4923
|
+
acs_credential_id: {
|
|
4924
|
+
format: string;
|
|
4925
|
+
type: string;
|
|
4926
|
+
};
|
|
4927
|
+
acs_user_id: {
|
|
4928
|
+
format: string;
|
|
4929
|
+
type: string;
|
|
4930
|
+
};
|
|
4931
|
+
};
|
|
4932
|
+
required: string[];
|
|
4933
|
+
type: string;
|
|
4934
|
+
};
|
|
4935
|
+
};
|
|
4936
|
+
};
|
|
4937
|
+
};
|
|
4938
|
+
responses: {
|
|
4939
|
+
200: {
|
|
4940
|
+
content: {
|
|
4941
|
+
'application/json': {
|
|
4942
|
+
schema: {
|
|
4943
|
+
properties: {
|
|
4944
|
+
ok: {
|
|
4945
|
+
type: string;
|
|
4946
|
+
};
|
|
4947
|
+
};
|
|
4948
|
+
required: string[];
|
|
4949
|
+
type: string;
|
|
4950
|
+
};
|
|
4951
|
+
};
|
|
4952
|
+
};
|
|
4953
|
+
description: string;
|
|
4954
|
+
};
|
|
4955
|
+
400: {
|
|
4956
|
+
description: string;
|
|
4957
|
+
};
|
|
4958
|
+
401: {
|
|
4959
|
+
description: string;
|
|
4960
|
+
};
|
|
4961
|
+
};
|
|
4962
|
+
security: ({
|
|
4963
|
+
access_token: never[];
|
|
4964
|
+
seam_workspace: never[];
|
|
4965
|
+
seam_client_session_token?: never;
|
|
4966
|
+
client_session_token?: never;
|
|
4967
|
+
} | {
|
|
4968
|
+
seam_client_session_token: never[];
|
|
4969
|
+
access_token?: never;
|
|
4970
|
+
seam_workspace?: never;
|
|
4971
|
+
client_session_token?: never;
|
|
4972
|
+
} | {
|
|
4973
|
+
client_session_token: never[];
|
|
4974
|
+
access_token?: never;
|
|
4975
|
+
seam_workspace?: never;
|
|
4976
|
+
seam_client_session_token?: never;
|
|
4977
|
+
})[];
|
|
4978
|
+
summary: string;
|
|
4979
|
+
tags: never[];
|
|
4980
|
+
'x-fern-ignore': boolean;
|
|
4981
|
+
};
|
|
4982
|
+
post: {
|
|
4983
|
+
operationId: string;
|
|
4984
|
+
requestBody: {
|
|
4985
|
+
content: {
|
|
4986
|
+
'application/json': {
|
|
4987
|
+
schema: {
|
|
4988
|
+
properties: {
|
|
4989
|
+
acs_credential_id: {
|
|
4990
|
+
format: string;
|
|
4991
|
+
type: string;
|
|
4992
|
+
};
|
|
4993
|
+
acs_user_id: {
|
|
4994
|
+
format: string;
|
|
4995
|
+
type: string;
|
|
4996
|
+
};
|
|
4997
|
+
};
|
|
4998
|
+
required: string[];
|
|
4999
|
+
type: string;
|
|
5000
|
+
};
|
|
5001
|
+
};
|
|
5002
|
+
};
|
|
5003
|
+
};
|
|
5004
|
+
responses: {
|
|
5005
|
+
200: {
|
|
5006
|
+
content: {
|
|
5007
|
+
'application/json': {
|
|
5008
|
+
schema: {
|
|
5009
|
+
properties: {
|
|
5010
|
+
ok: {
|
|
5011
|
+
type: string;
|
|
5012
|
+
};
|
|
5013
|
+
};
|
|
5014
|
+
required: string[];
|
|
5015
|
+
type: string;
|
|
5016
|
+
};
|
|
5017
|
+
};
|
|
5018
|
+
};
|
|
5019
|
+
description: string;
|
|
5020
|
+
};
|
|
5021
|
+
400: {
|
|
5022
|
+
description: string;
|
|
5023
|
+
};
|
|
5024
|
+
401: {
|
|
5025
|
+
description: string;
|
|
5026
|
+
};
|
|
5027
|
+
};
|
|
5028
|
+
security: ({
|
|
5029
|
+
access_token: never[];
|
|
5030
|
+
seam_workspace: never[];
|
|
5031
|
+
seam_client_session_token?: never;
|
|
5032
|
+
client_session_token?: never;
|
|
5033
|
+
} | {
|
|
5034
|
+
seam_client_session_token: never[];
|
|
5035
|
+
access_token?: never;
|
|
5036
|
+
seam_workspace?: never;
|
|
5037
|
+
client_session_token?: never;
|
|
5038
|
+
} | {
|
|
5039
|
+
client_session_token: never[];
|
|
5040
|
+
access_token?: never;
|
|
5041
|
+
seam_workspace?: never;
|
|
5042
|
+
seam_client_session_token?: never;
|
|
5043
|
+
})[];
|
|
5044
|
+
summary: string;
|
|
5045
|
+
tags: never[];
|
|
5046
|
+
'x-fern-sdk-group-name': string[];
|
|
5047
|
+
'x-fern-sdk-method-name': string;
|
|
5048
|
+
};
|
|
5049
|
+
};
|
|
4984
5050
|
'/acs/systems/get': {
|
|
4985
5051
|
post: {
|
|
4986
5052
|
operationId: string;
|
|
@@ -5253,6 +5319,10 @@ declare const _default: {
|
|
|
5253
5319
|
format: string;
|
|
5254
5320
|
type: string;
|
|
5255
5321
|
};
|
|
5322
|
+
email_address: {
|
|
5323
|
+
format: string;
|
|
5324
|
+
type: string;
|
|
5325
|
+
};
|
|
5256
5326
|
full_name: {
|
|
5257
5327
|
type: string;
|
|
5258
5328
|
};
|
|
@@ -5723,6 +5793,10 @@ declare const _default: {
|
|
|
5723
5793
|
format: string;
|
|
5724
5794
|
type: string;
|
|
5725
5795
|
};
|
|
5796
|
+
email_address: {
|
|
5797
|
+
format: string;
|
|
5798
|
+
type: string;
|
|
5799
|
+
};
|
|
5726
5800
|
full_name: {
|
|
5727
5801
|
type: string;
|
|
5728
5802
|
};
|
|
@@ -5797,6 +5871,10 @@ declare const _default: {
|
|
|
5797
5871
|
format: string;
|
|
5798
5872
|
type: string;
|
|
5799
5873
|
};
|
|
5874
|
+
email_address: {
|
|
5875
|
+
format: string;
|
|
5876
|
+
type: string;
|
|
5877
|
+
};
|
|
5800
5878
|
full_name: {
|
|
5801
5879
|
type: string;
|
|
5802
5880
|
};
|