@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @goweekdays/core
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 6fe5406: expose paid invoice webhook handler
8
+
3
9
  ## 1.1.0
4
10
 
5
11
  ### Minor Changes
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