@seamapi/types 1.447.0 → 1.448.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.
@@ -55077,7 +55077,6 @@ declare const _default: {
55077
55077
  description: string;
55078
55078
  type: string;
55079
55079
  additionalProperties?: never;
55080
- items?: never;
55081
55080
  minLength?: never;
55082
55081
  default?: never;
55083
55082
  exclusiveMinimum?: never;
@@ -55095,24 +55094,6 @@ declare const _default: {
55095
55094
  };
55096
55095
  description: string;
55097
55096
  type: string;
55098
- items?: never;
55099
- minLength?: never;
55100
- default?: never;
55101
- exclusiveMinimum?: never;
55102
- minimum?: never;
55103
- nullable?: never;
55104
- };
55105
- } | {
55106
- in: string;
55107
- name: string;
55108
- schema: {
55109
- items: {
55110
- format: string;
55111
- type: string;
55112
- };
55113
- type: string;
55114
- description?: never;
55115
- additionalProperties?: never;
55116
55097
  minLength?: never;
55117
55098
  default?: never;
55118
55099
  exclusiveMinimum?: never;
@@ -55127,7 +55108,6 @@ declare const _default: {
55127
55108
  minLength: number;
55128
55109
  type: string;
55129
55110
  additionalProperties?: never;
55130
- items?: never;
55131
55111
  default?: never;
55132
55112
  exclusiveMinimum?: never;
55133
55113
  minimum?: never;
@@ -55143,7 +55123,6 @@ declare const _default: {
55143
55123
  minimum: number;
55144
55124
  type: string;
55145
55125
  additionalProperties?: never;
55146
- items?: never;
55147
55126
  minLength?: never;
55148
55127
  nullable?: never;
55149
55128
  };
@@ -55155,7 +55134,6 @@ declare const _default: {
55155
55134
  nullable: boolean;
55156
55135
  type: string;
55157
55136
  additionalProperties?: never;
55158
- items?: never;
55159
55137
  minLength?: never;
55160
55138
  default?: never;
55161
55139
  exclusiveMinimum?: never;
@@ -55241,11 +55219,8 @@ declare const _default: {
55241
55219
  description: string;
55242
55220
  type: string;
55243
55221
  };
55244
- customer_ids: {
55245
- items: {
55246
- format: string;
55247
- type: string;
55248
- };
55222
+ customer_key: {
55223
+ description: string;
55249
55224
  type: string;
55250
55225
  };
55251
55226
  limit: {
@@ -98648,7 +98623,8 @@ interface Routes {
98648
98623
  user_identifier_key?: string | undefined;
98649
98624
  /** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
98650
98625
  custom_metadata_has?: Record<string, string | boolean> | undefined;
98651
- customer_ids?: string[] | undefined;
98626
+ /** Customer key by which you want to filter connected accounts. */
98627
+ customer_key?: string | undefined;
98652
98628
  /** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
98653
98629
  search?: string | undefined;
98654
98630
  /** Maximum number of records to return per page. */
package/dist/index.cjs CHANGED
@@ -38989,10 +38989,10 @@ var openapi_default = {
38989
38989
  },
38990
38990
  {
38991
38991
  in: "query",
38992
- name: "customer_ids",
38992
+ name: "customer_key",
38993
38993
  schema: {
38994
- items: { format: "uuid", type: "string" },
38995
- type: "array"
38994
+ description: "Customer key by which you want to filter connected accounts.",
38995
+ type: "string"
38996
38996
  }
38997
38997
  },
38998
38998
  {
@@ -39077,9 +39077,9 @@ var openapi_default = {
39077
39077
  description: "Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs.",
39078
39078
  type: "object"
39079
39079
  },
39080
- customer_ids: {
39081
- items: { format: "uuid", type: "string" },
39082
- type: "array"
39080
+ customer_key: {
39081
+ description: "Customer key by which you want to filter connected accounts.",
39082
+ type: "string"
39083
39083
  },
39084
39084
  limit: {
39085
39085
  default: 11e3,