@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
|
@@ -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
|
@@ -21783,6 +21783,10 @@ export default {
|
|
|
21783
21783
|
items: { format: 'uuid', type: 'string' },
|
|
21784
21784
|
type: 'array',
|
|
21785
21785
|
},
|
|
21786
|
+
event_ids: {
|
|
21787
|
+
items: { format: 'uuid', type: 'string' },
|
|
21788
|
+
type: 'array',
|
|
21789
|
+
},
|
|
21786
21790
|
event_type: {
|
|
21787
21791
|
enum: [
|
|
21788
21792
|
'access_code.created',
|
|
@@ -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: {
|