@seamapi/http 2.19.0 → 2.20.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/resources/workspace.d.ts +2 -1
- package/lib/routes/workspaces/workspaces.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
- package/src/lib/resources/workspace.ts +2 -1
- package/src/lib/routes/workspaces/workspaces.ts +1 -1
- package/src/lib/version.ts +1 -1
|
@@ -4,10 +4,11 @@
|
|
|
4
4
|
export type Workspace = {
|
|
5
5
|
/**
|
|
6
6
|
* Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
7
|
+
* @deprecated Use `connect_partner_name` instead.
|
|
7
8
|
*/
|
|
8
9
|
company_name: string;
|
|
9
10
|
/**
|
|
10
|
-
*
|
|
11
|
+
* Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
11
12
|
*/
|
|
12
13
|
connect_partner_name: string | null;
|
|
13
14
|
connect_webview_customization: {
|
|
@@ -40,11 +40,11 @@ export declare class SeamHttpWorkspaces {
|
|
|
40
40
|
export type WorkspacesCreateParameters = {
|
|
41
41
|
/**
|
|
42
42
|
* Company name for the new workspace.
|
|
43
|
+
* @deprecated Use `connect_partner_name` instead.
|
|
43
44
|
*/
|
|
44
45
|
company_name?: string | undefined;
|
|
45
46
|
/**
|
|
46
47
|
* Connect partner name for the new workspace.
|
|
47
|
-
* @deprecated Use `company_name` instead.
|
|
48
48
|
*/
|
|
49
49
|
connect_partner_name?: string | null | undefined;
|
|
50
50
|
/**
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const seamapiJavascriptHttpVersion = "2.
|
|
1
|
+
declare const seamapiJavascriptHttpVersion = "2.20.0";
|
|
2
2
|
export default seamapiJavascriptHttpVersion;
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/http",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.20.0",
|
|
4
4
|
"description": "JavaScript HTTP client for the Seam API written in TypeScript.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@seamapi/blueprint": "^1.8.0",
|
|
88
88
|
"@seamapi/fake-seam-connect": "^2.0.4",
|
|
89
89
|
"@seamapi/smith": "^1.1.0",
|
|
90
|
-
"@seamapi/types": "1.
|
|
90
|
+
"@seamapi/types": "1.1030.0",
|
|
91
91
|
"@types/jsonwebtoken": "^9.0.6",
|
|
92
92
|
"@types/node": "^24.10.9",
|
|
93
93
|
"ava": "^8.0.1",
|
|
@@ -9,11 +9,12 @@
|
|
|
9
9
|
export type Workspace = {
|
|
10
10
|
/**
|
|
11
11
|
* Company name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
12
|
+
* @deprecated Use `connect_partner_name` instead.
|
|
12
13
|
*/
|
|
13
14
|
company_name: string
|
|
14
15
|
|
|
15
16
|
/**
|
|
16
|
-
*
|
|
17
|
+
* Seam Connect partner name associated with the [workspace](https://docs.seam.co/core-concepts/workspaces).
|
|
17
18
|
*/
|
|
18
19
|
connect_partner_name: string | null
|
|
19
20
|
|
|
@@ -263,11 +263,11 @@ export class SeamHttpWorkspaces {
|
|
|
263
263
|
export type WorkspacesCreateParameters = {
|
|
264
264
|
/**
|
|
265
265
|
* Company name for the new workspace.
|
|
266
|
+
* @deprecated Use `connect_partner_name` instead.
|
|
266
267
|
*/
|
|
267
268
|
company_name?: string | undefined
|
|
268
269
|
/**
|
|
269
270
|
* Connect partner name for the new workspace.
|
|
270
|
-
* @deprecated Use `company_name` instead.
|
|
271
271
|
*/
|
|
272
272
|
connect_partner_name?: string | null | undefined
|
|
273
273
|
/**
|
package/src/lib/version.ts
CHANGED