@favid-inc/api
Advanced tools
Comparing version 3.7.1 to 3.7.3
@@ -0,2 +1,3 @@ | ||
export * from "./account"; | ||
export * from "./direct-charge"; | ||
export * from "./account"; | ||
export * from "./trigger"; |
@@ -1,19 +0,1 @@ | ||
import { AxiosRequestConfig } from "axios"; | ||
import { OrderPaymentStatus } from "../../model"; | ||
export interface InvoiceStatusChanged { | ||
Request: Request; | ||
} | ||
declare type Request = AxiosRequestConfig & { | ||
url: "/InvoiceStatusChanged"; | ||
method: "POST"; | ||
data: { | ||
event: "invoice.status_changed"; | ||
data: { | ||
id: string; | ||
account_id: string; | ||
status: OrderPaymentStatus; | ||
subscription_id?: string; | ||
}; | ||
}; | ||
}; | ||
export {}; | ||
export * from "./invoice"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
{ | ||
"name": "@favid-inc/api", | ||
"version": "3.7.1", | ||
"version": "3.7.3", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
19786
728