@seamapi/types 1.414.2 → 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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +19 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +7 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -1
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.cjs
CHANGED
|
@@ -32022,6 +32022,11 @@ var openapi_default = {
|
|
|
32022
32022
|
format: "float",
|
|
32023
32023
|
type: "number"
|
|
32024
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
|
+
},
|
|
32025
32030
|
user_identifier_key: {
|
|
32026
32031
|
description: "Your user ID for the user by which you want to filter Connect Webviews.",
|
|
32027
32032
|
type: "string"
|
|
@@ -32042,9 +32047,10 @@ var openapi_default = {
|
|
|
32042
32047
|
items: { $ref: "#/components/schemas/connect_webview" },
|
|
32043
32048
|
type: "array"
|
|
32044
32049
|
},
|
|
32045
|
-
ok: { type: "boolean" }
|
|
32050
|
+
ok: { type: "boolean" },
|
|
32051
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
32046
32052
|
},
|
|
32047
|
-
required: ["connect_webviews", "ok"],
|
|
32053
|
+
required: ["connect_webviews", "pagination", "ok"],
|
|
32048
32054
|
type: "object"
|
|
32049
32055
|
}
|
|
32050
32056
|
}
|