@seamapi/types 1.205.1 → 1.206.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 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -0
- package/lib/seam/connect/openapi.d.ts +9 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.d.cts
CHANGED
|
@@ -15823,6 +15823,15 @@ declare const _default: {
|
|
|
15823
15823
|
format: string;
|
|
15824
15824
|
type: string;
|
|
15825
15825
|
};
|
|
15826
|
+
created_before: {
|
|
15827
|
+
format: string;
|
|
15828
|
+
type: string;
|
|
15829
|
+
};
|
|
15830
|
+
limit: {
|
|
15831
|
+
default: number;
|
|
15832
|
+
format: string;
|
|
15833
|
+
type: string;
|
|
15834
|
+
};
|
|
15826
15835
|
user_identity_email_address: {
|
|
15827
15836
|
type: string;
|
|
15828
15837
|
};
|
|
@@ -27547,6 +27556,8 @@ interface Routes {
|
|
|
27547
27556
|
user_identity_phone_number?: string | undefined;
|
|
27548
27557
|
user_identity_email_address?: string | undefined;
|
|
27549
27558
|
acs_system_id?: string | undefined;
|
|
27559
|
+
limit?: number;
|
|
27560
|
+
created_before?: Date | undefined;
|
|
27550
27561
|
};
|
|
27551
27562
|
formData: {};
|
|
27552
27563
|
jsonResponse: {
|
|
@@ -7955,6 +7955,15 @@ declare const _default: {
|
|
|
7955
7955
|
format: string;
|
|
7956
7956
|
type: string;
|
|
7957
7957
|
};
|
|
7958
|
+
created_before: {
|
|
7959
|
+
format: string;
|
|
7960
|
+
type: string;
|
|
7961
|
+
};
|
|
7962
|
+
limit: {
|
|
7963
|
+
default: number;
|
|
7964
|
+
format: string;
|
|
7965
|
+
type: string;
|
|
7966
|
+
};
|
|
7958
7967
|
user_identity_email_address: {
|
|
7959
7968
|
type: string;
|
|
7960
7969
|
};
|
|
@@ -6969,6 +6969,8 @@ export default {
|
|
|
6969
6969
|
schema: {
|
|
6970
6970
|
properties: {
|
|
6971
6971
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6972
|
+
created_before: { format: 'date-time', type: 'string' },
|
|
6973
|
+
limit: { default: 500, format: 'float', type: 'number' },
|
|
6972
6974
|
user_identity_email_address: { type: 'string' },
|
|
6973
6975
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6974
6976
|
user_identity_phone_number: { type: 'string' },
|