@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.
@@ -3062,6 +3062,8 @@ export interface Routes {
3062
3062
  user_identity_phone_number?: string | undefined;
3063
3063
  user_identity_email_address?: string | undefined;
3064
3064
  acs_system_id?: string | undefined;
3065
+ limit?: number;
3066
+ created_before?: Date | undefined;
3065
3067
  };
3066
3068
  formData: {};
3067
3069
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.205.1",
3
+ "version": "1.206.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -7069,6 +7069,8 @@ export default {
7069
7069
  schema: {
7070
7070
  properties: {
7071
7071
  acs_system_id: { format: 'uuid', type: 'string' },
7072
+ created_before: { format: 'date-time', type: 'string' },
7073
+ limit: { default: 500, format: 'float', type: 'number' },
7072
7074
  user_identity_email_address: { type: 'string' },
7073
7075
  user_identity_id: { format: 'uuid', type: 'string' },
7074
7076
  user_identity_phone_number: { type: 'string' },
@@ -3502,6 +3502,8 @@ export interface Routes {
3502
3502
  user_identity_phone_number?: string | undefined
3503
3503
  user_identity_email_address?: string | undefined
3504
3504
  acs_system_id?: string | undefined
3505
+ limit?: number
3506
+ created_before?: Date | undefined
3505
3507
  }
3506
3508
  formData: {}
3507
3509
  jsonResponse: {