@seamapi/types 1.594.0 → 1.596.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.
@@ -10205,6 +10205,17 @@ export default {
10205
10205
  required: ['device_id', 'device_name'],
10206
10206
  type: 'object',
10207
10207
  },
10208
+ ultraloq_metadata: {
10209
+ description: 'Metadata for a Ultraloq device.',
10210
+ properties: {
10211
+ device_id: {
10212
+ description: 'Device ID for a Ultraloq device.',
10213
+ type: 'string',
10214
+ },
10215
+ },
10216
+ required: ['device_id'],
10217
+ type: 'object',
10218
+ },
10208
10219
  visionline_metadata: {
10209
10220
  description: 'Metadata for an ASSA ABLOY Visionline system.',
10210
10221
  properties: {
@@ -11651,6 +11662,7 @@ export default {
11651
11662
  'kwikset2',
11652
11663
  'keynest',
11653
11664
  'dormakaba_ambiance',
11665
+ 'ultraloq',
11654
11666
  ],
11655
11667
  type: 'string',
11656
11668
  },
@@ -27146,6 +27158,126 @@ export default {
27146
27158
  'x-title': 'List Unmanaged Access Grants',
27147
27159
  },
27148
27160
  },
27161
+ '/access_grants/unmanaged/update': {
27162
+ patch: {
27163
+ description: 'Updates an unmanaged Access Grant to make it managed.\n\nThis endpoint can only be used to convert unmanaged access grants to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed access grants back to unmanaged.\n\nWhen converting an unmanaged access grant to managed, all associated access methods will also be converted to managed.',
27164
+ operationId: 'accessGrantsUnmanagedUpdatePatch',
27165
+ requestBody: {
27166
+ content: {
27167
+ 'application/json': {
27168
+ schema: {
27169
+ properties: {
27170
+ access_grant_id: {
27171
+ description: 'ID of the unmanaged Access Grant to update.',
27172
+ format: 'uuid',
27173
+ type: 'string',
27174
+ },
27175
+ access_grant_key: {
27176
+ description: 'Unique key for the access grant. If not provided, the existing key will be preserved.',
27177
+ type: 'string',
27178
+ },
27179
+ is_managed: {
27180
+ description: 'Must be set to true to convert the unmanaged access grant to managed.',
27181
+ enum: [true],
27182
+ type: 'boolean',
27183
+ },
27184
+ },
27185
+ required: ['access_grant_id', 'is_managed'],
27186
+ type: 'object',
27187
+ },
27188
+ },
27189
+ },
27190
+ },
27191
+ responses: {
27192
+ 200: {
27193
+ content: {
27194
+ 'application/json': {
27195
+ schema: {
27196
+ properties: { ok: { type: 'boolean' } },
27197
+ required: ['ok'],
27198
+ type: 'object',
27199
+ },
27200
+ },
27201
+ },
27202
+ description: 'OK',
27203
+ },
27204
+ 400: { description: 'Bad Request' },
27205
+ 401: { description: 'Unauthorized' },
27206
+ },
27207
+ security: [
27208
+ { pat_with_workspace: [] },
27209
+ { console_session_with_workspace: [] },
27210
+ { api_key: [] },
27211
+ { client_session_with_customer: [] },
27212
+ ],
27213
+ summary: '/access_grants/unmanaged/update',
27214
+ tags: [],
27215
+ 'x-draft': 'Early access.',
27216
+ 'x-fern-sdk-group-name': ['access_grants', 'unmanaged'],
27217
+ 'x-fern-sdk-method-name': 'update',
27218
+ 'x-response-key': null,
27219
+ 'x-title': 'Update an Unmanaged Access Grant',
27220
+ },
27221
+ post: {
27222
+ description: 'Updates an unmanaged Access Grant to make it managed.\n\nThis endpoint can only be used to convert unmanaged access grants to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed access grants back to unmanaged.\n\nWhen converting an unmanaged access grant to managed, all associated access methods will also be converted to managed.',
27223
+ operationId: 'accessGrantsUnmanagedUpdatePost',
27224
+ requestBody: {
27225
+ content: {
27226
+ 'application/json': {
27227
+ schema: {
27228
+ properties: {
27229
+ access_grant_id: {
27230
+ description: 'ID of the unmanaged Access Grant to update.',
27231
+ format: 'uuid',
27232
+ type: 'string',
27233
+ },
27234
+ access_grant_key: {
27235
+ description: 'Unique key for the access grant. If not provided, the existing key will be preserved.',
27236
+ type: 'string',
27237
+ },
27238
+ is_managed: {
27239
+ description: 'Must be set to true to convert the unmanaged access grant to managed.',
27240
+ enum: [true],
27241
+ type: 'boolean',
27242
+ },
27243
+ },
27244
+ required: ['access_grant_id', 'is_managed'],
27245
+ type: 'object',
27246
+ },
27247
+ },
27248
+ },
27249
+ },
27250
+ responses: {
27251
+ 200: {
27252
+ content: {
27253
+ 'application/json': {
27254
+ schema: {
27255
+ properties: { ok: { type: 'boolean' } },
27256
+ required: ['ok'],
27257
+ type: 'object',
27258
+ },
27259
+ },
27260
+ },
27261
+ description: 'OK',
27262
+ },
27263
+ 400: { description: 'Bad Request' },
27264
+ 401: { description: 'Unauthorized' },
27265
+ },
27266
+ security: [
27267
+ { pat_with_workspace: [] },
27268
+ { console_session_with_workspace: [] },
27269
+ { api_key: [] },
27270
+ { client_session_with_customer: [] },
27271
+ ],
27272
+ summary: '/access_grants/unmanaged/update',
27273
+ tags: [],
27274
+ 'x-draft': 'Early access.',
27275
+ 'x-fern-sdk-group-name': ['access_grants', 'unmanaged'],
27276
+ 'x-fern-sdk-method-name': 'update',
27277
+ 'x-response-key': null,
27278
+ 'x-title': 'Update an Unmanaged Access Grant',
27279
+ },
27280
+ },
27149
27281
  '/access_grants/update': {
27150
27282
  patch: {
27151
27283
  description: "Updates an existing Access Grant's time window.",
@@ -35825,6 +35957,7 @@ export default {
35825
35957
  'kwikset2',
35826
35958
  'keynest',
35827
35959
  'dormakaba_ambiance',
35960
+ 'ultraloq',
35828
35961
  'yale_access',
35829
35962
  'hid_cm',
35830
35963
  'google_nest',
@@ -39208,6 +39341,7 @@ export default {
39208
39341
  'sensi',
39209
39342
  'smartthings',
39210
39343
  'keynest',
39344
+ 'ultraloq',
39211
39345
  ],
39212
39346
  type: 'string',
39213
39347
  },
@@ -39682,6 +39816,7 @@ export default {
39682
39816
  'sensi',
39683
39817
  'smartthings',
39684
39818
  'keynest',
39819
+ 'ultraloq',
39685
39820
  ],
39686
39821
  type: 'string',
39687
39822
  },
@@ -40518,6 +40653,7 @@ export default {
40518
40653
  'sensi',
40519
40654
  'smartthings',
40520
40655
  'keynest',
40656
+ 'ultraloq',
40521
40657
  ],
40522
40658
  type: 'string',
40523
40659
  },
@@ -40990,6 +41126,7 @@ export default {
40990
41126
  'sensi',
40991
41127
  'smartthings',
40992
41128
  'keynest',
41129
+ 'ultraloq',
40993
41130
  ],
40994
41131
  type: 'string',
40995
41132
  },
@@ -42776,6 +42913,7 @@ export default {
42776
42913
  'akiles',
42777
42914
  'kwikset2',
42778
42915
  'smartthings',
42916
+ 'ultraloq',
42779
42917
  ],
42780
42918
  type: 'string',
42781
42919
  },
@@ -43177,6 +43315,7 @@ export default {
43177
43315
  'akiles',
43178
43316
  'kwikset2',
43179
43317
  'smartthings',
43318
+ 'ultraloq',
43180
43319
  ],
43181
43320
  type: 'string',
43182
43321
  },
@@ -56853,6 +56992,124 @@ export default {
56853
56992
  'x-title': 'List Unmanaged User Identities',
56854
56993
  },
56855
56994
  },
56995
+ '/user_identities/unmanaged/update': {
56996
+ patch: {
56997
+ description: 'Updates an unmanaged [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) to make it managed.\n\nThis endpoint can only be used to convert unmanaged user identities to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed user identities back to unmanaged.',
56998
+ operationId: 'userIdentitiesUnmanagedUpdatePatch',
56999
+ requestBody: {
57000
+ content: {
57001
+ 'application/json': {
57002
+ schema: {
57003
+ properties: {
57004
+ is_managed: {
57005
+ description: 'Must be set to true to convert the unmanaged user identity to managed.',
57006
+ enum: [true],
57007
+ type: 'boolean',
57008
+ },
57009
+ user_identity_id: {
57010
+ description: 'ID of the unmanaged user identity that you want to update.',
57011
+ format: 'uuid',
57012
+ type: 'string',
57013
+ },
57014
+ user_identity_key: {
57015
+ description: 'Unique key for the user identity. If not provided, the existing key will be preserved.',
57016
+ type: 'string',
57017
+ },
57018
+ },
57019
+ required: ['user_identity_id', 'is_managed'],
57020
+ type: 'object',
57021
+ },
57022
+ },
57023
+ },
57024
+ },
57025
+ responses: {
57026
+ 200: {
57027
+ content: {
57028
+ 'application/json': {
57029
+ schema: {
57030
+ properties: { ok: { type: 'boolean' } },
57031
+ required: ['ok'],
57032
+ type: 'object',
57033
+ },
57034
+ },
57035
+ },
57036
+ description: 'OK',
57037
+ },
57038
+ 400: { description: 'Bad Request' },
57039
+ 401: { description: 'Unauthorized' },
57040
+ },
57041
+ security: [
57042
+ { api_key: [] },
57043
+ { client_session: [] },
57044
+ { pat_with_workspace: [] },
57045
+ { console_session_with_workspace: [] },
57046
+ ],
57047
+ summary: '/user_identities/unmanaged/update',
57048
+ tags: ['/user_identities'],
57049
+ 'x-fern-sdk-group-name': ['user_identities', 'unmanaged'],
57050
+ 'x-fern-sdk-method-name': 'update',
57051
+ 'x-response-key': null,
57052
+ 'x-title': 'Update an Unmanaged User Identity',
57053
+ },
57054
+ post: {
57055
+ description: 'Updates an unmanaged [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) to make it managed.\n\nThis endpoint can only be used to convert unmanaged user identities to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed user identities back to unmanaged.',
57056
+ operationId: 'userIdentitiesUnmanagedUpdatePost',
57057
+ requestBody: {
57058
+ content: {
57059
+ 'application/json': {
57060
+ schema: {
57061
+ properties: {
57062
+ is_managed: {
57063
+ description: 'Must be set to true to convert the unmanaged user identity to managed.',
57064
+ enum: [true],
57065
+ type: 'boolean',
57066
+ },
57067
+ user_identity_id: {
57068
+ description: 'ID of the unmanaged user identity that you want to update.',
57069
+ format: 'uuid',
57070
+ type: 'string',
57071
+ },
57072
+ user_identity_key: {
57073
+ description: 'Unique key for the user identity. If not provided, the existing key will be preserved.',
57074
+ type: 'string',
57075
+ },
57076
+ },
57077
+ required: ['user_identity_id', 'is_managed'],
57078
+ type: 'object',
57079
+ },
57080
+ },
57081
+ },
57082
+ },
57083
+ responses: {
57084
+ 200: {
57085
+ content: {
57086
+ 'application/json': {
57087
+ schema: {
57088
+ properties: { ok: { type: 'boolean' } },
57089
+ required: ['ok'],
57090
+ type: 'object',
57091
+ },
57092
+ },
57093
+ },
57094
+ description: 'OK',
57095
+ },
57096
+ 400: { description: 'Bad Request' },
57097
+ 401: { description: 'Unauthorized' },
57098
+ },
57099
+ security: [
57100
+ { api_key: [] },
57101
+ { client_session: [] },
57102
+ { pat_with_workspace: [] },
57103
+ { console_session_with_workspace: [] },
57104
+ ],
57105
+ summary: '/user_identities/unmanaged/update',
57106
+ tags: ['/user_identities'],
57107
+ 'x-fern-sdk-group-name': ['user_identities', 'unmanaged'],
57108
+ 'x-fern-sdk-method-name': 'update',
57109
+ 'x-response-key': null,
57110
+ 'x-title': 'Update an Unmanaged User Identity',
57111
+ },
57112
+ },
56856
57113
  '/user_identities/update': {
56857
57114
  patch: {
56858
57115
  description: 'Updates a specified [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).',