@seamapi/types 1.352.0 → 1.353.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 +4 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8 -0
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -34178,6 +34178,13 @@ declare const _default: {
|
|
|
34178
34178
|
};
|
|
34179
34179
|
type: string;
|
|
34180
34180
|
};
|
|
34181
|
+
event_ids: {
|
|
34182
|
+
items: {
|
|
34183
|
+
format: string;
|
|
34184
|
+
type: string;
|
|
34185
|
+
};
|
|
34186
|
+
type: string;
|
|
34187
|
+
};
|
|
34181
34188
|
event_type: {
|
|
34182
34189
|
enum: string[];
|
|
34183
34190
|
type: string;
|
|
@@ -57399,6 +57406,7 @@ interface Routes {
|
|
|
57399
57406
|
connected_account_id?: string | undefined;
|
|
57400
57407
|
connect_webview_id?: string | undefined;
|
|
57401
57408
|
limit?: number;
|
|
57409
|
+
event_ids?: string[] | undefined;
|
|
57402
57410
|
};
|
|
57403
57411
|
formData: {};
|
|
57404
57412
|
jsonResponse: {
|
|
@@ -17577,6 +17577,13 @@ declare const _default: {
|
|
|
17577
17577
|
};
|
|
17578
17578
|
type: string;
|
|
17579
17579
|
};
|
|
17580
|
+
event_ids: {
|
|
17581
|
+
items: {
|
|
17582
|
+
format: string;
|
|
17583
|
+
type: string;
|
|
17584
|
+
};
|
|
17585
|
+
type: string;
|
|
17586
|
+
};
|
|
17580
17587
|
event_type: {
|
|
17581
17588
|
enum: string[];
|
|
17582
17589
|
type: string;
|
|
@@ -20573,6 +20573,10 @@ export default {
|
|
|
20573
20573
|
items: { format: 'uuid', type: 'string' },
|
|
20574
20574
|
type: 'array',
|
|
20575
20575
|
},
|
|
20576
|
+
event_ids: {
|
|
20577
|
+
items: { format: 'uuid', type: 'string' },
|
|
20578
|
+
type: 'array',
|
|
20579
|
+
},
|
|
20576
20580
|
event_type: {
|
|
20577
20581
|
enum: [
|
|
20578
20582
|
'access_code.created',
|