@seamapi/http 1.125.0 → 1.126.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.map +1 -1
- package/dist/connect.d.cts +1 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/routes/acs/entrances/entrances.d.ts +1 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/src/lib/seam/connect/routes/acs/entrances/entrances.ts +1 -0
- package/src/lib/version.ts +1 -1
|
@@ -58,6 +58,7 @@ export type AcsEntrancesGrantAccessRequest = SeamHttpRequest<void, undefined>;
|
|
|
58
58
|
export interface AcsEntrancesGrantAccessOptions {
|
|
59
59
|
}
|
|
60
60
|
export type AcsEntrancesListParameters = {
|
|
61
|
+
access_method_id?: string | undefined;
|
|
61
62
|
acs_credential_id?: string | undefined;
|
|
62
63
|
acs_entrance_ids?: Array<string> | undefined;
|
|
63
64
|
acs_system_id?: string | undefined;
|
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const seamapiJavascriptHttpVersion = "1.
|
|
1
|
+
declare const seamapiJavascriptHttpVersion = "1.126.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": "1.
|
|
3
|
+
"version": "1.126.0",
|
|
4
4
|
"description": "JavaScript HTTP client for the Seam API written in TypeScript.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"npm": ">=10.9.4"
|
|
87
87
|
},
|
|
88
88
|
"peerDependencies": {
|
|
89
|
-
"@seamapi/types": "^1.
|
|
89
|
+
"@seamapi/types": "^1.981.0"
|
|
90
90
|
},
|
|
91
91
|
"peerDependenciesMeta": {
|
|
92
92
|
"@seamapi/types": {
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"@seamapi/blueprint": "^1.0.0",
|
|
103
103
|
"@seamapi/fake-seam-connect": "^1.77.0",
|
|
104
104
|
"@seamapi/smith": "^1.0.0",
|
|
105
|
-
"@seamapi/types": "1.
|
|
105
|
+
"@seamapi/types": "1.981.0",
|
|
106
106
|
"@swc/core": "^1.11.29",
|
|
107
107
|
"@types/jsonwebtoken": "^9.0.6",
|
|
108
108
|
"@types/node": "^24.10.9",
|
|
@@ -273,6 +273,7 @@ export type AcsEntrancesGrantAccessRequest = SeamHttpRequest<void, undefined>
|
|
|
273
273
|
export interface AcsEntrancesGrantAccessOptions {}
|
|
274
274
|
|
|
275
275
|
export type AcsEntrancesListParameters = {
|
|
276
|
+
access_method_id?: string | undefined
|
|
276
277
|
acs_credential_id?: string | undefined
|
|
277
278
|
acs_entrance_ids?: Array<string> | undefined
|
|
278
279
|
acs_system_id?: string | undefined
|
package/src/lib/version.ts
CHANGED