ch-api-client-typescript2 5.30.15 → 5.30.24
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/models/appointment-item-model.d.ts +7 -0
- package/lib/models/appointment-item-model.d.ts.map +1 -1
- package/lib/models/appointment-model.d.ts +7 -0
- package/lib/models/appointment-model.d.ts.map +1 -1
- package/lib/models/contributor-document-model.d.ts +93 -93
- package/lib/models/contributor-document-model.d.ts.map +1 -1
- package/lib/models/contributor-item-model.d.ts +6 -0
- package/lib/models/contributor-item-model.d.ts.map +1 -1
- package/lib/models/contributor-model.d.ts +6 -0
- package/lib/models/contributor-model.d.ts.map +1 -1
- package/lib/models/contributor-translation-document-model.d.ts +55 -0
- package/lib/models/contributor-translation-document-model.d.ts.map +1 -0
- package/lib/models/contributor-translation-document-model.js +15 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +1 -0
- package/lib/models/notification-code.d.ts +4 -0
- package/lib/models/notification-code.d.ts.map +1 -1
- package/lib/models/notification-code.js +4 -0
- package/lib/models/page-block-type.d.ts +7 -0
- package/lib/models/page-block-type.d.ts.map +1 -1
- package/lib/models/page-block-type.js +8 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +1 -0
- package/src/models/appointment-item-model.ts +9 -0
- package/src/models/appointment-model.ts +9 -0
- package/src/models/contributor-document-model.ts +95 -95
- package/src/models/contributor-item-model.ts +6 -0
- package/src/models/contributor-model.ts +6 -0
- package/src/models/contributor-translation-document-model.ts +60 -0
- package/src/models/index.ts +1 -0
- package/src/models/notification-code.ts +4 -0
- package/src/models/page-block-type.ts +8 -1
package/src/models/index.ts
CHANGED
|
@@ -65,6 +65,7 @@ export * from './contributor-item-model';
|
|
|
65
65
|
export * from './contributor-model';
|
|
66
66
|
export * from './contributor-sns-handles-model';
|
|
67
67
|
export * from './contributor-sub-document-model';
|
|
68
|
+
export * from './contributor-translation-document-model';
|
|
68
69
|
export * from './contributors-model';
|
|
69
70
|
export * from './coordinate-system';
|
|
70
71
|
export * from './countries-model';
|
|
@@ -48,8 +48,12 @@ export const NotificationCode = {
|
|
|
48
48
|
AppointmentApproved: 'AppointmentApproved',
|
|
49
49
|
AppointmentPaid: 'AppointmentPaid',
|
|
50
50
|
AppointmentCanceled: 'AppointmentCanceled',
|
|
51
|
+
AppointmentCanceledByPatient: 'AppointmentCanceledByPatient',
|
|
52
|
+
AppointmentCanceledByManager: 'AppointmentCanceledByManager',
|
|
51
53
|
AppointmentRefundRequested: 'AppointmentRefundRequested',
|
|
52
54
|
AppointmentRefunded: 'AppointmentRefunded',
|
|
55
|
+
AppointmentRescheduleRequested: 'AppointmentRescheduleRequested',
|
|
56
|
+
AppointmentRescheduleRequestApproved: 'AppointmentRescheduleRequestApproved',
|
|
53
57
|
AppointmentReady: 'AppointmentReady'
|
|
54
58
|
} as const;
|
|
55
59
|
|
|
@@ -32,7 +32,14 @@ export const PageBlockType = {
|
|
|
32
32
|
Press: 'Press',
|
|
33
33
|
Form: 'Form',
|
|
34
34
|
MediasCard: 'MediasCard',
|
|
35
|
-
StatsCard: 'StatsCard'
|
|
35
|
+
StatsCard: 'StatsCard',
|
|
36
|
+
Doctors: 'Doctors',
|
|
37
|
+
Articles: 'Articles',
|
|
38
|
+
Specialties: 'Specialties',
|
|
39
|
+
Services: 'Services',
|
|
40
|
+
SurgeryReviews: 'SurgeryReviews',
|
|
41
|
+
Deals: 'Deals',
|
|
42
|
+
ServicePhotoReviews: 'ServicePhotoReviews'
|
|
36
43
|
} as const;
|
|
37
44
|
|
|
38
45
|
export type PageBlockType = typeof PageBlockType[keyof typeof PageBlockType];
|