@seamapi/types 1.352.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 +8 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +12 -2
- package/lib/seam/connect/openapi.d.ts +10 -1
- package/lib/seam/connect/openapi.js +8 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -2
- package/src/lib/seam/connect/route-types.ts +2 -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: {
|
|
@@ -16266,6 +16266,7 @@ export interface Routes {
|
|
|
16266
16266
|
connected_account_id?: string | undefined;
|
|
16267
16267
|
connect_webview_id?: string | undefined;
|
|
16268
16268
|
limit?: number;
|
|
16269
|
+
event_ids?: string[] | undefined;
|
|
16269
16270
|
};
|
|
16270
16271
|
formData: {};
|
|
16271
16272
|
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: 0,
|
|
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: {
|
|
@@ -21783,6 +21785,10 @@ export default {
|
|
|
21783
21785
|
items: { format: 'uuid', type: 'string' },
|
|
21784
21786
|
type: 'array',
|
|
21785
21787
|
},
|
|
21788
|
+
event_ids: {
|
|
21789
|
+
items: { format: 'uuid', type: 'string' },
|
|
21790
|
+
type: 'array',
|
|
21791
|
+
},
|
|
21786
21792
|
event_type: {
|
|
21787
21793
|
enum: [
|
|
21788
21794
|
'access_code.created',
|
|
@@ -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: {
|
|
@@ -20056,6 +20056,7 @@ export interface Routes {
|
|
|
20056
20056
|
connected_account_id?: string | undefined
|
|
20057
20057
|
connect_webview_id?: string | undefined
|
|
20058
20058
|
limit?: number
|
|
20059
|
+
event_ids?: string[] | undefined
|
|
20059
20060
|
}
|
|
20060
20061
|
formData: {}
|
|
20061
20062
|
jsonResponse: {
|