@go-avro/avro-js 0.0.2-beta.15 → 0.0.2-beta.16
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/types/api.d.ts +7 -0
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export interface MemberState {
|
|
|
68
68
|
}
|
|
69
69
|
export interface LineItem {
|
|
70
70
|
id: string;
|
|
71
|
+
line_item_type: "CUSTOM";
|
|
71
72
|
name: string;
|
|
72
73
|
description: string;
|
|
73
74
|
cost: number | null;
|
|
@@ -211,13 +212,17 @@ export interface Break {
|
|
|
211
212
|
}
|
|
212
213
|
export interface ServiceMonth {
|
|
213
214
|
id: string;
|
|
215
|
+
line_item_type: "SERVICE_MONTH";
|
|
214
216
|
job_name: string;
|
|
215
217
|
job_id: string | null;
|
|
218
|
+
job_address: string;
|
|
219
|
+
job_labels: string[];
|
|
216
220
|
bill_id: string | null;
|
|
217
221
|
cost: number;
|
|
218
222
|
billed: boolean;
|
|
219
223
|
paid: boolean;
|
|
220
224
|
amount: number;
|
|
225
|
+
tasks: string[];
|
|
221
226
|
time_created: number;
|
|
222
227
|
time_updated: number | null;
|
|
223
228
|
}
|
|
@@ -473,6 +478,7 @@ export interface taskEndInfo {
|
|
|
473
478
|
}
|
|
474
479
|
export interface AdditionalCharge {
|
|
475
480
|
id: string;
|
|
481
|
+
line_item_type: "ADDITIONAL_CHARGE";
|
|
476
482
|
time_created: number;
|
|
477
483
|
time_updated: number | null;
|
|
478
484
|
name: string;
|
|
@@ -481,6 +487,7 @@ export interface AdditionalCharge {
|
|
|
481
487
|
export interface _Event {
|
|
482
488
|
breaks: string[];
|
|
483
489
|
id: string;
|
|
490
|
+
line_item_type: "EVENT";
|
|
484
491
|
name: string;
|
|
485
492
|
internal_notes: string;
|
|
486
493
|
external_notes: string;
|