ch-admin-api-client-typescript 2.3.8 → 2.3.9
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 +51 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +106 -1
- package/package.json +1 -1
- package/src/api.ts +94 -0
package/lib/api.d.ts
CHANGED
|
@@ -23232,6 +23232,57 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
23232
23232
|
*/
|
|
23233
23233
|
apiV1PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel>>;
|
|
23234
23234
|
}
|
|
23235
|
+
/**
|
|
23236
|
+
* PaymentsApi - axios parameter creator
|
|
23237
|
+
* @export
|
|
23238
|
+
*/
|
|
23239
|
+
export declare const PaymentsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
23240
|
+
/**
|
|
23241
|
+
*
|
|
23242
|
+
* @param {*} [options] Override http request option.
|
|
23243
|
+
* @throws {RequiredError}
|
|
23244
|
+
*/
|
|
23245
|
+
apiV1PaymentsWebhookPost: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
23246
|
+
};
|
|
23247
|
+
/**
|
|
23248
|
+
* PaymentsApi - functional programming interface
|
|
23249
|
+
* @export
|
|
23250
|
+
*/
|
|
23251
|
+
export declare const PaymentsApiFp: (configuration?: Configuration | undefined) => {
|
|
23252
|
+
/**
|
|
23253
|
+
*
|
|
23254
|
+
* @param {*} [options] Override http request option.
|
|
23255
|
+
* @throws {RequiredError}
|
|
23256
|
+
*/
|
|
23257
|
+
apiV1PaymentsWebhookPost(options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
23258
|
+
};
|
|
23259
|
+
/**
|
|
23260
|
+
* PaymentsApi - factory interface
|
|
23261
|
+
* @export
|
|
23262
|
+
*/
|
|
23263
|
+
export declare const PaymentsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
23264
|
+
/**
|
|
23265
|
+
*
|
|
23266
|
+
* @param {*} [options] Override http request option.
|
|
23267
|
+
* @throws {RequiredError}
|
|
23268
|
+
*/
|
|
23269
|
+
apiV1PaymentsWebhookPost(options?: any): AxiosPromise<void>;
|
|
23270
|
+
};
|
|
23271
|
+
/**
|
|
23272
|
+
* PaymentsApi - object-oriented interface
|
|
23273
|
+
* @export
|
|
23274
|
+
* @class PaymentsApi
|
|
23275
|
+
* @extends {BaseAPI}
|
|
23276
|
+
*/
|
|
23277
|
+
export declare class PaymentsApi extends BaseAPI {
|
|
23278
|
+
/**
|
|
23279
|
+
*
|
|
23280
|
+
* @param {*} [options] Override http request option.
|
|
23281
|
+
* @throws {RequiredError}
|
|
23282
|
+
* @memberof PaymentsApi
|
|
23283
|
+
*/
|
|
23284
|
+
apiV1PaymentsWebhookPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
23285
|
+
}
|
|
23235
23286
|
/**
|
|
23236
23287
|
* PlansApi - axios parameter creator
|
|
23237
23288
|
* @export
|