@seamapi/types 1.414.1 → 1.415.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 +9 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +12 -12
- package/lib/seam/connect/models/phones/phone-session.js +1 -1
- package/lib/seam/connect/models/phones/phone-session.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/phones/phone-session.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +9 -1
- package/src/lib/seam/connect/route-types.ts +12 -1
package/dist/connect.cjs
CHANGED
|
@@ -20926,6 +20926,7 @@ var openapi_default = {
|
|
|
20926
20926
|
"errors",
|
|
20927
20927
|
"warnings",
|
|
20928
20928
|
"is_managed",
|
|
20929
|
+
"acs_credential_id",
|
|
20929
20930
|
"acs_entrances"
|
|
20930
20931
|
],
|
|
20931
20932
|
type: "object",
|
|
@@ -32021,6 +32022,11 @@ var openapi_default = {
|
|
|
32021
32022
|
format: "float",
|
|
32022
32023
|
type: "number"
|
|
32023
32024
|
},
|
|
32025
|
+
page_cursor: {
|
|
32026
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
32027
|
+
nullable: true,
|
|
32028
|
+
type: "string"
|
|
32029
|
+
},
|
|
32024
32030
|
user_identifier_key: {
|
|
32025
32031
|
description: "Your user ID for the user by which you want to filter Connect Webviews.",
|
|
32026
32032
|
type: "string"
|
|
@@ -32041,9 +32047,10 @@ var openapi_default = {
|
|
|
32041
32047
|
items: { $ref: "#/components/schemas/connect_webview" },
|
|
32042
32048
|
type: "array"
|
|
32043
32049
|
},
|
|
32044
|
-
ok: { type: "boolean" }
|
|
32050
|
+
ok: { type: "boolean" },
|
|
32051
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
32045
32052
|
},
|
|
32046
|
-
required: ["connect_webviews", "ok"],
|
|
32053
|
+
required: ["connect_webviews", "pagination", "ok"],
|
|
32047
32054
|
type: "object"
|
|
32048
32055
|
}
|
|
32049
32056
|
}
|