@seamapi/types 1.799.0 → 1.801.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 +197 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +280 -10
- package/dist/index.cjs +197 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +5 -3
- package/lib/seam/connect/models/devices/device-provider.js +3 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +226 -0
- package/lib/seam/connect/openapi.js +186 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +50 -7
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +4 -0
- package/src/lib/seam/connect/openapi.ts +194 -0
- package/src/lib/seam/connect/route-types.ts +50 -0
|
@@ -50,6 +50,7 @@ export declare const DEVICE_PROVIDERS: {
|
|
|
50
50
|
readonly DORMAKABA_AMBIANCE: "dormakaba_ambiance";
|
|
51
51
|
readonly ULTRALOQ: "ultraloq";
|
|
52
52
|
readonly RING: "ring";
|
|
53
|
+
readonly ICAL: "ical";
|
|
53
54
|
};
|
|
54
55
|
export type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
55
56
|
export declare const ALL_DEVICE_PROVIDERS: [
|
|
@@ -65,6 +66,7 @@ export declare const PROVIDER_CATEGORY_MAP: {
|
|
|
65
66
|
readonly noise_sensors: readonly ["minut", "noiseaware"];
|
|
66
67
|
readonly access_control_systems: readonly ["visionline", "assa_abloy_credential_service", "latch", "salto_ks", "assa_abloy_vostio", "salto_space", "dormakaba_ambiance", "dormakaba_community", "legic_connect", "hotek"];
|
|
67
68
|
readonly cameras: readonly ["ring"];
|
|
69
|
+
readonly connectors: readonly ["ical"];
|
|
68
70
|
readonly internal_beta: [DeviceProviderName, ...DeviceProviderName[]];
|
|
69
71
|
};
|
|
70
72
|
export declare const PROVIDER_CATEGORIES: [ProviderCategory, ...ProviderCategory[]];
|
|
@@ -73,7 +75,7 @@ export declare const device_provider: z.ZodObject<{
|
|
|
73
75
|
device_provider_name: z.ZodEnum<[DeviceProviderName, ...DeviceProviderName[]]>;
|
|
74
76
|
display_name: z.ZodString;
|
|
75
77
|
image_url: z.ZodString;
|
|
76
|
-
provider_categories: z.ZodArray<z.ZodEnum<["stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta", ...("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta")[]]>, "many">;
|
|
78
|
+
provider_categories: z.ZodArray<z.ZodEnum<["stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "connectors" | "internal_beta", ...("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "connectors" | "internal_beta")[]]>, "many">;
|
|
77
79
|
} & {
|
|
78
80
|
can_remotely_unlock: z.ZodOptional<z.ZodBoolean>;
|
|
79
81
|
can_remotely_lock: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -99,7 +101,7 @@ export declare const device_provider: z.ZodObject<{
|
|
|
99
101
|
display_name: string;
|
|
100
102
|
image_url: string;
|
|
101
103
|
device_provider_name: DeviceProviderName;
|
|
102
|
-
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta")[];
|
|
104
|
+
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "connectors" | "internal_beta")[];
|
|
103
105
|
can_remotely_unlock?: boolean | undefined;
|
|
104
106
|
can_remotely_lock?: boolean | undefined;
|
|
105
107
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -124,7 +126,7 @@ export declare const device_provider: z.ZodObject<{
|
|
|
124
126
|
display_name: string;
|
|
125
127
|
image_url: string;
|
|
126
128
|
device_provider_name: DeviceProviderName;
|
|
127
|
-
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "internal_beta")[];
|
|
129
|
+
provider_categories: ("stable" | "consumer_smartlocks" | "beta" | "thermostats" | "noise_sensors" | "access_control_systems" | "cameras" | "connectors" | "internal_beta")[];
|
|
128
130
|
can_remotely_unlock?: boolean | undefined;
|
|
129
131
|
can_remotely_lock?: boolean | undefined;
|
|
130
132
|
can_program_offline_access_codes?: boolean | undefined;
|
|
@@ -50,6 +50,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
50
50
|
DORMAKABA_AMBIANCE: 'dormakaba_ambiance',
|
|
51
51
|
ULTRALOQ: 'ultraloq',
|
|
52
52
|
RING: 'ring',
|
|
53
|
+
ICAL: 'ical',
|
|
53
54
|
};
|
|
54
55
|
export const ALL_DEVICE_PROVIDERS = Object.values(DEVICE_PROVIDERS);
|
|
55
56
|
export const PROVIDER_CATEGORY_MAP = {
|
|
@@ -119,6 +120,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
119
120
|
'hotek',
|
|
120
121
|
],
|
|
121
122
|
cameras: ['ring'],
|
|
123
|
+
connectors: ['ical'],
|
|
122
124
|
internal_beta: ALL_DEVICE_PROVIDERS,
|
|
123
125
|
};
|
|
124
126
|
export const PROVIDER_CATEGORIES = Object.keys(PROVIDER_CATEGORY_MAP);
|
|
@@ -143,6 +145,7 @@ export const PROVIDER_CATEGORY_CAPABILITY_MAP = {
|
|
|
143
145
|
noise_sensors: ['noise_sensor'],
|
|
144
146
|
access_control_systems: ['access_control'],
|
|
145
147
|
cameras: ['camera'],
|
|
148
|
+
connectors: [],
|
|
146
149
|
internal_beta: [
|
|
147
150
|
'lock',
|
|
148
151
|
'thermostat',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"device-provider.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device-provider.ts"],"names":[],"mappings":"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"}
|
|
@@ -49266,6 +49266,232 @@ declare const _default: {
|
|
|
49266
49266
|
'x-undocumented': string;
|
|
49267
49267
|
};
|
|
49268
49268
|
};
|
|
49269
|
+
'/seam/connect_webview/v1/get_current_pane': {
|
|
49270
|
+
get: {
|
|
49271
|
+
description: string;
|
|
49272
|
+
operationId: string;
|
|
49273
|
+
parameters: {
|
|
49274
|
+
in: string;
|
|
49275
|
+
name: string;
|
|
49276
|
+
required: boolean;
|
|
49277
|
+
schema: {
|
|
49278
|
+
format: string;
|
|
49279
|
+
type: string;
|
|
49280
|
+
};
|
|
49281
|
+
}[];
|
|
49282
|
+
responses: {
|
|
49283
|
+
200: {
|
|
49284
|
+
content: {
|
|
49285
|
+
'application/json': {
|
|
49286
|
+
schema: {
|
|
49287
|
+
properties: {
|
|
49288
|
+
ok: {
|
|
49289
|
+
type: string;
|
|
49290
|
+
};
|
|
49291
|
+
pane: {
|
|
49292
|
+
$ref: string;
|
|
49293
|
+
};
|
|
49294
|
+
};
|
|
49295
|
+
required: string[];
|
|
49296
|
+
type: string;
|
|
49297
|
+
};
|
|
49298
|
+
};
|
|
49299
|
+
};
|
|
49300
|
+
description: string;
|
|
49301
|
+
};
|
|
49302
|
+
400: {
|
|
49303
|
+
description: string;
|
|
49304
|
+
};
|
|
49305
|
+
401: {
|
|
49306
|
+
description: string;
|
|
49307
|
+
};
|
|
49308
|
+
};
|
|
49309
|
+
security: {
|
|
49310
|
+
console_session_with_workspace: never[];
|
|
49311
|
+
}[];
|
|
49312
|
+
summary: string;
|
|
49313
|
+
tags: never[];
|
|
49314
|
+
'x-fern-sdk-group-name': string[];
|
|
49315
|
+
'x-fern-sdk-method-name': string;
|
|
49316
|
+
'x-fern-sdk-return-value': string;
|
|
49317
|
+
'x-response-key': string;
|
|
49318
|
+
'x-title': string;
|
|
49319
|
+
'x-undocumented': string;
|
|
49320
|
+
};
|
|
49321
|
+
post: {
|
|
49322
|
+
description: string;
|
|
49323
|
+
operationId: string;
|
|
49324
|
+
requestBody: {
|
|
49325
|
+
content: {
|
|
49326
|
+
'application/json': {
|
|
49327
|
+
schema: {
|
|
49328
|
+
properties: {
|
|
49329
|
+
connect_webview_id: {
|
|
49330
|
+
format: string;
|
|
49331
|
+
type: string;
|
|
49332
|
+
};
|
|
49333
|
+
};
|
|
49334
|
+
required: string[];
|
|
49335
|
+
type: string;
|
|
49336
|
+
};
|
|
49337
|
+
};
|
|
49338
|
+
};
|
|
49339
|
+
};
|
|
49340
|
+
responses: {
|
|
49341
|
+
200: {
|
|
49342
|
+
content: {
|
|
49343
|
+
'application/json': {
|
|
49344
|
+
schema: {
|
|
49345
|
+
properties: {
|
|
49346
|
+
ok: {
|
|
49347
|
+
type: string;
|
|
49348
|
+
};
|
|
49349
|
+
pane: {
|
|
49350
|
+
$ref: string;
|
|
49351
|
+
};
|
|
49352
|
+
};
|
|
49353
|
+
required: string[];
|
|
49354
|
+
type: string;
|
|
49355
|
+
};
|
|
49356
|
+
};
|
|
49357
|
+
};
|
|
49358
|
+
description: string;
|
|
49359
|
+
};
|
|
49360
|
+
400: {
|
|
49361
|
+
description: string;
|
|
49362
|
+
};
|
|
49363
|
+
401: {
|
|
49364
|
+
description: string;
|
|
49365
|
+
};
|
|
49366
|
+
};
|
|
49367
|
+
security: {
|
|
49368
|
+
console_session_with_workspace: never[];
|
|
49369
|
+
}[];
|
|
49370
|
+
summary: string;
|
|
49371
|
+
tags: never[];
|
|
49372
|
+
'x-fern-sdk-group-name': string[];
|
|
49373
|
+
'x-fern-sdk-method-name': string;
|
|
49374
|
+
'x-fern-sdk-return-value': string;
|
|
49375
|
+
'x-response-key': string;
|
|
49376
|
+
'x-title': string;
|
|
49377
|
+
'x-undocumented': string;
|
|
49378
|
+
};
|
|
49379
|
+
};
|
|
49380
|
+
'/seam/connect_webview/v1/reset': {
|
|
49381
|
+
post: {
|
|
49382
|
+
description: string;
|
|
49383
|
+
operationId: string;
|
|
49384
|
+
requestBody: {
|
|
49385
|
+
content: {
|
|
49386
|
+
'application/json': {
|
|
49387
|
+
schema: {
|
|
49388
|
+
properties: {
|
|
49389
|
+
connect_webview_id: {
|
|
49390
|
+
format: string;
|
|
49391
|
+
type: string;
|
|
49392
|
+
};
|
|
49393
|
+
};
|
|
49394
|
+
required: string[];
|
|
49395
|
+
type: string;
|
|
49396
|
+
};
|
|
49397
|
+
};
|
|
49398
|
+
};
|
|
49399
|
+
};
|
|
49400
|
+
responses: {
|
|
49401
|
+
200: {
|
|
49402
|
+
content: {
|
|
49403
|
+
'application/json': {
|
|
49404
|
+
schema: {
|
|
49405
|
+
properties: {
|
|
49406
|
+
ok: {
|
|
49407
|
+
type: string;
|
|
49408
|
+
};
|
|
49409
|
+
};
|
|
49410
|
+
required: string[];
|
|
49411
|
+
type: string;
|
|
49412
|
+
};
|
|
49413
|
+
};
|
|
49414
|
+
};
|
|
49415
|
+
description: string;
|
|
49416
|
+
};
|
|
49417
|
+
400: {
|
|
49418
|
+
description: string;
|
|
49419
|
+
};
|
|
49420
|
+
401: {
|
|
49421
|
+
description: string;
|
|
49422
|
+
};
|
|
49423
|
+
};
|
|
49424
|
+
security: {
|
|
49425
|
+
console_session_with_workspace: never[];
|
|
49426
|
+
}[];
|
|
49427
|
+
summary: string;
|
|
49428
|
+
tags: never[];
|
|
49429
|
+
'x-fern-sdk-group-name': string[];
|
|
49430
|
+
'x-fern-sdk-method-name': string;
|
|
49431
|
+
'x-fern-sdk-return-value': string;
|
|
49432
|
+
'x-response-key': string;
|
|
49433
|
+
'x-title': string;
|
|
49434
|
+
'x-undocumented': string;
|
|
49435
|
+
};
|
|
49436
|
+
};
|
|
49437
|
+
'/seam/connect_webview/v1/submit': {
|
|
49438
|
+
post: {
|
|
49439
|
+
description: string;
|
|
49440
|
+
operationId: string;
|
|
49441
|
+
requestBody: {
|
|
49442
|
+
content: {
|
|
49443
|
+
'application/json': {
|
|
49444
|
+
schema: {
|
|
49445
|
+
properties: {
|
|
49446
|
+
connect_webview_id: {
|
|
49447
|
+
format: string;
|
|
49448
|
+
type: string;
|
|
49449
|
+
};
|
|
49450
|
+
submit_args: {};
|
|
49451
|
+
};
|
|
49452
|
+
required: string[];
|
|
49453
|
+
type: string;
|
|
49454
|
+
};
|
|
49455
|
+
};
|
|
49456
|
+
};
|
|
49457
|
+
};
|
|
49458
|
+
responses: {
|
|
49459
|
+
200: {
|
|
49460
|
+
content: {
|
|
49461
|
+
'application/json': {
|
|
49462
|
+
schema: {
|
|
49463
|
+
properties: {
|
|
49464
|
+
ok: {
|
|
49465
|
+
type: string;
|
|
49466
|
+
};
|
|
49467
|
+
};
|
|
49468
|
+
required: string[];
|
|
49469
|
+
type: string;
|
|
49470
|
+
};
|
|
49471
|
+
};
|
|
49472
|
+
};
|
|
49473
|
+
description: string;
|
|
49474
|
+
};
|
|
49475
|
+
400: {
|
|
49476
|
+
description: string;
|
|
49477
|
+
};
|
|
49478
|
+
401: {
|
|
49479
|
+
description: string;
|
|
49480
|
+
};
|
|
49481
|
+
};
|
|
49482
|
+
security: {
|
|
49483
|
+
console_session_with_workspace: never[];
|
|
49484
|
+
}[];
|
|
49485
|
+
summary: string;
|
|
49486
|
+
tags: never[];
|
|
49487
|
+
'x-fern-sdk-group-name': string[];
|
|
49488
|
+
'x-fern-sdk-method-name': string;
|
|
49489
|
+
'x-fern-sdk-return-value': string;
|
|
49490
|
+
'x-response-key': string;
|
|
49491
|
+
'x-title': string;
|
|
49492
|
+
'x-undocumented': string;
|
|
49493
|
+
};
|
|
49494
|
+
};
|
|
49269
49495
|
'/seam/console/v1/get_resource_locator': {
|
|
49270
49496
|
get: {
|
|
49271
49497
|
description: string;
|
|
@@ -13766,6 +13766,7 @@ export default {
|
|
|
13766
13766
|
'dormakaba_ambiance',
|
|
13767
13767
|
'ultraloq',
|
|
13768
13768
|
'ring',
|
|
13769
|
+
'ical',
|
|
13769
13770
|
],
|
|
13770
13771
|
type: 'string',
|
|
13771
13772
|
},
|
|
@@ -13781,6 +13782,7 @@ export default {
|
|
|
13781
13782
|
'noise_sensors',
|
|
13782
13783
|
'access_control_systems',
|
|
13783
13784
|
'cameras',
|
|
13785
|
+
'connectors',
|
|
13784
13786
|
],
|
|
13785
13787
|
type: 'string',
|
|
13786
13788
|
},
|
|
@@ -44477,6 +44479,7 @@ export default {
|
|
|
44477
44479
|
'dormakaba_ambiance',
|
|
44478
44480
|
'ultraloq',
|
|
44479
44481
|
'ring',
|
|
44482
|
+
'ical',
|
|
44480
44483
|
'yale_access',
|
|
44481
44484
|
'hid_cm',
|
|
44482
44485
|
'google_nest',
|
|
@@ -44533,6 +44536,7 @@ export default {
|
|
|
44533
44536
|
'noise_sensors',
|
|
44534
44537
|
'access_control_systems',
|
|
44535
44538
|
'cameras',
|
|
44539
|
+
'connectors',
|
|
44536
44540
|
'internal_beta',
|
|
44537
44541
|
],
|
|
44538
44542
|
type: 'string',
|
|
@@ -48421,6 +48425,7 @@ export default {
|
|
|
48421
48425
|
'tado',
|
|
48422
48426
|
'ultraloq',
|
|
48423
48427
|
'ring',
|
|
48428
|
+
'ical',
|
|
48424
48429
|
],
|
|
48425
48430
|
type: 'string',
|
|
48426
48431
|
},
|
|
@@ -48911,6 +48916,7 @@ export default {
|
|
|
48911
48916
|
'tado',
|
|
48912
48917
|
'ultraloq',
|
|
48913
48918
|
'ring',
|
|
48919
|
+
'ical',
|
|
48914
48920
|
],
|
|
48915
48921
|
type: 'string',
|
|
48916
48922
|
},
|
|
@@ -49003,6 +49009,7 @@ export default {
|
|
|
49003
49009
|
'noise_sensors',
|
|
49004
49010
|
'access_control_systems',
|
|
49005
49011
|
'cameras',
|
|
49012
|
+
'connectors',
|
|
49006
49013
|
],
|
|
49007
49014
|
type: 'string',
|
|
49008
49015
|
},
|
|
@@ -49062,6 +49069,7 @@ export default {
|
|
|
49062
49069
|
'noise_sensors',
|
|
49063
49070
|
'access_control_systems',
|
|
49064
49071
|
'cameras',
|
|
49072
|
+
'connectors',
|
|
49065
49073
|
],
|
|
49066
49074
|
type: 'string',
|
|
49067
49075
|
},
|
|
@@ -50708,6 +50716,7 @@ export default {
|
|
|
50708
50716
|
'tado',
|
|
50709
50717
|
'ultraloq',
|
|
50710
50718
|
'ring',
|
|
50719
|
+
'ical',
|
|
50711
50720
|
],
|
|
50712
50721
|
type: 'string',
|
|
50713
50722
|
},
|
|
@@ -51197,6 +51206,7 @@ export default {
|
|
|
51197
51206
|
'tado',
|
|
51198
51207
|
'ultraloq',
|
|
51199
51208
|
'ring',
|
|
51209
|
+
'ical',
|
|
51200
51210
|
],
|
|
51201
51211
|
type: 'string',
|
|
51202
51212
|
},
|
|
@@ -56076,6 +56086,182 @@ export default {
|
|
|
56076
56086
|
'x-undocumented': 'Seam Bridge Client only.',
|
|
56077
56087
|
},
|
|
56078
56088
|
},
|
|
56089
|
+
'/seam/connect_webview/v1/get_current_pane': {
|
|
56090
|
+
get: {
|
|
56091
|
+
description: 'Returns the current render pane for a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews).',
|
|
56092
|
+
operationId: 'seamConnectWebviewV1GetCurrentPaneGet',
|
|
56093
|
+
parameters: [
|
|
56094
|
+
{
|
|
56095
|
+
in: 'query',
|
|
56096
|
+
name: 'connect_webview_id',
|
|
56097
|
+
required: true,
|
|
56098
|
+
schema: { format: 'uuid', type: 'string' },
|
|
56099
|
+
},
|
|
56100
|
+
],
|
|
56101
|
+
responses: {
|
|
56102
|
+
200: {
|
|
56103
|
+
content: {
|
|
56104
|
+
'application/json': {
|
|
56105
|
+
schema: {
|
|
56106
|
+
properties: {
|
|
56107
|
+
ok: { type: 'boolean' },
|
|
56108
|
+
pane: { $ref: '#/components/schemas/access_code' },
|
|
56109
|
+
},
|
|
56110
|
+
required: ['ok'],
|
|
56111
|
+
type: 'object',
|
|
56112
|
+
},
|
|
56113
|
+
},
|
|
56114
|
+
},
|
|
56115
|
+
description: 'OK',
|
|
56116
|
+
},
|
|
56117
|
+
400: { description: 'Bad Request' },
|
|
56118
|
+
401: { description: 'Unauthorized' },
|
|
56119
|
+
},
|
|
56120
|
+
security: [{ console_session_with_workspace: [] }],
|
|
56121
|
+
summary: '/seam/connect_webview/v1/get_current_pane',
|
|
56122
|
+
tags: [],
|
|
56123
|
+
'x-fern-sdk-group-name': ['seam', 'connect_webview', 'v1'],
|
|
56124
|
+
'x-fern-sdk-method-name': 'get_current_pane',
|
|
56125
|
+
'x-fern-sdk-return-value': 'pane',
|
|
56126
|
+
'x-response-key': 'pane',
|
|
56127
|
+
'x-title': 'Get Current Pane',
|
|
56128
|
+
'x-undocumented': 'Internal endpoint for driving Connect Webview flows programmatically.',
|
|
56129
|
+
},
|
|
56130
|
+
post: {
|
|
56131
|
+
description: 'Returns the current render pane for a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews).',
|
|
56132
|
+
operationId: 'seamConnectWebviewV1GetCurrentPanePost',
|
|
56133
|
+
requestBody: {
|
|
56134
|
+
content: {
|
|
56135
|
+
'application/json': {
|
|
56136
|
+
schema: {
|
|
56137
|
+
properties: {
|
|
56138
|
+
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
56139
|
+
},
|
|
56140
|
+
required: ['connect_webview_id'],
|
|
56141
|
+
type: 'object',
|
|
56142
|
+
},
|
|
56143
|
+
},
|
|
56144
|
+
},
|
|
56145
|
+
},
|
|
56146
|
+
responses: {
|
|
56147
|
+
200: {
|
|
56148
|
+
content: {
|
|
56149
|
+
'application/json': {
|
|
56150
|
+
schema: {
|
|
56151
|
+
properties: {
|
|
56152
|
+
ok: { type: 'boolean' },
|
|
56153
|
+
pane: { $ref: '#/components/schemas/access_code' },
|
|
56154
|
+
},
|
|
56155
|
+
required: ['ok'],
|
|
56156
|
+
type: 'object',
|
|
56157
|
+
},
|
|
56158
|
+
},
|
|
56159
|
+
},
|
|
56160
|
+
description: 'OK',
|
|
56161
|
+
},
|
|
56162
|
+
400: { description: 'Bad Request' },
|
|
56163
|
+
401: { description: 'Unauthorized' },
|
|
56164
|
+
},
|
|
56165
|
+
security: [{ console_session_with_workspace: [] }],
|
|
56166
|
+
summary: '/seam/connect_webview/v1/get_current_pane',
|
|
56167
|
+
tags: [],
|
|
56168
|
+
'x-fern-sdk-group-name': ['seam', 'connect_webview', 'v1'],
|
|
56169
|
+
'x-fern-sdk-method-name': 'get_current_pane',
|
|
56170
|
+
'x-fern-sdk-return-value': 'pane',
|
|
56171
|
+
'x-response-key': 'pane',
|
|
56172
|
+
'x-title': 'Get Current Pane',
|
|
56173
|
+
'x-undocumented': 'Internal endpoint for driving Connect Webview flows programmatically.',
|
|
56174
|
+
},
|
|
56175
|
+
},
|
|
56176
|
+
'/seam/connect_webview/v1/reset': {
|
|
56177
|
+
post: {
|
|
56178
|
+
description: 'Resets an errored [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) so its login flow can be retried.',
|
|
56179
|
+
operationId: 'seamConnectWebviewV1ResetPost',
|
|
56180
|
+
requestBody: {
|
|
56181
|
+
content: {
|
|
56182
|
+
'application/json': {
|
|
56183
|
+
schema: {
|
|
56184
|
+
properties: {
|
|
56185
|
+
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
56186
|
+
},
|
|
56187
|
+
required: ['connect_webview_id'],
|
|
56188
|
+
type: 'object',
|
|
56189
|
+
},
|
|
56190
|
+
},
|
|
56191
|
+
},
|
|
56192
|
+
},
|
|
56193
|
+
responses: {
|
|
56194
|
+
200: {
|
|
56195
|
+
content: {
|
|
56196
|
+
'application/json': {
|
|
56197
|
+
schema: {
|
|
56198
|
+
properties: { ok: { type: 'boolean' } },
|
|
56199
|
+
required: ['ok'],
|
|
56200
|
+
type: 'object',
|
|
56201
|
+
},
|
|
56202
|
+
},
|
|
56203
|
+
},
|
|
56204
|
+
description: 'OK',
|
|
56205
|
+
},
|
|
56206
|
+
400: { description: 'Bad Request' },
|
|
56207
|
+
401: { description: 'Unauthorized' },
|
|
56208
|
+
},
|
|
56209
|
+
security: [{ console_session_with_workspace: [] }],
|
|
56210
|
+
summary: '/seam/connect_webview/v1/reset',
|
|
56211
|
+
tags: [],
|
|
56212
|
+
'x-fern-sdk-group-name': ['seam', 'connect_webview', 'v1'],
|
|
56213
|
+
'x-fern-sdk-method-name': 'reset',
|
|
56214
|
+
'x-fern-sdk-return-value': 'ok',
|
|
56215
|
+
'x-response-key': 'ok',
|
|
56216
|
+
'x-title': 'Reset Connect Webview',
|
|
56217
|
+
'x-undocumented': 'Internal endpoint for driving Connect Webview flows programmatically.',
|
|
56218
|
+
},
|
|
56219
|
+
},
|
|
56220
|
+
'/seam/connect_webview/v1/submit': {
|
|
56221
|
+
post: {
|
|
56222
|
+
description: 'Submits pane arguments to advance a [Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews) login state machine.',
|
|
56223
|
+
operationId: 'seamConnectWebviewV1SubmitPost',
|
|
56224
|
+
requestBody: {
|
|
56225
|
+
content: {
|
|
56226
|
+
'application/json': {
|
|
56227
|
+
schema: {
|
|
56228
|
+
properties: {
|
|
56229
|
+
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
56230
|
+
submit_args: {},
|
|
56231
|
+
},
|
|
56232
|
+
required: ['connect_webview_id'],
|
|
56233
|
+
type: 'object',
|
|
56234
|
+
},
|
|
56235
|
+
},
|
|
56236
|
+
},
|
|
56237
|
+
},
|
|
56238
|
+
responses: {
|
|
56239
|
+
200: {
|
|
56240
|
+
content: {
|
|
56241
|
+
'application/json': {
|
|
56242
|
+
schema: {
|
|
56243
|
+
properties: { ok: { type: 'boolean' } },
|
|
56244
|
+
required: ['ok'],
|
|
56245
|
+
type: 'object',
|
|
56246
|
+
},
|
|
56247
|
+
},
|
|
56248
|
+
},
|
|
56249
|
+
description: 'OK',
|
|
56250
|
+
},
|
|
56251
|
+
400: { description: 'Bad Request' },
|
|
56252
|
+
401: { description: 'Unauthorized' },
|
|
56253
|
+
},
|
|
56254
|
+
security: [{ console_session_with_workspace: [] }],
|
|
56255
|
+
summary: '/seam/connect_webview/v1/submit',
|
|
56256
|
+
tags: [],
|
|
56257
|
+
'x-fern-sdk-group-name': ['seam', 'connect_webview', 'v1'],
|
|
56258
|
+
'x-fern-sdk-method-name': 'submit',
|
|
56259
|
+
'x-fern-sdk-return-value': 'ok',
|
|
56260
|
+
'x-response-key': 'ok',
|
|
56261
|
+
'x-title': 'Submit Connect Webview Pane',
|
|
56262
|
+
'x-undocumented': 'Internal endpoint for driving Connect Webview flows programmatically.',
|
|
56263
|
+
},
|
|
56264
|
+
},
|
|
56079
56265
|
'/seam/console/v1/get_resource_locator': {
|
|
56080
56266
|
get: {
|
|
56081
56267
|
description: 'Returns the type and system information of a resource given its UUID.',
|