@solidtime/api 0.0.3 → 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/dist/index.d.ts +399 -6
- package/dist/openapi.json.client.d.ts +820 -49
- package/dist/solidtime-api.js +380 -218
- package/dist/solidtime-api.umd.cjs +6 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,8 @@ export type Invitation = InvitationsIndexResponse['data'][0];
|
|
|
7
7
|
export type TimeEntryResponse = ZodiosResponseByAlias<SolidTimeApi, 'getTimeEntries'>;
|
|
8
8
|
export type TimeEntry = TimeEntryResponse['data'][0];
|
|
9
9
|
export type CreateTimeEntryBody = ZodiosBodyByAlias<SolidTimeApi, 'createTimeEntry'>;
|
|
10
|
+
export type UpdateMultipleTimeEntriesBody = ZodiosBodyByAlias<SolidTimeApi, 'updateMultipleTimeEntries'>;
|
|
11
|
+
export type UpdateMultipleTimeEntriesChangeset = UpdateMultipleTimeEntriesBody['changes'];
|
|
10
12
|
export type ProjectResponse = ZodiosResponseByAlias<SolidTimeApi, 'getProjects'>;
|
|
11
13
|
export type Project = ProjectResponse['data'][0];
|
|
12
14
|
export type CreateProjectBody = ZodiosBodyByAlias<SolidTimeApi, 'createProject'>;
|
|
@@ -36,12 +38,14 @@ export type ImportReport = ZodiosResponseByAlias<SolidTimeApi, 'importData'>;
|
|
|
36
38
|
export type ReportingResponse = ZodiosResponseByAlias<SolidTimeApi, 'getAggregatedTimeEntries'>;
|
|
37
39
|
export type AggregatedTimeEntries = ReportingResponse['data'];
|
|
38
40
|
export type GroupedDataEntries = ReportingResponse['data']['grouped_data'];
|
|
41
|
+
export type TimeEntriesQueryParams = ZodiosQueryParamsByAlias<SolidTimeApi, 'getTimeEntries'>;
|
|
39
42
|
export type AggregatedTimeEntriesQueryParams = ZodiosQueryParamsByAlias<SolidTimeApi, 'getAggregatedTimeEntries'>;
|
|
40
43
|
export type OrganizationResponse = ZodiosResponseByAlias<SolidTimeApi, 'getOrganization'>;
|
|
41
44
|
export type Organization = ZodiosResponseByAlias<SolidTimeApi, 'getOrganization'>['data'];
|
|
42
45
|
export type UpdateOrganizationBody = ZodiosBodyByAlias<SolidTimeApi, 'updateOrganization'>;
|
|
43
46
|
export type MyMemberships = ZodiosResponseByAlias<SolidTimeApi, 'getMyMemberships'>['data'];
|
|
44
47
|
export type MyMembership = MyMemberships[0];
|
|
48
|
+
export type OrganizationExportResponse = ZodiosResponseByAlias<SolidTimeApi, 'exportOrganization'>;
|
|
45
49
|
declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
46
50
|
method: "get";
|
|
47
51
|
path: "/v1/organizations/:organization";
|
|
@@ -58,16 +62,19 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
58
62
|
name: import('zod').ZodString;
|
|
59
63
|
is_personal: import('zod').ZodBoolean;
|
|
60
64
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
65
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
61
66
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
62
67
|
id: import('zod').ZodString;
|
|
63
68
|
name: import('zod').ZodString;
|
|
64
69
|
is_personal: import('zod').ZodBoolean;
|
|
65
70
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
71
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
66
72
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
67
73
|
id: import('zod').ZodString;
|
|
68
74
|
name: import('zod').ZodString;
|
|
69
75
|
is_personal: import('zod').ZodBoolean;
|
|
70
76
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
77
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
71
78
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
72
79
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
73
80
|
data: import('zod').ZodObject<{
|
|
@@ -75,16 +82,19 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
75
82
|
name: import('zod').ZodString;
|
|
76
83
|
is_personal: import('zod').ZodBoolean;
|
|
77
84
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
85
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
78
86
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
79
87
|
id: import('zod').ZodString;
|
|
80
88
|
name: import('zod').ZodString;
|
|
81
89
|
is_personal: import('zod').ZodBoolean;
|
|
82
90
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
91
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
83
92
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
84
93
|
id: import('zod').ZodString;
|
|
85
94
|
name: import('zod').ZodString;
|
|
86
95
|
is_personal: import('zod').ZodBoolean;
|
|
87
96
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
97
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
88
98
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
89
99
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
90
100
|
data: import('zod').ZodObject<{
|
|
@@ -92,16 +102,19 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
92
102
|
name: import('zod').ZodString;
|
|
93
103
|
is_personal: import('zod').ZodBoolean;
|
|
94
104
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
105
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
95
106
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
96
107
|
id: import('zod').ZodString;
|
|
97
108
|
name: import('zod').ZodString;
|
|
98
109
|
is_personal: import('zod').ZodBoolean;
|
|
99
110
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
111
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
100
112
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
101
113
|
id: import('zod').ZodString;
|
|
102
114
|
name: import('zod').ZodString;
|
|
103
115
|
is_personal: import('zod').ZodBoolean;
|
|
104
116
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
117
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
105
118
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
106
119
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
107
120
|
errors: [{
|
|
@@ -146,12 +159,15 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
146
159
|
schema: import('zod').ZodObject<{
|
|
147
160
|
name: import('zod').ZodString;
|
|
148
161
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
162
|
+
employees_can_see_billable_rates: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
149
163
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
150
164
|
name: import('zod').ZodString;
|
|
151
165
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
166
|
+
employees_can_see_billable_rates: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
152
167
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
153
168
|
name: import('zod').ZodString;
|
|
154
169
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
170
|
+
employees_can_see_billable_rates: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
155
171
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
156
172
|
}, {
|
|
157
173
|
name: "organization";
|
|
@@ -164,16 +180,19 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
164
180
|
name: import('zod').ZodString;
|
|
165
181
|
is_personal: import('zod').ZodBoolean;
|
|
166
182
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
183
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
167
184
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
168
185
|
id: import('zod').ZodString;
|
|
169
186
|
name: import('zod').ZodString;
|
|
170
187
|
is_personal: import('zod').ZodBoolean;
|
|
171
188
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
189
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
172
190
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
173
191
|
id: import('zod').ZodString;
|
|
174
192
|
name: import('zod').ZodString;
|
|
175
193
|
is_personal: import('zod').ZodBoolean;
|
|
176
194
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
195
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
177
196
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
178
197
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
179
198
|
data: import('zod').ZodObject<{
|
|
@@ -181,16 +200,19 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
181
200
|
name: import('zod').ZodString;
|
|
182
201
|
is_personal: import('zod').ZodBoolean;
|
|
183
202
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
203
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
184
204
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
185
205
|
id: import('zod').ZodString;
|
|
186
206
|
name: import('zod').ZodString;
|
|
187
207
|
is_personal: import('zod').ZodBoolean;
|
|
188
208
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
209
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
189
210
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
190
211
|
id: import('zod').ZodString;
|
|
191
212
|
name: import('zod').ZodString;
|
|
192
213
|
is_personal: import('zod').ZodBoolean;
|
|
193
214
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
215
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
194
216
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
195
217
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
196
218
|
data: import('zod').ZodObject<{
|
|
@@ -198,16 +220,19 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
198
220
|
name: import('zod').ZodString;
|
|
199
221
|
is_personal: import('zod').ZodBoolean;
|
|
200
222
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
223
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
201
224
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
202
225
|
id: import('zod').ZodString;
|
|
203
226
|
name: import('zod').ZodString;
|
|
204
227
|
is_personal: import('zod').ZodBoolean;
|
|
205
228
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
229
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
206
230
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
207
231
|
id: import('zod').ZodString;
|
|
208
232
|
name: import('zod').ZodString;
|
|
209
233
|
is_personal: import('zod').ZodBoolean;
|
|
210
234
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
235
|
+
employees_can_see_billable_rates: import('zod').ZodBoolean;
|
|
211
236
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
212
237
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
213
238
|
errors: [{
|
|
@@ -696,6 +721,77 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
696
721
|
message: import('zod').ZodString;
|
|
697
722
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
698
723
|
}];
|
|
724
|
+
}, {
|
|
725
|
+
method: "post";
|
|
726
|
+
path: "/v1/organizations/:organization/export";
|
|
727
|
+
alias: "exportOrganization";
|
|
728
|
+
requestFormat: "json";
|
|
729
|
+
parameters: [{
|
|
730
|
+
name: "body";
|
|
731
|
+
type: "Body";
|
|
732
|
+
schema: import('zod').ZodObject<{}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{}, import('zod').ZodTypeAny, "passthrough">>;
|
|
733
|
+
}, {
|
|
734
|
+
name: "organization";
|
|
735
|
+
type: "Path";
|
|
736
|
+
schema: import('zod').ZodString;
|
|
737
|
+
}];
|
|
738
|
+
response: import('zod').ZodObject<{
|
|
739
|
+
success: import('zod').ZodBoolean;
|
|
740
|
+
download_url: import('zod').ZodString;
|
|
741
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
742
|
+
success: import('zod').ZodBoolean;
|
|
743
|
+
download_url: import('zod').ZodString;
|
|
744
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
745
|
+
success: import('zod').ZodBoolean;
|
|
746
|
+
download_url: import('zod').ZodString;
|
|
747
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
748
|
+
errors: [{
|
|
749
|
+
status: 400;
|
|
750
|
+
description: string;
|
|
751
|
+
schema: import('zod').ZodObject<{
|
|
752
|
+
error: import('zod').ZodBoolean;
|
|
753
|
+
key: import('zod').ZodString;
|
|
754
|
+
message: import('zod').ZodString;
|
|
755
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
756
|
+
error: import('zod').ZodBoolean;
|
|
757
|
+
key: import('zod').ZodString;
|
|
758
|
+
message: import('zod').ZodString;
|
|
759
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
760
|
+
error: import('zod').ZodBoolean;
|
|
761
|
+
key: import('zod').ZodString;
|
|
762
|
+
message: import('zod').ZodString;
|
|
763
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
764
|
+
}, {
|
|
765
|
+
status: 401;
|
|
766
|
+
description: string;
|
|
767
|
+
schema: import('zod').ZodObject<{
|
|
768
|
+
message: import('zod').ZodString;
|
|
769
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
770
|
+
message: import('zod').ZodString;
|
|
771
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
772
|
+
message: import('zod').ZodString;
|
|
773
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
774
|
+
}, {
|
|
775
|
+
status: 403;
|
|
776
|
+
description: string;
|
|
777
|
+
schema: import('zod').ZodObject<{
|
|
778
|
+
message: import('zod').ZodString;
|
|
779
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
780
|
+
message: import('zod').ZodString;
|
|
781
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
782
|
+
message: import('zod').ZodString;
|
|
783
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
784
|
+
}, {
|
|
785
|
+
status: 404;
|
|
786
|
+
description: string;
|
|
787
|
+
schema: import('zod').ZodObject<{
|
|
788
|
+
message: import('zod').ZodString;
|
|
789
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
790
|
+
message: import('zod').ZodString;
|
|
791
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
792
|
+
message: import('zod').ZodString;
|
|
793
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
794
|
+
}];
|
|
699
795
|
}, {
|
|
700
796
|
method: "post";
|
|
701
797
|
path: "/v1/organizations/:organization/import";
|
|
@@ -2440,6 +2536,72 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2440
2536
|
message: import('zod').ZodString;
|
|
2441
2537
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
2442
2538
|
}];
|
|
2539
|
+
}, {
|
|
2540
|
+
method: "post";
|
|
2541
|
+
path: "/v1/organizations/:organization/members/:member/make-placeholder";
|
|
2542
|
+
alias: "v1.members.make-placeholder";
|
|
2543
|
+
requestFormat: "json";
|
|
2544
|
+
parameters: [{
|
|
2545
|
+
name: "body";
|
|
2546
|
+
type: "Body";
|
|
2547
|
+
schema: import('zod').ZodObject<{}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{}, import('zod').ZodTypeAny, "passthrough">>;
|
|
2548
|
+
}, {
|
|
2549
|
+
name: "organization";
|
|
2550
|
+
type: "Path";
|
|
2551
|
+
schema: import('zod').ZodString;
|
|
2552
|
+
}, {
|
|
2553
|
+
name: "member";
|
|
2554
|
+
type: "Path";
|
|
2555
|
+
schema: import('zod').ZodString;
|
|
2556
|
+
}];
|
|
2557
|
+
response: import('zod').ZodNull;
|
|
2558
|
+
errors: [{
|
|
2559
|
+
status: 400;
|
|
2560
|
+
description: string;
|
|
2561
|
+
schema: import('zod').ZodObject<{
|
|
2562
|
+
error: import('zod').ZodBoolean;
|
|
2563
|
+
key: import('zod').ZodString;
|
|
2564
|
+
message: import('zod').ZodString;
|
|
2565
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2566
|
+
error: import('zod').ZodBoolean;
|
|
2567
|
+
key: import('zod').ZodString;
|
|
2568
|
+
message: import('zod').ZodString;
|
|
2569
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2570
|
+
error: import('zod').ZodBoolean;
|
|
2571
|
+
key: import('zod').ZodString;
|
|
2572
|
+
message: import('zod').ZodString;
|
|
2573
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
2574
|
+
}, {
|
|
2575
|
+
status: 401;
|
|
2576
|
+
description: string;
|
|
2577
|
+
schema: import('zod').ZodObject<{
|
|
2578
|
+
message: import('zod').ZodString;
|
|
2579
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2580
|
+
message: import('zod').ZodString;
|
|
2581
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2582
|
+
message: import('zod').ZodString;
|
|
2583
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
2584
|
+
}, {
|
|
2585
|
+
status: 403;
|
|
2586
|
+
description: string;
|
|
2587
|
+
schema: import('zod').ZodObject<{
|
|
2588
|
+
message: import('zod').ZodString;
|
|
2589
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2590
|
+
message: import('zod').ZodString;
|
|
2591
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2592
|
+
message: import('zod').ZodString;
|
|
2593
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
2594
|
+
}, {
|
|
2595
|
+
status: 404;
|
|
2596
|
+
description: string;
|
|
2597
|
+
schema: import('zod').ZodObject<{
|
|
2598
|
+
message: import('zod').ZodString;
|
|
2599
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2600
|
+
message: import('zod').ZodString;
|
|
2601
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2602
|
+
message: import('zod').ZodString;
|
|
2603
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
2604
|
+
}];
|
|
2443
2605
|
}, {
|
|
2444
2606
|
method: "put";
|
|
2445
2607
|
path: "/v1/organizations/:organization/project-members/:projectMember";
|
|
@@ -2633,6 +2795,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2633
2795
|
is_archived: import('zod').ZodBoolean;
|
|
2634
2796
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2635
2797
|
is_billable: import('zod').ZodBoolean;
|
|
2798
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2799
|
+
spent_time: import('zod').ZodNumber;
|
|
2636
2800
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2637
2801
|
id: import('zod').ZodString;
|
|
2638
2802
|
name: import('zod').ZodString;
|
|
@@ -2641,6 +2805,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2641
2805
|
is_archived: import('zod').ZodBoolean;
|
|
2642
2806
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2643
2807
|
is_billable: import('zod').ZodBoolean;
|
|
2808
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2809
|
+
spent_time: import('zod').ZodNumber;
|
|
2644
2810
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2645
2811
|
id: import('zod').ZodString;
|
|
2646
2812
|
name: import('zod').ZodString;
|
|
@@ -2649,6 +2815,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2649
2815
|
is_archived: import('zod').ZodBoolean;
|
|
2650
2816
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2651
2817
|
is_billable: import('zod').ZodBoolean;
|
|
2818
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2819
|
+
spent_time: import('zod').ZodNumber;
|
|
2652
2820
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
2653
2821
|
links: import('zod').ZodObject<{
|
|
2654
2822
|
first: import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>;
|
|
@@ -2739,6 +2907,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2739
2907
|
is_archived: import('zod').ZodBoolean;
|
|
2740
2908
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2741
2909
|
is_billable: import('zod').ZodBoolean;
|
|
2910
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2911
|
+
spent_time: import('zod').ZodNumber;
|
|
2742
2912
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2743
2913
|
id: import('zod').ZodString;
|
|
2744
2914
|
name: import('zod').ZodString;
|
|
@@ -2747,6 +2917,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2747
2917
|
is_archived: import('zod').ZodBoolean;
|
|
2748
2918
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2749
2919
|
is_billable: import('zod').ZodBoolean;
|
|
2920
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2921
|
+
spent_time: import('zod').ZodNumber;
|
|
2750
2922
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2751
2923
|
id: import('zod').ZodString;
|
|
2752
2924
|
name: import('zod').ZodString;
|
|
@@ -2755,6 +2927,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2755
2927
|
is_archived: import('zod').ZodBoolean;
|
|
2756
2928
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2757
2929
|
is_billable: import('zod').ZodBoolean;
|
|
2930
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2931
|
+
spent_time: import('zod').ZodNumber;
|
|
2758
2932
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
2759
2933
|
links: import('zod').ZodObject<{
|
|
2760
2934
|
first: import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>;
|
|
@@ -2845,6 +3019,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2845
3019
|
is_archived: import('zod').ZodBoolean;
|
|
2846
3020
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2847
3021
|
is_billable: import('zod').ZodBoolean;
|
|
3022
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3023
|
+
spent_time: import('zod').ZodNumber;
|
|
2848
3024
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
2849
3025
|
id: import('zod').ZodString;
|
|
2850
3026
|
name: import('zod').ZodString;
|
|
@@ -2853,6 +3029,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2853
3029
|
is_archived: import('zod').ZodBoolean;
|
|
2854
3030
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2855
3031
|
is_billable: import('zod').ZodBoolean;
|
|
3032
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3033
|
+
spent_time: import('zod').ZodNumber;
|
|
2856
3034
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
2857
3035
|
id: import('zod').ZodString;
|
|
2858
3036
|
name: import('zod').ZodString;
|
|
@@ -2861,6 +3039,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
2861
3039
|
is_archived: import('zod').ZodBoolean;
|
|
2862
3040
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
2863
3041
|
is_billable: import('zod').ZodBoolean;
|
|
3042
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3043
|
+
spent_time: import('zod').ZodNumber;
|
|
2864
3044
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
2865
3045
|
links: import('zod').ZodObject<{
|
|
2866
3046
|
first: import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>;
|
|
@@ -3001,18 +3181,21 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3001
3181
|
is_billable: import('zod').ZodBoolean;
|
|
3002
3182
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3003
3183
|
client_id: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>>;
|
|
3184
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3004
3185
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3005
3186
|
name: import('zod').ZodString;
|
|
3006
3187
|
color: import('zod').ZodString;
|
|
3007
3188
|
is_billable: import('zod').ZodBoolean;
|
|
3008
3189
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3009
3190
|
client_id: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>>;
|
|
3191
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3010
3192
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3011
3193
|
name: import('zod').ZodString;
|
|
3012
3194
|
color: import('zod').ZodString;
|
|
3013
3195
|
is_billable: import('zod').ZodBoolean;
|
|
3014
3196
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3015
3197
|
client_id: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>>;
|
|
3198
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3016
3199
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3017
3200
|
}, {
|
|
3018
3201
|
name: "organization";
|
|
@@ -3028,6 +3211,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3028
3211
|
is_archived: import('zod').ZodBoolean;
|
|
3029
3212
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3030
3213
|
is_billable: import('zod').ZodBoolean;
|
|
3214
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3215
|
+
spent_time: import('zod').ZodNumber;
|
|
3031
3216
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3032
3217
|
id: import('zod').ZodString;
|
|
3033
3218
|
name: import('zod').ZodString;
|
|
@@ -3036,6 +3221,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3036
3221
|
is_archived: import('zod').ZodBoolean;
|
|
3037
3222
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3038
3223
|
is_billable: import('zod').ZodBoolean;
|
|
3224
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3225
|
+
spent_time: import('zod').ZodNumber;
|
|
3039
3226
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3040
3227
|
id: import('zod').ZodString;
|
|
3041
3228
|
name: import('zod').ZodString;
|
|
@@ -3044,6 +3231,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3044
3231
|
is_archived: import('zod').ZodBoolean;
|
|
3045
3232
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3046
3233
|
is_billable: import('zod').ZodBoolean;
|
|
3234
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3235
|
+
spent_time: import('zod').ZodNumber;
|
|
3047
3236
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3048
3237
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3049
3238
|
data: import('zod').ZodObject<{
|
|
@@ -3054,6 +3243,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3054
3243
|
is_archived: import('zod').ZodBoolean;
|
|
3055
3244
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3056
3245
|
is_billable: import('zod').ZodBoolean;
|
|
3246
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3247
|
+
spent_time: import('zod').ZodNumber;
|
|
3057
3248
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3058
3249
|
id: import('zod').ZodString;
|
|
3059
3250
|
name: import('zod').ZodString;
|
|
@@ -3062,6 +3253,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3062
3253
|
is_archived: import('zod').ZodBoolean;
|
|
3063
3254
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3064
3255
|
is_billable: import('zod').ZodBoolean;
|
|
3256
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3257
|
+
spent_time: import('zod').ZodNumber;
|
|
3065
3258
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3066
3259
|
id: import('zod').ZodString;
|
|
3067
3260
|
name: import('zod').ZodString;
|
|
@@ -3070,6 +3263,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3070
3263
|
is_archived: import('zod').ZodBoolean;
|
|
3071
3264
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3072
3265
|
is_billable: import('zod').ZodBoolean;
|
|
3266
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3267
|
+
spent_time: import('zod').ZodNumber;
|
|
3073
3268
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3074
3269
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3075
3270
|
data: import('zod').ZodObject<{
|
|
@@ -3080,6 +3275,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3080
3275
|
is_archived: import('zod').ZodBoolean;
|
|
3081
3276
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3082
3277
|
is_billable: import('zod').ZodBoolean;
|
|
3278
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3279
|
+
spent_time: import('zod').ZodNumber;
|
|
3083
3280
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3084
3281
|
id: import('zod').ZodString;
|
|
3085
3282
|
name: import('zod').ZodString;
|
|
@@ -3088,6 +3285,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3088
3285
|
is_archived: import('zod').ZodBoolean;
|
|
3089
3286
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3090
3287
|
is_billable: import('zod').ZodBoolean;
|
|
3288
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3289
|
+
spent_time: import('zod').ZodNumber;
|
|
3091
3290
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3092
3291
|
id: import('zod').ZodString;
|
|
3093
3292
|
name: import('zod').ZodString;
|
|
@@ -3096,6 +3295,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3096
3295
|
is_archived: import('zod').ZodBoolean;
|
|
3097
3296
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3098
3297
|
is_billable: import('zod').ZodBoolean;
|
|
3298
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3299
|
+
spent_time: import('zod').ZodNumber;
|
|
3099
3300
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3100
3301
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3101
3302
|
errors: [{
|
|
@@ -3165,6 +3366,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3165
3366
|
is_archived: import('zod').ZodBoolean;
|
|
3166
3367
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3167
3368
|
is_billable: import('zod').ZodBoolean;
|
|
3369
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3370
|
+
spent_time: import('zod').ZodNumber;
|
|
3168
3371
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3169
3372
|
id: import('zod').ZodString;
|
|
3170
3373
|
name: import('zod').ZodString;
|
|
@@ -3173,6 +3376,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3173
3376
|
is_archived: import('zod').ZodBoolean;
|
|
3174
3377
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3175
3378
|
is_billable: import('zod').ZodBoolean;
|
|
3379
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3380
|
+
spent_time: import('zod').ZodNumber;
|
|
3176
3381
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3177
3382
|
id: import('zod').ZodString;
|
|
3178
3383
|
name: import('zod').ZodString;
|
|
@@ -3181,6 +3386,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3181
3386
|
is_archived: import('zod').ZodBoolean;
|
|
3182
3387
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3183
3388
|
is_billable: import('zod').ZodBoolean;
|
|
3389
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3390
|
+
spent_time: import('zod').ZodNumber;
|
|
3184
3391
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3185
3392
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3186
3393
|
data: import('zod').ZodObject<{
|
|
@@ -3191,6 +3398,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3191
3398
|
is_archived: import('zod').ZodBoolean;
|
|
3192
3399
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3193
3400
|
is_billable: import('zod').ZodBoolean;
|
|
3401
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3402
|
+
spent_time: import('zod').ZodNumber;
|
|
3194
3403
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3195
3404
|
id: import('zod').ZodString;
|
|
3196
3405
|
name: import('zod').ZodString;
|
|
@@ -3199,6 +3408,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3199
3408
|
is_archived: import('zod').ZodBoolean;
|
|
3200
3409
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3201
3410
|
is_billable: import('zod').ZodBoolean;
|
|
3411
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3412
|
+
spent_time: import('zod').ZodNumber;
|
|
3202
3413
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3203
3414
|
id: import('zod').ZodString;
|
|
3204
3415
|
name: import('zod').ZodString;
|
|
@@ -3207,6 +3418,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3207
3418
|
is_archived: import('zod').ZodBoolean;
|
|
3208
3419
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3209
3420
|
is_billable: import('zod').ZodBoolean;
|
|
3421
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3422
|
+
spent_time: import('zod').ZodNumber;
|
|
3210
3423
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3211
3424
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3212
3425
|
data: import('zod').ZodObject<{
|
|
@@ -3217,6 +3430,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3217
3430
|
is_archived: import('zod').ZodBoolean;
|
|
3218
3431
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3219
3432
|
is_billable: import('zod').ZodBoolean;
|
|
3433
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3434
|
+
spent_time: import('zod').ZodNumber;
|
|
3220
3435
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3221
3436
|
id: import('zod').ZodString;
|
|
3222
3437
|
name: import('zod').ZodString;
|
|
@@ -3225,6 +3440,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3225
3440
|
is_archived: import('zod').ZodBoolean;
|
|
3226
3441
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3227
3442
|
is_billable: import('zod').ZodBoolean;
|
|
3443
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3444
|
+
spent_time: import('zod').ZodNumber;
|
|
3228
3445
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3229
3446
|
id: import('zod').ZodString;
|
|
3230
3447
|
name: import('zod').ZodString;
|
|
@@ -3233,6 +3450,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3233
3450
|
is_archived: import('zod').ZodBoolean;
|
|
3234
3451
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3235
3452
|
is_billable: import('zod').ZodBoolean;
|
|
3453
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3454
|
+
spent_time: import('zod').ZodNumber;
|
|
3236
3455
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3237
3456
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3238
3457
|
errors: [{
|
|
@@ -3281,6 +3500,7 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3281
3500
|
is_archived: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3282
3501
|
client_id: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>>;
|
|
3283
3502
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3503
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3284
3504
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3285
3505
|
name: import('zod').ZodString;
|
|
3286
3506
|
color: import('zod').ZodString;
|
|
@@ -3288,6 +3508,7 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3288
3508
|
is_archived: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3289
3509
|
client_id: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>>;
|
|
3290
3510
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3511
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3291
3512
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3292
3513
|
name: import('zod').ZodString;
|
|
3293
3514
|
color: import('zod').ZodString;
|
|
@@ -3295,6 +3516,7 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3295
3516
|
is_archived: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
3296
3517
|
client_id: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodNull]>>;
|
|
3297
3518
|
billable_rate: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3519
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
3298
3520
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3299
3521
|
}, {
|
|
3300
3522
|
name: "organization";
|
|
@@ -3314,6 +3536,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3314
3536
|
is_archived: import('zod').ZodBoolean;
|
|
3315
3537
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3316
3538
|
is_billable: import('zod').ZodBoolean;
|
|
3539
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3540
|
+
spent_time: import('zod').ZodNumber;
|
|
3317
3541
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3318
3542
|
id: import('zod').ZodString;
|
|
3319
3543
|
name: import('zod').ZodString;
|
|
@@ -3322,6 +3546,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3322
3546
|
is_archived: import('zod').ZodBoolean;
|
|
3323
3547
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3324
3548
|
is_billable: import('zod').ZodBoolean;
|
|
3549
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3550
|
+
spent_time: import('zod').ZodNumber;
|
|
3325
3551
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3326
3552
|
id: import('zod').ZodString;
|
|
3327
3553
|
name: import('zod').ZodString;
|
|
@@ -3330,6 +3556,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3330
3556
|
is_archived: import('zod').ZodBoolean;
|
|
3331
3557
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3332
3558
|
is_billable: import('zod').ZodBoolean;
|
|
3559
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3560
|
+
spent_time: import('zod').ZodNumber;
|
|
3333
3561
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3334
3562
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3335
3563
|
data: import('zod').ZodObject<{
|
|
@@ -3340,6 +3568,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3340
3568
|
is_archived: import('zod').ZodBoolean;
|
|
3341
3569
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3342
3570
|
is_billable: import('zod').ZodBoolean;
|
|
3571
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3572
|
+
spent_time: import('zod').ZodNumber;
|
|
3343
3573
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3344
3574
|
id: import('zod').ZodString;
|
|
3345
3575
|
name: import('zod').ZodString;
|
|
@@ -3348,6 +3578,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3348
3578
|
is_archived: import('zod').ZodBoolean;
|
|
3349
3579
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3350
3580
|
is_billable: import('zod').ZodBoolean;
|
|
3581
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3582
|
+
spent_time: import('zod').ZodNumber;
|
|
3351
3583
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3352
3584
|
id: import('zod').ZodString;
|
|
3353
3585
|
name: import('zod').ZodString;
|
|
@@ -3356,6 +3588,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3356
3588
|
is_archived: import('zod').ZodBoolean;
|
|
3357
3589
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3358
3590
|
is_billable: import('zod').ZodBoolean;
|
|
3591
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3592
|
+
spent_time: import('zod').ZodNumber;
|
|
3359
3593
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3360
3594
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3361
3595
|
data: import('zod').ZodObject<{
|
|
@@ -3366,6 +3600,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3366
3600
|
is_archived: import('zod').ZodBoolean;
|
|
3367
3601
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3368
3602
|
is_billable: import('zod').ZodBoolean;
|
|
3603
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3604
|
+
spent_time: import('zod').ZodNumber;
|
|
3369
3605
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
3370
3606
|
id: import('zod').ZodString;
|
|
3371
3607
|
name: import('zod').ZodString;
|
|
@@ -3374,6 +3610,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3374
3610
|
is_archived: import('zod').ZodBoolean;
|
|
3375
3611
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3376
3612
|
is_billable: import('zod').ZodBoolean;
|
|
3613
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3614
|
+
spent_time: import('zod').ZodNumber;
|
|
3377
3615
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
3378
3616
|
id: import('zod').ZodString;
|
|
3379
3617
|
name: import('zod').ZodString;
|
|
@@ -3382,6 +3620,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
3382
3620
|
is_archived: import('zod').ZodBoolean;
|
|
3383
3621
|
billable_rate: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3384
3622
|
is_billable: import('zod').ZodBoolean;
|
|
3623
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
3624
|
+
spent_time: import('zod').ZodNumber;
|
|
3385
3625
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3386
3626
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
3387
3627
|
errors: [{
|
|
@@ -4381,6 +4621,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4381
4621
|
name: import('zod').ZodString;
|
|
4382
4622
|
is_done: import('zod').ZodBoolean;
|
|
4383
4623
|
project_id: import('zod').ZodString;
|
|
4624
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4625
|
+
spent_time: import('zod').ZodNumber;
|
|
4384
4626
|
created_at: import('zod').ZodString;
|
|
4385
4627
|
updated_at: import('zod').ZodString;
|
|
4386
4628
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4388,6 +4630,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4388
4630
|
name: import('zod').ZodString;
|
|
4389
4631
|
is_done: import('zod').ZodBoolean;
|
|
4390
4632
|
project_id: import('zod').ZodString;
|
|
4633
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4634
|
+
spent_time: import('zod').ZodNumber;
|
|
4391
4635
|
created_at: import('zod').ZodString;
|
|
4392
4636
|
updated_at: import('zod').ZodString;
|
|
4393
4637
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4395,6 +4639,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4395
4639
|
name: import('zod').ZodString;
|
|
4396
4640
|
is_done: import('zod').ZodBoolean;
|
|
4397
4641
|
project_id: import('zod').ZodString;
|
|
4642
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4643
|
+
spent_time: import('zod').ZodNumber;
|
|
4398
4644
|
created_at: import('zod').ZodString;
|
|
4399
4645
|
updated_at: import('zod').ZodString;
|
|
4400
4646
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
@@ -4484,6 +4730,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4484
4730
|
name: import('zod').ZodString;
|
|
4485
4731
|
is_done: import('zod').ZodBoolean;
|
|
4486
4732
|
project_id: import('zod').ZodString;
|
|
4733
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4734
|
+
spent_time: import('zod').ZodNumber;
|
|
4487
4735
|
created_at: import('zod').ZodString;
|
|
4488
4736
|
updated_at: import('zod').ZodString;
|
|
4489
4737
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4491,6 +4739,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4491
4739
|
name: import('zod').ZodString;
|
|
4492
4740
|
is_done: import('zod').ZodBoolean;
|
|
4493
4741
|
project_id: import('zod').ZodString;
|
|
4742
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4743
|
+
spent_time: import('zod').ZodNumber;
|
|
4494
4744
|
created_at: import('zod').ZodString;
|
|
4495
4745
|
updated_at: import('zod').ZodString;
|
|
4496
4746
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4498,6 +4748,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4498
4748
|
name: import('zod').ZodString;
|
|
4499
4749
|
is_done: import('zod').ZodBoolean;
|
|
4500
4750
|
project_id: import('zod').ZodString;
|
|
4751
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4752
|
+
spent_time: import('zod').ZodNumber;
|
|
4501
4753
|
created_at: import('zod').ZodString;
|
|
4502
4754
|
updated_at: import('zod').ZodString;
|
|
4503
4755
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
@@ -4587,6 +4839,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4587
4839
|
name: import('zod').ZodString;
|
|
4588
4840
|
is_done: import('zod').ZodBoolean;
|
|
4589
4841
|
project_id: import('zod').ZodString;
|
|
4842
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4843
|
+
spent_time: import('zod').ZodNumber;
|
|
4590
4844
|
created_at: import('zod').ZodString;
|
|
4591
4845
|
updated_at: import('zod').ZodString;
|
|
4592
4846
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4594,6 +4848,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4594
4848
|
name: import('zod').ZodString;
|
|
4595
4849
|
is_done: import('zod').ZodBoolean;
|
|
4596
4850
|
project_id: import('zod').ZodString;
|
|
4851
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4852
|
+
spent_time: import('zod').ZodNumber;
|
|
4597
4853
|
created_at: import('zod').ZodString;
|
|
4598
4854
|
updated_at: import('zod').ZodString;
|
|
4599
4855
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4601,6 +4857,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4601
4857
|
name: import('zod').ZodString;
|
|
4602
4858
|
is_done: import('zod').ZodBoolean;
|
|
4603
4859
|
project_id: import('zod').ZodString;
|
|
4860
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
4861
|
+
spent_time: import('zod').ZodNumber;
|
|
4604
4862
|
created_at: import('zod').ZodString;
|
|
4605
4863
|
updated_at: import('zod').ZodString;
|
|
4606
4864
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
@@ -4740,12 +4998,15 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4740
4998
|
schema: import('zod').ZodObject<{
|
|
4741
4999
|
name: import('zod').ZodString;
|
|
4742
5000
|
project_id: import('zod').ZodString;
|
|
5001
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
4743
5002
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
4744
5003
|
name: import('zod').ZodString;
|
|
4745
5004
|
project_id: import('zod').ZodString;
|
|
5005
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
4746
5006
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
4747
5007
|
name: import('zod').ZodString;
|
|
4748
5008
|
project_id: import('zod').ZodString;
|
|
5009
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
4749
5010
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
4750
5011
|
}, {
|
|
4751
5012
|
name: "organization";
|
|
@@ -4758,6 +5019,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4758
5019
|
name: import('zod').ZodString;
|
|
4759
5020
|
is_done: import('zod').ZodBoolean;
|
|
4760
5021
|
project_id: import('zod').ZodString;
|
|
5022
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5023
|
+
spent_time: import('zod').ZodNumber;
|
|
4761
5024
|
created_at: import('zod').ZodString;
|
|
4762
5025
|
updated_at: import('zod').ZodString;
|
|
4763
5026
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4765,6 +5028,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4765
5028
|
name: import('zod').ZodString;
|
|
4766
5029
|
is_done: import('zod').ZodBoolean;
|
|
4767
5030
|
project_id: import('zod').ZodString;
|
|
5031
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5032
|
+
spent_time: import('zod').ZodNumber;
|
|
4768
5033
|
created_at: import('zod').ZodString;
|
|
4769
5034
|
updated_at: import('zod').ZodString;
|
|
4770
5035
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4772,6 +5037,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4772
5037
|
name: import('zod').ZodString;
|
|
4773
5038
|
is_done: import('zod').ZodBoolean;
|
|
4774
5039
|
project_id: import('zod').ZodString;
|
|
5040
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5041
|
+
spent_time: import('zod').ZodNumber;
|
|
4775
5042
|
created_at: import('zod').ZodString;
|
|
4776
5043
|
updated_at: import('zod').ZodString;
|
|
4777
5044
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
@@ -4781,6 +5048,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4781
5048
|
name: import('zod').ZodString;
|
|
4782
5049
|
is_done: import('zod').ZodBoolean;
|
|
4783
5050
|
project_id: import('zod').ZodString;
|
|
5051
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5052
|
+
spent_time: import('zod').ZodNumber;
|
|
4784
5053
|
created_at: import('zod').ZodString;
|
|
4785
5054
|
updated_at: import('zod').ZodString;
|
|
4786
5055
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4788,6 +5057,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4788
5057
|
name: import('zod').ZodString;
|
|
4789
5058
|
is_done: import('zod').ZodBoolean;
|
|
4790
5059
|
project_id: import('zod').ZodString;
|
|
5060
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5061
|
+
spent_time: import('zod').ZodNumber;
|
|
4791
5062
|
created_at: import('zod').ZodString;
|
|
4792
5063
|
updated_at: import('zod').ZodString;
|
|
4793
5064
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4795,6 +5066,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4795
5066
|
name: import('zod').ZodString;
|
|
4796
5067
|
is_done: import('zod').ZodBoolean;
|
|
4797
5068
|
project_id: import('zod').ZodString;
|
|
5069
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5070
|
+
spent_time: import('zod').ZodNumber;
|
|
4798
5071
|
created_at: import('zod').ZodString;
|
|
4799
5072
|
updated_at: import('zod').ZodString;
|
|
4800
5073
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
@@ -4804,6 +5077,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4804
5077
|
name: import('zod').ZodString;
|
|
4805
5078
|
is_done: import('zod').ZodBoolean;
|
|
4806
5079
|
project_id: import('zod').ZodString;
|
|
5080
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5081
|
+
spent_time: import('zod').ZodNumber;
|
|
4807
5082
|
created_at: import('zod').ZodString;
|
|
4808
5083
|
updated_at: import('zod').ZodString;
|
|
4809
5084
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4811,6 +5086,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4811
5086
|
name: import('zod').ZodString;
|
|
4812
5087
|
is_done: import('zod').ZodBoolean;
|
|
4813
5088
|
project_id: import('zod').ZodString;
|
|
5089
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5090
|
+
spent_time: import('zod').ZodNumber;
|
|
4814
5091
|
created_at: import('zod').ZodString;
|
|
4815
5092
|
updated_at: import('zod').ZodString;
|
|
4816
5093
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4818,6 +5095,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4818
5095
|
name: import('zod').ZodString;
|
|
4819
5096
|
is_done: import('zod').ZodBoolean;
|
|
4820
5097
|
project_id: import('zod').ZodString;
|
|
5098
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5099
|
+
spent_time: import('zod').ZodNumber;
|
|
4821
5100
|
created_at: import('zod').ZodString;
|
|
4822
5101
|
updated_at: import('zod').ZodString;
|
|
4823
5102
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
@@ -4877,12 +5156,15 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4877
5156
|
schema: import('zod').ZodObject<{
|
|
4878
5157
|
name: import('zod').ZodString;
|
|
4879
5158
|
is_done: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
5159
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
4880
5160
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
4881
5161
|
name: import('zod').ZodString;
|
|
4882
5162
|
is_done: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
5163
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
4883
5164
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
4884
5165
|
name: import('zod').ZodString;
|
|
4885
5166
|
is_done: import('zod').ZodOptional<import('zod').ZodBoolean>;
|
|
5167
|
+
estimated_time: import('zod').ZodOptional<import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>>;
|
|
4886
5168
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
4887
5169
|
}, {
|
|
4888
5170
|
name: "organization";
|
|
@@ -4899,6 +5181,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4899
5181
|
name: import('zod').ZodString;
|
|
4900
5182
|
is_done: import('zod').ZodBoolean;
|
|
4901
5183
|
project_id: import('zod').ZodString;
|
|
5184
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5185
|
+
spent_time: import('zod').ZodNumber;
|
|
4902
5186
|
created_at: import('zod').ZodString;
|
|
4903
5187
|
updated_at: import('zod').ZodString;
|
|
4904
5188
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4906,6 +5190,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4906
5190
|
name: import('zod').ZodString;
|
|
4907
5191
|
is_done: import('zod').ZodBoolean;
|
|
4908
5192
|
project_id: import('zod').ZodString;
|
|
5193
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5194
|
+
spent_time: import('zod').ZodNumber;
|
|
4909
5195
|
created_at: import('zod').ZodString;
|
|
4910
5196
|
updated_at: import('zod').ZodString;
|
|
4911
5197
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4913,6 +5199,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4913
5199
|
name: import('zod').ZodString;
|
|
4914
5200
|
is_done: import('zod').ZodBoolean;
|
|
4915
5201
|
project_id: import('zod').ZodString;
|
|
5202
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5203
|
+
spent_time: import('zod').ZodNumber;
|
|
4916
5204
|
created_at: import('zod').ZodString;
|
|
4917
5205
|
updated_at: import('zod').ZodString;
|
|
4918
5206
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
@@ -4922,6 +5210,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4922
5210
|
name: import('zod').ZodString;
|
|
4923
5211
|
is_done: import('zod').ZodBoolean;
|
|
4924
5212
|
project_id: import('zod').ZodString;
|
|
5213
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5214
|
+
spent_time: import('zod').ZodNumber;
|
|
4925
5215
|
created_at: import('zod').ZodString;
|
|
4926
5216
|
updated_at: import('zod').ZodString;
|
|
4927
5217
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4929,6 +5219,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4929
5219
|
name: import('zod').ZodString;
|
|
4930
5220
|
is_done: import('zod').ZodBoolean;
|
|
4931
5221
|
project_id: import('zod').ZodString;
|
|
5222
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5223
|
+
spent_time: import('zod').ZodNumber;
|
|
4932
5224
|
created_at: import('zod').ZodString;
|
|
4933
5225
|
updated_at: import('zod').ZodString;
|
|
4934
5226
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4936,6 +5228,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4936
5228
|
name: import('zod').ZodString;
|
|
4937
5229
|
is_done: import('zod').ZodBoolean;
|
|
4938
5230
|
project_id: import('zod').ZodString;
|
|
5231
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5232
|
+
spent_time: import('zod').ZodNumber;
|
|
4939
5233
|
created_at: import('zod').ZodString;
|
|
4940
5234
|
updated_at: import('zod').ZodString;
|
|
4941
5235
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
@@ -4945,6 +5239,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4945
5239
|
name: import('zod').ZodString;
|
|
4946
5240
|
is_done: import('zod').ZodBoolean;
|
|
4947
5241
|
project_id: import('zod').ZodString;
|
|
5242
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5243
|
+
spent_time: import('zod').ZodNumber;
|
|
4948
5244
|
created_at: import('zod').ZodString;
|
|
4949
5245
|
updated_at: import('zod').ZodString;
|
|
4950
5246
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
@@ -4952,6 +5248,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4952
5248
|
name: import('zod').ZodString;
|
|
4953
5249
|
is_done: import('zod').ZodBoolean;
|
|
4954
5250
|
project_id: import('zod').ZodString;
|
|
5251
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5252
|
+
spent_time: import('zod').ZodNumber;
|
|
4955
5253
|
created_at: import('zod').ZodString;
|
|
4956
5254
|
updated_at: import('zod').ZodString;
|
|
4957
5255
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
@@ -4959,6 +5257,8 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
4959
5257
|
name: import('zod').ZodString;
|
|
4960
5258
|
is_done: import('zod').ZodBoolean;
|
|
4961
5259
|
project_id: import('zod').ZodString;
|
|
5260
|
+
estimated_time: import('zod').ZodUnion<[import('zod').ZodNumber, import('zod').ZodNull]>;
|
|
5261
|
+
spent_time: import('zod').ZodNumber;
|
|
4962
5262
|
created_at: import('zod').ZodString;
|
|
4963
5263
|
updated_at: import('zod').ZodString;
|
|
4964
5264
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
@@ -5103,6 +5403,10 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5103
5403
|
name: "limit";
|
|
5104
5404
|
type: "Query";
|
|
5105
5405
|
schema: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
5406
|
+
}, {
|
|
5407
|
+
name: "offset";
|
|
5408
|
+
type: "Query";
|
|
5409
|
+
schema: import('zod').ZodOptional<import('zod').ZodNumber>;
|
|
5106
5410
|
}, {
|
|
5107
5411
|
name: "only_full_dates";
|
|
5108
5412
|
type: "Query";
|
|
@@ -5111,6 +5415,10 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5111
5415
|
name: "member_ids";
|
|
5112
5416
|
type: "Query";
|
|
5113
5417
|
schema: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
5418
|
+
}, {
|
|
5419
|
+
name: "client_ids";
|
|
5420
|
+
type: "Query";
|
|
5421
|
+
schema: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
5114
5422
|
}, {
|
|
5115
5423
|
name: "project_ids";
|
|
5116
5424
|
type: "Query";
|
|
@@ -5123,10 +5431,6 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5123
5431
|
name: "task_ids";
|
|
5124
5432
|
type: "Query";
|
|
5125
5433
|
schema: import('zod').ZodOptional<import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
5126
|
-
}, {
|
|
5127
|
-
name: "client_ids";
|
|
5128
|
-
type: "Query";
|
|
5129
|
-
schema: import('zod').ZodOptional<import('zod').ZodString>;
|
|
5130
5434
|
}, {
|
|
5131
5435
|
name: "user_id";
|
|
5132
5436
|
type: "Query";
|
|
@@ -5170,6 +5474,13 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5170
5474
|
tags: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
5171
5475
|
billable: import('zod').ZodBoolean;
|
|
5172
5476
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
5477
|
+
meta: import('zod').ZodObject<{
|
|
5478
|
+
total: import('zod').ZodNumber;
|
|
5479
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
5480
|
+
total: import('zod').ZodNumber;
|
|
5481
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
5482
|
+
total: import('zod').ZodNumber;
|
|
5483
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
5173
5484
|
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
5174
5485
|
data: import('zod').ZodArray<import('zod').ZodObject<{
|
|
5175
5486
|
id: import('zod').ZodString;
|
|
@@ -5208,6 +5519,13 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5208
5519
|
tags: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
5209
5520
|
billable: import('zod').ZodBoolean;
|
|
5210
5521
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
5522
|
+
meta: import('zod').ZodObject<{
|
|
5523
|
+
total: import('zod').ZodNumber;
|
|
5524
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
5525
|
+
total: import('zod').ZodNumber;
|
|
5526
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
5527
|
+
total: import('zod').ZodNumber;
|
|
5528
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
5211
5529
|
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
5212
5530
|
data: import('zod').ZodArray<import('zod').ZodObject<{
|
|
5213
5531
|
id: import('zod').ZodString;
|
|
@@ -5246,6 +5564,13 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5246
5564
|
tags: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
5247
5565
|
billable: import('zod').ZodBoolean;
|
|
5248
5566
|
}, import('zod').ZodTypeAny, "passthrough">>, "many">;
|
|
5567
|
+
meta: import('zod').ZodObject<{
|
|
5568
|
+
total: import('zod').ZodNumber;
|
|
5569
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
5570
|
+
total: import('zod').ZodNumber;
|
|
5571
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
5572
|
+
total: import('zod').ZodNumber;
|
|
5573
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
5249
5574
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
5250
5575
|
errors: [{
|
|
5251
5576
|
status: 401;
|
|
@@ -5647,6 +5972,74 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5647
5972
|
errors: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
5648
5973
|
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
5649
5974
|
}];
|
|
5975
|
+
}, {
|
|
5976
|
+
method: "delete";
|
|
5977
|
+
path: "/v1/organizations/:organization/time-entries";
|
|
5978
|
+
alias: "deleteTimeEntries";
|
|
5979
|
+
requestFormat: "json";
|
|
5980
|
+
parameters: [{
|
|
5981
|
+
name: "organization";
|
|
5982
|
+
type: "Path";
|
|
5983
|
+
schema: import('zod').ZodString;
|
|
5984
|
+
}, {
|
|
5985
|
+
name: "ids";
|
|
5986
|
+
type: "Query";
|
|
5987
|
+
schema: import('zod').ZodArray<import('zod').ZodString, "many">;
|
|
5988
|
+
}];
|
|
5989
|
+
response: import('zod').ZodObject<{
|
|
5990
|
+
success: import('zod').ZodString;
|
|
5991
|
+
error: import('zod').ZodString;
|
|
5992
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
5993
|
+
success: import('zod').ZodString;
|
|
5994
|
+
error: import('zod').ZodString;
|
|
5995
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
5996
|
+
success: import('zod').ZodString;
|
|
5997
|
+
error: import('zod').ZodString;
|
|
5998
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
5999
|
+
errors: [{
|
|
6000
|
+
status: 401;
|
|
6001
|
+
description: string;
|
|
6002
|
+
schema: import('zod').ZodObject<{
|
|
6003
|
+
message: import('zod').ZodString;
|
|
6004
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
6005
|
+
message: import('zod').ZodString;
|
|
6006
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
6007
|
+
message: import('zod').ZodString;
|
|
6008
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
6009
|
+
}, {
|
|
6010
|
+
status: 403;
|
|
6011
|
+
description: string;
|
|
6012
|
+
schema: import('zod').ZodObject<{
|
|
6013
|
+
message: import('zod').ZodString;
|
|
6014
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
6015
|
+
message: import('zod').ZodString;
|
|
6016
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
6017
|
+
message: import('zod').ZodString;
|
|
6018
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
6019
|
+
}, {
|
|
6020
|
+
status: 404;
|
|
6021
|
+
description: string;
|
|
6022
|
+
schema: import('zod').ZodObject<{
|
|
6023
|
+
message: import('zod').ZodString;
|
|
6024
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
6025
|
+
message: import('zod').ZodString;
|
|
6026
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
6027
|
+
message: import('zod').ZodString;
|
|
6028
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
6029
|
+
}, {
|
|
6030
|
+
status: 422;
|
|
6031
|
+
description: string;
|
|
6032
|
+
schema: import('zod').ZodObject<{
|
|
6033
|
+
message: import('zod').ZodString;
|
|
6034
|
+
errors: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
6035
|
+
}, "passthrough", import('zod').ZodTypeAny, import('zod').objectOutputType<{
|
|
6036
|
+
message: import('zod').ZodString;
|
|
6037
|
+
errors: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
6038
|
+
}, import('zod').ZodTypeAny, "passthrough">, import('zod').objectInputType<{
|
|
6039
|
+
message: import('zod').ZodString;
|
|
6040
|
+
errors: import('zod').ZodRecord<import('zod').ZodString, import('zod').ZodArray<import('zod').ZodString, "many">>;
|
|
6041
|
+
}, import('zod').ZodTypeAny, "passthrough">>;
|
|
6042
|
+
}];
|
|
5650
6043
|
}, {
|
|
5651
6044
|
method: "put";
|
|
5652
6045
|
path: "/v1/organizations/:organization/time-entries/:timeEntry";
|
|
@@ -5926,11 +6319,11 @@ declare const api: import('@zodios/core').ZodiosInstance<[{
|
|
|
5926
6319
|
}, {
|
|
5927
6320
|
name: "group";
|
|
5928
6321
|
type: "Query";
|
|
5929
|
-
schema: import('zod').ZodOptional<import('zod').ZodEnum<["day", "week", "month", "year", "user", "project", "task", "client", "billable"]>>;
|
|
6322
|
+
schema: import('zod').ZodOptional<import('zod').ZodEnum<["day", "week", "month", "year", "user", "project", "task", "client", "billable", "description"]>>;
|
|
5930
6323
|
}, {
|
|
5931
6324
|
name: "sub_group";
|
|
5932
6325
|
type: "Query";
|
|
5933
|
-
schema: import('zod').ZodOptional<import('zod').ZodEnum<["day", "week", "month", "year", "user", "project", "task", "client", "billable"]>>;
|
|
6326
|
+
schema: import('zod').ZodOptional<import('zod').ZodEnum<["day", "week", "month", "year", "user", "project", "task", "client", "billable", "description"]>>;
|
|
5934
6327
|
}, {
|
|
5935
6328
|
name: "member_id";
|
|
5936
6329
|
type: "Query";
|