@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.
@@ -14421,9 +14421,18 @@ declare const _default: {
14421
14421
  type?: never;
14422
14422
  } | {
14423
14423
  properties: {
14424
+ created_before: {
14425
+ format: string;
14426
+ type: string;
14427
+ };
14424
14428
  is_multi_phone_sync_credential: {
14425
14429
  type: string;
14426
14430
  };
14431
+ limit: {
14432
+ default: number;
14433
+ format: string;
14434
+ type: string;
14435
+ };
14427
14436
  };
14428
14437
  type: string;
14429
14438
  oneOf?: never;
@@ -26827,6 +26836,8 @@ interface Routes {
26827
26836
  } | {
26828
26837
  user_identity_id: string;
26829
26838
  }) & {
26839
+ limit?: number;
26840
+ created_before?: Date | undefined;
26830
26841
  is_multi_phone_sync_credential?: boolean | undefined;
26831
26842
  };
26832
26843
  formData: {};
@@ -6598,9 +6598,18 @@ declare const _default: {
6598
6598
  type?: never;
6599
6599
  } | {
6600
6600
  properties: {
6601
+ created_before: {
6602
+ format: string;
6603
+ type: string;
6604
+ };
6601
6605
  is_multi_phone_sync_credential: {
6602
6606
  type: string;
6603
6607
  };
6608
+ limit: {
6609
+ default: number;
6610
+ format: string;
6611
+ type: string;
6612
+ };
6604
6613
  };
6605
6614
  type: string;
6606
6615
  oneOf?: never;
@@ -6058,7 +6058,9 @@ export default {
6058
6058
  },
6059
6059
  {
6060
6060
  properties: {
6061
+ created_before: { format: 'date-time', type: 'string' },
6061
6062
  is_multi_phone_sync_credential: { type: 'boolean' },
6063
+ limit: { default: 500, format: 'float', type: 'number' },
6062
6064
  },
6063
6065
  type: 'object',
6064
6066
  },