@seamapi/types 1.633.0 → 1.634.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.
@@ -13552,8 +13552,8 @@ export type Routes = {
13552
13552
  commonParams: {
13553
13553
  /** IDs of the access methods that you want to get along with their related resources. */
13554
13554
  access_method_ids: string[];
13555
- include?: ('spaces' | 'devices' | 'acs_entrances' | 'access_grants' | 'access_methods' | 'instant_keys' | 'client_sessions')[] | undefined;
13556
- exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'access_grants' | 'access_methods' | 'instant_keys' | 'client_sessions')[] | undefined;
13555
+ include?: ('spaces' | 'devices' | 'acs_entrances' | 'access_grants' | 'access_methods' | 'instant_keys' | 'client_sessions' | 'acs_credentials')[] | undefined;
13556
+ exclude?: ('spaces' | 'devices' | 'acs_entrances' | 'access_grants' | 'access_methods' | 'instant_keys' | 'client_sessions' | 'acs_credentials')[] | undefined;
13557
13557
  };
13558
13558
  formData: {};
13559
13559
  jsonResponse: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.633.0",
3
+ "version": "1.634.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -31143,6 +31143,7 @@ export default {
31143
31143
  'access_methods',
31144
31144
  'instant_keys',
31145
31145
  'client_sessions',
31146
+ 'acs_credentials',
31146
31147
  ],
31147
31148
  type: 'string',
31148
31149
  },
@@ -31163,6 +31164,7 @@ export default {
31163
31164
  'access_methods',
31164
31165
  'instant_keys',
31165
31166
  'client_sessions',
31167
+ 'acs_credentials',
31166
31168
  ],
31167
31169
  type: 'string',
31168
31170
  },
@@ -31381,6 +31383,7 @@ export default {
31381
31383
  'access_methods',
31382
31384
  'instant_keys',
31383
31385
  'client_sessions',
31386
+ 'acs_credentials',
31384
31387
  ],
31385
31388
  type: 'string',
31386
31389
  },
@@ -31396,6 +31399,7 @@ export default {
31396
31399
  'access_methods',
31397
31400
  'instant_keys',
31398
31401
  'client_sessions',
31402
+ 'acs_credentials',
31399
31403
  ],
31400
31404
  type: 'string',
31401
31405
  },
@@ -35152,6 +35156,7 @@ export default {
35152
35156
  { pat_with_workspace: [] },
35153
35157
  { console_session_with_workspace: [] },
35154
35158
  { api_key: [] },
35159
+ { client_session_with_customer: [] },
35155
35160
  ],
35156
35161
  summary: '/acs/encoders/encode_credential',
35157
35162
  tags: ['/acs'],
@@ -35298,6 +35303,7 @@ export default {
35298
35303
  { pat_with_workspace: [] },
35299
35304
  { console_session_with_workspace: [] },
35300
35305
  { api_key: [] },
35306
+ { client_session_with_customer: [] },
35301
35307
  ],
35302
35308
  summary: '/acs/encoders/list',
35303
35309
  tags: ['/acs'],
@@ -35405,6 +35411,7 @@ export default {
35405
35411
  { pat_with_workspace: [] },
35406
35412
  { console_session_with_workspace: [] },
35407
35413
  { api_key: [] },
35414
+ { client_session_with_customer: [] },
35408
35415
  ],
35409
35416
  summary: '/acs/encoders/list',
35410
35417
  tags: ['/acs'],
@@ -35610,6 +35617,7 @@ export default {
35610
35617
  { api_key: [] },
35611
35618
  { pat_with_workspace: [] },
35612
35619
  { console_session_with_workspace: [] },
35620
+ { client_session_with_customer: [] },
35613
35621
  ],
35614
35622
  summary: '/acs/encoders/simulate/next_credential_encode_will_succeed',
35615
35623
  tags: ['/acs'],
@@ -38549,6 +38557,7 @@ export default {
38549
38557
  { pat_with_workspace: [] },
38550
38558
  { console_session_with_workspace: [] },
38551
38559
  { api_key: [] },
38560
+ { client_session_with_customer: [] },
38552
38561
  ],
38553
38562
  summary: '/action_attempts/get',
38554
38563
  tags: ['/action_attempts'],
@@ -38606,6 +38615,7 @@ export default {
38606
38615
  { pat_with_workspace: [] },
38607
38616
  { console_session_with_workspace: [] },
38608
38617
  { api_key: [] },
38618
+ { client_session_with_customer: [] },
38609
38619
  ],
38610
38620
  summary: '/action_attempts/get',
38611
38621
  tags: ['/action_attempts'],
@@ -15501,6 +15501,7 @@ export type Routes = {
15501
15501
  | 'access_methods'
15502
15502
  | 'instant_keys'
15503
15503
  | 'client_sessions'
15504
+ | 'acs_credentials'
15504
15505
  )[]
15505
15506
  | undefined
15506
15507
  exclude?:
@@ -15512,6 +15513,7 @@ export type Routes = {
15512
15513
  | 'access_methods'
15513
15514
  | 'instant_keys'
15514
15515
  | 'client_sessions'
15516
+ | 'acs_credentials'
15515
15517
  )[]
15516
15518
  | undefined
15517
15519
  }