@joao.sumi/qdule 0.0.2 → 0.0.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/.openapi-generator/FILES +11 -1
- package/README.md +11 -0
- package/api.ts +195 -106
- package/dist/api.d.ts +209 -129
- package/dist/api.js +19 -15
- package/docs/AuthResourceApi.md +3 -3
- package/docs/AuthResponse.md +20 -0
- package/docs/ChangelogResourceApi.md +16 -16
- package/docs/ChangelogResponse.md +26 -0
- package/docs/ClientResourceApi.md +13 -13
- package/docs/ClientResponse.md +26 -0
- package/docs/PageResponse.md +28 -0
- package/docs/ScheduleResourceApi.md +16 -16
- package/docs/ScheduleResponse.md +32 -0
- package/docs/Shift.md +32 -0
- package/docs/ShiftResourceApi.md +16 -16
- package/docs/ShiftResponse.md +32 -0
- package/docs/TreatmentCreateRequest.md +2 -0
- package/docs/TreatmentResourceApi.md +20 -17
- package/docs/TreatmentResponse.md +34 -0
- package/docs/TreatmentType.md +12 -0
- package/docs/TreatmentUpdateRequest.md +2 -0
- package/docs/UserResourceApi.md +6 -6
- package/docs/UserResponse.md +24 -0
- package/docs/WorkScheduleResourceApi.md +16 -16
- package/docs/WorkScheduleResponse.md +24 -0
- package/package.json +5 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
.gitignore
|
|
2
2
|
.npmignore
|
|
3
|
-
.openapi-generator-ignore
|
|
4
3
|
README.md
|
|
5
4
|
api.ts
|
|
6
5
|
base.ts
|
|
@@ -8,28 +7,39 @@ common.ts
|
|
|
8
7
|
configuration.ts
|
|
9
8
|
docs/AuthRequest.md
|
|
10
9
|
docs/AuthResourceApi.md
|
|
10
|
+
docs/AuthResponse.md
|
|
11
11
|
docs/ChangelogCreateRequest.md
|
|
12
12
|
docs/ChangelogResourceApi.md
|
|
13
|
+
docs/ChangelogResponse.md
|
|
13
14
|
docs/ChangelogUpdateRequest.md
|
|
14
15
|
docs/ClientCreateRequest.md
|
|
15
16
|
docs/ClientResourceApi.md
|
|
17
|
+
docs/ClientResponse.md
|
|
16
18
|
docs/ClientUpdateRequest.md
|
|
17
19
|
docs/DayOfWeek.md
|
|
20
|
+
docs/PageResponse.md
|
|
18
21
|
docs/ScheduleCreateRequest.md
|
|
19
22
|
docs/ScheduleResourceApi.md
|
|
23
|
+
docs/ScheduleResponse.md
|
|
20
24
|
docs/ScheduleStatus.md
|
|
21
25
|
docs/ScheduleUpdateRequest.md
|
|
26
|
+
docs/Shift.md
|
|
22
27
|
docs/ShiftCreateRequest.md
|
|
23
28
|
docs/ShiftResourceApi.md
|
|
29
|
+
docs/ShiftResponse.md
|
|
24
30
|
docs/ShiftUpdateRequest.md
|
|
25
31
|
docs/TreatmentCreateRequest.md
|
|
26
32
|
docs/TreatmentResourceApi.md
|
|
33
|
+
docs/TreatmentResponse.md
|
|
27
34
|
docs/TreatmentStatus.md
|
|
35
|
+
docs/TreatmentType.md
|
|
28
36
|
docs/TreatmentUpdateRequest.md
|
|
29
37
|
docs/UserCreateRequest.md
|
|
30
38
|
docs/UserResourceApi.md
|
|
39
|
+
docs/UserResponse.md
|
|
31
40
|
docs/WorkScheduleCreateRequest.md
|
|
32
41
|
docs/WorkScheduleResourceApi.md
|
|
42
|
+
docs/WorkScheduleResponse.md
|
|
33
43
|
docs/WorkScheduleUpdateRequest.md
|
|
34
44
|
git_push.sh
|
|
35
45
|
index.ts
|
package/README.md
CHANGED
|
@@ -88,21 +88,32 @@ Class | Method | HTTP request | Description
|
|
|
88
88
|
### Documentation For Models
|
|
89
89
|
|
|
90
90
|
- [AuthRequest](docs/AuthRequest.md)
|
|
91
|
+
- [AuthResponse](docs/AuthResponse.md)
|
|
91
92
|
- [ChangelogCreateRequest](docs/ChangelogCreateRequest.md)
|
|
93
|
+
- [ChangelogResponse](docs/ChangelogResponse.md)
|
|
92
94
|
- [ChangelogUpdateRequest](docs/ChangelogUpdateRequest.md)
|
|
93
95
|
- [ClientCreateRequest](docs/ClientCreateRequest.md)
|
|
96
|
+
- [ClientResponse](docs/ClientResponse.md)
|
|
94
97
|
- [ClientUpdateRequest](docs/ClientUpdateRequest.md)
|
|
95
98
|
- [DayOfWeek](docs/DayOfWeek.md)
|
|
99
|
+
- [PageResponse](docs/PageResponse.md)
|
|
96
100
|
- [ScheduleCreateRequest](docs/ScheduleCreateRequest.md)
|
|
101
|
+
- [ScheduleResponse](docs/ScheduleResponse.md)
|
|
97
102
|
- [ScheduleStatus](docs/ScheduleStatus.md)
|
|
98
103
|
- [ScheduleUpdateRequest](docs/ScheduleUpdateRequest.md)
|
|
104
|
+
- [Shift](docs/Shift.md)
|
|
99
105
|
- [ShiftCreateRequest](docs/ShiftCreateRequest.md)
|
|
106
|
+
- [ShiftResponse](docs/ShiftResponse.md)
|
|
100
107
|
- [ShiftUpdateRequest](docs/ShiftUpdateRequest.md)
|
|
101
108
|
- [TreatmentCreateRequest](docs/TreatmentCreateRequest.md)
|
|
109
|
+
- [TreatmentResponse](docs/TreatmentResponse.md)
|
|
102
110
|
- [TreatmentStatus](docs/TreatmentStatus.md)
|
|
111
|
+
- [TreatmentType](docs/TreatmentType.md)
|
|
103
112
|
- [TreatmentUpdateRequest](docs/TreatmentUpdateRequest.md)
|
|
104
113
|
- [UserCreateRequest](docs/UserCreateRequest.md)
|
|
114
|
+
- [UserResponse](docs/UserResponse.md)
|
|
105
115
|
- [WorkScheduleCreateRequest](docs/WorkScheduleCreateRequest.md)
|
|
116
|
+
- [WorkScheduleResponse](docs/WorkScheduleResponse.md)
|
|
106
117
|
- [WorkScheduleUpdateRequest](docs/WorkScheduleUpdateRequest.md)
|
|
107
118
|
|
|
108
119
|
|