@seamapi/types 1.1029.0 → 1.1030.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/lib/seam/connect/models/workspaces/workspace.d.ts +1 -1
- package/lib/seam/connect/models/workspaces/workspace.js +7 -9
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.js +5 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +25 -25
- package/package.json +1 -1
- package/src/lib/seam/connect/models/workspaces/workspace.ts +8 -12
- package/src/lib/seam/connect/openapi.ts +6 -4
- package/src/lib/seam/connect/route-types.ts +25 -25
|
@@ -79743,7 +79743,8 @@ export type Routes = {
|
|
|
79743
79743
|
workspace_id: string;
|
|
79744
79744
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
79745
79745
|
name: string;
|
|
79746
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
79746
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
79747
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
79747
79748
|
company_name: string;
|
|
79748
79749
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
79749
79750
|
is_sandbox: boolean;
|
|
@@ -79761,9 +79762,8 @@ export type Routes = {
|
|
|
79761
79762
|
};
|
|
79762
79763
|
/** 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. */
|
|
79763
79764
|
is_suspended: boolean;
|
|
79764
|
-
/**
|
|
79765
|
-
|
|
79766
|
-
connect_partner_name: (string | null) | null;
|
|
79765
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
79766
|
+
connect_partner_name: string | null;
|
|
79767
79767
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
79768
79768
|
publishable_key?: string | undefined;
|
|
79769
79769
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -79805,7 +79805,8 @@ export type Routes = {
|
|
|
79805
79805
|
workspace_id: string;
|
|
79806
79806
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
79807
79807
|
name: string;
|
|
79808
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
79808
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
79809
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
79809
79810
|
company_name: string;
|
|
79810
79811
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
79811
79812
|
is_sandbox: boolean;
|
|
@@ -79823,9 +79824,8 @@ export type Routes = {
|
|
|
79823
79824
|
};
|
|
79824
79825
|
/** 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. */
|
|
79825
79826
|
is_suspended: boolean;
|
|
79826
|
-
/**
|
|
79827
|
-
|
|
79828
|
-
connect_partner_name: (string | null) | null;
|
|
79827
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
79828
|
+
connect_partner_name: string | null;
|
|
79829
79829
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
79830
79830
|
publishable_key?: string | undefined;
|
|
79831
79831
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -117149,7 +117149,7 @@ export type Routes = {
|
|
|
117149
117149
|
/** Company name for the new workspace. */
|
|
117150
117150
|
company_name?: string | undefined;
|
|
117151
117151
|
/** Connect partner name for the new workspace. */
|
|
117152
|
-
connect_partner_name?: (
|
|
117152
|
+
connect_partner_name?: (string | null) | undefined;
|
|
117153
117153
|
/** Indicates whether the new workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
117154
117154
|
is_sandbox?: boolean;
|
|
117155
117155
|
/**
|
|
@@ -117185,7 +117185,8 @@ export type Routes = {
|
|
|
117185
117185
|
workspace_id: string;
|
|
117186
117186
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
117187
117187
|
name: string;
|
|
117188
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
117188
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
117189
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
117189
117190
|
company_name: string;
|
|
117190
117191
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
117191
117192
|
is_sandbox: boolean;
|
|
@@ -117203,9 +117204,8 @@ export type Routes = {
|
|
|
117203
117204
|
};
|
|
117204
117205
|
/** 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. */
|
|
117205
117206
|
is_suspended: boolean;
|
|
117206
|
-
/**
|
|
117207
|
-
|
|
117208
|
-
connect_partner_name: (string | null) | null;
|
|
117207
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
117208
|
+
connect_partner_name: string | null;
|
|
117209
117209
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
117210
117210
|
publishable_key?: string | undefined;
|
|
117211
117211
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -117447,7 +117447,8 @@ export type Routes = {
|
|
|
117447
117447
|
workspace_id: string;
|
|
117448
117448
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
117449
117449
|
name: string;
|
|
117450
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
117450
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
117451
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
117451
117452
|
company_name: string;
|
|
117452
117453
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
117453
117454
|
is_sandbox: boolean;
|
|
@@ -117465,9 +117466,8 @@ export type Routes = {
|
|
|
117465
117466
|
};
|
|
117466
117467
|
/** 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. */
|
|
117467
117468
|
is_suspended: boolean;
|
|
117468
|
-
/**
|
|
117469
|
-
|
|
117470
|
-
connect_partner_name: (string | null) | null;
|
|
117469
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
117470
|
+
connect_partner_name: string | null;
|
|
117471
117471
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
117472
117472
|
publishable_key?: string | undefined;
|
|
117473
117473
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -128042,7 +128042,8 @@ export type Routes = {
|
|
|
128042
128042
|
workspace_id: string;
|
|
128043
128043
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
128044
128044
|
name: string;
|
|
128045
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
128045
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
128046
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
128046
128047
|
company_name: string;
|
|
128047
128048
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
128048
128049
|
is_sandbox: boolean;
|
|
@@ -128060,9 +128061,8 @@ export type Routes = {
|
|
|
128060
128061
|
};
|
|
128061
128062
|
/** 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. */
|
|
128062
128063
|
is_suspended: boolean;
|
|
128063
|
-
/**
|
|
128064
|
-
|
|
128065
|
-
connect_partner_name: (string | null) | null;
|
|
128064
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
128065
|
+
connect_partner_name: string | null;
|
|
128066
128066
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
128067
128067
|
publishable_key?: string | undefined;
|
|
128068
128068
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -128086,7 +128086,8 @@ export type Routes = {
|
|
|
128086
128086
|
workspace_id: string;
|
|
128087
128087
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
128088
128088
|
name: string;
|
|
128089
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
128089
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
128090
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
128090
128091
|
company_name: string;
|
|
128091
128092
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
128092
128093
|
is_sandbox: boolean;
|
|
@@ -128104,9 +128105,8 @@ export type Routes = {
|
|
|
128104
128105
|
};
|
|
128105
128106
|
/** 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. */
|
|
128106
128107
|
is_suspended: boolean;
|
|
128107
|
-
/**
|
|
128108
|
-
|
|
128109
|
-
connect_partner_name: (string | null) | null;
|
|
128108
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
128109
|
+
connect_partner_name: string | null;
|
|
128110
128110
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
128111
128111
|
publishable_key?: string | undefined;
|
|
128112
128112
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
package/package.json
CHANGED
|
@@ -9,11 +9,12 @@ export const workspace = z.object({
|
|
|
9
9
|
.describe(
|
|
10
10
|
'Name of the [workspace](https://docs.seam.co/core-concepts/workspaces).',
|
|
11
11
|
),
|
|
12
|
-
company_name: z
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
company_name: z.string().describe(`
|
|
13
|
+
---
|
|
14
|
+
deprecated: Use \`connect_partner_name\` instead.
|
|
15
|
+
---
|
|
16
|
+
Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
17
|
+
`),
|
|
17
18
|
is_sandbox: z
|
|
18
19
|
.boolean()
|
|
19
20
|
.describe(
|
|
@@ -58,13 +59,8 @@ export const workspace = z.object({
|
|
|
58
59
|
.string()
|
|
59
60
|
.nullable()
|
|
60
61
|
.describe(
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
deprecated: Use \`company_name\` instead.
|
|
64
|
-
---
|
|
65
|
-
`,
|
|
66
|
-
)
|
|
67
|
-
.nullable(),
|
|
62
|
+
'Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).',
|
|
63
|
+
),
|
|
68
64
|
publishable_key: z
|
|
69
65
|
.string()
|
|
70
66
|
.optional()
|
|
@@ -38315,15 +38315,17 @@ const openapi: OpenAPISpec = {
|
|
|
38315
38315
|
'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).',
|
|
38316
38316
|
properties: {
|
|
38317
38317
|
company_name: {
|
|
38318
|
+
deprecated: true,
|
|
38318
38319
|
description:
|
|
38319
38320
|
'Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).',
|
|
38320
38321
|
type: 'string',
|
|
38322
|
+
'x-deprecated': 'Use `connect_partner_name` instead.',
|
|
38321
38323
|
},
|
|
38322
38324
|
connect_partner_name: {
|
|
38323
|
-
|
|
38325
|
+
description:
|
|
38326
|
+
'Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).',
|
|
38324
38327
|
nullable: true,
|
|
38325
38328
|
type: 'string',
|
|
38326
|
-
'x-deprecated': 'Use `company_name` instead.',
|
|
38327
38329
|
},
|
|
38328
38330
|
connect_webview_customization: {
|
|
38329
38331
|
properties: {
|
|
@@ -88898,15 +88900,15 @@ const openapi: OpenAPISpec = {
|
|
|
88898
88900
|
schema: {
|
|
88899
88901
|
properties: {
|
|
88900
88902
|
company_name: {
|
|
88903
|
+
deprecated: true,
|
|
88901
88904
|
description: 'Company name for the new workspace.',
|
|
88902
88905
|
type: 'string',
|
|
88906
|
+
'x-deprecated': 'Use `connect_partner_name` instead.',
|
|
88903
88907
|
},
|
|
88904
88908
|
connect_partner_name: {
|
|
88905
|
-
deprecated: true,
|
|
88906
88909
|
description: 'Connect partner name for the new workspace.',
|
|
88907
88910
|
nullable: true,
|
|
88908
88911
|
type: 'string',
|
|
88909
|
-
'x-deprecated': 'Use `company_name` instead.',
|
|
88910
88912
|
},
|
|
88911
88913
|
connect_webview_customization: {
|
|
88912
88914
|
description:
|
|
@@ -95796,7 +95796,8 @@ export type Routes = {
|
|
|
95796
95796
|
workspace_id: string
|
|
95797
95797
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
95798
95798
|
name: string
|
|
95799
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
95799
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
95800
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
95800
95801
|
company_name: string
|
|
95801
95802
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
95802
95803
|
is_sandbox: boolean
|
|
@@ -95814,9 +95815,8 @@ export type Routes = {
|
|
|
95814
95815
|
}
|
|
95815
95816
|
/** 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. */
|
|
95816
95817
|
is_suspended: boolean
|
|
95817
|
-
/**
|
|
95818
|
-
|
|
95819
|
-
connect_partner_name: (string | null) | null
|
|
95818
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
95819
|
+
connect_partner_name: string | null
|
|
95820
95820
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
95821
95821
|
publishable_key?: string | undefined
|
|
95822
95822
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -95858,7 +95858,8 @@ export type Routes = {
|
|
|
95858
95858
|
workspace_id: string
|
|
95859
95859
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
95860
95860
|
name: string
|
|
95861
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
95861
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
95862
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
95862
95863
|
company_name: string
|
|
95863
95864
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
95864
95865
|
is_sandbox: boolean
|
|
@@ -95876,9 +95877,8 @@ export type Routes = {
|
|
|
95876
95877
|
}
|
|
95877
95878
|
/** 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. */
|
|
95878
95879
|
is_suspended: boolean
|
|
95879
|
-
/**
|
|
95880
|
-
|
|
95881
|
-
connect_partner_name: (string | null) | null
|
|
95880
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
95881
|
+
connect_partner_name: string | null
|
|
95882
95882
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
95883
95883
|
publishable_key?: string | undefined
|
|
95884
95884
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -140206,7 +140206,7 @@ export type Routes = {
|
|
|
140206
140206
|
/** Company name for the new workspace. */
|
|
140207
140207
|
company_name?: string | undefined
|
|
140208
140208
|
/** Connect partner name for the new workspace. */
|
|
140209
|
-
connect_partner_name?: (
|
|
140209
|
+
connect_partner_name?: (string | null) | undefined
|
|
140210
140210
|
/** Indicates whether the new workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
140211
140211
|
is_sandbox?: boolean
|
|
140212
140212
|
/**
|
|
@@ -140244,7 +140244,8 @@ export type Routes = {
|
|
|
140244
140244
|
workspace_id: string
|
|
140245
140245
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
140246
140246
|
name: string
|
|
140247
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
140247
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
140248
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
140248
140249
|
company_name: string
|
|
140249
140250
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
140250
140251
|
is_sandbox: boolean
|
|
@@ -140262,9 +140263,8 @@ export type Routes = {
|
|
|
140262
140263
|
}
|
|
140263
140264
|
/** 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. */
|
|
140264
140265
|
is_suspended: boolean
|
|
140265
|
-
/**
|
|
140266
|
-
|
|
140267
|
-
connect_partner_name: (string | null) | null
|
|
140266
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
140267
|
+
connect_partner_name: string | null
|
|
140268
140268
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
140269
140269
|
publishable_key?: string | undefined
|
|
140270
140270
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -140538,7 +140538,8 @@ export type Routes = {
|
|
|
140538
140538
|
workspace_id: string
|
|
140539
140539
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
140540
140540
|
name: string
|
|
140541
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
140541
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
140542
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
140542
140543
|
company_name: string
|
|
140543
140544
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
140544
140545
|
is_sandbox: boolean
|
|
@@ -140556,9 +140557,8 @@ export type Routes = {
|
|
|
140556
140557
|
}
|
|
140557
140558
|
/** 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. */
|
|
140558
140559
|
is_suspended: boolean
|
|
140559
|
-
/**
|
|
140560
|
-
|
|
140561
|
-
connect_partner_name: (string | null) | null
|
|
140560
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
140561
|
+
connect_partner_name: string | null
|
|
140562
140562
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
140563
140563
|
publishable_key?: string | undefined
|
|
140564
140564
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -153002,7 +153002,8 @@ export type Routes = {
|
|
|
153002
153002
|
workspace_id: string
|
|
153003
153003
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
153004
153004
|
name: string
|
|
153005
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
153005
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
153006
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
153006
153007
|
company_name: string
|
|
153007
153008
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
153008
153009
|
is_sandbox: boolean
|
|
@@ -153020,9 +153021,8 @@ export type Routes = {
|
|
|
153020
153021
|
}
|
|
153021
153022
|
/** 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. */
|
|
153022
153023
|
is_suspended: boolean
|
|
153023
|
-
/**
|
|
153024
|
-
|
|
153025
|
-
connect_partner_name: (string | null) | null
|
|
153024
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
153025
|
+
connect_partner_name: string | null
|
|
153026
153026
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
153027
153027
|
publishable_key?: string | undefined
|
|
153028
153028
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|
|
@@ -153046,7 +153046,8 @@ export type Routes = {
|
|
|
153046
153046
|
workspace_id: string
|
|
153047
153047
|
/** Name of the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
153048
153048
|
name: string
|
|
153049
|
-
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
153049
|
+
/** Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
153050
|
+
* @deprecated Use `connect_partner_name` instead.*/
|
|
153050
153051
|
company_name: string
|
|
153051
153052
|
/** Indicates whether the workspace is a [sandbox workspace](https://docs.seam.co/core-concepts/workspaces#sandbox-workspaces). */
|
|
153052
153053
|
is_sandbox: boolean
|
|
@@ -153064,9 +153065,8 @@ export type Routes = {
|
|
|
153064
153065
|
}
|
|
153065
153066
|
/** 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. */
|
|
153066
153067
|
is_suspended: boolean
|
|
153067
|
-
/**
|
|
153068
|
-
|
|
153069
|
-
connect_partner_name: (string | null) | null
|
|
153068
|
+
/** Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces). */
|
|
153069
|
+
connect_partner_name: string | null
|
|
153070
153070
|
/** Publishable key for the [workspace](https://docs.seam.co/core-concepts/workspaces). This key is used to identify the workspace in client-side applications. */
|
|
153071
153071
|
publishable_key?: string | undefined
|
|
153072
153072
|
/** Indicates whether publishable key authentication is enabled for this workspace. */
|