@seamapi/types 1.814.0 → 1.815.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.
@@ -102945,6 +102945,7 @@ declare const _default: {
102945
102945
  description: string;
102946
102946
  type: string;
102947
102947
  additionalProperties?: never;
102948
+ format?: never;
102948
102949
  minLength?: never;
102949
102950
  default?: never;
102950
102951
  exclusiveMinimum?: never;
@@ -102962,6 +102963,21 @@ declare const _default: {
102962
102963
  };
102963
102964
  description: string;
102964
102965
  type: string;
102966
+ format?: never;
102967
+ minLength?: never;
102968
+ default?: never;
102969
+ exclusiveMinimum?: never;
102970
+ minimum?: never;
102971
+ nullable?: never;
102972
+ };
102973
+ } | {
102974
+ in: string;
102975
+ name: string;
102976
+ schema: {
102977
+ description: string;
102978
+ format: string;
102979
+ type: string;
102980
+ additionalProperties?: never;
102965
102981
  minLength?: never;
102966
102982
  default?: never;
102967
102983
  exclusiveMinimum?: never;
@@ -102976,6 +102992,7 @@ declare const _default: {
102976
102992
  minLength: number;
102977
102993
  type: string;
102978
102994
  additionalProperties?: never;
102995
+ format?: never;
102979
102996
  default?: never;
102980
102997
  exclusiveMinimum?: never;
102981
102998
  minimum?: never;
@@ -102991,6 +103008,7 @@ declare const _default: {
102991
103008
  minimum: number;
102992
103009
  type: string;
102993
103010
  additionalProperties?: never;
103011
+ format?: never;
102994
103012
  minLength?: never;
102995
103013
  nullable?: never;
102996
103014
  };
@@ -103002,6 +103020,7 @@ declare const _default: {
103002
103020
  nullable: boolean;
103003
103021
  type: string;
103004
103022
  additionalProperties?: never;
103023
+ format?: never;
103005
103024
  minLength?: never;
103006
103025
  default?: never;
103007
103026
  exclusiveMinimum?: never;
@@ -103108,6 +103127,11 @@ declare const _default: {
103108
103127
  minLength: number;
103109
103128
  type: string;
103110
103129
  };
103130
+ space_id: {
103131
+ description: string;
103132
+ format: string;
103133
+ type: string;
103134
+ };
103111
103135
  user_identifier_key: {
103112
103136
  description: string;
103113
103137
  type: string;
@@ -169577,6 +169601,8 @@ type Routes = {
169577
169601
  } | undefined;
169578
169602
  /** Customer key by which you want to filter connected accounts. */
169579
169603
  customer_key?: string | undefined;
169604
+ /** ID of the space by which you want to filter connected accounts. */
169605
+ space_id?: string | undefined;
169580
169606
  /** 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`. */
169581
169607
  search?: string | undefined;
169582
169608
  /** Maximum number of records to return per page. */
package/dist/index.cjs CHANGED
@@ -52411,6 +52411,15 @@ var openapi_default = {
52411
52411
  type: "string"
52412
52412
  }
52413
52413
  },
52414
+ {
52415
+ in: "query",
52416
+ name: "space_id",
52417
+ schema: {
52418
+ description: "ID of the space by which you want to filter connected accounts.",
52419
+ format: "uuid",
52420
+ type: "string"
52421
+ }
52422
+ },
52414
52423
  {
52415
52424
  in: "query",
52416
52425
  name: "search",
@@ -52514,6 +52523,11 @@ var openapi_default = {
52514
52523
  minLength: 1,
52515
52524
  type: "string"
52516
52525
  },
52526
+ space_id: {
52527
+ description: "ID of the space by which you want to filter connected accounts.",
52528
+ format: "uuid",
52529
+ type: "string"
52530
+ },
52517
52531
  user_identifier_key: {
52518
52532
  description: "Your user ID for the user by which you want to filter connected accounts.",
52519
52533
  type: "string"