ch-admin-api-client-typescript 2.1.3 → 2.1.4
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 +515 -20
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +630 -30
- package/package.json +1 -1
- package/src/api.ts +783 -30
package/lib/api.d.ts
CHANGED
|
@@ -1686,6 +1686,25 @@ export declare enum ChargeStatus {
|
|
|
1686
1686
|
Succeeded = "Succeeded",
|
|
1687
1687
|
Failed = "Failed"
|
|
1688
1688
|
}
|
|
1689
|
+
/**
|
|
1690
|
+
*
|
|
1691
|
+
* @export
|
|
1692
|
+
* @interface CheckNotificationsCommand
|
|
1693
|
+
*/
|
|
1694
|
+
export interface CheckNotificationsCommand {
|
|
1695
|
+
/**
|
|
1696
|
+
*
|
|
1697
|
+
* @type {string}
|
|
1698
|
+
* @memberof CheckNotificationsCommand
|
|
1699
|
+
*/
|
|
1700
|
+
'notificationId'?: string | null;
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {boolean}
|
|
1704
|
+
* @memberof CheckNotificationsCommand
|
|
1705
|
+
*/
|
|
1706
|
+
'isDelete'?: boolean;
|
|
1707
|
+
}
|
|
1689
1708
|
/**
|
|
1690
1709
|
*
|
|
1691
1710
|
* @export
|
|
@@ -8101,6 +8120,111 @@ export interface HospitalsModel {
|
|
|
8101
8120
|
*/
|
|
8102
8121
|
'metaData'?: PagedListMetaData;
|
|
8103
8122
|
}
|
|
8123
|
+
/**
|
|
8124
|
+
*
|
|
8125
|
+
* @export
|
|
8126
|
+
* @interface LanguageItemModel
|
|
8127
|
+
*/
|
|
8128
|
+
export interface LanguageItemModel {
|
|
8129
|
+
/**
|
|
8130
|
+
*
|
|
8131
|
+
* @type {string}
|
|
8132
|
+
* @memberof LanguageItemModel
|
|
8133
|
+
*/
|
|
8134
|
+
'id'?: string;
|
|
8135
|
+
/**
|
|
8136
|
+
*
|
|
8137
|
+
* @type {string}
|
|
8138
|
+
* @memberof LanguageItemModel
|
|
8139
|
+
*/
|
|
8140
|
+
'code'?: string | null;
|
|
8141
|
+
/**
|
|
8142
|
+
*
|
|
8143
|
+
* @type {string}
|
|
8144
|
+
* @memberof LanguageItemModel
|
|
8145
|
+
*/
|
|
8146
|
+
'name'?: string | null;
|
|
8147
|
+
/**
|
|
8148
|
+
*
|
|
8149
|
+
* @type {string}
|
|
8150
|
+
* @memberof LanguageItemModel
|
|
8151
|
+
*/
|
|
8152
|
+
'description'?: string | null;
|
|
8153
|
+
/**
|
|
8154
|
+
*
|
|
8155
|
+
* @type {boolean}
|
|
8156
|
+
* @memberof LanguageItemModel
|
|
8157
|
+
*/
|
|
8158
|
+
'published'?: boolean;
|
|
8159
|
+
/**
|
|
8160
|
+
*
|
|
8161
|
+
* @type {number}
|
|
8162
|
+
* @memberof LanguageItemModel
|
|
8163
|
+
*/
|
|
8164
|
+
'order'?: number;
|
|
8165
|
+
}
|
|
8166
|
+
/**
|
|
8167
|
+
*
|
|
8168
|
+
* @export
|
|
8169
|
+
* @interface LanguageModel
|
|
8170
|
+
*/
|
|
8171
|
+
export interface LanguageModel {
|
|
8172
|
+
/**
|
|
8173
|
+
*
|
|
8174
|
+
* @type {string}
|
|
8175
|
+
* @memberof LanguageModel
|
|
8176
|
+
*/
|
|
8177
|
+
'id'?: string;
|
|
8178
|
+
/**
|
|
8179
|
+
*
|
|
8180
|
+
* @type {string}
|
|
8181
|
+
* @memberof LanguageModel
|
|
8182
|
+
*/
|
|
8183
|
+
'code'?: string | null;
|
|
8184
|
+
/**
|
|
8185
|
+
*
|
|
8186
|
+
* @type {string}
|
|
8187
|
+
* @memberof LanguageModel
|
|
8188
|
+
*/
|
|
8189
|
+
'name'?: string | null;
|
|
8190
|
+
/**
|
|
8191
|
+
*
|
|
8192
|
+
* @type {string}
|
|
8193
|
+
* @memberof LanguageModel
|
|
8194
|
+
*/
|
|
8195
|
+
'description'?: string | null;
|
|
8196
|
+
/**
|
|
8197
|
+
*
|
|
8198
|
+
* @type {boolean}
|
|
8199
|
+
* @memberof LanguageModel
|
|
8200
|
+
*/
|
|
8201
|
+
'published'?: boolean;
|
|
8202
|
+
/**
|
|
8203
|
+
*
|
|
8204
|
+
* @type {number}
|
|
8205
|
+
* @memberof LanguageModel
|
|
8206
|
+
*/
|
|
8207
|
+
'order'?: number;
|
|
8208
|
+
}
|
|
8209
|
+
/**
|
|
8210
|
+
*
|
|
8211
|
+
* @export
|
|
8212
|
+
* @interface LanguagesModel
|
|
8213
|
+
*/
|
|
8214
|
+
export interface LanguagesModel {
|
|
8215
|
+
/**
|
|
8216
|
+
*
|
|
8217
|
+
* @type {Array<LanguageItemModel>}
|
|
8218
|
+
* @memberof LanguagesModel
|
|
8219
|
+
*/
|
|
8220
|
+
'items'?: Array<LanguageItemModel> | null;
|
|
8221
|
+
/**
|
|
8222
|
+
*
|
|
8223
|
+
* @type {PagedListMetaData}
|
|
8224
|
+
* @memberof LanguagesModel
|
|
8225
|
+
*/
|
|
8226
|
+
'metaData'?: PagedListMetaData;
|
|
8227
|
+
}
|
|
8104
8228
|
/**
|
|
8105
8229
|
*
|
|
8106
8230
|
* @export
|
|
@@ -8642,6 +8766,124 @@ export interface MembershipInvitation {
|
|
|
8642
8766
|
*/
|
|
8643
8767
|
'email'?: string | null;
|
|
8644
8768
|
}
|
|
8769
|
+
/**
|
|
8770
|
+
*
|
|
8771
|
+
* @export
|
|
8772
|
+
* @enum {string}
|
|
8773
|
+
*/
|
|
8774
|
+
export declare enum NotificationCode {
|
|
8775
|
+
WelcomeEmail = "WelcomeEmail",
|
|
8776
|
+
DirectMessageSent = "DirectMessageSent",
|
|
8777
|
+
BookingNew = "BookingNew",
|
|
8778
|
+
BookingUpdated = "BookingUpdated",
|
|
8779
|
+
BookingRejected = "BookingRejected",
|
|
8780
|
+
BookingApproved = "BookingApproved",
|
|
8781
|
+
BookingPaid = "BookingPaid",
|
|
8782
|
+
BookingCanceled = "BookingCanceled",
|
|
8783
|
+
BookingRefundRequested = "BookingRefundRequested",
|
|
8784
|
+
BookingRefunded = "BookingRefunded",
|
|
8785
|
+
ConsultationNew = "ConsultationNew",
|
|
8786
|
+
ConsultationUpdated = "ConsultationUpdated",
|
|
8787
|
+
ConsultationRejected = "ConsultationRejected",
|
|
8788
|
+
ConsultationApproved = "ConsultationApproved",
|
|
8789
|
+
ConsultationPaid = "ConsultationPaid",
|
|
8790
|
+
ConsultationCanceled = "ConsultationCanceled",
|
|
8791
|
+
ConsultationRefundRequested = "ConsultationRefundRequested",
|
|
8792
|
+
ConsultationRefunded = "ConsultationRefunded",
|
|
8793
|
+
ConsultationReady = "ConsultationReady"
|
|
8794
|
+
}
|
|
8795
|
+
/**
|
|
8796
|
+
*
|
|
8797
|
+
* @export
|
|
8798
|
+
* @interface NotificationModel
|
|
8799
|
+
*/
|
|
8800
|
+
export interface NotificationModel {
|
|
8801
|
+
/**
|
|
8802
|
+
*
|
|
8803
|
+
* @type {string}
|
|
8804
|
+
* @memberof NotificationModel
|
|
8805
|
+
*/
|
|
8806
|
+
'id'?: string;
|
|
8807
|
+
/**
|
|
8808
|
+
*
|
|
8809
|
+
* @type {NotificationCode}
|
|
8810
|
+
* @memberof NotificationModel
|
|
8811
|
+
*/
|
|
8812
|
+
'notificationCode'?: NotificationCode;
|
|
8813
|
+
/**
|
|
8814
|
+
*
|
|
8815
|
+
* @type {string}
|
|
8816
|
+
* @memberof NotificationModel
|
|
8817
|
+
*/
|
|
8818
|
+
'notificationTargetId'?: string;
|
|
8819
|
+
/**
|
|
8820
|
+
*
|
|
8821
|
+
* @type {string}
|
|
8822
|
+
* @memberof NotificationModel
|
|
8823
|
+
*/
|
|
8824
|
+
'senderId'?: string | null;
|
|
8825
|
+
/**
|
|
8826
|
+
*
|
|
8827
|
+
* @type {string}
|
|
8828
|
+
* @memberof NotificationModel
|
|
8829
|
+
*/
|
|
8830
|
+
'senderName'?: string | null;
|
|
8831
|
+
/**
|
|
8832
|
+
*
|
|
8833
|
+
* @type {string}
|
|
8834
|
+
* @memberof NotificationModel
|
|
8835
|
+
*/
|
|
8836
|
+
'receiverId'?: string | null;
|
|
8837
|
+
/**
|
|
8838
|
+
*
|
|
8839
|
+
* @type {string}
|
|
8840
|
+
* @memberof NotificationModel
|
|
8841
|
+
*/
|
|
8842
|
+
'receiverName'?: string | null;
|
|
8843
|
+
/**
|
|
8844
|
+
*
|
|
8845
|
+
* @type {string}
|
|
8846
|
+
* @memberof NotificationModel
|
|
8847
|
+
*/
|
|
8848
|
+
'message'?: string | null;
|
|
8849
|
+
/**
|
|
8850
|
+
*
|
|
8851
|
+
* @type {Date}
|
|
8852
|
+
* @memberof NotificationModel
|
|
8853
|
+
*/
|
|
8854
|
+
'createdAt'?: Date;
|
|
8855
|
+
/**
|
|
8856
|
+
*
|
|
8857
|
+
* @type {boolean}
|
|
8858
|
+
* @memberof NotificationModel
|
|
8859
|
+
*/
|
|
8860
|
+
'isChecked'?: boolean;
|
|
8861
|
+
}
|
|
8862
|
+
/**
|
|
8863
|
+
*
|
|
8864
|
+
* @export
|
|
8865
|
+
* @interface NotificationsModel
|
|
8866
|
+
*/
|
|
8867
|
+
export interface NotificationsModel {
|
|
8868
|
+
/**
|
|
8869
|
+
*
|
|
8870
|
+
* @type {Array<NotificationModel>}
|
|
8871
|
+
* @memberof NotificationsModel
|
|
8872
|
+
*/
|
|
8873
|
+
'items'?: Array<NotificationModel> | null;
|
|
8874
|
+
/**
|
|
8875
|
+
*
|
|
8876
|
+
* @type {PagedListMetaData}
|
|
8877
|
+
* @memberof NotificationsModel
|
|
8878
|
+
*/
|
|
8879
|
+
'metaData'?: PagedListMetaData;
|
|
8880
|
+
/**
|
|
8881
|
+
*
|
|
8882
|
+
* @type {number}
|
|
8883
|
+
* @memberof NotificationsModel
|
|
8884
|
+
*/
|
|
8885
|
+
'unreadCount'?: number;
|
|
8886
|
+
}
|
|
8645
8887
|
/**
|
|
8646
8888
|
*
|
|
8647
8889
|
* @export
|
|
@@ -15975,7 +16217,7 @@ export declare const DoctorsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15975
16217
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost: (doctorId: string, specialtyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
15976
16218
|
/**
|
|
15977
16219
|
*
|
|
15978
|
-
* @summary Get all
|
|
16220
|
+
* @summary Get all Doctors.
|
|
15979
16221
|
* @param {string} [countryId]
|
|
15980
16222
|
* @param {string} [hospitalId]
|
|
15981
16223
|
* @param {MarketingType} [marketingType]
|
|
@@ -16319,7 +16561,7 @@ export declare const DoctorsApiFp: (configuration?: Configuration | undefined) =
|
|
|
16319
16561
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost(doctorId: string, specialtyId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<DoctorSpecialtyModel>>;
|
|
16320
16562
|
/**
|
|
16321
16563
|
*
|
|
16322
|
-
* @summary Get all
|
|
16564
|
+
* @summary Get all Doctors.
|
|
16323
16565
|
* @param {string} [countryId]
|
|
16324
16566
|
* @param {string} [hospitalId]
|
|
16325
16567
|
* @param {MarketingType} [marketingType]
|
|
@@ -16663,7 +16905,7 @@ export declare const DoctorsApiFactory: (configuration?: Configuration | undefin
|
|
|
16663
16905
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost(doctorId: string, specialtyId: string, options?: any): AxiosPromise<DoctorSpecialtyModel>;
|
|
16664
16906
|
/**
|
|
16665
16907
|
*
|
|
16666
|
-
* @summary Get all
|
|
16908
|
+
* @summary Get all Doctors.
|
|
16667
16909
|
* @param {string} [countryId]
|
|
16668
16910
|
* @param {string} [hospitalId]
|
|
16669
16911
|
* @param {MarketingType} [marketingType]
|
|
@@ -17038,7 +17280,7 @@ export declare class DoctorsApi extends BaseAPI {
|
|
|
17038
17280
|
apiV1DoctorsDoctorIdSpecialtiesSpecialtyIdPost(doctorId: string, specialtyId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DoctorSpecialtyModel>>;
|
|
17039
17281
|
/**
|
|
17040
17282
|
*
|
|
17041
|
-
* @summary Get all
|
|
17283
|
+
* @summary Get all Doctors.
|
|
17042
17284
|
* @param {string} [countryId]
|
|
17043
17285
|
* @param {string} [hospitalId]
|
|
17044
17286
|
* @param {MarketingType} [marketingType]
|
|
@@ -17131,9 +17373,8 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17131
17373
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet: (hospitalId: string, accreditationId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17132
17374
|
/**
|
|
17133
17375
|
*
|
|
17134
|
-
* @summary Get all
|
|
17135
|
-
* @param {string}
|
|
17136
|
-
* @param {string} [hospitalId]
|
|
17376
|
+
* @summary Get all HospitalAccreditations.
|
|
17377
|
+
* @param {string} hospitalId
|
|
17137
17378
|
* @param {string} [hospitalName]
|
|
17138
17379
|
* @param {string} [accreditationId]
|
|
17139
17380
|
* @param {string} [accreditationName]
|
|
@@ -17143,7 +17384,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17143
17384
|
* @param {*} [options] Override http request option.
|
|
17144
17385
|
* @throws {RequiredError}
|
|
17145
17386
|
*/
|
|
17146
|
-
apiV1HospitalsHospitalIdAccreditationsGet: (
|
|
17387
|
+
apiV1HospitalsHospitalIdAccreditationsGet: (hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
17147
17388
|
/**
|
|
17148
17389
|
*
|
|
17149
17390
|
* @summary Create HospitalAccreditation.
|
|
@@ -17552,9 +17793,8 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17552
17793
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationModel>>;
|
|
17553
17794
|
/**
|
|
17554
17795
|
*
|
|
17555
|
-
* @summary Get all
|
|
17556
|
-
* @param {string}
|
|
17557
|
-
* @param {string} [hospitalId]
|
|
17796
|
+
* @summary Get all HospitalAccreditations.
|
|
17797
|
+
* @param {string} hospitalId
|
|
17558
17798
|
* @param {string} [hospitalName]
|
|
17559
17799
|
* @param {string} [accreditationId]
|
|
17560
17800
|
* @param {string} [accreditationName]
|
|
@@ -17564,7 +17804,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration | undefined)
|
|
|
17564
17804
|
* @param {*} [options] Override http request option.
|
|
17565
17805
|
* @throws {RequiredError}
|
|
17566
17806
|
*/
|
|
17567
|
-
apiV1HospitalsHospitalIdAccreditationsGet(
|
|
17807
|
+
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<HospitalAccreditationsModel>>;
|
|
17568
17808
|
/**
|
|
17569
17809
|
*
|
|
17570
17810
|
* @summary Create HospitalAccreditation.
|
|
@@ -17973,9 +18213,8 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
17973
18213
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: any): AxiosPromise<HospitalAccreditationModel>;
|
|
17974
18214
|
/**
|
|
17975
18215
|
*
|
|
17976
|
-
* @summary Get all
|
|
17977
|
-
* @param {string}
|
|
17978
|
-
* @param {string} [hospitalId]
|
|
18216
|
+
* @summary Get all HospitalAccreditations.
|
|
18217
|
+
* @param {string} hospitalId
|
|
17979
18218
|
* @param {string} [hospitalName]
|
|
17980
18219
|
* @param {string} [accreditationId]
|
|
17981
18220
|
* @param {string} [accreditationName]
|
|
@@ -17985,7 +18224,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration | undef
|
|
|
17985
18224
|
* @param {*} [options] Override http request option.
|
|
17986
18225
|
* @throws {RequiredError}
|
|
17987
18226
|
*/
|
|
17988
|
-
apiV1HospitalsHospitalIdAccreditationsGet(
|
|
18227
|
+
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string | undefined, accreditationId?: string | undefined, accreditationName?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<HospitalAccreditationsModel>;
|
|
17989
18228
|
/**
|
|
17990
18229
|
*
|
|
17991
18230
|
* @summary Create HospitalAccreditation.
|
|
@@ -18399,9 +18638,8 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18399
18638
|
apiV1HospitalsHospitalIdAccreditationsAccreditationIdGet(hospitalId: string, accreditationId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationModel>>;
|
|
18400
18639
|
/**
|
|
18401
18640
|
*
|
|
18402
|
-
* @summary Get all
|
|
18403
|
-
* @param {string}
|
|
18404
|
-
* @param {string} [hospitalId]
|
|
18641
|
+
* @summary Get all HospitalAccreditations.
|
|
18642
|
+
* @param {string} hospitalId
|
|
18405
18643
|
* @param {string} [hospitalName]
|
|
18406
18644
|
* @param {string} [accreditationId]
|
|
18407
18645
|
* @param {string} [accreditationName]
|
|
@@ -18412,7 +18650,7 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
18412
18650
|
* @throws {RequiredError}
|
|
18413
18651
|
* @memberof HospitalsApi
|
|
18414
18652
|
*/
|
|
18415
|
-
apiV1HospitalsHospitalIdAccreditationsGet(
|
|
18653
|
+
apiV1HospitalsHospitalIdAccreditationsGet(hospitalId: string, hospitalName?: string, accreditationId?: string, accreditationName?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<HospitalAccreditationsModel>>;
|
|
18416
18654
|
/**
|
|
18417
18655
|
*
|
|
18418
18656
|
* @summary Create HospitalAccreditation.
|
|
@@ -18858,6 +19096,263 @@ export declare class ImagesApi extends BaseAPI {
|
|
|
18858
19096
|
*/
|
|
18859
19097
|
apiV1ImagesPost(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MediaModel[]>>;
|
|
18860
19098
|
}
|
|
19099
|
+
/**
|
|
19100
|
+
* LanguagesApi - axios parameter creator
|
|
19101
|
+
* @export
|
|
19102
|
+
*/
|
|
19103
|
+
export declare const LanguagesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19104
|
+
/**
|
|
19105
|
+
*
|
|
19106
|
+
* @summary Get Language by code.
|
|
19107
|
+
* @param {string} code
|
|
19108
|
+
* @param {*} [options] Override http request option.
|
|
19109
|
+
* @throws {RequiredError}
|
|
19110
|
+
*/
|
|
19111
|
+
apiV1LanguagesCodeGet: (code: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19112
|
+
/**
|
|
19113
|
+
*
|
|
19114
|
+
* @summary Get all Languages.
|
|
19115
|
+
* @param {string} [id]
|
|
19116
|
+
* @param {string} [name]
|
|
19117
|
+
* @param {string} [code]
|
|
19118
|
+
* @param {string} [description]
|
|
19119
|
+
* @param {number} [page]
|
|
19120
|
+
* @param {number} [limit]
|
|
19121
|
+
* @param {Date} [lastRetrieved]
|
|
19122
|
+
* @param {*} [options] Override http request option.
|
|
19123
|
+
* @throws {RequiredError}
|
|
19124
|
+
*/
|
|
19125
|
+
apiV1LanguagesGet: (id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19126
|
+
/**
|
|
19127
|
+
*
|
|
19128
|
+
* @summary Get Language.
|
|
19129
|
+
* @param {string} id
|
|
19130
|
+
* @param {*} [options] Override http request option.
|
|
19131
|
+
* @throws {RequiredError}
|
|
19132
|
+
*/
|
|
19133
|
+
apiV1LanguagesIdGet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19134
|
+
};
|
|
19135
|
+
/**
|
|
19136
|
+
* LanguagesApi - functional programming interface
|
|
19137
|
+
* @export
|
|
19138
|
+
*/
|
|
19139
|
+
export declare const LanguagesApiFp: (configuration?: Configuration | undefined) => {
|
|
19140
|
+
/**
|
|
19141
|
+
*
|
|
19142
|
+
* @summary Get Language by code.
|
|
19143
|
+
* @param {string} code
|
|
19144
|
+
* @param {*} [options] Override http request option.
|
|
19145
|
+
* @throws {RequiredError}
|
|
19146
|
+
*/
|
|
19147
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
19148
|
+
/**
|
|
19149
|
+
*
|
|
19150
|
+
* @summary Get all Languages.
|
|
19151
|
+
* @param {string} [id]
|
|
19152
|
+
* @param {string} [name]
|
|
19153
|
+
* @param {string} [code]
|
|
19154
|
+
* @param {string} [description]
|
|
19155
|
+
* @param {number} [page]
|
|
19156
|
+
* @param {number} [limit]
|
|
19157
|
+
* @param {Date} [lastRetrieved]
|
|
19158
|
+
* @param {*} [options] Override http request option.
|
|
19159
|
+
* @throws {RequiredError}
|
|
19160
|
+
*/
|
|
19161
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguagesModel>>;
|
|
19162
|
+
/**
|
|
19163
|
+
*
|
|
19164
|
+
* @summary Get Language.
|
|
19165
|
+
* @param {string} id
|
|
19166
|
+
* @param {*} [options] Override http request option.
|
|
19167
|
+
* @throws {RequiredError}
|
|
19168
|
+
*/
|
|
19169
|
+
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<LanguageModel>>;
|
|
19170
|
+
};
|
|
19171
|
+
/**
|
|
19172
|
+
* LanguagesApi - factory interface
|
|
19173
|
+
* @export
|
|
19174
|
+
*/
|
|
19175
|
+
export declare const LanguagesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19176
|
+
/**
|
|
19177
|
+
*
|
|
19178
|
+
* @summary Get Language by code.
|
|
19179
|
+
* @param {string} code
|
|
19180
|
+
* @param {*} [options] Override http request option.
|
|
19181
|
+
* @throws {RequiredError}
|
|
19182
|
+
*/
|
|
19183
|
+
apiV1LanguagesCodeGet(code: string, options?: any): AxiosPromise<LanguageModel>;
|
|
19184
|
+
/**
|
|
19185
|
+
*
|
|
19186
|
+
* @summary Get all Languages.
|
|
19187
|
+
* @param {string} [id]
|
|
19188
|
+
* @param {string} [name]
|
|
19189
|
+
* @param {string} [code]
|
|
19190
|
+
* @param {string} [description]
|
|
19191
|
+
* @param {number} [page]
|
|
19192
|
+
* @param {number} [limit]
|
|
19193
|
+
* @param {Date} [lastRetrieved]
|
|
19194
|
+
* @param {*} [options] Override http request option.
|
|
19195
|
+
* @throws {RequiredError}
|
|
19196
|
+
*/
|
|
19197
|
+
apiV1LanguagesGet(id?: string | undefined, name?: string | undefined, code?: string | undefined, description?: string | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<LanguagesModel>;
|
|
19198
|
+
/**
|
|
19199
|
+
*
|
|
19200
|
+
* @summary Get Language.
|
|
19201
|
+
* @param {string} id
|
|
19202
|
+
* @param {*} [options] Override http request option.
|
|
19203
|
+
* @throws {RequiredError}
|
|
19204
|
+
*/
|
|
19205
|
+
apiV1LanguagesIdGet(id: string, options?: any): AxiosPromise<LanguageModel>;
|
|
19206
|
+
};
|
|
19207
|
+
/**
|
|
19208
|
+
* LanguagesApi - object-oriented interface
|
|
19209
|
+
* @export
|
|
19210
|
+
* @class LanguagesApi
|
|
19211
|
+
* @extends {BaseAPI}
|
|
19212
|
+
*/
|
|
19213
|
+
export declare class LanguagesApi extends BaseAPI {
|
|
19214
|
+
/**
|
|
19215
|
+
*
|
|
19216
|
+
* @summary Get Language by code.
|
|
19217
|
+
* @param {string} code
|
|
19218
|
+
* @param {*} [options] Override http request option.
|
|
19219
|
+
* @throws {RequiredError}
|
|
19220
|
+
* @memberof LanguagesApi
|
|
19221
|
+
*/
|
|
19222
|
+
apiV1LanguagesCodeGet(code: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
19223
|
+
/**
|
|
19224
|
+
*
|
|
19225
|
+
* @summary Get all Languages.
|
|
19226
|
+
* @param {string} [id]
|
|
19227
|
+
* @param {string} [name]
|
|
19228
|
+
* @param {string} [code]
|
|
19229
|
+
* @param {string} [description]
|
|
19230
|
+
* @param {number} [page]
|
|
19231
|
+
* @param {number} [limit]
|
|
19232
|
+
* @param {Date} [lastRetrieved]
|
|
19233
|
+
* @param {*} [options] Override http request option.
|
|
19234
|
+
* @throws {RequiredError}
|
|
19235
|
+
* @memberof LanguagesApi
|
|
19236
|
+
*/
|
|
19237
|
+
apiV1LanguagesGet(id?: string, name?: string, code?: string, description?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguagesModel>>;
|
|
19238
|
+
/**
|
|
19239
|
+
*
|
|
19240
|
+
* @summary Get Language.
|
|
19241
|
+
* @param {string} id
|
|
19242
|
+
* @param {*} [options] Override http request option.
|
|
19243
|
+
* @throws {RequiredError}
|
|
19244
|
+
* @memberof LanguagesApi
|
|
19245
|
+
*/
|
|
19246
|
+
apiV1LanguagesIdGet(id: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LanguageModel>>;
|
|
19247
|
+
}
|
|
19248
|
+
/**
|
|
19249
|
+
* NotificationsApi - axios parameter creator
|
|
19250
|
+
* @export
|
|
19251
|
+
*/
|
|
19252
|
+
export declare const NotificationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
19253
|
+
/**
|
|
19254
|
+
*
|
|
19255
|
+
* @summary Check notification.
|
|
19256
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19257
|
+
* @param {*} [options] Override http request option.
|
|
19258
|
+
* @throws {RequiredError}
|
|
19259
|
+
*/
|
|
19260
|
+
apiV1NotificationsCheckPost: (checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19261
|
+
/**
|
|
19262
|
+
*
|
|
19263
|
+
* @summary Get all notifications.
|
|
19264
|
+
* @param {NotificationCode} [notificationCode]
|
|
19265
|
+
* @param {boolean} [unreadCountOnly]
|
|
19266
|
+
* @param {number} [page]
|
|
19267
|
+
* @param {number} [limit]
|
|
19268
|
+
* @param {Date} [lastRetrieved]
|
|
19269
|
+
* @param {*} [options] Override http request option.
|
|
19270
|
+
* @throws {RequiredError}
|
|
19271
|
+
*/
|
|
19272
|
+
apiV1NotificationsGet: (notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
19273
|
+
};
|
|
19274
|
+
/**
|
|
19275
|
+
* NotificationsApi - functional programming interface
|
|
19276
|
+
* @export
|
|
19277
|
+
*/
|
|
19278
|
+
export declare const NotificationsApiFp: (configuration?: Configuration | undefined) => {
|
|
19279
|
+
/**
|
|
19280
|
+
*
|
|
19281
|
+
* @summary Check notification.
|
|
19282
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19283
|
+
* @param {*} [options] Override http request option.
|
|
19284
|
+
* @throws {RequiredError}
|
|
19285
|
+
*/
|
|
19286
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<boolean>>;
|
|
19287
|
+
/**
|
|
19288
|
+
*
|
|
19289
|
+
* @summary Get all notifications.
|
|
19290
|
+
* @param {NotificationCode} [notificationCode]
|
|
19291
|
+
* @param {boolean} [unreadCountOnly]
|
|
19292
|
+
* @param {number} [page]
|
|
19293
|
+
* @param {number} [limit]
|
|
19294
|
+
* @param {Date} [lastRetrieved]
|
|
19295
|
+
* @param {*} [options] Override http request option.
|
|
19296
|
+
* @throws {RequiredError}
|
|
19297
|
+
*/
|
|
19298
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: AxiosRequestConfig | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<NotificationsModel>>;
|
|
19299
|
+
};
|
|
19300
|
+
/**
|
|
19301
|
+
* NotificationsApi - factory interface
|
|
19302
|
+
* @export
|
|
19303
|
+
*/
|
|
19304
|
+
export declare const NotificationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
19305
|
+
/**
|
|
19306
|
+
*
|
|
19307
|
+
* @summary Check notification.
|
|
19308
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19309
|
+
* @param {*} [options] Override http request option.
|
|
19310
|
+
* @throws {RequiredError}
|
|
19311
|
+
*/
|
|
19312
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand | undefined, options?: any): AxiosPromise<boolean>;
|
|
19313
|
+
/**
|
|
19314
|
+
*
|
|
19315
|
+
* @summary Get all notifications.
|
|
19316
|
+
* @param {NotificationCode} [notificationCode]
|
|
19317
|
+
* @param {boolean} [unreadCountOnly]
|
|
19318
|
+
* @param {number} [page]
|
|
19319
|
+
* @param {number} [limit]
|
|
19320
|
+
* @param {Date} [lastRetrieved]
|
|
19321
|
+
* @param {*} [options] Override http request option.
|
|
19322
|
+
* @throws {RequiredError}
|
|
19323
|
+
*/
|
|
19324
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode | undefined, unreadCountOnly?: boolean | undefined, page?: number | undefined, limit?: number | undefined, lastRetrieved?: Date | undefined, options?: any): AxiosPromise<NotificationsModel>;
|
|
19325
|
+
};
|
|
19326
|
+
/**
|
|
19327
|
+
* NotificationsApi - object-oriented interface
|
|
19328
|
+
* @export
|
|
19329
|
+
* @class NotificationsApi
|
|
19330
|
+
* @extends {BaseAPI}
|
|
19331
|
+
*/
|
|
19332
|
+
export declare class NotificationsApi extends BaseAPI {
|
|
19333
|
+
/**
|
|
19334
|
+
*
|
|
19335
|
+
* @summary Check notification.
|
|
19336
|
+
* @param {CheckNotificationsCommand} [checkNotificationsCommand]
|
|
19337
|
+
* @param {*} [options] Override http request option.
|
|
19338
|
+
* @throws {RequiredError}
|
|
19339
|
+
* @memberof NotificationsApi
|
|
19340
|
+
*/
|
|
19341
|
+
apiV1NotificationsCheckPost(checkNotificationsCommand?: CheckNotificationsCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean>>;
|
|
19342
|
+
/**
|
|
19343
|
+
*
|
|
19344
|
+
* @summary Get all notifications.
|
|
19345
|
+
* @param {NotificationCode} [notificationCode]
|
|
19346
|
+
* @param {boolean} [unreadCountOnly]
|
|
19347
|
+
* @param {number} [page]
|
|
19348
|
+
* @param {number} [limit]
|
|
19349
|
+
* @param {Date} [lastRetrieved]
|
|
19350
|
+
* @param {*} [options] Override http request option.
|
|
19351
|
+
* @throws {RequiredError}
|
|
19352
|
+
* @memberof NotificationsApi
|
|
19353
|
+
*/
|
|
19354
|
+
apiV1NotificationsGet(notificationCode?: NotificationCode, unreadCountOnly?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NotificationsModel>>;
|
|
19355
|
+
}
|
|
18861
19356
|
/**
|
|
18862
19357
|
* ServicesApi - axios parameter creator
|
|
18863
19358
|
* @export
|