@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.
@@ -7846,6 +7846,68 @@ declare const _default: {
7846
7846
  'x-fern-sdk-method-name': string;
7847
7847
  };
7848
7848
  };
7849
+ '/acs/users/revoke_access_to_all_entrances': {
7850
+ post: {
7851
+ operationId: string;
7852
+ requestBody: {
7853
+ content: {
7854
+ 'application/json': {
7855
+ schema: {
7856
+ properties: {
7857
+ acs_user_id: {
7858
+ format: string;
7859
+ type: string;
7860
+ };
7861
+ };
7862
+ required: string[];
7863
+ type: string;
7864
+ };
7865
+ };
7866
+ };
7867
+ };
7868
+ responses: {
7869
+ 200: {
7870
+ content: {
7871
+ 'application/json': {
7872
+ schema: {
7873
+ properties: {
7874
+ ok: {
7875
+ type: string;
7876
+ };
7877
+ };
7878
+ required: string[];
7879
+ type: string;
7880
+ };
7881
+ };
7882
+ };
7883
+ description: string;
7884
+ };
7885
+ 400: {
7886
+ description: string;
7887
+ };
7888
+ 401: {
7889
+ description: string;
7890
+ };
7891
+ };
7892
+ security: ({
7893
+ api_key: never[];
7894
+ pat_with_workspace?: never;
7895
+ console_session?: never;
7896
+ } | {
7897
+ pat_with_workspace: never[];
7898
+ api_key?: never;
7899
+ console_session?: never;
7900
+ } | {
7901
+ console_session: never[];
7902
+ api_key?: never;
7903
+ pat_with_workspace?: never;
7904
+ })[];
7905
+ summary: string;
7906
+ tags: string[];
7907
+ 'x-fern-sdk-group-name': string[];
7908
+ 'x-fern-sdk-method-name': string;
7909
+ };
7910
+ };
7849
7911
  '/acs/users/suspend': {
7850
7912
  post: {
7851
7913
  operationId: string;
@@ -17579,6 +17641,17 @@ interface Routes {
17579
17641
  formData: {};
17580
17642
  jsonResponse: {};
17581
17643
  };
17644
+ '/acs/users/revoke_access_to_all_entrances': {
17645
+ route: '/acs/users/revoke_access_to_all_entrances';
17646
+ method: 'POST';
17647
+ queryParams: {};
17648
+ jsonBody: {
17649
+ acs_user_id: string;
17650
+ };
17651
+ commonParams: {};
17652
+ formData: {};
17653
+ jsonResponse: {};
17654
+ };
17582
17655
  '/acs/users/suspend': {
17583
17656
  route: '/acs/users/suspend';
17584
17657
  method: 'POST';
@@ -7772,6 +7772,68 @@ declare const _default: {
7772
7772
  'x-fern-sdk-method-name': string;
7773
7773
  };
7774
7774
  };
7775
+ '/acs/users/revoke_access_to_all_entrances': {
7776
+ post: {
7777
+ operationId: string;
7778
+ requestBody: {
7779
+ content: {
7780
+ 'application/json': {
7781
+ schema: {
7782
+ properties: {
7783
+ acs_user_id: {
7784
+ format: string;
7785
+ type: string;
7786
+ };
7787
+ };
7788
+ required: string[];
7789
+ type: string;
7790
+ };
7791
+ };
7792
+ };
7793
+ };
7794
+ responses: {
7795
+ 200: {
7796
+ content: {
7797
+ 'application/json': {
7798
+ schema: {
7799
+ properties: {
7800
+ ok: {
7801
+ type: string;
7802
+ };
7803
+ };
7804
+ required: string[];
7805
+ type: string;
7806
+ };
7807
+ };
7808
+ };
7809
+ description: string;
7810
+ };
7811
+ 400: {
7812
+ description: string;
7813
+ };
7814
+ 401: {
7815
+ description: string;
7816
+ };
7817
+ };
7818
+ security: ({
7819
+ api_key: never[];
7820
+ pat_with_workspace?: never;
7821
+ console_session?: never;
7822
+ } | {
7823
+ pat_with_workspace: never[];
7824
+ api_key?: never;
7825
+ console_session?: never;
7826
+ } | {
7827
+ console_session: never[];
7828
+ api_key?: never;
7829
+ pat_with_workspace?: never;
7830
+ })[];
7831
+ summary: string;
7832
+ tags: string[];
7833
+ 'x-fern-sdk-group-name': string[];
7834
+ 'x-fern-sdk-method-name': string;
7835
+ };
7836
+ };
7775
7837
  '/acs/users/suspend': {
7776
7838
  post: {
7777
7839
  operationId: string;
@@ -5597,6 +5597,47 @@ export default {
5597
5597
  'x-fern-sdk-method-name': 'remove_from_access_group',
5598
5598
  },
5599
5599
  },
5600
+ '/acs/users/revoke_access_to_all_entrances': {
5601
+ post: {
5602
+ operationId: 'acsUsersRevokeAccessToAllEntrancesPost',
5603
+ requestBody: {
5604
+ content: {
5605
+ 'application/json': {
5606
+ schema: {
5607
+ properties: { acs_user_id: { format: 'uuid', type: 'string' } },
5608
+ required: ['acs_user_id'],
5609
+ type: 'object',
5610
+ },
5611
+ },
5612
+ },
5613
+ },
5614
+ responses: {
5615
+ 200: {
5616
+ content: {
5617
+ 'application/json': {
5618
+ schema: {
5619
+ properties: { ok: { type: 'boolean' } },
5620
+ required: ['ok'],
5621
+ type: 'object',
5622
+ },
5623
+ },
5624
+ },
5625
+ description: 'OK',
5626
+ },
5627
+ 400: { description: 'Bad Request' },
5628
+ 401: { description: 'Unauthorized' },
5629
+ },
5630
+ security: [
5631
+ { api_key: [] },
5632
+ { pat_with_workspace: [] },
5633
+ { console_session: [] },
5634
+ ],
5635
+ summary: '/acs/users/revoke_access_to_all_entrances',
5636
+ tags: ['/acs'],
5637
+ 'x-fern-sdk-group-name': ['acs', 'users'],
5638
+ 'x-fern-sdk-method-name': 'revoke_access_to_all_entrances',
5639
+ },
5640
+ },
5600
5641
  '/acs/users/suspend': {
5601
5642
  post: {
5602
5643
  operationId: 'acsUsersSuspendPost',