@go-avro/avro-js 0.0.2-beta.94 → 0.0.2-beta.96
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 +3 -0
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -182,6 +182,8 @@ export interface Plan {
|
|
|
182
182
|
export interface BillPayment {
|
|
183
183
|
id: string;
|
|
184
184
|
amount: number;
|
|
185
|
+
avro_fees: number;
|
|
186
|
+
stripe_fees: number;
|
|
185
187
|
stripe_pi_id: string;
|
|
186
188
|
bill_user_id: string;
|
|
187
189
|
status: "created" | "processing" | "succeeded" | "failed" | "canceled" | "requires_action";
|
|
@@ -478,6 +480,7 @@ export interface Task {
|
|
|
478
480
|
services_prepaid: number;
|
|
479
481
|
months_prepaid: number;
|
|
480
482
|
priority: boolean;
|
|
483
|
+
num_routes: number;
|
|
481
484
|
}
|
|
482
485
|
export interface TaskWrapper {
|
|
483
486
|
latestEvent: number;
|