@seamapi/types 1.353.0 → 1.353.1
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 +4 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +4 -2
- package/lib/seam/connect/openapi.d.ts +3 -1
- package/lib/seam/connect/openapi.js +4 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -2
- package/src/lib/seam/connect/route-types.ts +1 -1
package/dist/connect.cjs
CHANGED
|
@@ -21145,11 +21145,13 @@ var openapi_default = {
|
|
|
21145
21145
|
limit: {
|
|
21146
21146
|
default: 500,
|
|
21147
21147
|
description: "Maximum number of records to return per page.",
|
|
21148
|
-
|
|
21149
|
-
|
|
21148
|
+
exclusiveMinimum: 0,
|
|
21149
|
+
minimum: 0,
|
|
21150
|
+
type: "integer"
|
|
21150
21151
|
},
|
|
21151
21152
|
page_cursor: {
|
|
21152
21153
|
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
21154
|
+
nullable: true,
|
|
21153
21155
|
type: "string"
|
|
21154
21156
|
},
|
|
21155
21157
|
user_identity_email_address: {
|