ch-admin-api-client-typescript 5.5.6 → 5.5.7

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.
Files changed (45) hide show
  1. package/lib/api/web-apps-api.d.ts +394 -0
  2. package/lib/api/web-apps-api.d.ts.map +1 -0
  3. package/lib/api/web-apps-api.js +636 -0
  4. package/lib/api.d.ts +1 -0
  5. package/lib/api.d.ts.map +1 -1
  6. package/lib/api.js +1 -0
  7. package/lib/models/create-web-app-command.d.ts +104 -0
  8. package/lib/models/create-web-app-command.d.ts.map +1 -0
  9. package/lib/models/create-web-app-command.js +15 -0
  10. package/lib/models/deploy-status.d.ts +28 -0
  11. package/lib/models/deploy-status.d.ts.map +1 -0
  12. package/lib/models/deploy-status.js +31 -0
  13. package/lib/models/domain-type.d.ts +22 -0
  14. package/lib/models/domain-type.d.ts.map +1 -0
  15. package/lib/models/domain-type.js +25 -0
  16. package/lib/models/hospital-model.d.ts +19 -0
  17. package/lib/models/hospital-model.d.ts.map +1 -1
  18. package/lib/models/index.d.ts +7 -0
  19. package/lib/models/index.d.ts.map +1 -1
  20. package/lib/models/index.js +7 -0
  21. package/lib/models/update-web-app-command.d.ts +105 -0
  22. package/lib/models/update-web-app-command.d.ts.map +1 -0
  23. package/lib/models/update-web-app-command.js +15 -0
  24. package/lib/models/web-app-item-model.d.ts +148 -0
  25. package/lib/models/web-app-item-model.d.ts.map +1 -0
  26. package/lib/models/web-app-item-model.js +15 -0
  27. package/lib/models/web-app-model.d.ts +148 -0
  28. package/lib/models/web-app-model.d.ts.map +1 -0
  29. package/lib/models/web-app-model.js +15 -0
  30. package/lib/models/web-apps-model.d.ts +33 -0
  31. package/lib/models/web-apps-model.d.ts.map +1 -0
  32. package/lib/models/web-apps-model.js +15 -0
  33. package/package.json +1 -1
  34. package/src/.openapi-generator/FILES +8 -0
  35. package/src/api/web-apps-api.ts +681 -0
  36. package/src/api.ts +1 -0
  37. package/src/models/create-web-app-command.ts +111 -0
  38. package/src/models/deploy-status.ts +37 -0
  39. package/src/models/domain-type.ts +31 -0
  40. package/src/models/hospital-model.ts +21 -0
  41. package/src/models/index.ts +7 -0
  42. package/src/models/update-web-app-command.ts +114 -0
  43. package/src/models/web-app-item-model.ts +159 -0
  44. package/src/models/web-app-model.ts +159 -0
  45. package/src/models/web-apps-model.ts +42 -0
@@ -0,0 +1,148 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AuditableEntityModel } from './auditable-entity-model';
13
+ import { DeployStatus } from './deploy-status';
14
+ import { DomainType } from './domain-type';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface WebAppItemModel
19
+ */
20
+ export interface WebAppItemModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof WebAppItemModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof WebAppItemModel
31
+ */
32
+ 'languageCode'?: string | null;
33
+ /**
34
+ *
35
+ * @type {string}
36
+ * @memberof WebAppItemModel
37
+ */
38
+ 'hospitalId'?: string;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof WebAppItemModel
43
+ */
44
+ 'hospitalName'?: string | null;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof WebAppItemModel
49
+ */
50
+ 'hospitalSlug'?: string | null;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof WebAppItemModel
55
+ */
56
+ 'defaultLocale'?: string | null;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof WebAppItemModel
61
+ */
62
+ 'stsClientId'?: string | null;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof WebAppItemModel
67
+ */
68
+ 'stsClientSecret'?: string | null;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof WebAppItemModel
73
+ */
74
+ 'colorPrimary'?: string | null;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof WebAppItemModel
79
+ */
80
+ 'colorSecondary'?: string | null;
81
+ /**
82
+ *
83
+ * @type {string}
84
+ * @memberof WebAppItemModel
85
+ */
86
+ 'colorNeutral'?: string | null;
87
+ /**
88
+ *
89
+ * @type {string}
90
+ * @memberof WebAppItemModel
91
+ */
92
+ 'colorDark'?: string | null;
93
+ /**
94
+ *
95
+ * @type {string}
96
+ * @memberof WebAppItemModel
97
+ */
98
+ 'colorLight'?: string | null;
99
+ /**
100
+ *
101
+ * @type {string}
102
+ * @memberof WebAppItemModel
103
+ */
104
+ 'template'?: string | null;
105
+ /**
106
+ *
107
+ * @type {string}
108
+ * @memberof WebAppItemModel
109
+ */
110
+ 'googleClientId'?: string | null;
111
+ /**
112
+ *
113
+ * @type {DomainType}
114
+ * @memberof WebAppItemModel
115
+ */
116
+ 'domainType'?: DomainType;
117
+ /**
118
+ *
119
+ * @type {string}
120
+ * @memberof WebAppItemModel
121
+ */
122
+ 'ipAddress'?: string | null;
123
+ /**
124
+ *
125
+ * @type {string}
126
+ * @memberof WebAppItemModel
127
+ */
128
+ 'domainVerificationId'?: string | null;
129
+ /**
130
+ *
131
+ * @type {string}
132
+ * @memberof WebAppItemModel
133
+ */
134
+ 'domain'?: string | null;
135
+ /**
136
+ *
137
+ * @type {DeployStatus}
138
+ * @memberof WebAppItemModel
139
+ */
140
+ 'deployStatus'?: DeployStatus;
141
+ /**
142
+ *
143
+ * @type {AuditableEntityModel}
144
+ * @memberof WebAppItemModel
145
+ */
146
+ 'auditableEntity'?: AuditableEntityModel;
147
+ }
148
+ //# sourceMappingURL=web-app-item-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"web-app-item-model.d.ts","sourceRoot":"","sources":["../../src/models/web-app-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC5B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,cAAc,CAAC,EAAE,YAAY,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,148 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AuditableEntityModel } from './auditable-entity-model';
13
+ import { DeployStatus } from './deploy-status';
14
+ import { DomainType } from './domain-type';
15
+ /**
16
+ *
17
+ * @export
18
+ * @interface WebAppModel
19
+ */
20
+ export interface WebAppModel {
21
+ /**
22
+ *
23
+ * @type {string}
24
+ * @memberof WebAppModel
25
+ */
26
+ 'id'?: string;
27
+ /**
28
+ *
29
+ * @type {string}
30
+ * @memberof WebAppModel
31
+ */
32
+ 'languageCode'?: string | null;
33
+ /**
34
+ *
35
+ * @type {string}
36
+ * @memberof WebAppModel
37
+ */
38
+ 'hospitalId'?: string;
39
+ /**
40
+ *
41
+ * @type {string}
42
+ * @memberof WebAppModel
43
+ */
44
+ 'hospitalName'?: string | null;
45
+ /**
46
+ *
47
+ * @type {string}
48
+ * @memberof WebAppModel
49
+ */
50
+ 'hospitalSlug'?: string | null;
51
+ /**
52
+ *
53
+ * @type {string}
54
+ * @memberof WebAppModel
55
+ */
56
+ 'defaultLocale'?: string | null;
57
+ /**
58
+ *
59
+ * @type {string}
60
+ * @memberof WebAppModel
61
+ */
62
+ 'stsClientId'?: string | null;
63
+ /**
64
+ *
65
+ * @type {string}
66
+ * @memberof WebAppModel
67
+ */
68
+ 'stsClientSecret'?: string | null;
69
+ /**
70
+ *
71
+ * @type {string}
72
+ * @memberof WebAppModel
73
+ */
74
+ 'colorPrimary'?: string | null;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof WebAppModel
79
+ */
80
+ 'colorSecondary'?: string | null;
81
+ /**
82
+ *
83
+ * @type {string}
84
+ * @memberof WebAppModel
85
+ */
86
+ 'colorNeutral'?: string | null;
87
+ /**
88
+ *
89
+ * @type {string}
90
+ * @memberof WebAppModel
91
+ */
92
+ 'colorDark'?: string | null;
93
+ /**
94
+ *
95
+ * @type {string}
96
+ * @memberof WebAppModel
97
+ */
98
+ 'colorLight'?: string | null;
99
+ /**
100
+ *
101
+ * @type {string}
102
+ * @memberof WebAppModel
103
+ */
104
+ 'template'?: string | null;
105
+ /**
106
+ *
107
+ * @type {string}
108
+ * @memberof WebAppModel
109
+ */
110
+ 'googleClientId'?: string | null;
111
+ /**
112
+ *
113
+ * @type {DomainType}
114
+ * @memberof WebAppModel
115
+ */
116
+ 'domainType'?: DomainType;
117
+ /**
118
+ *
119
+ * @type {string}
120
+ * @memberof WebAppModel
121
+ */
122
+ 'ipAddress'?: string | null;
123
+ /**
124
+ *
125
+ * @type {string}
126
+ * @memberof WebAppModel
127
+ */
128
+ 'domainVerificationId'?: string | null;
129
+ /**
130
+ *
131
+ * @type {string}
132
+ * @memberof WebAppModel
133
+ */
134
+ 'domain'?: string | null;
135
+ /**
136
+ *
137
+ * @type {DeployStatus}
138
+ * @memberof WebAppModel
139
+ */
140
+ 'deployStatus'?: DeployStatus;
141
+ /**
142
+ *
143
+ * @type {AuditableEntityModel}
144
+ * @memberof WebAppModel
145
+ */
146
+ 'auditableEntity'?: AuditableEntityModel;
147
+ }
148
+ //# sourceMappingURL=web-app-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"web-app-model.d.ts","sourceRoot":"","sources":["../../src/models/web-app-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAGhE,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAG/C,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,WAAW;IACxB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,eAAe,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAChC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,cAAc,CAAC,EAAE,YAAY,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,oBAAoB,CAAC;CAC5C"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,33 @@
1
+ /**
2
+ * Swagger UI - Cloud Hospital Admin Api-INT
3
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: hyounoosung@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { PagedListMetaData } from './paged-list-meta-data';
13
+ import { WebAppItemModel } from './web-app-item-model';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface WebAppsModel
18
+ */
19
+ export interface WebAppsModel {
20
+ /**
21
+ *
22
+ * @type {Array<WebAppItemModel>}
23
+ * @memberof WebAppsModel
24
+ */
25
+ 'items'?: Array<WebAppItemModel> | null;
26
+ /**
27
+ *
28
+ * @type {PagedListMetaData}
29
+ * @memberof WebAppsModel
30
+ */
31
+ 'metaData'?: PagedListMetaData;
32
+ }
33
+ //# sourceMappingURL=web-apps-model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"web-apps-model.d.ts","sourceRoot":"","sources":["../../src/models/web-apps-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAG3D,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD;;;;GAIG;AACH,MAAM,WAAW,YAAY;IACzB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Swagger UI - Cloud Hospital Admin Api-INT
6
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
7
+ *
8
+ * The version of the OpenAPI document: 1
9
+ * Contact: hyounoosung@icloudhospital.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "5.5.6",
3
+ "version": "5.5.7",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -54,6 +54,7 @@ api/vonage-accounts-api.ts
54
54
  api/vonage-applications-api.ts
55
55
  api/vonage-numbers-api.ts
56
56
  api/vonage-users-api.ts
57
+ api/web-apps-api.ts
57
58
  base.ts
58
59
  common.ts
59
60
  configuration.ts
@@ -218,6 +219,7 @@ models/create-sub-account-command.ts
218
219
  models/create-survey-form-command.ts
219
220
  models/create-tag-command.ts
220
221
  models/create-template-version-command.ts
222
+ models/create-web-app-command.ts
221
223
  models/dash-board-model.ts
222
224
  models/day-of-week.ts
223
225
  models/deal-item-model.ts
@@ -238,6 +240,7 @@ models/delete-hospital-appointment-timetable-overrides-command.ts
238
240
  models/delete-hospital-consultation-timetable-override-command.ts
239
241
  models/delete-hospital-specialty-appointment-timetable-overrides-command.ts
240
242
  models/delete-service-appointment-timetable-overrides-command.ts
243
+ models/deploy-status.ts
241
244
  models/doctor-affiliation-item-model.ts
242
245
  models/doctor-affiliation-model.ts
243
246
  models/doctor-affiliations-model.ts
@@ -260,6 +263,7 @@ models/doctor-specialties-model.ts
260
263
  models/doctor-specialty-model.ts
261
264
  models/doctors-model.ts
262
265
  models/doctors-simple-model.ts
266
+ models/domain-type.ts
263
267
  models/duration.ts
264
268
  models/faq-categories-model.ts
265
269
  models/faq-category-item-model.ts
@@ -545,6 +549,7 @@ models/update-specialty-command.ts
545
549
  models/update-specialty-type-command.ts
546
550
  models/update-survey-form-command.ts
547
551
  models/update-template-version-command.ts
552
+ models/update-web-app-command.ts
548
553
  models/user-language-model.ts
549
554
  models/user-location-model.ts
550
555
  models/user-location-type.ts
@@ -554,6 +559,9 @@ models/vbc.ts
554
559
  models/video.ts
555
560
  models/voice.ts
556
561
  models/vonage-user.ts
562
+ models/web-app-item-model.ts
563
+ models/web-app-model.ts
564
+ models/web-apps-model.ts
557
565
  models/webhook.ts
558
566
  models/working-day-item-model.ts
559
567
  models/working-day-model.ts