@go-avro/avro-js 0.0.2-beta.173 → 0.0.2-beta.174
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 +10 -2
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -563,6 +563,15 @@ export interface Job {
|
|
|
563
563
|
labels: string[];
|
|
564
564
|
owner: string;
|
|
565
565
|
}
|
|
566
|
+
export interface Prepayment extends LineItem {
|
|
567
|
+
id: string;
|
|
568
|
+
task_id: string | null;
|
|
569
|
+
type: "SERVICE" | "MONTH";
|
|
570
|
+
time_created: number;
|
|
571
|
+
time_updated: number | null;
|
|
572
|
+
num_events: number;
|
|
573
|
+
num_service_months: number;
|
|
574
|
+
}
|
|
566
575
|
export interface Task {
|
|
567
576
|
enforce_proof_amount: boolean;
|
|
568
577
|
events: _Event[];
|
|
@@ -592,8 +601,7 @@ export interface Task {
|
|
|
592
601
|
expire_on: number | null;
|
|
593
602
|
catalog_item_id: string | null;
|
|
594
603
|
bill_day: number | null;
|
|
595
|
-
|
|
596
|
-
months_prepaid: number;
|
|
604
|
+
prepayments: Prepayment[];
|
|
597
605
|
priority: boolean;
|
|
598
606
|
route_ids: string[];
|
|
599
607
|
}
|