@seamapi/types 1.197.0 → 1.198.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.
@@ -2443,6 +2443,8 @@ export interface Routes {
2443
2443
  } | {
2444
2444
  user_identity_id: string;
2445
2445
  }) & {
2446
+ limit?: number;
2447
+ created_before?: Date | undefined;
2446
2448
  is_multi_phone_sync_credential?: boolean | undefined;
2447
2449
  };
2448
2450
  formData: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.197.0",
3
+ "version": "1.198.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -6158,7 +6158,9 @@ export default {
6158
6158
  },
6159
6159
  {
6160
6160
  properties: {
6161
+ created_before: { format: 'date-time', type: 'string' },
6161
6162
  is_multi_phone_sync_credential: { type: 'boolean' },
6163
+ limit: { default: 500, format: 'float', type: 'number' },
6162
6164
  },
6163
6165
  type: 'object',
6164
6166
  },
@@ -2717,6 +2717,8 @@ export interface Routes {
2717
2717
  user_identity_id: string
2718
2718
  }
2719
2719
  ) & {
2720
+ limit?: number
2721
+ created_before?: Date | undefined
2720
2722
  is_multi_phone_sync_credential?: boolean | undefined
2721
2723
  }
2722
2724
  formData: {}