@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
package/dist/connect.d.cts
CHANGED
|
@@ -30366,11 +30366,13 @@ declare const _default: {
|
|
|
30366
30366
|
limit: {
|
|
30367
30367
|
default: number;
|
|
30368
30368
|
description: string;
|
|
30369
|
-
|
|
30369
|
+
exclusiveMinimum: number;
|
|
30370
|
+
minimum: number;
|
|
30370
30371
|
type: string;
|
|
30371
30372
|
};
|
|
30372
30373
|
page_cursor: {
|
|
30373
30374
|
description: string;
|
|
30375
|
+
nullable: boolean;
|
|
30374
30376
|
type: string;
|
|
30375
30377
|
};
|
|
30376
30378
|
user_identity_email_address: {
|
|
@@ -34178,6 +34180,13 @@ declare const _default: {
|
|
|
34178
34180
|
};
|
|
34179
34181
|
type: string;
|
|
34180
34182
|
};
|
|
34183
|
+
event_ids: {
|
|
34184
|
+
items: {
|
|
34185
|
+
format: string;
|
|
34186
|
+
type: string;
|
|
34187
|
+
};
|
|
34188
|
+
type: string;
|
|
34189
|
+
};
|
|
34181
34190
|
event_type: {
|
|
34182
34191
|
enum: string[];
|
|
34183
34192
|
type: string;
|
|
@@ -51533,7 +51542,7 @@ interface Routes {
|
|
|
51533
51542
|
limit?: number;
|
|
51534
51543
|
created_before?: Date | undefined;
|
|
51535
51544
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
51536
|
-
page_cursor?: string | undefined;
|
|
51545
|
+
page_cursor?: (string | undefined) | null;
|
|
51537
51546
|
};
|
|
51538
51547
|
formData: {};
|
|
51539
51548
|
jsonResponse: {
|
|
@@ -57399,6 +57408,7 @@ interface Routes {
|
|
|
57399
57408
|
connected_account_id?: string | undefined;
|
|
57400
57409
|
connect_webview_id?: string | undefined;
|
|
57401
57410
|
limit?: number;
|
|
57411
|
+
event_ids?: string[] | undefined;
|
|
57402
57412
|
};
|
|
57403
57413
|
formData: {};
|
|
57404
57414
|
jsonResponse: {
|
|
@@ -13765,11 +13765,13 @@ declare const _default: {
|
|
|
13765
13765
|
limit: {
|
|
13766
13766
|
default: number;
|
|
13767
13767
|
description: string;
|
|
13768
|
-
|
|
13768
|
+
exclusiveMinimum: number;
|
|
13769
|
+
minimum: number;
|
|
13769
13770
|
type: string;
|
|
13770
13771
|
};
|
|
13771
13772
|
page_cursor: {
|
|
13772
13773
|
description: string;
|
|
13774
|
+
nullable: boolean;
|
|
13773
13775
|
type: string;
|
|
13774
13776
|
};
|
|
13775
13777
|
user_identity_email_address: {
|
|
@@ -17577,6 +17579,13 @@ declare const _default: {
|
|
|
17577
17579
|
};
|
|
17578
17580
|
type: string;
|
|
17579
17581
|
};
|
|
17582
|
+
event_ids: {
|
|
17583
|
+
items: {
|
|
17584
|
+
format: string;
|
|
17585
|
+
type: string;
|
|
17586
|
+
};
|
|
17587
|
+
type: string;
|
|
17588
|
+
};
|
|
17580
17589
|
event_type: {
|
|
17581
17590
|
enum: string[];
|
|
17582
17591
|
type: string;
|
|
@@ -17542,11 +17542,13 @@ export default {
|
|
|
17542
17542
|
limit: {
|
|
17543
17543
|
default: 500,
|
|
17544
17544
|
description: 'Maximum number of records to return per page.',
|
|
17545
|
-
|
|
17546
|
-
|
|
17545
|
+
exclusiveMinimum: 0,
|
|
17546
|
+
minimum: 0,
|
|
17547
|
+
type: 'integer',
|
|
17547
17548
|
},
|
|
17548
17549
|
page_cursor: {
|
|
17549
17550
|
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
17551
|
+
nullable: true,
|
|
17550
17552
|
type: 'string',
|
|
17551
17553
|
},
|
|
17552
17554
|
user_identity_email_address: {
|
|
@@ -20573,6 +20575,10 @@ export default {
|
|
|
20573
20575
|
items: { format: 'uuid', type: 'string' },
|
|
20574
20576
|
type: 'array',
|
|
20575
20577
|
},
|
|
20578
|
+
event_ids: {
|
|
20579
|
+
items: { format: 'uuid', type: 'string' },
|
|
20580
|
+
type: 'array',
|
|
20581
|
+
},
|
|
20576
20582
|
event_type: {
|
|
20577
20583
|
enum: [
|
|
20578
20584
|
'access_code.created',
|