@go-avro/avro-js 0.0.2-beta.94 → 0.0.2-beta.95
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 +2 -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";
|