@seamapi/types 1.956.0 → 1.958.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 +1740 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +479 -4
- package/dist/index.cjs +1740 -10
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +1740 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +479 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1745 -10
- package/src/lib/seam/connect/route-types.ts +489 -4
|
@@ -4956,14 +4956,16 @@ export type Routes = {
|
|
|
4956
4956
|
commonParams: {
|
|
4957
4957
|
/** Customer key for which you want to list access codes. */
|
|
4958
4958
|
customer_key?: string | undefined;
|
|
4959
|
-
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
4959
|
+
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, `access_grant_id`, or `access_grant_key`. */
|
|
4960
4960
|
device_id?: string | undefined;
|
|
4961
|
-
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
4961
|
+
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, `access_grant_id`, or `access_grant_key`. */
|
|
4962
4962
|
access_code_ids?: string[] | undefined;
|
|
4963
|
-
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
4963
|
+
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, `access_grant_id`, or `access_grant_key`. */
|
|
4964
4964
|
access_method_id?: string | undefined;
|
|
4965
|
-
/** ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
4965
|
+
/** ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, `access_grant_id`, or `access_grant_key`. */
|
|
4966
4966
|
access_grant_id?: string | undefined;
|
|
4967
|
+
/** Key of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, `access_grant_id`, or `access_grant_key`. */
|
|
4968
|
+
access_grant_key?: string | undefined;
|
|
4967
4969
|
/** Your user ID for the user by which to filter access codes. */
|
|
4968
4970
|
user_identifier_key?: string | undefined;
|
|
4969
4971
|
/** Numerical limit on the number of access codes to return. */
|
|
@@ -75231,6 +75233,479 @@ export type Routes = {
|
|
|
75231
75233
|
};
|
|
75232
75234
|
maxDuration: undefined;
|
|
75233
75235
|
};
|
|
75236
|
+
'/seam/console/v1/organizations/create': {
|
|
75237
|
+
route: '/seam/console/v1/organizations/create';
|
|
75238
|
+
method: 'POST';
|
|
75239
|
+
queryParams: {};
|
|
75240
|
+
jsonBody: {
|
|
75241
|
+
name: string;
|
|
75242
|
+
logo_image_base64?: string | undefined;
|
|
75243
|
+
};
|
|
75244
|
+
commonParams: {};
|
|
75245
|
+
formData: {};
|
|
75246
|
+
jsonResponse: {
|
|
75247
|
+
organization: {
|
|
75248
|
+
organization_id: string;
|
|
75249
|
+
name: string;
|
|
75250
|
+
logo_url: string | null;
|
|
75251
|
+
connect_webview_customization: {
|
|
75252
|
+
primary_button_color: string | null;
|
|
75253
|
+
primary_button_text_color: string | null;
|
|
75254
|
+
logo_shape: ('circle' | 'square') | null;
|
|
75255
|
+
};
|
|
75256
|
+
created_at: string;
|
|
75257
|
+
updated_at: string;
|
|
75258
|
+
};
|
|
75259
|
+
};
|
|
75260
|
+
maxDuration: undefined;
|
|
75261
|
+
};
|
|
75262
|
+
'/seam/console/v1/organizations/customization_profiles/copy': {
|
|
75263
|
+
route: '/seam/console/v1/organizations/customization_profiles/copy';
|
|
75264
|
+
method: 'POST';
|
|
75265
|
+
queryParams: {};
|
|
75266
|
+
jsonBody: {
|
|
75267
|
+
source_workspace_id: string;
|
|
75268
|
+
source_customization_profile_id: string;
|
|
75269
|
+
destination_workspace_id: string;
|
|
75270
|
+
destination_customization_profile_id?: string | undefined;
|
|
75271
|
+
};
|
|
75272
|
+
commonParams: {};
|
|
75273
|
+
formData: {};
|
|
75274
|
+
jsonResponse: {
|
|
75275
|
+
/** A customization profile. */
|
|
75276
|
+
customization_profile: {
|
|
75277
|
+
workspace_id: string;
|
|
75278
|
+
name: string | null;
|
|
75279
|
+
customization_profile_id: string;
|
|
75280
|
+
created_at: string;
|
|
75281
|
+
logo_url?: string | undefined;
|
|
75282
|
+
primary_color?: string | undefined;
|
|
75283
|
+
secondary_color?: string | undefined;
|
|
75284
|
+
customer_portal_theme?: {
|
|
75285
|
+
primary_color?: string | undefined;
|
|
75286
|
+
primary_foreground_color?: string | undefined;
|
|
75287
|
+
secondary_color?: string | undefined;
|
|
75288
|
+
secondary_foreground_color?: string | undefined;
|
|
75289
|
+
font_family?: string | undefined;
|
|
75290
|
+
mono_font_family?: string | undefined;
|
|
75291
|
+
} | undefined;
|
|
75292
|
+
message_overrides?: {
|
|
75293
|
+
[x: string]: {
|
|
75294
|
+
[x: string]: string;
|
|
75295
|
+
};
|
|
75296
|
+
} | undefined;
|
|
75297
|
+
};
|
|
75298
|
+
};
|
|
75299
|
+
maxDuration: undefined;
|
|
75300
|
+
};
|
|
75301
|
+
'/seam/console/v1/organizations/delete': {
|
|
75302
|
+
route: '/seam/console/v1/organizations/delete';
|
|
75303
|
+
method: 'POST';
|
|
75304
|
+
queryParams: {};
|
|
75305
|
+
jsonBody: {
|
|
75306
|
+
organization_id: string;
|
|
75307
|
+
};
|
|
75308
|
+
commonParams: {};
|
|
75309
|
+
formData: {};
|
|
75310
|
+
jsonResponse: {
|
|
75311
|
+
organization: {
|
|
75312
|
+
organization_id: string;
|
|
75313
|
+
name: string;
|
|
75314
|
+
logo_url: string | null;
|
|
75315
|
+
connect_webview_customization: {
|
|
75316
|
+
primary_button_color: string | null;
|
|
75317
|
+
primary_button_text_color: string | null;
|
|
75318
|
+
logo_shape: ('circle' | 'square') | null;
|
|
75319
|
+
};
|
|
75320
|
+
created_at: string;
|
|
75321
|
+
updated_at: string;
|
|
75322
|
+
};
|
|
75323
|
+
};
|
|
75324
|
+
maxDuration: undefined;
|
|
75325
|
+
};
|
|
75326
|
+
'/seam/console/v1/organizations/get': {
|
|
75327
|
+
route: '/seam/console/v1/organizations/get';
|
|
75328
|
+
method: 'GET' | 'POST';
|
|
75329
|
+
queryParams: {};
|
|
75330
|
+
jsonBody: {};
|
|
75331
|
+
commonParams: {
|
|
75332
|
+
organization_id: string;
|
|
75333
|
+
};
|
|
75334
|
+
formData: {};
|
|
75335
|
+
jsonResponse: {
|
|
75336
|
+
organization: {
|
|
75337
|
+
organization_id: string;
|
|
75338
|
+
name: string;
|
|
75339
|
+
logo_url: string | null;
|
|
75340
|
+
connect_webview_customization: {
|
|
75341
|
+
primary_button_color: string | null;
|
|
75342
|
+
primary_button_text_color: string | null;
|
|
75343
|
+
logo_shape: ('circle' | 'square') | null;
|
|
75344
|
+
};
|
|
75345
|
+
created_at: string;
|
|
75346
|
+
updated_at: string;
|
|
75347
|
+
};
|
|
75348
|
+
members: {
|
|
75349
|
+
organization_member_id: string;
|
|
75350
|
+
organization_id: string;
|
|
75351
|
+
user_id: string;
|
|
75352
|
+
email: string | null;
|
|
75353
|
+
first_name: string | null;
|
|
75354
|
+
last_name: string | null;
|
|
75355
|
+
role: 'admin' | 'member';
|
|
75356
|
+
created_at: string;
|
|
75357
|
+
}[];
|
|
75358
|
+
pending_invitations: {
|
|
75359
|
+
organization_invitation_id: string;
|
|
75360
|
+
organization_id: string;
|
|
75361
|
+
email: string;
|
|
75362
|
+
role: 'admin' | 'member';
|
|
75363
|
+
status: 'pending' | 'accepted' | 'revoked';
|
|
75364
|
+
invited_at: string;
|
|
75365
|
+
expires_at: string;
|
|
75366
|
+
}[];
|
|
75367
|
+
workspaces: {
|
|
75368
|
+
workspace_id: string;
|
|
75369
|
+
name: string;
|
|
75370
|
+
is_sandbox: boolean;
|
|
75371
|
+
}[];
|
|
75372
|
+
};
|
|
75373
|
+
maxDuration: undefined;
|
|
75374
|
+
};
|
|
75375
|
+
'/seam/console/v1/organizations/invitations/revoke': {
|
|
75376
|
+
route: '/seam/console/v1/organizations/invitations/revoke';
|
|
75377
|
+
method: 'POST';
|
|
75378
|
+
queryParams: {};
|
|
75379
|
+
jsonBody: {
|
|
75380
|
+
organization_invitation_id: string;
|
|
75381
|
+
};
|
|
75382
|
+
commonParams: {};
|
|
75383
|
+
formData: {};
|
|
75384
|
+
jsonResponse: {
|
|
75385
|
+
organization_invitation: {
|
|
75386
|
+
organization_invitation_id: string;
|
|
75387
|
+
organization_id: string;
|
|
75388
|
+
email: string;
|
|
75389
|
+
role: 'admin' | 'member';
|
|
75390
|
+
status: 'pending' | 'accepted' | 'revoked';
|
|
75391
|
+
invited_at: string;
|
|
75392
|
+
expires_at: string;
|
|
75393
|
+
};
|
|
75394
|
+
};
|
|
75395
|
+
maxDuration: undefined;
|
|
75396
|
+
};
|
|
75397
|
+
'/seam/console/v1/organizations/list': {
|
|
75398
|
+
route: '/seam/console/v1/organizations/list';
|
|
75399
|
+
method: 'GET' | 'POST';
|
|
75400
|
+
queryParams: {};
|
|
75401
|
+
jsonBody: {};
|
|
75402
|
+
commonParams: {};
|
|
75403
|
+
formData: {};
|
|
75404
|
+
jsonResponse: {
|
|
75405
|
+
organizations: {
|
|
75406
|
+
organization_id: string;
|
|
75407
|
+
name: string;
|
|
75408
|
+
logo_url: string | null;
|
|
75409
|
+
connect_webview_customization: {
|
|
75410
|
+
primary_button_color: string | null;
|
|
75411
|
+
primary_button_text_color: string | null;
|
|
75412
|
+
logo_shape: ('circle' | 'square') | null;
|
|
75413
|
+
};
|
|
75414
|
+
created_at: string;
|
|
75415
|
+
updated_at: string;
|
|
75416
|
+
workspace_count: number;
|
|
75417
|
+
member_count: number;
|
|
75418
|
+
}[];
|
|
75419
|
+
};
|
|
75420
|
+
maxDuration: undefined;
|
|
75421
|
+
};
|
|
75422
|
+
'/seam/console/v1/organizations/members/add': {
|
|
75423
|
+
route: '/seam/console/v1/organizations/members/add';
|
|
75424
|
+
method: 'POST';
|
|
75425
|
+
queryParams: {};
|
|
75426
|
+
jsonBody: {
|
|
75427
|
+
organization_id: string;
|
|
75428
|
+
email: string;
|
|
75429
|
+
role?: 'admin' | 'member';
|
|
75430
|
+
};
|
|
75431
|
+
commonParams: {};
|
|
75432
|
+
formData: {};
|
|
75433
|
+
jsonResponse: {
|
|
75434
|
+
organization_member?: {
|
|
75435
|
+
organization_member_id: string;
|
|
75436
|
+
organization_id: string;
|
|
75437
|
+
user_id: string;
|
|
75438
|
+
email: string | null;
|
|
75439
|
+
first_name: string | null;
|
|
75440
|
+
last_name: string | null;
|
|
75441
|
+
role: 'admin' | 'member';
|
|
75442
|
+
created_at: string;
|
|
75443
|
+
} | undefined;
|
|
75444
|
+
organization_invitation?: {
|
|
75445
|
+
organization_invitation_id: string;
|
|
75446
|
+
organization_id: string;
|
|
75447
|
+
email: string;
|
|
75448
|
+
role: 'admin' | 'member';
|
|
75449
|
+
status: 'pending' | 'accepted' | 'revoked';
|
|
75450
|
+
invited_at: string;
|
|
75451
|
+
expires_at: string;
|
|
75452
|
+
} | undefined;
|
|
75453
|
+
};
|
|
75454
|
+
maxDuration: undefined;
|
|
75455
|
+
};
|
|
75456
|
+
'/seam/console/v1/organizations/members/remove': {
|
|
75457
|
+
route: '/seam/console/v1/organizations/members/remove';
|
|
75458
|
+
method: 'POST';
|
|
75459
|
+
queryParams: {};
|
|
75460
|
+
jsonBody: {
|
|
75461
|
+
organization_id: string;
|
|
75462
|
+
user_id: string;
|
|
75463
|
+
};
|
|
75464
|
+
commonParams: {};
|
|
75465
|
+
formData: {};
|
|
75466
|
+
jsonResponse: {};
|
|
75467
|
+
maxDuration: undefined;
|
|
75468
|
+
};
|
|
75469
|
+
'/seam/console/v1/organizations/members/update': {
|
|
75470
|
+
route: '/seam/console/v1/organizations/members/update';
|
|
75471
|
+
method: 'POST';
|
|
75472
|
+
queryParams: {};
|
|
75473
|
+
jsonBody: {
|
|
75474
|
+
organization_id: string;
|
|
75475
|
+
user_id: string;
|
|
75476
|
+
role: 'admin' | 'member';
|
|
75477
|
+
};
|
|
75478
|
+
commonParams: {};
|
|
75479
|
+
formData: {};
|
|
75480
|
+
jsonResponse: {
|
|
75481
|
+
organization_member: {
|
|
75482
|
+
organization_member_id: string;
|
|
75483
|
+
organization_id: string;
|
|
75484
|
+
user_id: string;
|
|
75485
|
+
email: string | null;
|
|
75486
|
+
first_name: string | null;
|
|
75487
|
+
last_name: string | null;
|
|
75488
|
+
role: 'admin' | 'member';
|
|
75489
|
+
created_at: string;
|
|
75490
|
+
};
|
|
75491
|
+
};
|
|
75492
|
+
maxDuration: undefined;
|
|
75493
|
+
};
|
|
75494
|
+
'/seam/console/v1/organizations/members/workspaces/grant': {
|
|
75495
|
+
route: '/seam/console/v1/organizations/members/workspaces/grant';
|
|
75496
|
+
method: 'POST';
|
|
75497
|
+
queryParams: {};
|
|
75498
|
+
jsonBody: {
|
|
75499
|
+
organization_id: string;
|
|
75500
|
+
user_id: string;
|
|
75501
|
+
workspace_id: string;
|
|
75502
|
+
};
|
|
75503
|
+
commonParams: {};
|
|
75504
|
+
formData: {};
|
|
75505
|
+
jsonResponse: {};
|
|
75506
|
+
maxDuration: undefined;
|
|
75507
|
+
};
|
|
75508
|
+
'/seam/console/v1/organizations/members/workspaces/list': {
|
|
75509
|
+
route: '/seam/console/v1/organizations/members/workspaces/list';
|
|
75510
|
+
method: 'GET' | 'POST';
|
|
75511
|
+
queryParams: {};
|
|
75512
|
+
jsonBody: {};
|
|
75513
|
+
commonParams: {
|
|
75514
|
+
organization_id: string;
|
|
75515
|
+
user_id: string;
|
|
75516
|
+
};
|
|
75517
|
+
formData: {};
|
|
75518
|
+
jsonResponse: {
|
|
75519
|
+
workspaces: {
|
|
75520
|
+
workspace_id: string;
|
|
75521
|
+
name: string;
|
|
75522
|
+
is_sandbox: boolean;
|
|
75523
|
+
is_owner: boolean;
|
|
75524
|
+
created_at: string;
|
|
75525
|
+
}[];
|
|
75526
|
+
};
|
|
75527
|
+
maxDuration: undefined;
|
|
75528
|
+
};
|
|
75529
|
+
'/seam/console/v1/organizations/members/workspaces/revoke': {
|
|
75530
|
+
route: '/seam/console/v1/organizations/members/workspaces/revoke';
|
|
75531
|
+
method: 'POST';
|
|
75532
|
+
queryParams: {};
|
|
75533
|
+
jsonBody: {
|
|
75534
|
+
organization_id: string;
|
|
75535
|
+
user_id: string;
|
|
75536
|
+
workspace_id: string;
|
|
75537
|
+
};
|
|
75538
|
+
commonParams: {};
|
|
75539
|
+
formData: {};
|
|
75540
|
+
jsonResponse: {};
|
|
75541
|
+
maxDuration: undefined;
|
|
75542
|
+
};
|
|
75543
|
+
'/seam/console/v1/organizations/update': {
|
|
75544
|
+
route: '/seam/console/v1/organizations/update';
|
|
75545
|
+
method: 'PATCH' | 'POST';
|
|
75546
|
+
queryParams: {};
|
|
75547
|
+
jsonBody: {
|
|
75548
|
+
organization_id: string;
|
|
75549
|
+
name?: string | undefined;
|
|
75550
|
+
logo_image_base64?: (string | null) | undefined;
|
|
75551
|
+
connect_webview_customization?: {
|
|
75552
|
+
primary_button_color?: (string | null) | undefined;
|
|
75553
|
+
primary_button_text_color?: (string | null) | undefined;
|
|
75554
|
+
logo_shape?: (('circle' | 'square') | null) | undefined;
|
|
75555
|
+
} | undefined;
|
|
75556
|
+
};
|
|
75557
|
+
commonParams: {};
|
|
75558
|
+
formData: {};
|
|
75559
|
+
jsonResponse: {
|
|
75560
|
+
organization: {
|
|
75561
|
+
organization_id: string;
|
|
75562
|
+
name: string;
|
|
75563
|
+
logo_url: string | null;
|
|
75564
|
+
connect_webview_customization: {
|
|
75565
|
+
primary_button_color: string | null;
|
|
75566
|
+
primary_button_text_color: string | null;
|
|
75567
|
+
logo_shape: ('circle' | 'square') | null;
|
|
75568
|
+
};
|
|
75569
|
+
created_at: string;
|
|
75570
|
+
updated_at: string;
|
|
75571
|
+
};
|
|
75572
|
+
};
|
|
75573
|
+
maxDuration: undefined;
|
|
75574
|
+
};
|
|
75575
|
+
'/seam/console/v1/organizations/upload_logo': {
|
|
75576
|
+
route: '/seam/console/v1/organizations/upload_logo';
|
|
75577
|
+
method: 'POST';
|
|
75578
|
+
queryParams: {};
|
|
75579
|
+
jsonBody: {};
|
|
75580
|
+
commonParams: {};
|
|
75581
|
+
formData: {};
|
|
75582
|
+
jsonResponse: {
|
|
75583
|
+
organization: {
|
|
75584
|
+
organization_id: string;
|
|
75585
|
+
name: string;
|
|
75586
|
+
logo_url: string | null;
|
|
75587
|
+
connect_webview_customization: {
|
|
75588
|
+
primary_button_color: string | null;
|
|
75589
|
+
primary_button_text_color: string | null;
|
|
75590
|
+
logo_shape: ('circle' | 'square') | null;
|
|
75591
|
+
};
|
|
75592
|
+
created_at: string;
|
|
75593
|
+
updated_at: string;
|
|
75594
|
+
};
|
|
75595
|
+
};
|
|
75596
|
+
maxDuration: undefined;
|
|
75597
|
+
};
|
|
75598
|
+
'/seam/console/v1/organizations/workspaces/create': {
|
|
75599
|
+
route: '/seam/console/v1/organizations/workspaces/create';
|
|
75600
|
+
method: 'POST';
|
|
75601
|
+
queryParams: {};
|
|
75602
|
+
jsonBody: {
|
|
75603
|
+
organization_id: string;
|
|
75604
|
+
name: string;
|
|
75605
|
+
is_sandbox?: boolean;
|
|
75606
|
+
};
|
|
75607
|
+
commonParams: {};
|
|
75608
|
+
formData: {};
|
|
75609
|
+
jsonResponse: {
|
|
75610
|
+
/** Represents a Seam [workspace](https://docs.seam.co/core-concepts/workspaces). A workspace is a top-level entity that encompasses all other resources below it, such as devices, connected accounts, and Connect Webviews. Seam provides two types of workspaces. A [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces) is a special type of workspace designed for testing code. Sandbox workspaces offer test device accounts and virtual devices that you can connect and control. This ability to work with virtual devices is quite handy because it removes the need to own physical devices from multiple brands. To connect real devices and systems to Seam, use a [production workspace](https://docs.seam.co/core-concepts/workspaces#production-workspaces). */
|
|
75611
|
+
workspace: {
|
|
75612
|
+
/** ID of the workspace. */
|
|
75613
|
+
workspace_id: string;
|
|
75614
|
+
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
75615
|
+
name: string;
|
|
75616
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
75617
|
+
company_name: string;
|
|
75618
|
+
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
75619
|
+
is_sandbox: boolean;
|
|
75620
|
+
connect_webview_customization: {
|
|
75621
|
+
/** Primary button color for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75622
|
+
primary_button_color?: string | undefined;
|
|
75623
|
+
/** Primary button text color for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75624
|
+
primary_button_text_color?: string | undefined;
|
|
75625
|
+
/** Success message for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75626
|
+
success_message?: string | undefined;
|
|
75627
|
+
/** Logo shape for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75628
|
+
logo_shape?: ('circle' | 'square') | undefined;
|
|
75629
|
+
/** URL of the inviter logo for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75630
|
+
inviter_logo_url?: string | undefined;
|
|
75631
|
+
};
|
|
75632
|
+
/** Indicates whether the [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces) is suspended. Seam suspends sandbox workspaces that have not been accessed in 14 days. */
|
|
75633
|
+
is_suspended: boolean;
|
|
75634
|
+
/**
|
|
75635
|
+
* @deprecated Use `company_name` instead.*/
|
|
75636
|
+
connect_partner_name: (string | null) | null;
|
|
75637
|
+
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
75638
|
+
publishable_key?: string | undefined;
|
|
75639
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
75640
|
+
is_publishable_key_auth_enabled: boolean;
|
|
75641
|
+
/** ID of the organization to which the workspace belongs, or `null` if the workspace is not assigned to an organization. */
|
|
75642
|
+
organization_id: string | null;
|
|
75643
|
+
};
|
|
75644
|
+
};
|
|
75645
|
+
maxDuration: undefined;
|
|
75646
|
+
};
|
|
75647
|
+
'/seam/console/v1/organizations/workspaces/remove': {
|
|
75648
|
+
route: '/seam/console/v1/organizations/workspaces/remove';
|
|
75649
|
+
method: 'POST';
|
|
75650
|
+
queryParams: {};
|
|
75651
|
+
jsonBody: {
|
|
75652
|
+
workspace_id: string;
|
|
75653
|
+
};
|
|
75654
|
+
commonParams: {};
|
|
75655
|
+
formData: {};
|
|
75656
|
+
jsonResponse: {
|
|
75657
|
+
ok: boolean;
|
|
75658
|
+
};
|
|
75659
|
+
maxDuration: undefined;
|
|
75660
|
+
};
|
|
75661
|
+
'/seam/console/v1/organizations/workspaces/update': {
|
|
75662
|
+
route: '/seam/console/v1/organizations/workspaces/update';
|
|
75663
|
+
method: 'POST';
|
|
75664
|
+
queryParams: {};
|
|
75665
|
+
jsonBody: {
|
|
75666
|
+
workspace_id: string;
|
|
75667
|
+
name: string;
|
|
75668
|
+
};
|
|
75669
|
+
commonParams: {};
|
|
75670
|
+
formData: {};
|
|
75671
|
+
jsonResponse: {
|
|
75672
|
+
/** Represents a Seam [workspace](https://docs.seam.co/core-concepts/workspaces). A workspace is a top-level entity that encompasses all other resources below it, such as devices, connected accounts, and Connect Webviews. Seam provides two types of workspaces. A [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces) is a special type of workspace designed for testing code. Sandbox workspaces offer test device accounts and virtual devices that you can connect and control. This ability to work with virtual devices is quite handy because it removes the need to own physical devices from multiple brands. To connect real devices and systems to Seam, use a [production workspace](https://docs.seam.co/core-concepts/workspaces#production-workspaces). */
|
|
75673
|
+
workspace: {
|
|
75674
|
+
/** ID of the workspace. */
|
|
75675
|
+
workspace_id: string;
|
|
75676
|
+
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
75677
|
+
name: string;
|
|
75678
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
75679
|
+
company_name: string;
|
|
75680
|
+
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
75681
|
+
is_sandbox: boolean;
|
|
75682
|
+
connect_webview_customization: {
|
|
75683
|
+
/** Primary button color for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75684
|
+
primary_button_color?: string | undefined;
|
|
75685
|
+
/** Primary button text color for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75686
|
+
primary_button_text_color?: string | undefined;
|
|
75687
|
+
/** Success message for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75688
|
+
success_message?: string | undefined;
|
|
75689
|
+
/** Logo shape for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75690
|
+
logo_shape?: ('circle' | 'square') | undefined;
|
|
75691
|
+
/** URL of the inviter logo for [Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews) in the workspace. See also [Customize the Look and Feel of Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-look-and-feel-of-your-connect-webviews). */
|
|
75692
|
+
inviter_logo_url?: string | undefined;
|
|
75693
|
+
};
|
|
75694
|
+
/** Indicates whether the [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces) is suspended. Seam suspends sandbox workspaces that have not been accessed in 14 days. */
|
|
75695
|
+
is_suspended: boolean;
|
|
75696
|
+
/**
|
|
75697
|
+
* @deprecated Use `company_name` instead.*/
|
|
75698
|
+
connect_partner_name: (string | null) | null;
|
|
75699
|
+
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
75700
|
+
publishable_key?: string | undefined;
|
|
75701
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
75702
|
+
is_publishable_key_auth_enabled: boolean;
|
|
75703
|
+
/** ID of the organization to which the workspace belongs, or `null` if the workspace is not assigned to an organization. */
|
|
75704
|
+
organization_id: string | null;
|
|
75705
|
+
};
|
|
75706
|
+
};
|
|
75707
|
+
maxDuration: undefined;
|
|
75708
|
+
};
|
|
75234
75709
|
'/seam/console/v1/sites/create': {
|
|
75235
75710
|
route: '/seam/console/v1/sites/create';
|
|
75236
75711
|
method: 'POST';
|