@djangocfg/ext-payments 1.0.8 → 1.0.10
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 -1
- package/dist/config.js +3 -1
- package/dist/hooks.cjs +198 -160
- package/dist/hooks.js +48 -10
- package/dist/index.cjs +198 -160
- package/dist/index.d.cts +36 -13
- package/dist/index.d.ts +36 -13
- package/dist/index.js +48 -10
- package/package.json +7 -5
- package/src/api/generated/ext_payments/CLAUDE.md +1 -8
- package/src/api/generated/ext_payments/_utils/schemas/PaymentDetail.schema.ts +1 -1
- package/src/api/generated/ext_payments/api-instance.ts +61 -13
- package/src/api/generated/ext_payments/client.ts +23 -2
- package/src/api/generated/ext_payments/http.ts +8 -2
- package/src/api/generated/ext_payments/index.ts +3 -1
- package/src/api/index.ts +6 -1
- package/src/layouts/PaymentsLayout/PaymentsLayout.tsx +1 -1
- package/src/layouts/PaymentsLayout/components/CreatePaymentDialog.tsx +1 -1
- package/src/layouts/PaymentsLayout/components/PaymentDetailsDialog.tsx +1 -1
- package/src/layouts/PaymentsLayout/views/overview/components/BalanceCard.tsx +1 -1
- package/src/layouts/PaymentsLayout/views/overview/components/RecentPayments.tsx +1 -1
- package/src/layouts/PaymentsLayout/views/payments/components/PaymentsList.tsx +4 -3
- package/src/layouts/PaymentsLayout/views/transactions/components/TransactionsList.tsx +1 -1
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.10",
|
|
31
31
|
description: "Payments system extension for DjangoCFG",
|
|
32
32
|
keywords: [
|
|
33
33
|
"django",
|
|
@@ -88,6 +88,7 @@ var package_default = {
|
|
|
88
88
|
peerDependencies: {
|
|
89
89
|
"@djangocfg/api": "workspace:*",
|
|
90
90
|
"@djangocfg/ext-base": "workspace:*",
|
|
91
|
+
"@djangocfg/ui-core": "workspace:*",
|
|
91
92
|
"@djangocfg/ui-nextjs": "workspace:*",
|
|
92
93
|
consola: "^3.4.2",
|
|
93
94
|
"lucide-react": "^0.545.0",
|
|
@@ -102,6 +103,7 @@ var package_default = {
|
|
|
102
103
|
"@djangocfg/api": "workspace:*",
|
|
103
104
|
"@djangocfg/ext-base": "workspace:*",
|
|
104
105
|
"@djangocfg/typescript-config": "workspace:*",
|
|
106
|
+
"@djangocfg/ui-nextjs": "workspace:*",
|
|
105
107
|
"@types/node": "^24.7.2",
|
|
106
108
|
"@types/react": "^19.0.0",
|
|
107
109
|
consola: "^3.4.2",
|
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.10",
|
|
8
8
|
description: "Payments system extension for DjangoCFG",
|
|
9
9
|
keywords: [
|
|
10
10
|
"django",
|
|
@@ -65,6 +65,7 @@ var package_default = {
|
|
|
65
65
|
peerDependencies: {
|
|
66
66
|
"@djangocfg/api": "workspace:*",
|
|
67
67
|
"@djangocfg/ext-base": "workspace:*",
|
|
68
|
+
"@djangocfg/ui-core": "workspace:*",
|
|
68
69
|
"@djangocfg/ui-nextjs": "workspace:*",
|
|
69
70
|
consola: "^3.4.2",
|
|
70
71
|
"lucide-react": "^0.545.0",
|
|
@@ -79,6 +80,7 @@ var package_default = {
|
|
|
79
80
|
"@djangocfg/api": "workspace:*",
|
|
80
81
|
"@djangocfg/ext-base": "workspace:*",
|
|
81
82
|
"@djangocfg/typescript-config": "workspace:*",
|
|
83
|
+
"@djangocfg/ui-nextjs": "workspace:*",
|
|
82
84
|
"@types/node": "^24.7.2",
|
|
83
85
|
"@types/react": "^19.0.0",
|
|
84
86
|
consola: "^3.4.2",
|