@seamapi/types 1.718.0 → 1.720.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.
@@ -104419,6 +104419,10 @@ declare const _default: {
104419
104419
  format: string;
104420
104420
  type: string;
104421
104421
  };
104422
+ connected_account_id: {
104423
+ format: string;
104424
+ type: string;
104425
+ };
104422
104426
  name: {
104423
104427
  type: string;
104424
104428
  };
@@ -104431,6 +104435,10 @@ declare const _default: {
104431
104435
  devices: {
104432
104436
  items: {
104433
104437
  properties: {
104438
+ connected_account_id: {
104439
+ format: string;
104440
+ type: string;
104441
+ };
104434
104442
  device_id: {
104435
104443
  format: string;
104436
104444
  type: string;
@@ -104535,6 +104543,10 @@ declare const _default: {
104535
104543
  format: string;
104536
104544
  type: string;
104537
104545
  };
104546
+ connected_account_id: {
104547
+ format: string;
104548
+ type: string;
104549
+ };
104538
104550
  name: {
104539
104551
  type: string;
104540
104552
  };
@@ -104547,6 +104559,10 @@ declare const _default: {
104547
104559
  devices: {
104548
104560
  items: {
104549
104561
  properties: {
104562
+ connected_account_id: {
104563
+ format: string;
104564
+ type: string;
104565
+ };
104550
104566
  device_id: {
104551
104567
  format: string;
104552
104568
  type: string;
@@ -112672,6 +112688,10 @@ declare const _default: {
112672
112688
  name: string;
112673
112689
  schema: {
112674
112690
  description: string;
112691
+ items: {
112692
+ format: string;
112693
+ type: string;
112694
+ };
112675
112695
  type: string;
112676
112696
  format?: never;
112677
112697
  default?: never;
@@ -112679,6 +112699,19 @@ declare const _default: {
112679
112699
  minimum?: never;
112680
112700
  nullable?: never;
112681
112701
  };
112702
+ } | {
112703
+ in: string;
112704
+ name: string;
112705
+ schema: {
112706
+ description: string;
112707
+ type: string;
112708
+ items?: never;
112709
+ format?: never;
112710
+ default?: never;
112711
+ exclusiveMinimum?: never;
112712
+ minimum?: never;
112713
+ nullable?: never;
112714
+ };
112682
112715
  } | {
112683
112716
  in: string;
112684
112717
  name: string;
@@ -112686,6 +112719,7 @@ declare const _default: {
112686
112719
  description: string;
112687
112720
  format: string;
112688
112721
  type: string;
112722
+ items?: never;
112689
112723
  default?: never;
112690
112724
  exclusiveMinimum?: never;
112691
112725
  minimum?: never;
@@ -112700,6 +112734,7 @@ declare const _default: {
112700
112734
  exclusiveMinimum: boolean;
112701
112735
  minimum: number;
112702
112736
  type: string;
112737
+ items?: never;
112703
112738
  format?: never;
112704
112739
  nullable?: never;
112705
112740
  };
@@ -112710,6 +112745,7 @@ declare const _default: {
112710
112745
  description: string;
112711
112746
  nullable: boolean;
112712
112747
  type: string;
112748
+ items?: never;
112713
112749
  format?: never;
112714
112750
  default?: never;
112715
112751
  exclusiveMinimum?: never;
@@ -112812,6 +112848,14 @@ declare const _default: {
112812
112848
  description: string;
112813
112849
  type: string;
112814
112850
  };
112851
+ user_identity_ids: {
112852
+ description: string;
112853
+ items: {
112854
+ format: string;
112855
+ type: string;
112856
+ };
112857
+ type: string;
112858
+ };
112815
112859
  };
112816
112860
  type: string;
112817
112861
  };
@@ -173699,10 +173743,12 @@ type Routes = {
173699
173743
  device_id: string;
173700
173744
  device_type: string;
173701
173745
  name: string;
173746
+ connected_account_id: string;
173702
173747
  }[];
173703
173748
  acs_entrances: {
173704
173749
  acs_entrance_id: string;
173705
173750
  name: string;
173751
+ connected_account_id: string;
173706
173752
  }[];
173707
173753
  needs_review?: boolean | undefined;
173708
173754
  is_draft?: boolean | undefined;
@@ -192273,6 +192319,8 @@ type Routes = {
192273
192319
  queryParams: {};
192274
192320
  jsonBody: {};
192275
192321
  commonParams: {
192322
+ /** Array of user identity IDs by which to filter the list of user identities. */
192323
+ user_identity_ids?: string[] | undefined;
192276
192324
  /** String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`. */
192277
192325
  search?: string | undefined;
192278
192326
  /** `acs_system_id` of the credential manager by which you want to filter the list of user identities. */
package/dist/index.cjs CHANGED
@@ -60788,9 +60788,17 @@ var openapi_default = {
60788
60788
  format: "uuid",
60789
60789
  type: "string"
60790
60790
  },
60791
+ connected_account_id: {
60792
+ format: "uuid",
60793
+ type: "string"
60794
+ },
60791
60795
  name: { type: "string" }
60792
60796
  },
60793
- required: ["acs_entrance_id", "name"],
60797
+ required: [
60798
+ "acs_entrance_id",
60799
+ "name",
60800
+ "connected_account_id"
60801
+ ],
60794
60802
  type: "object"
60795
60803
  },
60796
60804
  type: "array"
@@ -60798,11 +60806,20 @@ var openapi_default = {
60798
60806
  devices: {
60799
60807
  items: {
60800
60808
  properties: {
60809
+ connected_account_id: {
60810
+ format: "uuid",
60811
+ type: "string"
60812
+ },
60801
60813
  device_id: { format: "uuid", type: "string" },
60802
60814
  device_type: { type: "string" },
60803
60815
  name: { type: "string" }
60804
60816
  },
60805
- required: ["device_id", "device_type", "name"],
60817
+ required: [
60818
+ "device_id",
60819
+ "device_type",
60820
+ "name",
60821
+ "connected_account_id"
60822
+ ],
60806
60823
  type: "object"
60807
60824
  },
60808
60825
  type: "array"
@@ -60886,9 +60903,17 @@ var openapi_default = {
60886
60903
  format: "uuid",
60887
60904
  type: "string"
60888
60905
  },
60906
+ connected_account_id: {
60907
+ format: "uuid",
60908
+ type: "string"
60909
+ },
60889
60910
  name: { type: "string" }
60890
60911
  },
60891
- required: ["acs_entrance_id", "name"],
60912
+ required: [
60913
+ "acs_entrance_id",
60914
+ "name",
60915
+ "connected_account_id"
60916
+ ],
60892
60917
  type: "object"
60893
60918
  },
60894
60919
  type: "array"
@@ -60896,11 +60921,20 @@ var openapi_default = {
60896
60921
  devices: {
60897
60922
  items: {
60898
60923
  properties: {
60924
+ connected_account_id: {
60925
+ format: "uuid",
60926
+ type: "string"
60927
+ },
60899
60928
  device_id: { format: "uuid", type: "string" },
60900
60929
  device_type: { type: "string" },
60901
60930
  name: { type: "string" }
60902
60931
  },
60903
- required: ["device_id", "device_type", "name"],
60932
+ required: [
60933
+ "device_id",
60934
+ "device_type",
60935
+ "name",
60936
+ "connected_account_id"
60937
+ ],
60904
60938
  type: "object"
60905
60939
  },
60906
60940
  type: "array"
@@ -67419,6 +67453,15 @@ var openapi_default = {
67419
67453
  description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
67420
67454
  operationId: "userIdentitiesListGet",
67421
67455
  parameters: [
67456
+ {
67457
+ in: "query",
67458
+ name: "user_identity_ids",
67459
+ schema: {
67460
+ description: "Array of user identity IDs by which to filter the list of user identities.",
67461
+ items: { format: "uuid", type: "string" },
67462
+ type: "array"
67463
+ }
67464
+ },
67422
67465
  {
67423
67466
  in: "query",
67424
67467
  name: "search",
@@ -67536,6 +67579,11 @@ var openapi_default = {
67536
67579
  search: {
67537
67580
  description: "String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
67538
67581
  type: "string"
67582
+ },
67583
+ user_identity_ids: {
67584
+ description: "Array of user identity IDs by which to filter the list of user identities.",
67585
+ items: { format: "uuid", type: "string" },
67586
+ type: "array"
67539
67587
  }
67540
67588
  },
67541
67589
  type: "object"