@seamapi/types 1.102.1 → 1.103.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.
@@ -1330,6 +1330,17 @@ export interface Routes {
1330
1330
  formData: {};
1331
1331
  jsonResponse: {};
1332
1332
  };
1333
+ '/acs/users/revoke_access_to_all_entrances': {
1334
+ route: '/acs/users/revoke_access_to_all_entrances';
1335
+ method: 'POST';
1336
+ queryParams: {};
1337
+ jsonBody: {
1338
+ acs_user_id: string;
1339
+ };
1340
+ commonParams: {};
1341
+ formData: {};
1342
+ jsonResponse: {};
1343
+ };
1333
1344
  '/acs/users/suspend': {
1334
1345
  route: '/acs/users/suspend';
1335
1346
  method: 'POST';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.102.1",
3
+ "version": "1.103.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -5666,6 +5666,47 @@ export default {
5666
5666
  'x-fern-sdk-method-name': 'remove_from_access_group',
5667
5667
  },
5668
5668
  },
5669
+ '/acs/users/revoke_access_to_all_entrances': {
5670
+ post: {
5671
+ operationId: 'acsUsersRevokeAccessToAllEntrancesPost',
5672
+ requestBody: {
5673
+ content: {
5674
+ 'application/json': {
5675
+ schema: {
5676
+ properties: { acs_user_id: { format: 'uuid', type: 'string' } },
5677
+ required: ['acs_user_id'],
5678
+ type: 'object',
5679
+ },
5680
+ },
5681
+ },
5682
+ },
5683
+ responses: {
5684
+ 200: {
5685
+ content: {
5686
+ 'application/json': {
5687
+ schema: {
5688
+ properties: { ok: { type: 'boolean' } },
5689
+ required: ['ok'],
5690
+ type: 'object',
5691
+ },
5692
+ },
5693
+ },
5694
+ description: 'OK',
5695
+ },
5696
+ 400: { description: 'Bad Request' },
5697
+ 401: { description: 'Unauthorized' },
5698
+ },
5699
+ security: [
5700
+ { api_key: [] },
5701
+ { pat_with_workspace: [] },
5702
+ { console_session: [] },
5703
+ ],
5704
+ summary: '/acs/users/revoke_access_to_all_entrances',
5705
+ tags: ['/acs'],
5706
+ 'x-fern-sdk-group-name': ['acs', 'users'],
5707
+ 'x-fern-sdk-method-name': 'revoke_access_to_all_entrances',
5708
+ },
5709
+ },
5669
5710
  '/acs/users/suspend': {
5670
5711
  post: {
5671
5712
  operationId: 'acsUsersSuspendPost',
@@ -1508,6 +1508,17 @@ export interface Routes {
1508
1508
  formData: {}
1509
1509
  jsonResponse: {}
1510
1510
  }
1511
+ '/acs/users/revoke_access_to_all_entrances': {
1512
+ route: '/acs/users/revoke_access_to_all_entrances'
1513
+ method: 'POST'
1514
+ queryParams: {}
1515
+ jsonBody: {
1516
+ acs_user_id: string
1517
+ }
1518
+ commonParams: {}
1519
+ formData: {}
1520
+ jsonResponse: {}
1521
+ }
1511
1522
  '/acs/users/suspend': {
1512
1523
  route: '/acs/users/suspend'
1513
1524
  method: 'POST'