@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
package/dist/connect.d.cts
CHANGED
|
@@ -25321,6 +25321,10 @@ declare const _default: {
|
|
|
25321
25321
|
since: {
|
|
25322
25322
|
type: string;
|
|
25323
25323
|
};
|
|
25324
|
+
unstable_offset: {
|
|
25325
|
+
format: string;
|
|
25326
|
+
type: string;
|
|
25327
|
+
};
|
|
25324
25328
|
};
|
|
25325
25329
|
type: string;
|
|
25326
25330
|
};
|
|
@@ -41138,6 +41142,7 @@ interface Routes {
|
|
|
41138
41142
|
queryParams: {};
|
|
41139
41143
|
jsonBody: {};
|
|
41140
41144
|
commonParams: {
|
|
41145
|
+
unstable_offset?: number | undefined;
|
|
41141
41146
|
since?: string | undefined;
|
|
41142
41147
|
between?: Array<string | Date> | undefined;
|
|
41143
41148
|
device_id?: string | undefined;
|
|
@@ -13936,6 +13936,10 @@ declare const _default: {
|
|
|
13936
13936
|
since: {
|
|
13937
13937
|
type: string;
|
|
13938
13938
|
};
|
|
13939
|
+
unstable_offset: {
|
|
13940
|
+
format: string;
|
|
13941
|
+
type: string;
|
|
13942
|
+
};
|
|
13939
13943
|
};
|
|
13940
13944
|
type: string;
|
|
13941
13945
|
};
|
|
@@ -12724,6 +12724,7 @@ export default {
|
|
|
12724
12724
|
},
|
|
12725
12725
|
limit: { default: 500, format: 'float', type: 'number' },
|
|
12726
12726
|
since: { type: 'string' },
|
|
12727
|
+
unstable_offset: { format: 'float', type: 'number' },
|
|
12727
12728
|
},
|
|
12728
12729
|
type: 'object',
|
|
12729
12730
|
},
|