@djangocfg/ext-payments 1.0.4 → 1.0.7
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/config.cjs +3 -2
- package/dist/config.js +3 -2
- package/dist/hooks.cjs +559 -543
- package/dist/hooks.js +558 -543
- package/dist/index.cjs +559 -543
- package/dist/index.js +558 -543
- package/package.json +9 -8
- package/src/api/generated/ext_payments/CLAUDE.md +76 -0
- package/src/api/generated/ext_payments/_utils/fetchers/ext_payments__payments.ts +1 -0
- package/src/api/generated/ext_payments/_utils/fetchers/index.ts +1 -0
- package/src/api/generated/ext_payments/_utils/hooks/ext_payments__payments.ts +1 -0
- package/src/api/generated/ext_payments/_utils/hooks/index.ts +1 -0
- package/src/api/generated/ext_payments/_utils/schemas/index.ts +1 -0
- package/src/api/generated/ext_payments/api-instance.ts +1 -0
- package/src/api/generated/ext_payments/enums.ts +1 -0
- package/src/api/generated/ext_payments/errors.ts +1 -0
- package/src/api/generated/ext_payments/ext_payments__payments/index.ts +1 -0
- package/src/api/generated/ext_payments/ext_payments__payments/models.ts +1 -0
- package/src/api/generated/ext_payments/http.ts +1 -0
- package/src/api/generated/ext_payments/index.ts +1 -0
- package/src/api/generated/ext_payments/logger.ts +1 -0
- package/src/api/generated/ext_payments/retry.ts +1 -0
- package/src/api/generated/ext_payments/storage.ts +1 -0
- package/src/api/generated/ext_payments/validation-events.ts +1 -0
- package/src/api/index.ts +2 -1
- package/src/config.ts +1 -0
- package/src/contexts/BalancesContext.tsx +2 -1
- package/src/contexts/CurrenciesContext.tsx +2 -1
- package/src/contexts/OverviewContext.tsx +5 -5
- package/src/contexts/PaymentsContext.tsx +6 -5
- package/src/contexts/PaymentsExtensionProvider.tsx +3 -2
- package/src/contexts/RootPaymentsContext.tsx +2 -1
- package/src/layouts/PaymentsLayout/PaymentsLayout.tsx +5 -7
- package/src/layouts/PaymentsLayout/components/CreatePaymentDialog.tsx +10 -27
- package/src/layouts/PaymentsLayout/components/PaymentDetailsDialog.tsx +15 -18
- package/src/layouts/PaymentsLayout/views/overview/components/BalanceCard.tsx +6 -13
- package/src/layouts/PaymentsLayout/views/overview/components/RecentPayments.tsx +8 -11
- package/src/layouts/PaymentsLayout/views/overview/index.tsx +1 -0
- package/src/layouts/PaymentsLayout/views/payments/components/PaymentsList.tsx +43 -42
- package/src/layouts/PaymentsLayout/views/payments/index.tsx +1 -0
- package/src/layouts/PaymentsLayout/views/transactions/components/TransactionsList.tsx +71 -84
- package/src/layouts/PaymentsLayout/views/transactions/index.tsx +1 -0
package/dist/config.cjs
CHANGED
|
@@ -27,7 +27,7 @@ var import_ext_base = require("@djangocfg/ext-base");
|
|
|
27
27
|
// package.json
|
|
28
28
|
var package_default = {
|
|
29
29
|
name: "@djangocfg/ext-payments",
|
|
30
|
-
version: "1.0.
|
|
30
|
+
version: "1.0.6",
|
|
31
31
|
description: "Payments system extension for DjangoCFG",
|
|
32
32
|
keywords: [
|
|
33
33
|
"django",
|
|
@@ -95,7 +95,8 @@ var package_default = {
|
|
|
95
95
|
"p-retry": "^7.0.0",
|
|
96
96
|
react: "^18 || ^19",
|
|
97
97
|
swr: "^2.3.7",
|
|
98
|
-
zod: "^4.1.13"
|
|
98
|
+
zod: "^4.1.13",
|
|
99
|
+
moment: "^2.30.1"
|
|
99
100
|
},
|
|
100
101
|
devDependencies: {
|
|
101
102
|
"@djangocfg/api": "workspace:*",
|
package/dist/config.js
CHANGED
|
@@ -4,7 +4,7 @@ import { createExtensionConfig } from "@djangocfg/ext-base";
|
|
|
4
4
|
// package.json
|
|
5
5
|
var package_default = {
|
|
6
6
|
name: "@djangocfg/ext-payments",
|
|
7
|
-
version: "1.0.
|
|
7
|
+
version: "1.0.6",
|
|
8
8
|
description: "Payments system extension for DjangoCFG",
|
|
9
9
|
keywords: [
|
|
10
10
|
"django",
|
|
@@ -72,7 +72,8 @@ var package_default = {
|
|
|
72
72
|
"p-retry": "^7.0.0",
|
|
73
73
|
react: "^18 || ^19",
|
|
74
74
|
swr: "^2.3.7",
|
|
75
|
-
zod: "^4.1.13"
|
|
75
|
+
zod: "^4.1.13",
|
|
76
|
+
moment: "^2.30.1"
|
|
76
77
|
},
|
|
77
78
|
devDependencies: {
|
|
78
79
|
"@djangocfg/api": "workspace:*",
|