@seamapi/types 1.48.0 → 1.50.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 +333 -38
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +477 -17
- package/lib/seam/connect/openapi.d.ts +269 -3
- package/lib/seam/connect/openapi.js +332 -37
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +208 -14
- package/lib/seam/connect/unstable/model-types.d.ts +1 -1
- package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js +81 -21
- package/lib/seam/connect/unstable/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/credential.d.ts +7 -4
- package/lib/seam/connect/unstable/models/acs/credential.js +2 -1
- package/lib/seam/connect/unstable/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/unstable/models/acs/credential_pool.d.ts +29 -0
- package/lib/seam/connect/unstable/models/acs/credential_pool.js +12 -0
- package/lib/seam/connect/unstable/models/acs/credential_pool.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.d.ts +21 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js +9 -0
- package/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.js.map +1 -0
- package/lib/seam/connect/unstable/models/acs/index.d.ts +2 -0
- package/lib/seam/connect/unstable/models/acs/index.js +2 -0
- package/lib/seam/connect/unstable/models/acs/index.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +14 -14
- package/lib/seam/connect/unstable/models/devices/managed-device.js +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +357 -37
- package/src/lib/seam/connect/route-types.ts +208 -14
- package/src/lib/seam/connect/unstable/model-types.ts +2 -0
- package/src/lib/seam/connect/unstable/models/access-codes/managed-access-code.ts +113 -21
- package/src/lib/seam/connect/unstable/models/acs/credential.ts +2 -1
- package/src/lib/seam/connect/unstable/models/acs/credential_pool.ts +19 -0
- package/src/lib/seam/connect/unstable/models/acs/credential_provisioning_automation.ts +13 -0
- package/src/lib/seam/connect/unstable/models/acs/index.ts +2 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +1 -1
- package/src/lib/seam/connect/unstable/schemas.ts +3 -0
package/dist/connect.cjs
CHANGED
|
@@ -50,34 +50,105 @@ var openapi_default = {
|
|
|
50
50
|
schemas: {
|
|
51
51
|
access_code: {
|
|
52
52
|
properties: {
|
|
53
|
-
access_code_id: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
53
|
+
access_code_id: {
|
|
54
|
+
description: "Unique identifier for the access code.",
|
|
55
|
+
format: "uuid",
|
|
56
|
+
type: "string"
|
|
57
|
+
},
|
|
58
|
+
code: {
|
|
59
|
+
description: "Code used for access. Typically, a numeric or alphanumeric string.",
|
|
60
|
+
nullable: true,
|
|
61
|
+
type: "string"
|
|
62
|
+
},
|
|
63
|
+
common_code_key: {
|
|
64
|
+
description: "Unique identifier for a group of access codes that share the same code.",
|
|
65
|
+
nullable: true,
|
|
66
|
+
type: "string"
|
|
67
|
+
},
|
|
68
|
+
created_at: {
|
|
69
|
+
description: "Date and time at which the access code was created.",
|
|
70
|
+
format: "date-time",
|
|
71
|
+
type: "string"
|
|
72
|
+
},
|
|
73
|
+
device_id: {
|
|
74
|
+
description: "Unique identifier for the device associated with the access code.",
|
|
75
|
+
format: "uuid",
|
|
76
|
+
type: "string"
|
|
77
|
+
},
|
|
78
|
+
ends_at: {
|
|
79
|
+
description: "Date and time after which the time-bound access code becomes inactive.",
|
|
80
|
+
format: "date-time",
|
|
81
|
+
nullable: true,
|
|
82
|
+
type: "string"
|
|
83
|
+
},
|
|
84
|
+
errors: {
|
|
85
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
86
|
+
nullable: true
|
|
87
|
+
},
|
|
88
|
+
is_backup: {
|
|
89
|
+
description: "Indicates whether the access code is a backup code.",
|
|
90
|
+
type: "boolean"
|
|
91
|
+
},
|
|
92
|
+
is_backup_access_code_available: {
|
|
93
|
+
description: "Indicates whether a backup access code is available for use if the primary access code is lost or compromised.",
|
|
94
|
+
type: "boolean"
|
|
95
|
+
},
|
|
96
|
+
is_external_modification_allowed: {
|
|
97
|
+
description: "Indicates whether changes to the access code from external sources are permitted.",
|
|
98
|
+
type: "boolean"
|
|
99
|
+
},
|
|
100
|
+
is_managed: {
|
|
101
|
+
description: "Indicates whether Seam manages the access code.",
|
|
102
|
+
enum: [true],
|
|
103
|
+
type: "boolean"
|
|
104
|
+
},
|
|
105
|
+
is_offline_access_code: {
|
|
106
|
+
description: 'Indicates whether the access code is intended for use in offline scenarios. If "true," this code can be created on a device without a network connection.',
|
|
107
|
+
type: "boolean"
|
|
108
|
+
},
|
|
109
|
+
is_one_time_use: {
|
|
110
|
+
description: 'Indicates whether the access code can only be used once. If "true," the code becomes invalid after the first use.',
|
|
111
|
+
type: "boolean"
|
|
112
|
+
},
|
|
113
|
+
is_scheduled_on_device: {
|
|
114
|
+
description: "Indicates whether the code is set on the device according to a preconfigured schedule.",
|
|
115
|
+
type: "boolean"
|
|
116
|
+
},
|
|
117
|
+
is_waiting_for_code_assignment: {
|
|
118
|
+
description: "Indicates whether the access code is waiting for a code assignment.",
|
|
119
|
+
type: "boolean"
|
|
120
|
+
},
|
|
121
|
+
name: {
|
|
122
|
+
description: "Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.",
|
|
123
|
+
nullable: true,
|
|
124
|
+
type: "string"
|
|
125
|
+
},
|
|
69
126
|
pulled_backup_access_code_id: {
|
|
127
|
+
description: "Identifier of the pulled backup access code. Used to associate the pulled backup access code with the original access code.",
|
|
70
128
|
format: "uuid",
|
|
71
129
|
nullable: true,
|
|
72
130
|
type: "string"
|
|
73
131
|
},
|
|
74
|
-
starts_at: {
|
|
132
|
+
starts_at: {
|
|
133
|
+
description: "Date and time at which the time-bound access code becomes active.",
|
|
134
|
+
format: "date-time",
|
|
135
|
+
nullable: true,
|
|
136
|
+
type: "string"
|
|
137
|
+
},
|
|
75
138
|
status: {
|
|
139
|
+
description: '\n Current status of the access code within the operational lifecycle. Values are "setting," a transitional phase that indicates that the code is being configured or activated; "set", which indicates that the code is active and operational; "unset," which indicates a deactivated or unused state, either before activation or after deliberate deactivation; "removing," which indicates a transitional period in which the code is being deleted or made inactive; and "unknown," which indicates an indeterminate state, due to reasons such as system errors or incomplete data, that highlights a potential need for system review or troubleshooting.\n ',
|
|
76
140
|
enum: ["setting", "set", "unset", "removing", "unknown"],
|
|
77
141
|
type: "string"
|
|
78
142
|
},
|
|
79
|
-
type: {
|
|
80
|
-
|
|
143
|
+
type: {
|
|
144
|
+
description: 'Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration.',
|
|
145
|
+
enum: ["time_bound", "ongoing"],
|
|
146
|
+
type: "string"
|
|
147
|
+
},
|
|
148
|
+
warnings: {
|
|
149
|
+
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
|
|
150
|
+
nullable: true
|
|
151
|
+
}
|
|
81
152
|
},
|
|
82
153
|
required: [
|
|
83
154
|
"common_code_key",
|
|
@@ -550,11 +621,11 @@ var openapi_default = {
|
|
|
550
621
|
manufacturer: { type: "string" },
|
|
551
622
|
model: {
|
|
552
623
|
properties: {
|
|
553
|
-
access_codes_supported: { type: "boolean" },
|
|
554
624
|
accessory_keypad_supported: { type: "boolean" },
|
|
555
625
|
display_name: { type: "string" },
|
|
556
626
|
manufacturer_display_name: { type: "string" },
|
|
557
|
-
offline_access_codes_supported: { type: "boolean" }
|
|
627
|
+
offline_access_codes_supported: { type: "boolean" },
|
|
628
|
+
online_access_codes_supported: { type: "boolean" }
|
|
558
629
|
},
|
|
559
630
|
required: ["display_name", "manufacturer_display_name"],
|
|
560
631
|
type: "object"
|
|
@@ -1484,18 +1555,58 @@ var openapi_default = {
|
|
|
1484
1555
|
},
|
|
1485
1556
|
unmanaged_access_code: {
|
|
1486
1557
|
properties: {
|
|
1487
|
-
access_code_id: {
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1558
|
+
access_code_id: {
|
|
1559
|
+
description: "Unique identifier for the access code.",
|
|
1560
|
+
format: "uuid",
|
|
1561
|
+
type: "string"
|
|
1562
|
+
},
|
|
1563
|
+
code: {
|
|
1564
|
+
description: "Code used for access. Typically, a numeric or alphanumeric string.",
|
|
1565
|
+
nullable: true,
|
|
1566
|
+
type: "string"
|
|
1567
|
+
},
|
|
1568
|
+
created_at: {
|
|
1569
|
+
description: "Date and time at which the access code was created.",
|
|
1570
|
+
format: "date-time",
|
|
1571
|
+
type: "string"
|
|
1572
|
+
},
|
|
1573
|
+
device_id: {
|
|
1574
|
+
description: "Unique identifier for the device associated with the access code.",
|
|
1575
|
+
format: "uuid",
|
|
1576
|
+
type: "string"
|
|
1577
|
+
},
|
|
1578
|
+
ends_at: {
|
|
1579
|
+
description: "Date and time after which the time-bound access code becomes inactive.",
|
|
1580
|
+
format: "date-time",
|
|
1581
|
+
nullable: true,
|
|
1582
|
+
type: "string"
|
|
1583
|
+
},
|
|
1584
|
+
errors: {
|
|
1585
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1586
|
+
nullable: true
|
|
1587
|
+
},
|
|
1493
1588
|
is_managed: { enum: [false], type: "boolean" },
|
|
1494
|
-
name: {
|
|
1495
|
-
|
|
1589
|
+
name: {
|
|
1590
|
+
description: "Name of the access code. Enables administrators and users to identify the access code easily, especially when there are numerous access codes.",
|
|
1591
|
+
nullable: true,
|
|
1592
|
+
type: "string"
|
|
1593
|
+
},
|
|
1594
|
+
starts_at: {
|
|
1595
|
+
description: "Date and time at which the time-bound access code becomes active.",
|
|
1596
|
+
format: "date-time",
|
|
1597
|
+
nullable: true,
|
|
1598
|
+
type: "string"
|
|
1599
|
+
},
|
|
1496
1600
|
status: { enum: ["set"], type: "string" },
|
|
1497
|
-
type: {
|
|
1498
|
-
|
|
1601
|
+
type: {
|
|
1602
|
+
description: 'Nature of the access code. Values are "ongoing" for access codes that are active continuously until deactivated manually or "time_bound" for access codes that have a specific duration.',
|
|
1603
|
+
enum: ["time_bound", "ongoing"],
|
|
1604
|
+
type: "string"
|
|
1605
|
+
},
|
|
1606
|
+
warnings: {
|
|
1607
|
+
description: 'Collection of warnings associated with the access code, structured in a dictionary format. A unique "warning_code" keys each warning. Each warning entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the warning. "created_at" is a date that indicates when the warning was generated. This structure enables detailed tracking and timely response to potential issues that are not critical but that may require attention.',
|
|
1608
|
+
nullable: true
|
|
1609
|
+
}
|
|
1499
1610
|
},
|
|
1500
1611
|
required: [
|
|
1501
1612
|
"type",
|
|
@@ -3061,6 +3172,162 @@ var openapi_default = {
|
|
|
3061
3172
|
"x-fern-sdk-method-name": "remove_user"
|
|
3062
3173
|
}
|
|
3063
3174
|
},
|
|
3175
|
+
"/acs/credential_pools/list": {
|
|
3176
|
+
post: {
|
|
3177
|
+
operationId: "acsCredentialPoolsListPost",
|
|
3178
|
+
requestBody: {
|
|
3179
|
+
content: {
|
|
3180
|
+
"application/json": {
|
|
3181
|
+
schema: {
|
|
3182
|
+
properties: {
|
|
3183
|
+
acs_system_id: { format: "uuid", type: "string" }
|
|
3184
|
+
},
|
|
3185
|
+
required: ["acs_system_id"],
|
|
3186
|
+
type: "object"
|
|
3187
|
+
}
|
|
3188
|
+
}
|
|
3189
|
+
}
|
|
3190
|
+
},
|
|
3191
|
+
responses: {
|
|
3192
|
+
200: {
|
|
3193
|
+
content: {
|
|
3194
|
+
"application/json": {
|
|
3195
|
+
schema: {
|
|
3196
|
+
properties: {
|
|
3197
|
+
acs_credential_pools: {
|
|
3198
|
+
items: {
|
|
3199
|
+
properties: {
|
|
3200
|
+
acs_credential_pool_id: {
|
|
3201
|
+
format: "uuid",
|
|
3202
|
+
type: "string"
|
|
3203
|
+
},
|
|
3204
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
3205
|
+
created_at: { format: "date-time", type: "string" },
|
|
3206
|
+
display_name: { minLength: 1, type: "string" },
|
|
3207
|
+
external_type: {
|
|
3208
|
+
enum: ["hid_part_number"],
|
|
3209
|
+
type: "string"
|
|
3210
|
+
},
|
|
3211
|
+
external_type_display_name: { type: "string" },
|
|
3212
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
3213
|
+
},
|
|
3214
|
+
required: [
|
|
3215
|
+
"acs_credential_pool_id",
|
|
3216
|
+
"acs_system_id",
|
|
3217
|
+
"display_name",
|
|
3218
|
+
"external_type",
|
|
3219
|
+
"external_type_display_name",
|
|
3220
|
+
"created_at",
|
|
3221
|
+
"workspace_id"
|
|
3222
|
+
],
|
|
3223
|
+
type: "object"
|
|
3224
|
+
},
|
|
3225
|
+
type: "array"
|
|
3226
|
+
},
|
|
3227
|
+
ok: { type: "boolean" }
|
|
3228
|
+
},
|
|
3229
|
+
required: ["acs_credential_pools", "ok"],
|
|
3230
|
+
type: "object"
|
|
3231
|
+
}
|
|
3232
|
+
}
|
|
3233
|
+
},
|
|
3234
|
+
description: "OK"
|
|
3235
|
+
},
|
|
3236
|
+
400: { description: "Bad Request" },
|
|
3237
|
+
401: { description: "Unauthorized" }
|
|
3238
|
+
},
|
|
3239
|
+
security: [
|
|
3240
|
+
{ access_token: [], seam_workspace: [] },
|
|
3241
|
+
{ seam_client_session_token: [] },
|
|
3242
|
+
{ client_session_token: [] }
|
|
3243
|
+
],
|
|
3244
|
+
summary: "/acs/credential_pools/list",
|
|
3245
|
+
tags: [],
|
|
3246
|
+
"x-fern-sdk-group-name": ["acs", "credential_pools"],
|
|
3247
|
+
"x-fern-sdk-method-name": "list"
|
|
3248
|
+
}
|
|
3249
|
+
},
|
|
3250
|
+
"/acs/credential_provisioning_automations/launch": {
|
|
3251
|
+
post: {
|
|
3252
|
+
operationId: "acsCredentialProvisioningAutomationsLaunchPost",
|
|
3253
|
+
requestBody: {
|
|
3254
|
+
content: {
|
|
3255
|
+
"application/json": {
|
|
3256
|
+
schema: {
|
|
3257
|
+
properties: {
|
|
3258
|
+
acs_credential_pool_id: { format: "uuid", type: "string" },
|
|
3259
|
+
create_credential_manager_user: { type: "boolean" },
|
|
3260
|
+
credential_manager_acs_system_id: {
|
|
3261
|
+
format: "uuid",
|
|
3262
|
+
type: "string"
|
|
3263
|
+
},
|
|
3264
|
+
credential_manager_acs_user_id: {
|
|
3265
|
+
format: "uuid",
|
|
3266
|
+
type: "string"
|
|
3267
|
+
},
|
|
3268
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
3269
|
+
},
|
|
3270
|
+
required: [
|
|
3271
|
+
"user_identity_id",
|
|
3272
|
+
"credential_manager_acs_system_id"
|
|
3273
|
+
],
|
|
3274
|
+
type: "object"
|
|
3275
|
+
}
|
|
3276
|
+
}
|
|
3277
|
+
}
|
|
3278
|
+
},
|
|
3279
|
+
responses: {
|
|
3280
|
+
200: {
|
|
3281
|
+
content: {
|
|
3282
|
+
"application/json": {
|
|
3283
|
+
schema: {
|
|
3284
|
+
properties: {
|
|
3285
|
+
acs_credential_provisioning_automation: {
|
|
3286
|
+
properties: {
|
|
3287
|
+
acs_credential_provisioning_automation_id: {
|
|
3288
|
+
format: "uuid",
|
|
3289
|
+
type: "string"
|
|
3290
|
+
},
|
|
3291
|
+
created_at: { format: "date-time", type: "string" },
|
|
3292
|
+
credential_manager_acs_system_id: {
|
|
3293
|
+
format: "uuid",
|
|
3294
|
+
type: "string"
|
|
3295
|
+
},
|
|
3296
|
+
user_identity_id: { format: "uuid", type: "string" },
|
|
3297
|
+
workspace_id: { format: "uuid", type: "string" }
|
|
3298
|
+
},
|
|
3299
|
+
required: [
|
|
3300
|
+
"acs_credential_provisioning_automation_id",
|
|
3301
|
+
"credential_manager_acs_system_id",
|
|
3302
|
+
"user_identity_id",
|
|
3303
|
+
"created_at",
|
|
3304
|
+
"workspace_id"
|
|
3305
|
+
],
|
|
3306
|
+
type: "object"
|
|
3307
|
+
},
|
|
3308
|
+
ok: { type: "boolean" }
|
|
3309
|
+
},
|
|
3310
|
+
required: ["acs_credential_provisioning_automation", "ok"],
|
|
3311
|
+
type: "object"
|
|
3312
|
+
}
|
|
3313
|
+
}
|
|
3314
|
+
},
|
|
3315
|
+
description: "OK"
|
|
3316
|
+
},
|
|
3317
|
+
400: { description: "Bad Request" },
|
|
3318
|
+
401: { description: "Unauthorized" }
|
|
3319
|
+
},
|
|
3320
|
+
security: [
|
|
3321
|
+
{ access_token: [], seam_workspace: [] },
|
|
3322
|
+
{ seam_client_session_token: [] },
|
|
3323
|
+
{ client_session_token: [] }
|
|
3324
|
+
],
|
|
3325
|
+
summary: "/acs/credential_provisioning_automations/launch",
|
|
3326
|
+
tags: [],
|
|
3327
|
+
"x-fern-sdk-group-name": ["acs", "credential_provisioning_automations"],
|
|
3328
|
+
"x-fern-sdk-method-name": "launch"
|
|
3329
|
+
}
|
|
3330
|
+
},
|
|
3064
3331
|
"/acs/credentials/assign": {
|
|
3065
3332
|
patch: {
|
|
3066
3333
|
operationId: "acsCredentialsAssignPatch",
|
|
@@ -3087,6 +3354,10 @@ var openapi_default = {
|
|
|
3087
3354
|
acs_credential: {
|
|
3088
3355
|
properties: {
|
|
3089
3356
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3357
|
+
acs_credential_pool_id: {
|
|
3358
|
+
format: "uuid",
|
|
3359
|
+
type: "string"
|
|
3360
|
+
},
|
|
3090
3361
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3091
3362
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3092
3363
|
code: { nullable: true, type: "string" },
|
|
@@ -3096,7 +3367,7 @@ var openapi_default = {
|
|
|
3096
3367
|
enum: [
|
|
3097
3368
|
"pti_card",
|
|
3098
3369
|
"brivo_credential",
|
|
3099
|
-
"
|
|
3370
|
+
"hid_credential"
|
|
3100
3371
|
],
|
|
3101
3372
|
type: "string"
|
|
3102
3373
|
},
|
|
@@ -3161,6 +3432,10 @@ var openapi_default = {
|
|
|
3161
3432
|
acs_credential: {
|
|
3162
3433
|
properties: {
|
|
3163
3434
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3435
|
+
acs_credential_pool_id: {
|
|
3436
|
+
format: "uuid",
|
|
3437
|
+
type: "string"
|
|
3438
|
+
},
|
|
3164
3439
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3165
3440
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3166
3441
|
code: { nullable: true, type: "string" },
|
|
@@ -3170,7 +3445,7 @@ var openapi_default = {
|
|
|
3170
3445
|
enum: [
|
|
3171
3446
|
"pti_card",
|
|
3172
3447
|
"brivo_credential",
|
|
3173
|
-
"
|
|
3448
|
+
"hid_credential"
|
|
3174
3449
|
],
|
|
3175
3450
|
type: "string"
|
|
3176
3451
|
},
|
|
@@ -3238,6 +3513,10 @@ var openapi_default = {
|
|
|
3238
3513
|
acs_credential: {
|
|
3239
3514
|
properties: {
|
|
3240
3515
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3516
|
+
acs_credential_pool_id: {
|
|
3517
|
+
format: "uuid",
|
|
3518
|
+
type: "string"
|
|
3519
|
+
},
|
|
3241
3520
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3242
3521
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3243
3522
|
code: { nullable: true, type: "string" },
|
|
@@ -3247,7 +3526,7 @@ var openapi_default = {
|
|
|
3247
3526
|
enum: [
|
|
3248
3527
|
"pti_card",
|
|
3249
3528
|
"brivo_credential",
|
|
3250
|
-
"
|
|
3529
|
+
"hid_credential"
|
|
3251
3530
|
],
|
|
3252
3531
|
type: "string"
|
|
3253
3532
|
},
|
|
@@ -3357,6 +3636,10 @@ var openapi_default = {
|
|
|
3357
3636
|
acs_credential: {
|
|
3358
3637
|
properties: {
|
|
3359
3638
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3639
|
+
acs_credential_pool_id: {
|
|
3640
|
+
format: "uuid",
|
|
3641
|
+
type: "string"
|
|
3642
|
+
},
|
|
3360
3643
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3361
3644
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3362
3645
|
code: { nullable: true, type: "string" },
|
|
@@ -3366,7 +3649,7 @@ var openapi_default = {
|
|
|
3366
3649
|
enum: [
|
|
3367
3650
|
"pti_card",
|
|
3368
3651
|
"brivo_credential",
|
|
3369
|
-
"
|
|
3652
|
+
"hid_credential"
|
|
3370
3653
|
],
|
|
3371
3654
|
type: "string"
|
|
3372
3655
|
},
|
|
@@ -3453,6 +3736,10 @@ var openapi_default = {
|
|
|
3453
3736
|
items: {
|
|
3454
3737
|
properties: {
|
|
3455
3738
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3739
|
+
acs_credential_pool_id: {
|
|
3740
|
+
format: "uuid",
|
|
3741
|
+
type: "string"
|
|
3742
|
+
},
|
|
3456
3743
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3457
3744
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3458
3745
|
code: { nullable: true, type: "string" },
|
|
@@ -3462,7 +3749,7 @@ var openapi_default = {
|
|
|
3462
3749
|
enum: [
|
|
3463
3750
|
"pti_card",
|
|
3464
3751
|
"brivo_credential",
|
|
3465
|
-
"
|
|
3752
|
+
"hid_credential"
|
|
3466
3753
|
],
|
|
3467
3754
|
type: "string"
|
|
3468
3755
|
},
|
|
@@ -3532,6 +3819,10 @@ var openapi_default = {
|
|
|
3532
3819
|
acs_credential: {
|
|
3533
3820
|
properties: {
|
|
3534
3821
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3822
|
+
acs_credential_pool_id: {
|
|
3823
|
+
format: "uuid",
|
|
3824
|
+
type: "string"
|
|
3825
|
+
},
|
|
3535
3826
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3536
3827
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3537
3828
|
code: { nullable: true, type: "string" },
|
|
@@ -3541,7 +3832,7 @@ var openapi_default = {
|
|
|
3541
3832
|
enum: [
|
|
3542
3833
|
"pti_card",
|
|
3543
3834
|
"brivo_credential",
|
|
3544
|
-
"
|
|
3835
|
+
"hid_credential"
|
|
3545
3836
|
],
|
|
3546
3837
|
type: "string"
|
|
3547
3838
|
},
|
|
@@ -3606,6 +3897,10 @@ var openapi_default = {
|
|
|
3606
3897
|
acs_credential: {
|
|
3607
3898
|
properties: {
|
|
3608
3899
|
acs_credential_id: { format: "uuid", type: "string" },
|
|
3900
|
+
acs_credential_pool_id: {
|
|
3901
|
+
format: "uuid",
|
|
3902
|
+
type: "string"
|
|
3903
|
+
},
|
|
3609
3904
|
acs_system_id: { format: "uuid", type: "string" },
|
|
3610
3905
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3611
3906
|
code: { nullable: true, type: "string" },
|
|
@@ -3615,7 +3910,7 @@ var openapi_default = {
|
|
|
3615
3910
|
enum: [
|
|
3616
3911
|
"pti_card",
|
|
3617
3912
|
"brivo_credential",
|
|
3618
|
-
"
|
|
3913
|
+
"hid_credential"
|
|
3619
3914
|
],
|
|
3620
3915
|
type: "string"
|
|
3621
3916
|
},
|