@seamapi/types 1.424.0 → 1.425.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.
Files changed (29) hide show
  1. package/dist/connect.cjs +197 -10
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +582 -6
  4. package/lib/seam/connect/internal/schemas.d.ts +1 -1
  5. package/lib/seam/connect/internal/schemas.js +1 -1
  6. package/lib/seam/connect/internal/schemas.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
  8. package/lib/seam/connect/models/acs/acs-credential.js +4 -0
  9. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  10. package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
  11. package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
  12. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-system.js +4 -1
  14. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  15. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
  16. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
  17. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
  18. package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
  19. package/lib/seam/connect/openapi.d.ts +254 -4
  20. package/lib/seam/connect/openapi.js +178 -8
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +286 -0
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/internal/schemas.ts +1 -0
  25. package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
  26. package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
  27. package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
  28. package/src/lib/seam/connect/openapi.ts +203 -8
  29. package/src/lib/seam/connect/route-types.ts +286 -0
package/dist/connect.cjs CHANGED
@@ -2651,6 +2651,9 @@ var common_acs_credential = zod.z.object({
2651
2651
  acs_user_id: zod.z.string().uuid().optional().describe(
2652
2652
  "ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) to whom the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs."
2653
2653
  ),
2654
+ connected_account_id: zod.z.string().uuid().describe(
2655
+ "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs."
2656
+ ),
2654
2657
  acs_credential_pool_id: zod.z.string().uuid().optional(),
2655
2658
  acs_system_id: zod.z.string().uuid().describe(
2656
2659
  "ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials)."
@@ -2872,6 +2875,17 @@ var acs_entrance_salto_space_metadata = zod.z.object({
2872
2875
  }).describe("Salto Space-specific metadata associated with the entrance.");
2873
2876
 
2874
2877
  // src/lib/seam/connect/models/acs/acs-entrance.ts
2878
+ var acs_entrance_capability_flags = zod.z.object({
2879
+ can_unlock_with_mobile_key: zod.z.boolean().optional().describe(
2880
+ "Indicates whether the ACS entrance can be unlocked with mobile key credentials."
2881
+ ),
2882
+ can_unlock_with_card: zod.z.boolean().optional().describe(
2883
+ "Indicates whether the ACS entrance can be unlocked with card credentials."
2884
+ ),
2885
+ can_unlock_with_code: zod.z.boolean().optional().describe(
2886
+ "Indicates whether the ACS entrance can be unlocked with pin codes."
2887
+ )
2888
+ });
2875
2889
  var acs_entrance = zod.z.object({
2876
2890
  acs_system_id: zod.z.string().uuid().describe(
2877
2891
  "ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
@@ -2918,7 +2932,7 @@ var acs_entrance = zod.z.object({
2918
2932
  salto_space_metadata: acs_entrance_salto_space_metadata.optional().describe(
2919
2933
  "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
2920
2934
  )
2921
- }).describe(`
2935
+ }).merge(acs_entrance_capability_flags).describe(`
2922
2936
  ---
2923
2937
  route_path: /acs/entrances
2924
2938
  ---
@@ -2926,7 +2940,10 @@ var acs_entrance = zod.z.object({
2926
2940
 
2927
2941
  In an access control system, an entrance is a secured door, gate, zone, or other method of entry. You can list details for all the \`acs_entrance\` resources in your workspace or get these details for a specific \`acs_entrance\`. You can also list all entrances associated with a specific credential, and you can list all credentials associated with a specific entrance.
2928
2942
  `);
2929
- var acs_system_capability_flags = zod.z.object({});
2943
+ var acs_system_capability_flags = zod.z.object({
2944
+ // Access method type capability flags are not publicly exposed for ACS systems
2945
+ // They are only available for ACS entrances
2946
+ });
2930
2947
  var acs_location = zod.z.object({
2931
2948
  time_zone: zod.z.string().nullable().describe(
2932
2949
  "Time zone in which the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) is located."
@@ -7358,6 +7375,11 @@ var openapi_default = {
7358
7375
  nullable: true,
7359
7376
  type: "string"
7360
7377
  },
7378
+ connected_account_id: {
7379
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
7380
+ format: "uuid",
7381
+ type: "string"
7382
+ },
7361
7383
  created_at: {
7362
7384
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
7363
7385
  format: "date-time",
@@ -7628,6 +7650,7 @@ var openapi_default = {
7628
7650
  },
7629
7651
  required: [
7630
7652
  "acs_credential_id",
7653
+ "connected_account_id",
7631
7654
  "acs_system_id",
7632
7655
  "display_name",
7633
7656
  "access_method",
@@ -7801,6 +7824,18 @@ var openapi_default = {
7801
7824
  required: ["door_type", "door_name"],
7802
7825
  type: "object"
7803
7826
  },
7827
+ can_unlock_with_card: {
7828
+ description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
7829
+ type: "boolean"
7830
+ },
7831
+ can_unlock_with_code: {
7832
+ description: "Indicates whether the ACS entrance can be unlocked with pin codes.",
7833
+ type: "boolean"
7834
+ },
7835
+ can_unlock_with_mobile_key: {
7836
+ description: "Indicates whether the ACS entrance can be unlocked with mobile key credentials.",
7837
+ type: "boolean"
7838
+ },
7804
7839
  connected_account_id: {
7805
7840
  description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
7806
7841
  format: "uuid",
@@ -9430,6 +9465,11 @@ var openapi_default = {
9430
9465
  nullable: true,
9431
9466
  type: "string"
9432
9467
  },
9468
+ connected_account_id: {
9469
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
9470
+ format: "uuid",
9471
+ type: "string"
9472
+ },
9433
9473
  created_at: {
9434
9474
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
9435
9475
  format: "date-time",
@@ -9726,6 +9766,7 @@ var openapi_default = {
9726
9766
  },
9727
9767
  required: [
9728
9768
  "acs_credential_id",
9769
+ "connected_account_id",
9729
9770
  "acs_system_id",
9730
9771
  "display_name",
9731
9772
  "access_method",
@@ -9807,6 +9848,11 @@ var openapi_default = {
9807
9848
  nullable: true,
9808
9849
  type: "string"
9809
9850
  },
9851
+ connected_account_id: {
9852
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
9853
+ format: "uuid",
9854
+ type: "string"
9855
+ },
9810
9856
  created_at: {
9811
9857
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
9812
9858
  format: "date-time",
@@ -10103,6 +10149,7 @@ var openapi_default = {
10103
10149
  },
10104
10150
  required: [
10105
10151
  "acs_credential_id",
10152
+ "connected_account_id",
10106
10153
  "acs_system_id",
10107
10154
  "display_name",
10108
10155
  "access_method",
@@ -10584,6 +10631,11 @@ var openapi_default = {
10584
10631
  nullable: true,
10585
10632
  type: "string"
10586
10633
  },
10634
+ connected_account_id: {
10635
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
10636
+ format: "uuid",
10637
+ type: "string"
10638
+ },
10587
10639
  created_at: {
10588
10640
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
10589
10641
  format: "date-time",
@@ -10878,6 +10930,7 @@ var openapi_default = {
10878
10930
  },
10879
10931
  required: [
10880
10932
  "acs_credential_id",
10933
+ "connected_account_id",
10881
10934
  "acs_system_id",
10882
10935
  "display_name",
10883
10936
  "access_method",
@@ -10959,6 +11012,11 @@ var openapi_default = {
10959
11012
  nullable: true,
10960
11013
  type: "string"
10961
11014
  },
11015
+ connected_account_id: {
11016
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
11017
+ format: "uuid",
11018
+ type: "string"
11019
+ },
10962
11020
  created_at: {
10963
11021
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
10964
11022
  format: "date-time",
@@ -11253,6 +11311,7 @@ var openapi_default = {
11253
11311
  },
11254
11312
  required: [
11255
11313
  "acs_credential_id",
11314
+ "connected_account_id",
11256
11315
  "acs_system_id",
11257
11316
  "display_name",
11258
11317
  "access_method",
@@ -22110,6 +22169,18 @@ var openapi_default = {
22110
22169
  required: ["door_type", "door_name"],
22111
22170
  type: "object"
22112
22171
  },
22172
+ can_unlock_with_card: {
22173
+ description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
22174
+ type: "boolean"
22175
+ },
22176
+ can_unlock_with_code: {
22177
+ description: "Indicates whether the ACS entrance can be unlocked with pin codes.",
22178
+ type: "boolean"
22179
+ },
22180
+ can_unlock_with_mobile_key: {
22181
+ description: "Indicates whether the ACS entrance can be unlocked with mobile key credentials.",
22182
+ type: "boolean"
22183
+ },
22113
22184
  connected_account_id: {
22114
22185
  description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
22115
22186
  format: "uuid",
@@ -22354,6 +22425,11 @@ var openapi_default = {
22354
22425
  nullable: true,
22355
22426
  type: "string"
22356
22427
  },
22428
+ connected_account_id: {
22429
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
22430
+ format: "uuid",
22431
+ type: "string"
22432
+ },
22357
22433
  created_at: {
22358
22434
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
22359
22435
  format: "date-time",
@@ -22647,6 +22723,7 @@ var openapi_default = {
22647
22723
  }
22648
22724
  },
22649
22725
  required: [
22726
+ "connected_account_id",
22650
22727
  "acs_system_id",
22651
22728
  "display_name",
22652
22729
  "access_method",
@@ -24583,6 +24660,11 @@ var openapi_default = {
24583
24660
  nullable: true,
24584
24661
  type: "string"
24585
24662
  },
24663
+ connected_account_id: {
24664
+ description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials#connected-accounts) to which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) belongs.",
24665
+ format: "uuid",
24666
+ type: "string"
24667
+ },
24586
24668
  created_at: {
24587
24669
  description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
24588
24670
  format: "date-time",
@@ -24853,6 +24935,7 @@ var openapi_default = {
24853
24935
  },
24854
24936
  required: [
24855
24937
  "acs_credential_id",
24938
+ "connected_account_id",
24856
24939
  "acs_system_id",
24857
24940
  "display_name",
24858
24941
  "access_method",
@@ -27070,7 +27153,11 @@ var openapi_default = {
27070
27153
  description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
27071
27154
  type: "boolean"
27072
27155
  },
27073
- use_offline_access_code: { type: "boolean" }
27156
+ use_offline_access_code: {
27157
+ deprecated: true,
27158
+ type: "boolean",
27159
+ "x-deprecated": "Use `is_offline_access_code` instead."
27160
+ }
27074
27161
  },
27075
27162
  required: ["device_id"],
27076
27163
  type: "object"
@@ -27195,7 +27282,11 @@ var openapi_default = {
27195
27282
  description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
27196
27283
  type: "boolean"
27197
27284
  },
27198
- use_offline_access_code: { type: "boolean" }
27285
+ use_offline_access_code: {
27286
+ deprecated: true,
27287
+ type: "boolean",
27288
+ "x-deprecated": "Use `is_offline_access_code` instead."
27289
+ }
27199
27290
  },
27200
27291
  required: ["device_ids"],
27201
27292
  type: "object"
@@ -27316,7 +27407,11 @@ var openapi_default = {
27316
27407
  description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
27317
27408
  type: "boolean"
27318
27409
  },
27319
- use_offline_access_code: { type: "boolean" }
27410
+ use_offline_access_code: {
27411
+ deprecated: true,
27412
+ type: "boolean",
27413
+ "x-deprecated": "Use `is_offline_access_code` instead."
27414
+ }
27320
27415
  },
27321
27416
  required: ["device_ids"],
27322
27417
  type: "object"
@@ -28842,7 +28937,11 @@ var openapi_default = {
28842
28937
  description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
28843
28938
  type: "boolean"
28844
28939
  },
28845
- use_offline_access_code: { type: "boolean" }
28940
+ use_offline_access_code: {
28941
+ deprecated: true,
28942
+ type: "boolean",
28943
+ "x-deprecated": "Use `is_offline_access_code` instead."
28944
+ }
28846
28945
  },
28847
28946
  required: ["access_code_id"],
28848
28947
  type: "object"
@@ -28976,7 +29075,11 @@ var openapi_default = {
28976
29075
  description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
28977
29076
  type: "boolean"
28978
29077
  },
28979
- use_offline_access_code: { type: "boolean" }
29078
+ use_offline_access_code: {
29079
+ deprecated: true,
29080
+ type: "boolean",
29081
+ "x-deprecated": "Use `is_offline_access_code` instead."
29082
+ }
28980
29083
  },
28981
29084
  required: ["access_code_id"],
28982
29085
  type: "object"
@@ -29110,7 +29213,11 @@ var openapi_default = {
29110
29213
  description: "Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/core-concepts/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).",
29111
29214
  type: "boolean"
29112
29215
  },
29113
- use_offline_access_code: { type: "boolean" }
29216
+ use_offline_access_code: {
29217
+ deprecated: true,
29218
+ type: "boolean",
29219
+ "x-deprecated": "Use `is_offline_access_code` instead."
29220
+ }
29114
29221
  },
29115
29222
  required: ["access_code_id"],
29116
29223
  type: "object"
@@ -29345,7 +29452,6 @@ var openapi_default = {
29345
29452
  },
29346
29453
  ends_at: {
29347
29454
  description: "Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.",
29348
- format: "date-time",
29349
29455
  type: "string"
29350
29456
  },
29351
29457
  location: {
@@ -29399,7 +29505,6 @@ var openapi_default = {
29399
29505
  },
29400
29506
  starts_at: {
29401
29507
  description: "Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.",
29402
- format: "date-time",
29403
29508
  type: "string"
29404
29509
  }
29405
29510
  },
@@ -40019,6 +40124,15 @@ var openapi_default = {
40019
40124
  format: "uuid",
40020
40125
  type: "string"
40021
40126
  }
40127
+ },
40128
+ {
40129
+ in: "query",
40130
+ name: "search",
40131
+ schema: {
40132
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
40133
+ minLength: 1,
40134
+ type: "string"
40135
+ }
40022
40136
  }
40023
40137
  ],
40024
40138
  responses: {
@@ -40322,6 +40436,11 @@ var openapi_default = {
40322
40436
  nullable: true,
40323
40437
  type: "string"
40324
40438
  },
40439
+ search: {
40440
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
40441
+ minLength: 1,
40442
+ type: "string"
40443
+ },
40325
40444
  space_id: {
40326
40445
  description: "ID of the space for which you want to list devices.",
40327
40446
  format: "uuid",
@@ -41111,6 +41230,15 @@ var openapi_default = {
41111
41230
  format: "uuid",
41112
41231
  type: "string"
41113
41232
  }
41233
+ },
41234
+ {
41235
+ in: "query",
41236
+ name: "search",
41237
+ schema: {
41238
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
41239
+ minLength: 1,
41240
+ type: "string"
41241
+ }
41114
41242
  }
41115
41243
  ],
41116
41244
  responses: {
@@ -41411,6 +41539,11 @@ var openapi_default = {
41411
41539
  nullable: true,
41412
41540
  type: "string"
41413
41541
  },
41542
+ search: {
41543
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
41544
+ minLength: 1,
41545
+ type: "string"
41546
+ },
41414
41547
  space_id: {
41415
41548
  description: "ID of the space for which you want to list devices.",
41416
41549
  format: "uuid",
@@ -42971,6 +43104,15 @@ var openapi_default = {
42971
43104
  format: "uuid",
42972
43105
  type: "string"
42973
43106
  }
43107
+ },
43108
+ {
43109
+ in: "query",
43110
+ name: "search",
43111
+ schema: {
43112
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
43113
+ minLength: 1,
43114
+ type: "string"
43115
+ }
42974
43116
  }
42975
43117
  ],
42976
43118
  responses: {
@@ -43212,6 +43354,11 @@ var openapi_default = {
43212
43354
  nullable: true,
43213
43355
  type: "string"
43214
43356
  },
43357
+ search: {
43358
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
43359
+ minLength: 1,
43360
+ type: "string"
43361
+ },
43215
43362
  space_id: {
43216
43363
  description: "ID of the space for which you want to list devices.",
43217
43364
  format: "uuid",
@@ -43950,6 +44097,15 @@ var openapi_default = {
43950
44097
  format: "uuid",
43951
44098
  type: "string"
43952
44099
  }
44100
+ },
44101
+ {
44102
+ in: "query",
44103
+ name: "search",
44104
+ schema: {
44105
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
44106
+ minLength: 1,
44107
+ type: "string"
44108
+ }
43953
44109
  }
43954
44110
  ],
43955
44111
  responses: {
@@ -44106,6 +44262,11 @@ var openapi_default = {
44106
44262
  nullable: true,
44107
44263
  type: "string"
44108
44264
  },
44265
+ search: {
44266
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
44267
+ minLength: 1,
44268
+ type: "string"
44269
+ },
44109
44270
  space_id: {
44110
44271
  description: "ID of the space for which you want to list devices.",
44111
44272
  format: "uuid",
@@ -48463,6 +48624,15 @@ var openapi_default = {
48463
48624
  format: "uuid",
48464
48625
  type: "string"
48465
48626
  }
48627
+ },
48628
+ {
48629
+ in: "query",
48630
+ name: "search",
48631
+ schema: {
48632
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
48633
+ minLength: 1,
48634
+ type: "string"
48635
+ }
48466
48636
  }
48467
48637
  ],
48468
48638
  responses: {
@@ -48640,6 +48810,11 @@ var openapi_default = {
48640
48810
  nullable: true,
48641
48811
  type: "string"
48642
48812
  },
48813
+ search: {
48814
+ description: "String for which to search. Filters returned devices to include all records that satisfy a partial match using `device_id`, `display_name`, `custom_metadata` or `location.location_name`.",
48815
+ minLength: 1,
48816
+ type: "string"
48817
+ },
48643
48818
  space_id: {
48644
48819
  description: "ID of the space for which you want to list devices.",
48645
48820
  format: "uuid",
@@ -53355,6 +53530,14 @@ var openapi_default = {
53355
53530
  description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access-in-development/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
53356
53531
  operationId: "userIdentitiesListGet",
53357
53532
  parameters: [
53533
+ {
53534
+ in: "query",
53535
+ name: "search",
53536
+ schema: {
53537
+ 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`.",
53538
+ type: "string"
53539
+ }
53540
+ },
53358
53541
  {
53359
53542
  in: "query",
53360
53543
  name: "credential_manager_acs_system_id",
@@ -53413,6 +53596,10 @@ var openapi_default = {
53413
53596
  description: "`acs_system_id` of the credential manager by which you want to filter the list of user identities.",
53414
53597
  format: "uuid",
53415
53598
  type: "string"
53599
+ },
53600
+ search: {
53601
+ 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`.",
53602
+ type: "string"
53416
53603
  }
53417
53604
  },
53418
53605
  type: "object"