ch-admin-api-client-typescript 2.3.5 → 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 +53 -21
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +106 -1
- package/package.json +1 -1
- package/src/api.ts +96 -21
package/lib/api.d.ts
CHANGED
|
@@ -9561,25 +9561,6 @@ export interface ManagerAffiliation {
|
|
|
9561
9561
|
*/
|
|
9562
9562
|
'hospital'?: Hospital;
|
|
9563
9563
|
}
|
|
9564
|
-
/**
|
|
9565
|
-
*
|
|
9566
|
-
* @export
|
|
9567
|
-
* @interface ManagerAffiliationModel
|
|
9568
|
-
*/
|
|
9569
|
-
export interface ManagerAffiliationModel {
|
|
9570
|
-
/**
|
|
9571
|
-
*
|
|
9572
|
-
* @type {string}
|
|
9573
|
-
* @memberof ManagerAffiliationModel
|
|
9574
|
-
*/
|
|
9575
|
-
'hospitalId'?: string;
|
|
9576
|
-
/**
|
|
9577
|
-
*
|
|
9578
|
-
* @type {string}
|
|
9579
|
-
* @memberof ManagerAffiliationModel
|
|
9580
|
-
*/
|
|
9581
|
-
'hospitalName'?: string | null;
|
|
9582
|
-
}
|
|
9583
9564
|
/**
|
|
9584
9565
|
*
|
|
9585
9566
|
* @export
|
|
@@ -9793,10 +9774,10 @@ export interface ManagerModel {
|
|
|
9793
9774
|
'locations'?: Array<UserLocationModel> | null;
|
|
9794
9775
|
/**
|
|
9795
9776
|
*
|
|
9796
|
-
* @type {
|
|
9777
|
+
* @type {number}
|
|
9797
9778
|
* @memberof ManagerModel
|
|
9798
9779
|
*/
|
|
9799
|
-
'
|
|
9780
|
+
'affiliationsCount'?: number;
|
|
9800
9781
|
}
|
|
9801
9782
|
/**
|
|
9802
9783
|
*
|
|
@@ -23251,6 +23232,57 @@ export declare class PatientsApi extends BaseAPI {
|
|
|
23251
23232
|
*/
|
|
23252
23233
|
apiV1PatientsPost(createPatientCommand?: CreatePatientCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatientModel>>;
|
|
23253
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
|
+
}
|
|
23254
23286
|
/**
|
|
23255
23287
|
* PlansApi - axios parameter creator
|
|
23256
23288
|
* @export
|