@seamapi/types 1.275.0 → 1.276.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 +2 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -0
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +1 -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 +1 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -10075,6 +10075,7 @@ export interface Routes {
|
|
|
10075
10075
|
queryParams: {};
|
|
10076
10076
|
jsonBody: {};
|
|
10077
10077
|
commonParams: {
|
|
10078
|
+
unstable_offset?: number | undefined;
|
|
10078
10079
|
since?: string | undefined;
|
|
10079
10080
|
between?: Array<string | Date> | undefined;
|
|
10080
10081
|
device_id?: string | undefined;
|
package/package.json
CHANGED
|
@@ -13012,6 +13012,7 @@ export default {
|
|
|
13012
13012
|
},
|
|
13013
13013
|
limit: { default: 500, format: 'float', type: 'number' },
|
|
13014
13014
|
since: { type: 'string' },
|
|
13015
|
+
unstable_offset: { format: 'float', type: 'number' },
|
|
13015
13016
|
},
|
|
13016
13017
|
type: 'object',
|
|
13017
13018
|
},
|
|
@@ -12531,6 +12531,7 @@ export interface Routes {
|
|
|
12531
12531
|
queryParams: {}
|
|
12532
12532
|
jsonBody: {}
|
|
12533
12533
|
commonParams: {
|
|
12534
|
+
unstable_offset?: number | undefined
|
|
12534
12535
|
since?: string | undefined
|
|
12535
12536
|
between?: Array<string | Date> | undefined
|
|
12536
12537
|
device_id?: string | undefined
|