ch-api-client-typescript2 4.8.4 → 4.8.6

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.
package/lib/api.d.ts CHANGED
@@ -3151,6 +3151,19 @@ export interface CreateConsultationCommand {
3151
3151
  */
3152
3152
  'isExternal'?: boolean;
3153
3153
  }
3154
+ /**
3155
+ *
3156
+ * @export
3157
+ * @interface CreateCorsCommand
3158
+ */
3159
+ export interface CreateCorsCommand {
3160
+ /**
3161
+ *
3162
+ * @type {string}
3163
+ * @memberof CreateCorsCommand
3164
+ */
3165
+ 'url'?: string | null;
3166
+ }
3154
3167
  /**
3155
3168
  *
3156
3169
  * @export
@@ -18697,6 +18710,144 @@ export declare class NotificationsApi extends BaseAPI {
18697
18710
  */
18698
18711
  apiV2NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel, any>>;
18699
18712
  }
18713
+ /**
18714
+ * OriginsApi - axios parameter creator
18715
+ * @export
18716
+ */
18717
+ export declare const OriginsApiAxiosParamCreator: (configuration?: Configuration) => {
18718
+ /**
18719
+ *
18720
+ * @param {*} [options] Override http request option.
18721
+ * @throws {RequiredError}
18722
+ */
18723
+ apiV2OriginsGet: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
18724
+ /**
18725
+ *
18726
+ * @param {CreateCorsCommand} [createCorsCommand]
18727
+ * @param {*} [options] Override http request option.
18728
+ * @throws {RequiredError}
18729
+ */
18730
+ apiV2OriginsPost: (createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18731
+ /**
18732
+ *
18733
+ * @param {CreateCorsCommand} [createCorsCommand]
18734
+ * @param {*} [options] Override http request option.
18735
+ * @throws {RequiredError}
18736
+ */
18737
+ apiV2OriginsPut: (createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18738
+ /**
18739
+ *
18740
+ * @param {string} url
18741
+ * @param {*} [options] Override http request option.
18742
+ * @throws {RequiredError}
18743
+ */
18744
+ apiV2OriginsUrlGet: (url: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
18745
+ };
18746
+ /**
18747
+ * OriginsApi - functional programming interface
18748
+ * @export
18749
+ */
18750
+ export declare const OriginsApiFp: (configuration?: Configuration) => {
18751
+ /**
18752
+ *
18753
+ * @param {*} [options] Override http request option.
18754
+ * @throws {RequiredError}
18755
+ */
18756
+ apiV2OriginsGet(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
18757
+ /**
18758
+ *
18759
+ * @param {CreateCorsCommand} [createCorsCommand]
18760
+ * @param {*} [options] Override http request option.
18761
+ * @throws {RequiredError}
18762
+ */
18763
+ apiV2OriginsPost(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
18764
+ /**
18765
+ *
18766
+ * @param {CreateCorsCommand} [createCorsCommand]
18767
+ * @param {*} [options] Override http request option.
18768
+ * @throws {RequiredError}
18769
+ */
18770
+ apiV2OriginsPut(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
18771
+ /**
18772
+ *
18773
+ * @param {string} url
18774
+ * @param {*} [options] Override http request option.
18775
+ * @throws {RequiredError}
18776
+ */
18777
+ apiV2OriginsUrlGet(url: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
18778
+ };
18779
+ /**
18780
+ * OriginsApi - factory interface
18781
+ * @export
18782
+ */
18783
+ export declare const OriginsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
18784
+ /**
18785
+ *
18786
+ * @param {*} [options] Override http request option.
18787
+ * @throws {RequiredError}
18788
+ */
18789
+ apiV2OriginsGet(options?: any): AxiosPromise<Array<string>>;
18790
+ /**
18791
+ *
18792
+ * @param {CreateCorsCommand} [createCorsCommand]
18793
+ * @param {*} [options] Override http request option.
18794
+ * @throws {RequiredError}
18795
+ */
18796
+ apiV2OriginsPost(createCorsCommand?: CreateCorsCommand, options?: any): AxiosPromise<boolean>;
18797
+ /**
18798
+ *
18799
+ * @param {CreateCorsCommand} [createCorsCommand]
18800
+ * @param {*} [options] Override http request option.
18801
+ * @throws {RequiredError}
18802
+ */
18803
+ apiV2OriginsPut(createCorsCommand?: CreateCorsCommand, options?: any): AxiosPromise<boolean>;
18804
+ /**
18805
+ *
18806
+ * @param {string} url
18807
+ * @param {*} [options] Override http request option.
18808
+ * @throws {RequiredError}
18809
+ */
18810
+ apiV2OriginsUrlGet(url: string, options?: any): AxiosPromise<string>;
18811
+ };
18812
+ /**
18813
+ * OriginsApi - object-oriented interface
18814
+ * @export
18815
+ * @class OriginsApi
18816
+ * @extends {BaseAPI}
18817
+ */
18818
+ export declare class OriginsApi extends BaseAPI {
18819
+ /**
18820
+ *
18821
+ * @param {*} [options] Override http request option.
18822
+ * @throws {RequiredError}
18823
+ * @memberof OriginsApi
18824
+ */
18825
+ apiV2OriginsGet(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
18826
+ /**
18827
+ *
18828
+ * @param {CreateCorsCommand} [createCorsCommand]
18829
+ * @param {*} [options] Override http request option.
18830
+ * @throws {RequiredError}
18831
+ * @memberof OriginsApi
18832
+ */
18833
+ apiV2OriginsPost(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
18834
+ /**
18835
+ *
18836
+ * @param {CreateCorsCommand} [createCorsCommand]
18837
+ * @param {*} [options] Override http request option.
18838
+ * @throws {RequiredError}
18839
+ * @memberof OriginsApi
18840
+ */
18841
+ apiV2OriginsPut(createCorsCommand?: CreateCorsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
18842
+ /**
18843
+ *
18844
+ * @param {string} url
18845
+ * @param {*} [options] Override http request option.
18846
+ * @throws {RequiredError}
18847
+ * @memberof OriginsApi
18848
+ */
18849
+ apiV2OriginsUrlGet(url: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
18850
+ }
18700
18851
  /**
18701
18852
  * PatientsApi - axios parameter creator
18702
18853
  * @export