@seamapi/types 1.234.0 → 1.235.1

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.
@@ -152,7 +152,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
152
152
  user_identity_email_address?: string | null | undefined;
153
153
  user_identity_phone_number?: string | null | undefined;
154
154
  }>;
155
- export declare const acs_unmanaged_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
155
+ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
156
156
  acs_user_id: z.ZodString;
157
157
  acs_system_id: z.ZodString;
158
158
  hid_acs_system_id: z.ZodOptional<z.ZodString>;
@@ -261,4 +261,4 @@ export declare const acs_unmanaged_user: z.ZodObject<z.objectUtil.extendShape<z.
261
261
  user_identity_phone_number?: string | null | undefined;
262
262
  }>;
263
263
  export type AcsUser = z.output<typeof acs_user>;
264
- export type AcsUnmanagedUser = z.output<typeof acs_unmanaged_user>;
264
+ export type AcsUnmanagedUser = z.output<typeof unmanaged_acs_user>;
@@ -59,7 +59,7 @@ const common_acs_user = z
59
59
  export const acs_user = common_acs_user.merge(z.object({
60
60
  is_managed: z.literal(true),
61
61
  }));
62
- export const acs_unmanaged_user = common_acs_user.merge(z.object({
62
+ export const unmanaged_acs_user = common_acs_user.merge(z.object({
63
63
  is_managed: z.literal(false),
64
64
  }));
65
65
  //# sourceMappingURL=acs-user.js.map
@@ -207,6 +207,10 @@ declare const _default: {
207
207
  external_type_display_name: {
208
208
  type: string;
209
209
  };
210
+ is_managed: {
211
+ enum: boolean[];
212
+ type: string;
213
+ };
210
214
  name: {
211
215
  type: string;
212
216
  };
@@ -5815,6 +5819,238 @@ declare const _default: {
5815
5819
  'x-fern-sdk-method-name': string;
5816
5820
  };
5817
5821
  };
5822
+ '/acs/access_groups/unmanaged/get': {
5823
+ post: {
5824
+ operationId: string;
5825
+ requestBody: {
5826
+ content: {
5827
+ 'application/json': {
5828
+ schema: {
5829
+ properties: {
5830
+ acs_access_group_id: {
5831
+ format: string;
5832
+ type: string;
5833
+ };
5834
+ };
5835
+ required: string[];
5836
+ type: string;
5837
+ };
5838
+ };
5839
+ };
5840
+ };
5841
+ responses: {
5842
+ 200: {
5843
+ content: {
5844
+ 'application/json': {
5845
+ schema: {
5846
+ properties: {
5847
+ acs_access_group: {
5848
+ properties: {
5849
+ access_group_type: {
5850
+ deprecated: boolean;
5851
+ enum: string[];
5852
+ type: string;
5853
+ 'x-deprecated': string;
5854
+ };
5855
+ access_group_type_display_name: {
5856
+ deprecated: boolean;
5857
+ type: string;
5858
+ 'x-deprecated': string;
5859
+ };
5860
+ acs_access_group_id: {
5861
+ format: string;
5862
+ type: string;
5863
+ };
5864
+ acs_system_id: {
5865
+ format: string;
5866
+ type: string;
5867
+ };
5868
+ created_at: {
5869
+ format: string;
5870
+ type: string;
5871
+ };
5872
+ display_name: {
5873
+ type: string;
5874
+ };
5875
+ external_type: {
5876
+ enum: string[];
5877
+ type: string;
5878
+ };
5879
+ external_type_display_name: {
5880
+ type: string;
5881
+ };
5882
+ is_managed: {
5883
+ enum: boolean[];
5884
+ type: string;
5885
+ };
5886
+ name: {
5887
+ type: string;
5888
+ };
5889
+ workspace_id: {
5890
+ format: string;
5891
+ type: string;
5892
+ };
5893
+ };
5894
+ required: string[];
5895
+ type: string;
5896
+ };
5897
+ ok: {
5898
+ type: string;
5899
+ };
5900
+ };
5901
+ required: string[];
5902
+ type: string;
5903
+ };
5904
+ };
5905
+ };
5906
+ description: string;
5907
+ };
5908
+ 400: {
5909
+ description: string;
5910
+ };
5911
+ 401: {
5912
+ description: string;
5913
+ };
5914
+ };
5915
+ security: ({
5916
+ pat_with_workspace: never[];
5917
+ console_session?: never;
5918
+ api_key?: never;
5919
+ } | {
5920
+ console_session: never[];
5921
+ pat_with_workspace?: never;
5922
+ api_key?: never;
5923
+ } | {
5924
+ api_key: never[];
5925
+ pat_with_workspace?: never;
5926
+ console_session?: never;
5927
+ })[];
5928
+ summary: string;
5929
+ tags: string[];
5930
+ 'x-fern-sdk-group-name': string[];
5931
+ 'x-fern-sdk-method-name': string;
5932
+ 'x-fern-sdk-return-value': string;
5933
+ };
5934
+ };
5935
+ '/acs/access_groups/unmanaged/list': {
5936
+ post: {
5937
+ operationId: string;
5938
+ requestBody: {
5939
+ content: {
5940
+ 'application/json': {
5941
+ schema: {
5942
+ properties: {
5943
+ acs_system_id: {
5944
+ format: string;
5945
+ type: string;
5946
+ };
5947
+ acs_user_id: {
5948
+ format: string;
5949
+ type: string;
5950
+ };
5951
+ };
5952
+ type: string;
5953
+ };
5954
+ };
5955
+ };
5956
+ };
5957
+ responses: {
5958
+ 200: {
5959
+ content: {
5960
+ 'application/json': {
5961
+ schema: {
5962
+ properties: {
5963
+ acs_access_groups: {
5964
+ items: {
5965
+ properties: {
5966
+ access_group_type: {
5967
+ deprecated: boolean;
5968
+ enum: string[];
5969
+ type: string;
5970
+ 'x-deprecated': string;
5971
+ };
5972
+ access_group_type_display_name: {
5973
+ deprecated: boolean;
5974
+ type: string;
5975
+ 'x-deprecated': string;
5976
+ };
5977
+ acs_access_group_id: {
5978
+ format: string;
5979
+ type: string;
5980
+ };
5981
+ acs_system_id: {
5982
+ format: string;
5983
+ type: string;
5984
+ };
5985
+ created_at: {
5986
+ format: string;
5987
+ type: string;
5988
+ };
5989
+ display_name: {
5990
+ type: string;
5991
+ };
5992
+ external_type: {
5993
+ enum: string[];
5994
+ type: string;
5995
+ };
5996
+ external_type_display_name: {
5997
+ type: string;
5998
+ };
5999
+ is_managed: {
6000
+ enum: boolean[];
6001
+ type: string;
6002
+ };
6003
+ name: {
6004
+ type: string;
6005
+ };
6006
+ workspace_id: {
6007
+ format: string;
6008
+ type: string;
6009
+ };
6010
+ };
6011
+ required: string[];
6012
+ type: string;
6013
+ };
6014
+ type: string;
6015
+ };
6016
+ ok: {
6017
+ type: string;
6018
+ };
6019
+ };
6020
+ required: string[];
6021
+ type: string;
6022
+ };
6023
+ };
6024
+ };
6025
+ description: string;
6026
+ };
6027
+ 400: {
6028
+ description: string;
6029
+ };
6030
+ 401: {
6031
+ description: string;
6032
+ };
6033
+ };
6034
+ security: ({
6035
+ pat_with_workspace: never[];
6036
+ console_session?: never;
6037
+ api_key?: never;
6038
+ } | {
6039
+ console_session: never[];
6040
+ pat_with_workspace?: never;
6041
+ api_key?: never;
6042
+ } | {
6043
+ api_key: never[];
6044
+ pat_with_workspace?: never;
6045
+ console_session?: never;
6046
+ })[];
6047
+ summary: string;
6048
+ tags: string[];
6049
+ 'x-fern-sdk-group-name': string[];
6050
+ 'x-fern-sdk-method-name': string;
6051
+ 'x-fern-sdk-return-value': string;
6052
+ };
6053
+ };
5818
6054
  '/acs/credential_pools/list': {
5819
6055
  post: {
5820
6056
  operationId: string;
@@ -8577,7 +8813,119 @@ declare const _default: {
8577
8813
  schema: {
8578
8814
  properties: {
8579
8815
  acs_user: {
8580
- $ref: string;
8816
+ properties: {
8817
+ access_schedule: {
8818
+ properties: {
8819
+ ends_at: {
8820
+ format: string;
8821
+ type: string;
8822
+ };
8823
+ starts_at: {
8824
+ format: string;
8825
+ type: string;
8826
+ };
8827
+ };
8828
+ required: string[];
8829
+ type: string;
8830
+ };
8831
+ acs_system_id: {
8832
+ format: string;
8833
+ type: string;
8834
+ };
8835
+ acs_user_id: {
8836
+ format: string;
8837
+ type: string;
8838
+ };
8839
+ created_at: {
8840
+ format: string;
8841
+ type: string;
8842
+ };
8843
+ display_name: {
8844
+ type: string;
8845
+ };
8846
+ email: {
8847
+ deprecated: boolean;
8848
+ format: string;
8849
+ type: string;
8850
+ 'x-deprecated': string;
8851
+ };
8852
+ email_address: {
8853
+ format: string;
8854
+ type: string;
8855
+ };
8856
+ external_type: {
8857
+ enum: string[];
8858
+ type: string;
8859
+ };
8860
+ external_type_display_name: {
8861
+ type: string;
8862
+ };
8863
+ full_name: {
8864
+ type: string;
8865
+ };
8866
+ hid_acs_system_id: {
8867
+ format: string;
8868
+ type: string;
8869
+ };
8870
+ is_latest_desired_state_synced_with_provider: {
8871
+ type: string;
8872
+ };
8873
+ is_managed: {
8874
+ enum: boolean[];
8875
+ type: string;
8876
+ };
8877
+ is_suspended: {
8878
+ type: string;
8879
+ };
8880
+ latest_desired_state_synced_with_provider_at: {
8881
+ format: string;
8882
+ type: string;
8883
+ };
8884
+ phone_number: {
8885
+ type: string;
8886
+ };
8887
+ user_identity_email_address: {
8888
+ nullable: boolean;
8889
+ type: string;
8890
+ };
8891
+ user_identity_full_name: {
8892
+ nullable: boolean;
8893
+ type: string;
8894
+ };
8895
+ user_identity_id: {
8896
+ type: string;
8897
+ };
8898
+ user_identity_phone_number: {
8899
+ nullable: boolean;
8900
+ type: string;
8901
+ };
8902
+ warnings: {
8903
+ items: {
8904
+ properties: {
8905
+ created_at: {
8906
+ format: string;
8907
+ type: string;
8908
+ };
8909
+ message: {
8910
+ type: string;
8911
+ };
8912
+ warning_code: {
8913
+ enum: string[];
8914
+ type: string;
8915
+ };
8916
+ };
8917
+ required: string[];
8918
+ type: string;
8919
+ };
8920
+ type: string;
8921
+ };
8922
+ workspace_id: {
8923
+ format: string;
8924
+ type: string;
8925
+ };
8926
+ };
8927
+ required: string[];
8928
+ type: string;
8581
8929
  };
8582
8930
  ok: {
8583
8931
  type: string;