@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
package/dist/connect.d.cts
CHANGED
|
@@ -35187,14 +35187,16 @@ type Routes = {
|
|
|
35187
35187
|
commonParams: {
|
|
35188
35188
|
/** Customer key for which you want to list access codes. */
|
|
35189
35189
|
customer_key?: string | undefined;
|
|
35190
|
-
/** ID of the device for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
35190
|
+
/** 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`. */
|
|
35191
35191
|
device_id?: string | undefined;
|
|
35192
|
-
/** IDs of the access codes that you want to retrieve. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
35192
|
+
/** 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`. */
|
|
35193
35193
|
access_code_ids?: string[] | undefined;
|
|
35194
|
-
/** ID of the access method for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
35194
|
+
/** 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`. */
|
|
35195
35195
|
access_method_id?: string | undefined;
|
|
35196
|
-
/** ID of the access grant for which you want to list access codes. Specify `device_id`, `access_code_ids`, `access_method_id`, or `
|
|
35196
|
+
/** 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`. */
|
|
35197
35197
|
access_grant_id?: string | undefined;
|
|
35198
|
+
/** 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`. */
|
|
35199
|
+
access_grant_key?: string | undefined;
|
|
35198
35200
|
/** Your user ID for the user by which to filter access codes. */
|
|
35199
35201
|
user_identifier_key?: string | undefined;
|
|
35200
35202
|
/** Numerical limit on the number of access codes to return. */
|
|
@@ -105462,6 +105464,479 @@ type Routes = {
|
|
|
105462
105464
|
};
|
|
105463
105465
|
maxDuration: undefined;
|
|
105464
105466
|
};
|
|
105467
|
+
'/seam/console/v1/organizations/create': {
|
|
105468
|
+
route: '/seam/console/v1/organizations/create';
|
|
105469
|
+
method: 'POST';
|
|
105470
|
+
queryParams: {};
|
|
105471
|
+
jsonBody: {
|
|
105472
|
+
name: string;
|
|
105473
|
+
logo_image_base64?: string | undefined;
|
|
105474
|
+
};
|
|
105475
|
+
commonParams: {};
|
|
105476
|
+
formData: {};
|
|
105477
|
+
jsonResponse: {
|
|
105478
|
+
organization: {
|
|
105479
|
+
organization_id: string;
|
|
105480
|
+
name: string;
|
|
105481
|
+
logo_url: string | null;
|
|
105482
|
+
connect_webview_customization: {
|
|
105483
|
+
primary_button_color: string | null;
|
|
105484
|
+
primary_button_text_color: string | null;
|
|
105485
|
+
logo_shape: ('circle' | 'square') | null;
|
|
105486
|
+
};
|
|
105487
|
+
created_at: string;
|
|
105488
|
+
updated_at: string;
|
|
105489
|
+
};
|
|
105490
|
+
};
|
|
105491
|
+
maxDuration: undefined;
|
|
105492
|
+
};
|
|
105493
|
+
'/seam/console/v1/organizations/customization_profiles/copy': {
|
|
105494
|
+
route: '/seam/console/v1/organizations/customization_profiles/copy';
|
|
105495
|
+
method: 'POST';
|
|
105496
|
+
queryParams: {};
|
|
105497
|
+
jsonBody: {
|
|
105498
|
+
source_workspace_id: string;
|
|
105499
|
+
source_customization_profile_id: string;
|
|
105500
|
+
destination_workspace_id: string;
|
|
105501
|
+
destination_customization_profile_id?: string | undefined;
|
|
105502
|
+
};
|
|
105503
|
+
commonParams: {};
|
|
105504
|
+
formData: {};
|
|
105505
|
+
jsonResponse: {
|
|
105506
|
+
/** A customization profile. */
|
|
105507
|
+
customization_profile: {
|
|
105508
|
+
workspace_id: string;
|
|
105509
|
+
name: string | null;
|
|
105510
|
+
customization_profile_id: string;
|
|
105511
|
+
created_at: string;
|
|
105512
|
+
logo_url?: string | undefined;
|
|
105513
|
+
primary_color?: string | undefined;
|
|
105514
|
+
secondary_color?: string | undefined;
|
|
105515
|
+
customer_portal_theme?: {
|
|
105516
|
+
primary_color?: string | undefined;
|
|
105517
|
+
primary_foreground_color?: string | undefined;
|
|
105518
|
+
secondary_color?: string | undefined;
|
|
105519
|
+
secondary_foreground_color?: string | undefined;
|
|
105520
|
+
font_family?: string | undefined;
|
|
105521
|
+
mono_font_family?: string | undefined;
|
|
105522
|
+
} | undefined;
|
|
105523
|
+
message_overrides?: {
|
|
105524
|
+
[x: string]: {
|
|
105525
|
+
[x: string]: string;
|
|
105526
|
+
};
|
|
105527
|
+
} | undefined;
|
|
105528
|
+
};
|
|
105529
|
+
};
|
|
105530
|
+
maxDuration: undefined;
|
|
105531
|
+
};
|
|
105532
|
+
'/seam/console/v1/organizations/delete': {
|
|
105533
|
+
route: '/seam/console/v1/organizations/delete';
|
|
105534
|
+
method: 'POST';
|
|
105535
|
+
queryParams: {};
|
|
105536
|
+
jsonBody: {
|
|
105537
|
+
organization_id: string;
|
|
105538
|
+
};
|
|
105539
|
+
commonParams: {};
|
|
105540
|
+
formData: {};
|
|
105541
|
+
jsonResponse: {
|
|
105542
|
+
organization: {
|
|
105543
|
+
organization_id: string;
|
|
105544
|
+
name: string;
|
|
105545
|
+
logo_url: string | null;
|
|
105546
|
+
connect_webview_customization: {
|
|
105547
|
+
primary_button_color: string | null;
|
|
105548
|
+
primary_button_text_color: string | null;
|
|
105549
|
+
logo_shape: ('circle' | 'square') | null;
|
|
105550
|
+
};
|
|
105551
|
+
created_at: string;
|
|
105552
|
+
updated_at: string;
|
|
105553
|
+
};
|
|
105554
|
+
};
|
|
105555
|
+
maxDuration: undefined;
|
|
105556
|
+
};
|
|
105557
|
+
'/seam/console/v1/organizations/get': {
|
|
105558
|
+
route: '/seam/console/v1/organizations/get';
|
|
105559
|
+
method: 'GET' | 'POST';
|
|
105560
|
+
queryParams: {};
|
|
105561
|
+
jsonBody: {};
|
|
105562
|
+
commonParams: {
|
|
105563
|
+
organization_id: string;
|
|
105564
|
+
};
|
|
105565
|
+
formData: {};
|
|
105566
|
+
jsonResponse: {
|
|
105567
|
+
organization: {
|
|
105568
|
+
organization_id: string;
|
|
105569
|
+
name: string;
|
|
105570
|
+
logo_url: string | null;
|
|
105571
|
+
connect_webview_customization: {
|
|
105572
|
+
primary_button_color: string | null;
|
|
105573
|
+
primary_button_text_color: string | null;
|
|
105574
|
+
logo_shape: ('circle' | 'square') | null;
|
|
105575
|
+
};
|
|
105576
|
+
created_at: string;
|
|
105577
|
+
updated_at: string;
|
|
105578
|
+
};
|
|
105579
|
+
members: {
|
|
105580
|
+
organization_member_id: string;
|
|
105581
|
+
organization_id: string;
|
|
105582
|
+
user_id: string;
|
|
105583
|
+
email: string | null;
|
|
105584
|
+
first_name: string | null;
|
|
105585
|
+
last_name: string | null;
|
|
105586
|
+
role: 'admin' | 'member';
|
|
105587
|
+
created_at: string;
|
|
105588
|
+
}[];
|
|
105589
|
+
pending_invitations: {
|
|
105590
|
+
organization_invitation_id: string;
|
|
105591
|
+
organization_id: string;
|
|
105592
|
+
email: string;
|
|
105593
|
+
role: 'admin' | 'member';
|
|
105594
|
+
status: 'pending' | 'accepted' | 'revoked';
|
|
105595
|
+
invited_at: string;
|
|
105596
|
+
expires_at: string;
|
|
105597
|
+
}[];
|
|
105598
|
+
workspaces: {
|
|
105599
|
+
workspace_id: string;
|
|
105600
|
+
name: string;
|
|
105601
|
+
is_sandbox: boolean;
|
|
105602
|
+
}[];
|
|
105603
|
+
};
|
|
105604
|
+
maxDuration: undefined;
|
|
105605
|
+
};
|
|
105606
|
+
'/seam/console/v1/organizations/invitations/revoke': {
|
|
105607
|
+
route: '/seam/console/v1/organizations/invitations/revoke';
|
|
105608
|
+
method: 'POST';
|
|
105609
|
+
queryParams: {};
|
|
105610
|
+
jsonBody: {
|
|
105611
|
+
organization_invitation_id: string;
|
|
105612
|
+
};
|
|
105613
|
+
commonParams: {};
|
|
105614
|
+
formData: {};
|
|
105615
|
+
jsonResponse: {
|
|
105616
|
+
organization_invitation: {
|
|
105617
|
+
organization_invitation_id: string;
|
|
105618
|
+
organization_id: string;
|
|
105619
|
+
email: string;
|
|
105620
|
+
role: 'admin' | 'member';
|
|
105621
|
+
status: 'pending' | 'accepted' | 'revoked';
|
|
105622
|
+
invited_at: string;
|
|
105623
|
+
expires_at: string;
|
|
105624
|
+
};
|
|
105625
|
+
};
|
|
105626
|
+
maxDuration: undefined;
|
|
105627
|
+
};
|
|
105628
|
+
'/seam/console/v1/organizations/list': {
|
|
105629
|
+
route: '/seam/console/v1/organizations/list';
|
|
105630
|
+
method: 'GET' | 'POST';
|
|
105631
|
+
queryParams: {};
|
|
105632
|
+
jsonBody: {};
|
|
105633
|
+
commonParams: {};
|
|
105634
|
+
formData: {};
|
|
105635
|
+
jsonResponse: {
|
|
105636
|
+
organizations: {
|
|
105637
|
+
organization_id: string;
|
|
105638
|
+
name: string;
|
|
105639
|
+
logo_url: string | null;
|
|
105640
|
+
connect_webview_customization: {
|
|
105641
|
+
primary_button_color: string | null;
|
|
105642
|
+
primary_button_text_color: string | null;
|
|
105643
|
+
logo_shape: ('circle' | 'square') | null;
|
|
105644
|
+
};
|
|
105645
|
+
created_at: string;
|
|
105646
|
+
updated_at: string;
|
|
105647
|
+
workspace_count: number;
|
|
105648
|
+
member_count: number;
|
|
105649
|
+
}[];
|
|
105650
|
+
};
|
|
105651
|
+
maxDuration: undefined;
|
|
105652
|
+
};
|
|
105653
|
+
'/seam/console/v1/organizations/members/add': {
|
|
105654
|
+
route: '/seam/console/v1/organizations/members/add';
|
|
105655
|
+
method: 'POST';
|
|
105656
|
+
queryParams: {};
|
|
105657
|
+
jsonBody: {
|
|
105658
|
+
organization_id: string;
|
|
105659
|
+
email: string;
|
|
105660
|
+
role?: 'admin' | 'member';
|
|
105661
|
+
};
|
|
105662
|
+
commonParams: {};
|
|
105663
|
+
formData: {};
|
|
105664
|
+
jsonResponse: {
|
|
105665
|
+
organization_member?: {
|
|
105666
|
+
organization_member_id: string;
|
|
105667
|
+
organization_id: string;
|
|
105668
|
+
user_id: string;
|
|
105669
|
+
email: string | null;
|
|
105670
|
+
first_name: string | null;
|
|
105671
|
+
last_name: string | null;
|
|
105672
|
+
role: 'admin' | 'member';
|
|
105673
|
+
created_at: string;
|
|
105674
|
+
} | undefined;
|
|
105675
|
+
organization_invitation?: {
|
|
105676
|
+
organization_invitation_id: string;
|
|
105677
|
+
organization_id: string;
|
|
105678
|
+
email: string;
|
|
105679
|
+
role: 'admin' | 'member';
|
|
105680
|
+
status: 'pending' | 'accepted' | 'revoked';
|
|
105681
|
+
invited_at: string;
|
|
105682
|
+
expires_at: string;
|
|
105683
|
+
} | undefined;
|
|
105684
|
+
};
|
|
105685
|
+
maxDuration: undefined;
|
|
105686
|
+
};
|
|
105687
|
+
'/seam/console/v1/organizations/members/remove': {
|
|
105688
|
+
route: '/seam/console/v1/organizations/members/remove';
|
|
105689
|
+
method: 'POST';
|
|
105690
|
+
queryParams: {};
|
|
105691
|
+
jsonBody: {
|
|
105692
|
+
organization_id: string;
|
|
105693
|
+
user_id: string;
|
|
105694
|
+
};
|
|
105695
|
+
commonParams: {};
|
|
105696
|
+
formData: {};
|
|
105697
|
+
jsonResponse: {};
|
|
105698
|
+
maxDuration: undefined;
|
|
105699
|
+
};
|
|
105700
|
+
'/seam/console/v1/organizations/members/update': {
|
|
105701
|
+
route: '/seam/console/v1/organizations/members/update';
|
|
105702
|
+
method: 'POST';
|
|
105703
|
+
queryParams: {};
|
|
105704
|
+
jsonBody: {
|
|
105705
|
+
organization_id: string;
|
|
105706
|
+
user_id: string;
|
|
105707
|
+
role: 'admin' | 'member';
|
|
105708
|
+
};
|
|
105709
|
+
commonParams: {};
|
|
105710
|
+
formData: {};
|
|
105711
|
+
jsonResponse: {
|
|
105712
|
+
organization_member: {
|
|
105713
|
+
organization_member_id: string;
|
|
105714
|
+
organization_id: string;
|
|
105715
|
+
user_id: string;
|
|
105716
|
+
email: string | null;
|
|
105717
|
+
first_name: string | null;
|
|
105718
|
+
last_name: string | null;
|
|
105719
|
+
role: 'admin' | 'member';
|
|
105720
|
+
created_at: string;
|
|
105721
|
+
};
|
|
105722
|
+
};
|
|
105723
|
+
maxDuration: undefined;
|
|
105724
|
+
};
|
|
105725
|
+
'/seam/console/v1/organizations/members/workspaces/grant': {
|
|
105726
|
+
route: '/seam/console/v1/organizations/members/workspaces/grant';
|
|
105727
|
+
method: 'POST';
|
|
105728
|
+
queryParams: {};
|
|
105729
|
+
jsonBody: {
|
|
105730
|
+
organization_id: string;
|
|
105731
|
+
user_id: string;
|
|
105732
|
+
workspace_id: string;
|
|
105733
|
+
};
|
|
105734
|
+
commonParams: {};
|
|
105735
|
+
formData: {};
|
|
105736
|
+
jsonResponse: {};
|
|
105737
|
+
maxDuration: undefined;
|
|
105738
|
+
};
|
|
105739
|
+
'/seam/console/v1/organizations/members/workspaces/list': {
|
|
105740
|
+
route: '/seam/console/v1/organizations/members/workspaces/list';
|
|
105741
|
+
method: 'GET' | 'POST';
|
|
105742
|
+
queryParams: {};
|
|
105743
|
+
jsonBody: {};
|
|
105744
|
+
commonParams: {
|
|
105745
|
+
organization_id: string;
|
|
105746
|
+
user_id: string;
|
|
105747
|
+
};
|
|
105748
|
+
formData: {};
|
|
105749
|
+
jsonResponse: {
|
|
105750
|
+
workspaces: {
|
|
105751
|
+
workspace_id: string;
|
|
105752
|
+
name: string;
|
|
105753
|
+
is_sandbox: boolean;
|
|
105754
|
+
is_owner: boolean;
|
|
105755
|
+
created_at: string;
|
|
105756
|
+
}[];
|
|
105757
|
+
};
|
|
105758
|
+
maxDuration: undefined;
|
|
105759
|
+
};
|
|
105760
|
+
'/seam/console/v1/organizations/members/workspaces/revoke': {
|
|
105761
|
+
route: '/seam/console/v1/organizations/members/workspaces/revoke';
|
|
105762
|
+
method: 'POST';
|
|
105763
|
+
queryParams: {};
|
|
105764
|
+
jsonBody: {
|
|
105765
|
+
organization_id: string;
|
|
105766
|
+
user_id: string;
|
|
105767
|
+
workspace_id: string;
|
|
105768
|
+
};
|
|
105769
|
+
commonParams: {};
|
|
105770
|
+
formData: {};
|
|
105771
|
+
jsonResponse: {};
|
|
105772
|
+
maxDuration: undefined;
|
|
105773
|
+
};
|
|
105774
|
+
'/seam/console/v1/organizations/update': {
|
|
105775
|
+
route: '/seam/console/v1/organizations/update';
|
|
105776
|
+
method: 'PATCH' | 'POST';
|
|
105777
|
+
queryParams: {};
|
|
105778
|
+
jsonBody: {
|
|
105779
|
+
organization_id: string;
|
|
105780
|
+
name?: string | undefined;
|
|
105781
|
+
logo_image_base64?: (string | null) | undefined;
|
|
105782
|
+
connect_webview_customization?: {
|
|
105783
|
+
primary_button_color?: (string | null) | undefined;
|
|
105784
|
+
primary_button_text_color?: (string | null) | undefined;
|
|
105785
|
+
logo_shape?: (('circle' | 'square') | null) | undefined;
|
|
105786
|
+
} | undefined;
|
|
105787
|
+
};
|
|
105788
|
+
commonParams: {};
|
|
105789
|
+
formData: {};
|
|
105790
|
+
jsonResponse: {
|
|
105791
|
+
organization: {
|
|
105792
|
+
organization_id: string;
|
|
105793
|
+
name: string;
|
|
105794
|
+
logo_url: string | null;
|
|
105795
|
+
connect_webview_customization: {
|
|
105796
|
+
primary_button_color: string | null;
|
|
105797
|
+
primary_button_text_color: string | null;
|
|
105798
|
+
logo_shape: ('circle' | 'square') | null;
|
|
105799
|
+
};
|
|
105800
|
+
created_at: string;
|
|
105801
|
+
updated_at: string;
|
|
105802
|
+
};
|
|
105803
|
+
};
|
|
105804
|
+
maxDuration: undefined;
|
|
105805
|
+
};
|
|
105806
|
+
'/seam/console/v1/organizations/upload_logo': {
|
|
105807
|
+
route: '/seam/console/v1/organizations/upload_logo';
|
|
105808
|
+
method: 'POST';
|
|
105809
|
+
queryParams: {};
|
|
105810
|
+
jsonBody: {};
|
|
105811
|
+
commonParams: {};
|
|
105812
|
+
formData: {};
|
|
105813
|
+
jsonResponse: {
|
|
105814
|
+
organization: {
|
|
105815
|
+
organization_id: string;
|
|
105816
|
+
name: string;
|
|
105817
|
+
logo_url: string | null;
|
|
105818
|
+
connect_webview_customization: {
|
|
105819
|
+
primary_button_color: string | null;
|
|
105820
|
+
primary_button_text_color: string | null;
|
|
105821
|
+
logo_shape: ('circle' | 'square') | null;
|
|
105822
|
+
};
|
|
105823
|
+
created_at: string;
|
|
105824
|
+
updated_at: string;
|
|
105825
|
+
};
|
|
105826
|
+
};
|
|
105827
|
+
maxDuration: undefined;
|
|
105828
|
+
};
|
|
105829
|
+
'/seam/console/v1/organizations/workspaces/create': {
|
|
105830
|
+
route: '/seam/console/v1/organizations/workspaces/create';
|
|
105831
|
+
method: 'POST';
|
|
105832
|
+
queryParams: {};
|
|
105833
|
+
jsonBody: {
|
|
105834
|
+
organization_id: string;
|
|
105835
|
+
name: string;
|
|
105836
|
+
is_sandbox?: boolean;
|
|
105837
|
+
};
|
|
105838
|
+
commonParams: {};
|
|
105839
|
+
formData: {};
|
|
105840
|
+
jsonResponse: {
|
|
105841
|
+
/** 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). */
|
|
105842
|
+
workspace: {
|
|
105843
|
+
/** ID of the workspace. */
|
|
105844
|
+
workspace_id: string;
|
|
105845
|
+
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
105846
|
+
name: string;
|
|
105847
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
105848
|
+
company_name: string;
|
|
105849
|
+
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
105850
|
+
is_sandbox: boolean;
|
|
105851
|
+
connect_webview_customization: {
|
|
105852
|
+
/** 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). */
|
|
105853
|
+
primary_button_color?: string | undefined;
|
|
105854
|
+
/** 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). */
|
|
105855
|
+
primary_button_text_color?: string | undefined;
|
|
105856
|
+
/** 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). */
|
|
105857
|
+
success_message?: string | undefined;
|
|
105858
|
+
/** 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). */
|
|
105859
|
+
logo_shape?: ('circle' | 'square') | undefined;
|
|
105860
|
+
/** 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). */
|
|
105861
|
+
inviter_logo_url?: string | undefined;
|
|
105862
|
+
};
|
|
105863
|
+
/** 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. */
|
|
105864
|
+
is_suspended: boolean;
|
|
105865
|
+
/**
|
|
105866
|
+
* @deprecated Use `company_name` instead.*/
|
|
105867
|
+
connect_partner_name: (string | null) | null;
|
|
105868
|
+
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
105869
|
+
publishable_key?: string | undefined;
|
|
105870
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
105871
|
+
is_publishable_key_auth_enabled: boolean;
|
|
105872
|
+
/** ID of the organization to which the workspace belongs, or `null` if the workspace is not assigned to an organization. */
|
|
105873
|
+
organization_id: string | null;
|
|
105874
|
+
};
|
|
105875
|
+
};
|
|
105876
|
+
maxDuration: undefined;
|
|
105877
|
+
};
|
|
105878
|
+
'/seam/console/v1/organizations/workspaces/remove': {
|
|
105879
|
+
route: '/seam/console/v1/organizations/workspaces/remove';
|
|
105880
|
+
method: 'POST';
|
|
105881
|
+
queryParams: {};
|
|
105882
|
+
jsonBody: {
|
|
105883
|
+
workspace_id: string;
|
|
105884
|
+
};
|
|
105885
|
+
commonParams: {};
|
|
105886
|
+
formData: {};
|
|
105887
|
+
jsonResponse: {
|
|
105888
|
+
ok: boolean;
|
|
105889
|
+
};
|
|
105890
|
+
maxDuration: undefined;
|
|
105891
|
+
};
|
|
105892
|
+
'/seam/console/v1/organizations/workspaces/update': {
|
|
105893
|
+
route: '/seam/console/v1/organizations/workspaces/update';
|
|
105894
|
+
method: 'POST';
|
|
105895
|
+
queryParams: {};
|
|
105896
|
+
jsonBody: {
|
|
105897
|
+
workspace_id: string;
|
|
105898
|
+
name: string;
|
|
105899
|
+
};
|
|
105900
|
+
commonParams: {};
|
|
105901
|
+
formData: {};
|
|
105902
|
+
jsonResponse: {
|
|
105903
|
+
/** 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). */
|
|
105904
|
+
workspace: {
|
|
105905
|
+
/** ID of the workspace. */
|
|
105906
|
+
workspace_id: string;
|
|
105907
|
+
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
105908
|
+
name: string;
|
|
105909
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
105910
|
+
company_name: string;
|
|
105911
|
+
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
105912
|
+
is_sandbox: boolean;
|
|
105913
|
+
connect_webview_customization: {
|
|
105914
|
+
/** 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). */
|
|
105915
|
+
primary_button_color?: string | undefined;
|
|
105916
|
+
/** 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). */
|
|
105917
|
+
primary_button_text_color?: string | undefined;
|
|
105918
|
+
/** 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). */
|
|
105919
|
+
success_message?: string | undefined;
|
|
105920
|
+
/** 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). */
|
|
105921
|
+
logo_shape?: ('circle' | 'square') | undefined;
|
|
105922
|
+
/** 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). */
|
|
105923
|
+
inviter_logo_url?: string | undefined;
|
|
105924
|
+
};
|
|
105925
|
+
/** 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. */
|
|
105926
|
+
is_suspended: boolean;
|
|
105927
|
+
/**
|
|
105928
|
+
* @deprecated Use `company_name` instead.*/
|
|
105929
|
+
connect_partner_name: (string | null) | null;
|
|
105930
|
+
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
105931
|
+
publishable_key?: string | undefined;
|
|
105932
|
+
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
105933
|
+
is_publishable_key_auth_enabled: boolean;
|
|
105934
|
+
/** ID of the organization to which the workspace belongs, or `null` if the workspace is not assigned to an organization. */
|
|
105935
|
+
organization_id: string | null;
|
|
105936
|
+
};
|
|
105937
|
+
};
|
|
105938
|
+
maxDuration: undefined;
|
|
105939
|
+
};
|
|
105465
105940
|
'/seam/console/v1/sites/create': {
|
|
105466
105941
|
route: '/seam/console/v1/sites/create';
|
|
105467
105942
|
method: 'POST';
|