@goweekdays/core 1.1.0 → 1.1.1
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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2032,6 +2032,7 @@ declare function useInvoiceController(): {
|
|
|
2032
2032
|
getBySubscriptionId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2033
2033
|
getByNumber: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2034
2034
|
getByDueDateStatus: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2035
|
+
paidInvoiceWebhookHandler: (req: Request, res: Response, next: NextFunction) => Promise<void>;
|
|
2035
2036
|
};
|
|
2036
2037
|
|
|
2037
2038
|
declare const TPaymentMethod: z.ZodEnum<["CARD", "DIRECT_DEBIT", "VIRTUAL_ACCOUNT", "EWALLET", "OVER_THE_COUNTER", "QR_CODE", "PAYPAL"]>;
|
package/dist/index.js
CHANGED
|
@@ -25149,7 +25149,8 @@ function useInvoiceController() {
|
|
|
25149
25149
|
return {
|
|
25150
25150
|
getBySubscriptionId,
|
|
25151
25151
|
getByNumber,
|
|
25152
|
-
getByDueDateStatus
|
|
25152
|
+
getByDueDateStatus,
|
|
25153
|
+
paidInvoiceWebhookHandler
|
|
25153
25154
|
};
|
|
25154
25155
|
}
|
|
25155
25156
|
|