@seamapi/types 1.353.0 → 1.353.2
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
|
@@ -10400,7 +10400,7 @@ export interface Routes {
|
|
|
10400
10400
|
limit?: number;
|
|
10401
10401
|
created_before?: Date | undefined;
|
|
10402
10402
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
10403
|
-
page_cursor?: string | undefined;
|
|
10403
|
+
page_cursor?: (string | undefined) | null;
|
|
10404
10404
|
};
|
|
10405
10405
|
formData: {};
|
|
10406
10406
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -18709,12 +18709,14 @@ export default {
|
|
|
18709
18709
|
default: 500,
|
|
18710
18710
|
description:
|
|
18711
18711
|
'Maximum number of records to return per page.',
|
|
18712
|
-
|
|
18713
|
-
|
|
18712
|
+
exclusiveMinimum: true,
|
|
18713
|
+
minimum: 0,
|
|
18714
|
+
type: 'integer',
|
|
18714
18715
|
},
|
|
18715
18716
|
page_cursor: {
|
|
18716
18717
|
description:
|
|
18717
18718
|
"Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
18719
|
+
nullable: true,
|
|
18718
18720
|
type: 'string',
|
|
18719
18721
|
},
|
|
18720
18722
|
user_identity_email_address: {
|
|
@@ -12453,7 +12453,7 @@ export interface Routes {
|
|
|
12453
12453
|
limit?: number
|
|
12454
12454
|
created_before?: Date | undefined
|
|
12455
12455
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
12456
|
-
page_cursor?: string | undefined
|
|
12456
|
+
page_cursor?: (string | undefined) | null
|
|
12457
12457
|
}
|
|
12458
12458
|
formData: {}
|
|
12459
12459
|
jsonResponse: {
|