@seamapi/types 1.424.0 → 1.426.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 +256 -31
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +653 -16
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs-credential.js +4 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +18 -2
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.js +4 -1
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +66 -4
- package/lib/seam/connect/openapi.d.ts +287 -4
- package/lib/seam/connect/openapi.js +215 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +314 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-credential.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +93 -70
- package/src/lib/seam/connect/models/acs/acs-system.ts +4 -1
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +242 -8
- package/src/lib/seam/connect/route-types.ts +314 -0
package/dist/connect.cjs
CHANGED
|
@@ -1290,7 +1290,8 @@ var phone_specific_properties = zod.z.object({
|
|
|
1290
1290
|
var device_capability_flags2 = models_exports.device_capability_flags.extend({
|
|
1291
1291
|
can_simulate_removal: zod.z.boolean().optional(),
|
|
1292
1292
|
can_simulate_connection: zod.z.boolean().optional(),
|
|
1293
|
-
can_simulate_disconnection: zod.z.boolean().optional()
|
|
1293
|
+
can_simulate_disconnection: zod.z.boolean().optional(),
|
|
1294
|
+
can_unlock_with_code: zod.z.boolean().optional()
|
|
1294
1295
|
});
|
|
1295
1296
|
var battery_status = zod.z.enum(["critical", "low", "good", "full"]).describe(`Represents the current status of the battery charge level. Values are \`critical\`, which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; \`low\`, which signifies that the battery is under the preferred threshold and should be charged soon; \`good\`, which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and \`full\`, which represents a battery that is fully charged, providing the maximum duration of usage.
|
|
1296
1297
|
`);
|
|
@@ -2651,6 +2652,9 @@ var common_acs_credential = zod.z.object({
|
|
|
2651
2652
|
acs_user_id: zod.z.string().uuid().optional().describe(
|
|
2652
2653
|
"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
2654
|
),
|
|
2655
|
+
connected_account_id: zod.z.string().uuid().describe(
|
|
2656
|
+
"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."
|
|
2657
|
+
),
|
|
2654
2658
|
acs_credential_pool_id: zod.z.string().uuid().optional(),
|
|
2655
2659
|
acs_system_id: zod.z.string().uuid().describe(
|
|
2656
2660
|
"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 +2876,17 @@ var acs_entrance_salto_space_metadata = zod.z.object({
|
|
|
2872
2876
|
}).describe("Salto Space-specific metadata associated with the entrance.");
|
|
2873
2877
|
|
|
2874
2878
|
// src/lib/seam/connect/models/acs/acs-entrance.ts
|
|
2879
|
+
var acs_entrance_capability_flags = zod.z.object({
|
|
2880
|
+
can_unlock_with_mobile_key: zod.z.boolean().optional().describe(
|
|
2881
|
+
"Indicates whether the ACS entrance can be unlocked with mobile key credentials."
|
|
2882
|
+
),
|
|
2883
|
+
can_unlock_with_card: zod.z.boolean().optional().describe(
|
|
2884
|
+
"Indicates whether the ACS entrance can be unlocked with card credentials."
|
|
2885
|
+
),
|
|
2886
|
+
can_unlock_with_code: zod.z.boolean().optional().describe(
|
|
2887
|
+
"Indicates whether the ACS entrance can be unlocked with pin codes."
|
|
2888
|
+
)
|
|
2889
|
+
});
|
|
2875
2890
|
var acs_entrance = zod.z.object({
|
|
2876
2891
|
acs_system_id: zod.z.string().uuid().describe(
|
|
2877
2892
|
"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 +2933,7 @@ var acs_entrance = zod.z.object({
|
|
|
2918
2933
|
salto_space_metadata: acs_entrance_salto_space_metadata.optional().describe(
|
|
2919
2934
|
"Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2920
2935
|
)
|
|
2921
|
-
}).describe(`
|
|
2936
|
+
}).merge(acs_entrance_capability_flags).describe(`
|
|
2922
2937
|
---
|
|
2923
2938
|
route_path: /acs/entrances
|
|
2924
2939
|
---
|
|
@@ -2926,7 +2941,10 @@ var acs_entrance = zod.z.object({
|
|
|
2926
2941
|
|
|
2927
2942
|
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
2943
|
`);
|
|
2929
|
-
var acs_system_capability_flags = zod.z.object({
|
|
2944
|
+
var acs_system_capability_flags = zod.z.object({
|
|
2945
|
+
// Access method type capability flags are not publicly exposed for ACS systems
|
|
2946
|
+
// They are only available for ACS entrances
|
|
2947
|
+
});
|
|
2930
2948
|
var acs_location = zod.z.object({
|
|
2931
2949
|
time_zone: zod.z.string().nullable().describe(
|
|
2932
2950
|
"Time zone in which the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) is located."
|
|
@@ -7358,6 +7376,11 @@ var openapi_default = {
|
|
|
7358
7376
|
nullable: true,
|
|
7359
7377
|
type: "string"
|
|
7360
7378
|
},
|
|
7379
|
+
connected_account_id: {
|
|
7380
|
+
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.",
|
|
7381
|
+
format: "uuid",
|
|
7382
|
+
type: "string"
|
|
7383
|
+
},
|
|
7361
7384
|
created_at: {
|
|
7362
7385
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
7363
7386
|
format: "date-time",
|
|
@@ -7628,6 +7651,7 @@ var openapi_default = {
|
|
|
7628
7651
|
},
|
|
7629
7652
|
required: [
|
|
7630
7653
|
"acs_credential_id",
|
|
7654
|
+
"connected_account_id",
|
|
7631
7655
|
"acs_system_id",
|
|
7632
7656
|
"display_name",
|
|
7633
7657
|
"access_method",
|
|
@@ -7801,6 +7825,18 @@ var openapi_default = {
|
|
|
7801
7825
|
required: ["door_type", "door_name"],
|
|
7802
7826
|
type: "object"
|
|
7803
7827
|
},
|
|
7828
|
+
can_unlock_with_card: {
|
|
7829
|
+
description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
|
|
7830
|
+
type: "boolean"
|
|
7831
|
+
},
|
|
7832
|
+
can_unlock_with_code: {
|
|
7833
|
+
description: "Indicates whether the ACS entrance can be unlocked with pin codes.",
|
|
7834
|
+
type: "boolean"
|
|
7835
|
+
},
|
|
7836
|
+
can_unlock_with_mobile_key: {
|
|
7837
|
+
description: "Indicates whether the ACS entrance can be unlocked with mobile key credentials.",
|
|
7838
|
+
type: "boolean"
|
|
7839
|
+
},
|
|
7804
7840
|
connected_account_id: {
|
|
7805
7841
|
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
7842
|
format: "uuid",
|
|
@@ -9430,6 +9466,11 @@ var openapi_default = {
|
|
|
9430
9466
|
nullable: true,
|
|
9431
9467
|
type: "string"
|
|
9432
9468
|
},
|
|
9469
|
+
connected_account_id: {
|
|
9470
|
+
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.",
|
|
9471
|
+
format: "uuid",
|
|
9472
|
+
type: "string"
|
|
9473
|
+
},
|
|
9433
9474
|
created_at: {
|
|
9434
9475
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
9435
9476
|
format: "date-time",
|
|
@@ -9726,6 +9767,7 @@ var openapi_default = {
|
|
|
9726
9767
|
},
|
|
9727
9768
|
required: [
|
|
9728
9769
|
"acs_credential_id",
|
|
9770
|
+
"connected_account_id",
|
|
9729
9771
|
"acs_system_id",
|
|
9730
9772
|
"display_name",
|
|
9731
9773
|
"access_method",
|
|
@@ -9807,6 +9849,11 @@ var openapi_default = {
|
|
|
9807
9849
|
nullable: true,
|
|
9808
9850
|
type: "string"
|
|
9809
9851
|
},
|
|
9852
|
+
connected_account_id: {
|
|
9853
|
+
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.",
|
|
9854
|
+
format: "uuid",
|
|
9855
|
+
type: "string"
|
|
9856
|
+
},
|
|
9810
9857
|
created_at: {
|
|
9811
9858
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
9812
9859
|
format: "date-time",
|
|
@@ -10103,6 +10150,7 @@ var openapi_default = {
|
|
|
10103
10150
|
},
|
|
10104
10151
|
required: [
|
|
10105
10152
|
"acs_credential_id",
|
|
10153
|
+
"connected_account_id",
|
|
10106
10154
|
"acs_system_id",
|
|
10107
10155
|
"display_name",
|
|
10108
10156
|
"access_method",
|
|
@@ -10584,6 +10632,11 @@ var openapi_default = {
|
|
|
10584
10632
|
nullable: true,
|
|
10585
10633
|
type: "string"
|
|
10586
10634
|
},
|
|
10635
|
+
connected_account_id: {
|
|
10636
|
+
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.",
|
|
10637
|
+
format: "uuid",
|
|
10638
|
+
type: "string"
|
|
10639
|
+
},
|
|
10587
10640
|
created_at: {
|
|
10588
10641
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
10589
10642
|
format: "date-time",
|
|
@@ -10878,6 +10931,7 @@ var openapi_default = {
|
|
|
10878
10931
|
},
|
|
10879
10932
|
required: [
|
|
10880
10933
|
"acs_credential_id",
|
|
10934
|
+
"connected_account_id",
|
|
10881
10935
|
"acs_system_id",
|
|
10882
10936
|
"display_name",
|
|
10883
10937
|
"access_method",
|
|
@@ -10959,6 +11013,11 @@ var openapi_default = {
|
|
|
10959
11013
|
nullable: true,
|
|
10960
11014
|
type: "string"
|
|
10961
11015
|
},
|
|
11016
|
+
connected_account_id: {
|
|
11017
|
+
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.",
|
|
11018
|
+
format: "uuid",
|
|
11019
|
+
type: "string"
|
|
11020
|
+
},
|
|
10962
11021
|
created_at: {
|
|
10963
11022
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
10964
11023
|
format: "date-time",
|
|
@@ -11253,6 +11312,7 @@ var openapi_default = {
|
|
|
11253
11312
|
},
|
|
11254
11313
|
required: [
|
|
11255
11314
|
"acs_credential_id",
|
|
11315
|
+
"connected_account_id",
|
|
11256
11316
|
"acs_system_id",
|
|
11257
11317
|
"display_name",
|
|
11258
11318
|
"access_method",
|
|
@@ -13683,6 +13743,7 @@ var openapi_default = {
|
|
|
13683
13743
|
can_simulate_disconnection: { type: "boolean" },
|
|
13684
13744
|
can_simulate_removal: { type: "boolean" },
|
|
13685
13745
|
can_turn_off_hvac: { type: "boolean" },
|
|
13746
|
+
can_unlock_with_code: { type: "boolean" },
|
|
13686
13747
|
capabilities_supported: {
|
|
13687
13748
|
description: "\n Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).\n ",
|
|
13688
13749
|
items: {
|
|
@@ -16802,6 +16863,7 @@ var openapi_default = {
|
|
|
16802
16863
|
can_simulate_disconnection: { type: "boolean" },
|
|
16803
16864
|
can_simulate_removal: { type: "boolean" },
|
|
16804
16865
|
can_turn_off_hvac: { type: "boolean" },
|
|
16866
|
+
can_unlock_with_code: { type: "boolean" },
|
|
16805
16867
|
device_provider_name: {
|
|
16806
16868
|
enum: [
|
|
16807
16869
|
"dormakaba_community",
|
|
@@ -22110,6 +22172,18 @@ var openapi_default = {
|
|
|
22110
22172
|
required: ["door_type", "door_name"],
|
|
22111
22173
|
type: "object"
|
|
22112
22174
|
},
|
|
22175
|
+
can_unlock_with_card: {
|
|
22176
|
+
description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
|
|
22177
|
+
type: "boolean"
|
|
22178
|
+
},
|
|
22179
|
+
can_unlock_with_code: {
|
|
22180
|
+
description: "Indicates whether the ACS entrance can be unlocked with pin codes.",
|
|
22181
|
+
type: "boolean"
|
|
22182
|
+
},
|
|
22183
|
+
can_unlock_with_mobile_key: {
|
|
22184
|
+
description: "Indicates whether the ACS entrance can be unlocked with mobile key credentials.",
|
|
22185
|
+
type: "boolean"
|
|
22186
|
+
},
|
|
22113
22187
|
connected_account_id: {
|
|
22114
22188
|
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
22189
|
format: "uuid",
|
|
@@ -22354,6 +22428,11 @@ var openapi_default = {
|
|
|
22354
22428
|
nullable: true,
|
|
22355
22429
|
type: "string"
|
|
22356
22430
|
},
|
|
22431
|
+
connected_account_id: {
|
|
22432
|
+
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.",
|
|
22433
|
+
format: "uuid",
|
|
22434
|
+
type: "string"
|
|
22435
|
+
},
|
|
22357
22436
|
created_at: {
|
|
22358
22437
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
22359
22438
|
format: "date-time",
|
|
@@ -22647,6 +22726,7 @@ var openapi_default = {
|
|
|
22647
22726
|
}
|
|
22648
22727
|
},
|
|
22649
22728
|
required: [
|
|
22729
|
+
"connected_account_id",
|
|
22650
22730
|
"acs_system_id",
|
|
22651
22731
|
"display_name",
|
|
22652
22732
|
"access_method",
|
|
@@ -24583,6 +24663,11 @@ var openapi_default = {
|
|
|
24583
24663
|
nullable: true,
|
|
24584
24664
|
type: "string"
|
|
24585
24665
|
},
|
|
24666
|
+
connected_account_id: {
|
|
24667
|
+
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.",
|
|
24668
|
+
format: "uuid",
|
|
24669
|
+
type: "string"
|
|
24670
|
+
},
|
|
24586
24671
|
created_at: {
|
|
24587
24672
|
description: "Date and time at which the [credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was created.",
|
|
24588
24673
|
format: "date-time",
|
|
@@ -24853,6 +24938,7 @@ var openapi_default = {
|
|
|
24853
24938
|
},
|
|
24854
24939
|
required: [
|
|
24855
24940
|
"acs_credential_id",
|
|
24941
|
+
"connected_account_id",
|
|
24856
24942
|
"acs_system_id",
|
|
24857
24943
|
"display_name",
|
|
24858
24944
|
"access_method",
|
|
@@ -25511,6 +25597,7 @@ var openapi_default = {
|
|
|
25511
25597
|
can_simulate_disconnection: { type: "boolean" },
|
|
25512
25598
|
can_simulate_removal: { type: "boolean" },
|
|
25513
25599
|
can_turn_off_hvac: { type: "boolean" },
|
|
25600
|
+
can_unlock_with_code: { type: "boolean" },
|
|
25514
25601
|
capabilities_supported: {
|
|
25515
25602
|
description: "\n Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).\n ",
|
|
25516
25603
|
items: {
|
|
@@ -27070,7 +27157,11 @@ var openapi_default = {
|
|
|
27070
27157
|
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
27158
|
type: "boolean"
|
|
27072
27159
|
},
|
|
27073
|
-
use_offline_access_code: {
|
|
27160
|
+
use_offline_access_code: {
|
|
27161
|
+
deprecated: true,
|
|
27162
|
+
type: "boolean",
|
|
27163
|
+
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
27164
|
+
}
|
|
27074
27165
|
},
|
|
27075
27166
|
required: ["device_id"],
|
|
27076
27167
|
type: "object"
|
|
@@ -27195,7 +27286,11 @@ var openapi_default = {
|
|
|
27195
27286
|
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
27287
|
type: "boolean"
|
|
27197
27288
|
},
|
|
27198
|
-
use_offline_access_code: {
|
|
27289
|
+
use_offline_access_code: {
|
|
27290
|
+
deprecated: true,
|
|
27291
|
+
type: "boolean",
|
|
27292
|
+
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
27293
|
+
}
|
|
27199
27294
|
},
|
|
27200
27295
|
required: ["device_ids"],
|
|
27201
27296
|
type: "object"
|
|
@@ -27316,7 +27411,11 @@ var openapi_default = {
|
|
|
27316
27411
|
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
27412
|
type: "boolean"
|
|
27318
27413
|
},
|
|
27319
|
-
use_offline_access_code: {
|
|
27414
|
+
use_offline_access_code: {
|
|
27415
|
+
deprecated: true,
|
|
27416
|
+
type: "boolean",
|
|
27417
|
+
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
27418
|
+
}
|
|
27320
27419
|
},
|
|
27321
27420
|
required: ["device_ids"],
|
|
27322
27421
|
type: "object"
|
|
@@ -28842,7 +28941,11 @@ var openapi_default = {
|
|
|
28842
28941
|
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
28942
|
type: "boolean"
|
|
28844
28943
|
},
|
|
28845
|
-
use_offline_access_code: {
|
|
28944
|
+
use_offline_access_code: {
|
|
28945
|
+
deprecated: true,
|
|
28946
|
+
type: "boolean",
|
|
28947
|
+
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
28948
|
+
}
|
|
28846
28949
|
},
|
|
28847
28950
|
required: ["access_code_id"],
|
|
28848
28951
|
type: "object"
|
|
@@ -28976,7 +29079,11 @@ var openapi_default = {
|
|
|
28976
29079
|
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
29080
|
type: "boolean"
|
|
28978
29081
|
},
|
|
28979
|
-
use_offline_access_code: {
|
|
29082
|
+
use_offline_access_code: {
|
|
29083
|
+
deprecated: true,
|
|
29084
|
+
type: "boolean",
|
|
29085
|
+
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
29086
|
+
}
|
|
28980
29087
|
},
|
|
28981
29088
|
required: ["access_code_id"],
|
|
28982
29089
|
type: "object"
|
|
@@ -29110,7 +29217,11 @@ var openapi_default = {
|
|
|
29110
29217
|
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
29218
|
type: "boolean"
|
|
29112
29219
|
},
|
|
29113
|
-
use_offline_access_code: {
|
|
29220
|
+
use_offline_access_code: {
|
|
29221
|
+
deprecated: true,
|
|
29222
|
+
type: "boolean",
|
|
29223
|
+
"x-deprecated": "Use `is_offline_access_code` instead."
|
|
29224
|
+
}
|
|
29114
29225
|
},
|
|
29115
29226
|
required: ["access_code_id"],
|
|
29116
29227
|
type: "object"
|
|
@@ -29345,7 +29456,6 @@ var openapi_default = {
|
|
|
29345
29456
|
},
|
|
29346
29457
|
ends_at: {
|
|
29347
29458
|
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
29459
|
type: "string"
|
|
29350
29460
|
},
|
|
29351
29461
|
location: {
|
|
@@ -29399,7 +29509,6 @@ var openapi_default = {
|
|
|
29399
29509
|
},
|
|
29400
29510
|
starts_at: {
|
|
29401
29511
|
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
29512
|
type: "string"
|
|
29404
29513
|
}
|
|
29405
29514
|
},
|
|
@@ -37935,6 +38044,15 @@ var openapi_default = {
|
|
|
37935
38044
|
type: "array"
|
|
37936
38045
|
}
|
|
37937
38046
|
},
|
|
38047
|
+
{
|
|
38048
|
+
in: "query",
|
|
38049
|
+
name: "search",
|
|
38050
|
+
schema: {
|
|
38051
|
+
description: "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`.",
|
|
38052
|
+
minLength: 1,
|
|
38053
|
+
type: "string"
|
|
38054
|
+
}
|
|
38055
|
+
},
|
|
37938
38056
|
{
|
|
37939
38057
|
in: "query",
|
|
37940
38058
|
name: "limit",
|
|
@@ -38024,6 +38142,11 @@ var openapi_default = {
|
|
|
38024
38142
|
nullable: true,
|
|
38025
38143
|
type: "string"
|
|
38026
38144
|
},
|
|
38145
|
+
search: {
|
|
38146
|
+
description: "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`.",
|
|
38147
|
+
minLength: 1,
|
|
38148
|
+
type: "string"
|
|
38149
|
+
},
|
|
38027
38150
|
user_identifier_key: {
|
|
38028
38151
|
description: "Your user ID for the user by which you want to filter connected accounts.",
|
|
38029
38152
|
type: "string"
|
|
@@ -39968,7 +40091,8 @@ var openapi_default = {
|
|
|
39968
40091
|
"can_turn_off_hvac",
|
|
39969
40092
|
"can_simulate_removal",
|
|
39970
40093
|
"can_simulate_connection",
|
|
39971
|
-
"can_simulate_disconnection"
|
|
40094
|
+
"can_simulate_disconnection",
|
|
40095
|
+
"can_unlock_with_code"
|
|
39972
40096
|
],
|
|
39973
40097
|
type: "string"
|
|
39974
40098
|
},
|
|
@@ -39992,7 +40116,8 @@ var openapi_default = {
|
|
|
39992
40116
|
"can_turn_off_hvac",
|
|
39993
40117
|
"can_simulate_removal",
|
|
39994
40118
|
"can_simulate_connection",
|
|
39995
|
-
"can_simulate_disconnection"
|
|
40119
|
+
"can_simulate_disconnection",
|
|
40120
|
+
"can_unlock_with_code"
|
|
39996
40121
|
],
|
|
39997
40122
|
type: "string"
|
|
39998
40123
|
},
|
|
@@ -40019,6 +40144,15 @@ var openapi_default = {
|
|
|
40019
40144
|
format: "uuid",
|
|
40020
40145
|
type: "string"
|
|
40021
40146
|
}
|
|
40147
|
+
},
|
|
40148
|
+
{
|
|
40149
|
+
in: "query",
|
|
40150
|
+
name: "search",
|
|
40151
|
+
schema: {
|
|
40152
|
+
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`.",
|
|
40153
|
+
minLength: 1,
|
|
40154
|
+
type: "string"
|
|
40155
|
+
}
|
|
40022
40156
|
}
|
|
40023
40157
|
],
|
|
40024
40158
|
responses: {
|
|
@@ -40239,7 +40373,8 @@ var openapi_default = {
|
|
|
40239
40373
|
"can_turn_off_hvac",
|
|
40240
40374
|
"can_simulate_removal",
|
|
40241
40375
|
"can_simulate_connection",
|
|
40242
|
-
"can_simulate_disconnection"
|
|
40376
|
+
"can_simulate_disconnection",
|
|
40377
|
+
"can_unlock_with_code"
|
|
40243
40378
|
],
|
|
40244
40379
|
type: "string"
|
|
40245
40380
|
},
|
|
@@ -40259,7 +40394,8 @@ var openapi_default = {
|
|
|
40259
40394
|
"can_turn_off_hvac",
|
|
40260
40395
|
"can_simulate_removal",
|
|
40261
40396
|
"can_simulate_connection",
|
|
40262
|
-
"can_simulate_disconnection"
|
|
40397
|
+
"can_simulate_disconnection",
|
|
40398
|
+
"can_unlock_with_code"
|
|
40263
40399
|
],
|
|
40264
40400
|
type: "string"
|
|
40265
40401
|
},
|
|
@@ -40322,6 +40458,11 @@ var openapi_default = {
|
|
|
40322
40458
|
nullable: true,
|
|
40323
40459
|
type: "string"
|
|
40324
40460
|
},
|
|
40461
|
+
search: {
|
|
40462
|
+
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`.",
|
|
40463
|
+
minLength: 1,
|
|
40464
|
+
type: "string"
|
|
40465
|
+
},
|
|
40325
40466
|
space_id: {
|
|
40326
40467
|
description: "ID of the space for which you want to list devices.",
|
|
40327
40468
|
format: "uuid",
|
|
@@ -41060,7 +41201,8 @@ var openapi_default = {
|
|
|
41060
41201
|
"can_turn_off_hvac",
|
|
41061
41202
|
"can_simulate_removal",
|
|
41062
41203
|
"can_simulate_connection",
|
|
41063
|
-
"can_simulate_disconnection"
|
|
41204
|
+
"can_simulate_disconnection",
|
|
41205
|
+
"can_unlock_with_code"
|
|
41064
41206
|
],
|
|
41065
41207
|
type: "string"
|
|
41066
41208
|
},
|
|
@@ -41084,7 +41226,8 @@ var openapi_default = {
|
|
|
41084
41226
|
"can_turn_off_hvac",
|
|
41085
41227
|
"can_simulate_removal",
|
|
41086
41228
|
"can_simulate_connection",
|
|
41087
|
-
"can_simulate_disconnection"
|
|
41229
|
+
"can_simulate_disconnection",
|
|
41230
|
+
"can_unlock_with_code"
|
|
41088
41231
|
],
|
|
41089
41232
|
type: "string"
|
|
41090
41233
|
},
|
|
@@ -41111,6 +41254,15 @@ var openapi_default = {
|
|
|
41111
41254
|
format: "uuid",
|
|
41112
41255
|
type: "string"
|
|
41113
41256
|
}
|
|
41257
|
+
},
|
|
41258
|
+
{
|
|
41259
|
+
in: "query",
|
|
41260
|
+
name: "search",
|
|
41261
|
+
schema: {
|
|
41262
|
+
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`.",
|
|
41263
|
+
minLength: 1,
|
|
41264
|
+
type: "string"
|
|
41265
|
+
}
|
|
41114
41266
|
}
|
|
41115
41267
|
],
|
|
41116
41268
|
responses: {
|
|
@@ -41328,7 +41480,8 @@ var openapi_default = {
|
|
|
41328
41480
|
"can_turn_off_hvac",
|
|
41329
41481
|
"can_simulate_removal",
|
|
41330
41482
|
"can_simulate_connection",
|
|
41331
|
-
"can_simulate_disconnection"
|
|
41483
|
+
"can_simulate_disconnection",
|
|
41484
|
+
"can_unlock_with_code"
|
|
41332
41485
|
],
|
|
41333
41486
|
type: "string"
|
|
41334
41487
|
},
|
|
@@ -41348,7 +41501,8 @@ var openapi_default = {
|
|
|
41348
41501
|
"can_turn_off_hvac",
|
|
41349
41502
|
"can_simulate_removal",
|
|
41350
41503
|
"can_simulate_connection",
|
|
41351
|
-
"can_simulate_disconnection"
|
|
41504
|
+
"can_simulate_disconnection",
|
|
41505
|
+
"can_unlock_with_code"
|
|
41352
41506
|
],
|
|
41353
41507
|
type: "string"
|
|
41354
41508
|
},
|
|
@@ -41411,6 +41565,11 @@ var openapi_default = {
|
|
|
41411
41565
|
nullable: true,
|
|
41412
41566
|
type: "string"
|
|
41413
41567
|
},
|
|
41568
|
+
search: {
|
|
41569
|
+
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`.",
|
|
41570
|
+
minLength: 1,
|
|
41571
|
+
type: "string"
|
|
41572
|
+
},
|
|
41414
41573
|
space_id: {
|
|
41415
41574
|
description: "ID of the space for which you want to list devices.",
|
|
41416
41575
|
format: "uuid",
|
|
@@ -42920,7 +43079,8 @@ var openapi_default = {
|
|
|
42920
43079
|
"can_turn_off_hvac",
|
|
42921
43080
|
"can_simulate_removal",
|
|
42922
43081
|
"can_simulate_connection",
|
|
42923
|
-
"can_simulate_disconnection"
|
|
43082
|
+
"can_simulate_disconnection",
|
|
43083
|
+
"can_unlock_with_code"
|
|
42924
43084
|
],
|
|
42925
43085
|
type: "string"
|
|
42926
43086
|
},
|
|
@@ -42944,7 +43104,8 @@ var openapi_default = {
|
|
|
42944
43104
|
"can_turn_off_hvac",
|
|
42945
43105
|
"can_simulate_removal",
|
|
42946
43106
|
"can_simulate_connection",
|
|
42947
|
-
"can_simulate_disconnection"
|
|
43107
|
+
"can_simulate_disconnection",
|
|
43108
|
+
"can_unlock_with_code"
|
|
42948
43109
|
],
|
|
42949
43110
|
type: "string"
|
|
42950
43111
|
},
|
|
@@ -42971,6 +43132,15 @@ var openapi_default = {
|
|
|
42971
43132
|
format: "uuid",
|
|
42972
43133
|
type: "string"
|
|
42973
43134
|
}
|
|
43135
|
+
},
|
|
43136
|
+
{
|
|
43137
|
+
in: "query",
|
|
43138
|
+
name: "search",
|
|
43139
|
+
schema: {
|
|
43140
|
+
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`.",
|
|
43141
|
+
minLength: 1,
|
|
43142
|
+
type: "string"
|
|
43143
|
+
}
|
|
42974
43144
|
}
|
|
42975
43145
|
],
|
|
42976
43146
|
responses: {
|
|
@@ -43140,7 +43310,8 @@ var openapi_default = {
|
|
|
43140
43310
|
"can_turn_off_hvac",
|
|
43141
43311
|
"can_simulate_removal",
|
|
43142
43312
|
"can_simulate_connection",
|
|
43143
|
-
"can_simulate_disconnection"
|
|
43313
|
+
"can_simulate_disconnection",
|
|
43314
|
+
"can_unlock_with_code"
|
|
43144
43315
|
],
|
|
43145
43316
|
type: "string"
|
|
43146
43317
|
},
|
|
@@ -43160,7 +43331,8 @@ var openapi_default = {
|
|
|
43160
43331
|
"can_turn_off_hvac",
|
|
43161
43332
|
"can_simulate_removal",
|
|
43162
43333
|
"can_simulate_connection",
|
|
43163
|
-
"can_simulate_disconnection"
|
|
43334
|
+
"can_simulate_disconnection",
|
|
43335
|
+
"can_unlock_with_code"
|
|
43164
43336
|
],
|
|
43165
43337
|
type: "string"
|
|
43166
43338
|
},
|
|
@@ -43212,6 +43384,11 @@ var openapi_default = {
|
|
|
43212
43384
|
nullable: true,
|
|
43213
43385
|
type: "string"
|
|
43214
43386
|
},
|
|
43387
|
+
search: {
|
|
43388
|
+
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`.",
|
|
43389
|
+
minLength: 1,
|
|
43390
|
+
type: "string"
|
|
43391
|
+
},
|
|
43215
43392
|
space_id: {
|
|
43216
43393
|
description: "ID of the space for which you want to list devices.",
|
|
43217
43394
|
format: "uuid",
|
|
@@ -43899,7 +44076,8 @@ var openapi_default = {
|
|
|
43899
44076
|
"can_turn_off_hvac",
|
|
43900
44077
|
"can_simulate_removal",
|
|
43901
44078
|
"can_simulate_connection",
|
|
43902
|
-
"can_simulate_disconnection"
|
|
44079
|
+
"can_simulate_disconnection",
|
|
44080
|
+
"can_unlock_with_code"
|
|
43903
44081
|
],
|
|
43904
44082
|
type: "string"
|
|
43905
44083
|
},
|
|
@@ -43923,7 +44101,8 @@ var openapi_default = {
|
|
|
43923
44101
|
"can_turn_off_hvac",
|
|
43924
44102
|
"can_simulate_removal",
|
|
43925
44103
|
"can_simulate_connection",
|
|
43926
|
-
"can_simulate_disconnection"
|
|
44104
|
+
"can_simulate_disconnection",
|
|
44105
|
+
"can_unlock_with_code"
|
|
43927
44106
|
],
|
|
43928
44107
|
type: "string"
|
|
43929
44108
|
},
|
|
@@ -43950,6 +44129,15 @@ var openapi_default = {
|
|
|
43950
44129
|
format: "uuid",
|
|
43951
44130
|
type: "string"
|
|
43952
44131
|
}
|
|
44132
|
+
},
|
|
44133
|
+
{
|
|
44134
|
+
in: "query",
|
|
44135
|
+
name: "search",
|
|
44136
|
+
schema: {
|
|
44137
|
+
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`.",
|
|
44138
|
+
minLength: 1,
|
|
44139
|
+
type: "string"
|
|
44140
|
+
}
|
|
43953
44141
|
}
|
|
43954
44142
|
],
|
|
43955
44143
|
responses: {
|
|
@@ -44063,7 +44251,8 @@ var openapi_default = {
|
|
|
44063
44251
|
"can_turn_off_hvac",
|
|
44064
44252
|
"can_simulate_removal",
|
|
44065
44253
|
"can_simulate_connection",
|
|
44066
|
-
"can_simulate_disconnection"
|
|
44254
|
+
"can_simulate_disconnection",
|
|
44255
|
+
"can_unlock_with_code"
|
|
44067
44256
|
],
|
|
44068
44257
|
type: "string"
|
|
44069
44258
|
},
|
|
@@ -44083,7 +44272,8 @@ var openapi_default = {
|
|
|
44083
44272
|
"can_turn_off_hvac",
|
|
44084
44273
|
"can_simulate_removal",
|
|
44085
44274
|
"can_simulate_connection",
|
|
44086
|
-
"can_simulate_disconnection"
|
|
44275
|
+
"can_simulate_disconnection",
|
|
44276
|
+
"can_unlock_with_code"
|
|
44087
44277
|
],
|
|
44088
44278
|
type: "string"
|
|
44089
44279
|
},
|
|
@@ -44106,6 +44296,11 @@ var openapi_default = {
|
|
|
44106
44296
|
nullable: true,
|
|
44107
44297
|
type: "string"
|
|
44108
44298
|
},
|
|
44299
|
+
search: {
|
|
44300
|
+
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`.",
|
|
44301
|
+
minLength: 1,
|
|
44302
|
+
type: "string"
|
|
44303
|
+
},
|
|
44109
44304
|
space_id: {
|
|
44110
44305
|
description: "ID of the space for which you want to list devices.",
|
|
44111
44306
|
format: "uuid",
|
|
@@ -48412,7 +48607,8 @@ var openapi_default = {
|
|
|
48412
48607
|
"can_turn_off_hvac",
|
|
48413
48608
|
"can_simulate_removal",
|
|
48414
48609
|
"can_simulate_connection",
|
|
48415
|
-
"can_simulate_disconnection"
|
|
48610
|
+
"can_simulate_disconnection",
|
|
48611
|
+
"can_unlock_with_code"
|
|
48416
48612
|
],
|
|
48417
48613
|
type: "string"
|
|
48418
48614
|
},
|
|
@@ -48436,7 +48632,8 @@ var openapi_default = {
|
|
|
48436
48632
|
"can_turn_off_hvac",
|
|
48437
48633
|
"can_simulate_removal",
|
|
48438
48634
|
"can_simulate_connection",
|
|
48439
|
-
"can_simulate_disconnection"
|
|
48635
|
+
"can_simulate_disconnection",
|
|
48636
|
+
"can_unlock_with_code"
|
|
48440
48637
|
],
|
|
48441
48638
|
type: "string"
|
|
48442
48639
|
},
|
|
@@ -48463,6 +48660,15 @@ var openapi_default = {
|
|
|
48463
48660
|
format: "uuid",
|
|
48464
48661
|
type: "string"
|
|
48465
48662
|
}
|
|
48663
|
+
},
|
|
48664
|
+
{
|
|
48665
|
+
in: "query",
|
|
48666
|
+
name: "search",
|
|
48667
|
+
schema: {
|
|
48668
|
+
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`.",
|
|
48669
|
+
minLength: 1,
|
|
48670
|
+
type: "string"
|
|
48671
|
+
}
|
|
48466
48672
|
}
|
|
48467
48673
|
],
|
|
48468
48674
|
responses: {
|
|
@@ -48590,7 +48796,8 @@ var openapi_default = {
|
|
|
48590
48796
|
"can_turn_off_hvac",
|
|
48591
48797
|
"can_simulate_removal",
|
|
48592
48798
|
"can_simulate_connection",
|
|
48593
|
-
"can_simulate_disconnection"
|
|
48799
|
+
"can_simulate_disconnection",
|
|
48800
|
+
"can_unlock_with_code"
|
|
48594
48801
|
],
|
|
48595
48802
|
type: "string"
|
|
48596
48803
|
},
|
|
@@ -48610,7 +48817,8 @@ var openapi_default = {
|
|
|
48610
48817
|
"can_turn_off_hvac",
|
|
48611
48818
|
"can_simulate_removal",
|
|
48612
48819
|
"can_simulate_connection",
|
|
48613
|
-
"can_simulate_disconnection"
|
|
48820
|
+
"can_simulate_disconnection",
|
|
48821
|
+
"can_unlock_with_code"
|
|
48614
48822
|
],
|
|
48615
48823
|
type: "string"
|
|
48616
48824
|
},
|
|
@@ -48640,6 +48848,11 @@ var openapi_default = {
|
|
|
48640
48848
|
nullable: true,
|
|
48641
48849
|
type: "string"
|
|
48642
48850
|
},
|
|
48851
|
+
search: {
|
|
48852
|
+
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`.",
|
|
48853
|
+
minLength: 1,
|
|
48854
|
+
type: "string"
|
|
48855
|
+
},
|
|
48643
48856
|
space_id: {
|
|
48644
48857
|
description: "ID of the space for which you want to list devices.",
|
|
48645
48858
|
format: "uuid",
|
|
@@ -53355,6 +53568,14 @@ var openapi_default = {
|
|
|
53355
53568
|
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
53569
|
operationId: "userIdentitiesListGet",
|
|
53357
53570
|
parameters: [
|
|
53571
|
+
{
|
|
53572
|
+
in: "query",
|
|
53573
|
+
name: "search",
|
|
53574
|
+
schema: {
|
|
53575
|
+
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`.",
|
|
53576
|
+
type: "string"
|
|
53577
|
+
}
|
|
53578
|
+
},
|
|
53358
53579
|
{
|
|
53359
53580
|
in: "query",
|
|
53360
53581
|
name: "credential_manager_acs_system_id",
|
|
@@ -53413,6 +53634,10 @@ var openapi_default = {
|
|
|
53413
53634
|
description: "`acs_system_id` of the credential manager by which you want to filter the list of user identities.",
|
|
53414
53635
|
format: "uuid",
|
|
53415
53636
|
type: "string"
|
|
53637
|
+
},
|
|
53638
|
+
search: {
|
|
53639
|
+
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`.",
|
|
53640
|
+
type: "string"
|
|
53416
53641
|
}
|
|
53417
53642
|
},
|
|
53418
53643
|
type: "object"
|