@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.
package/dist/connect.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"