@djangocfg/api 1.2.20 → 1.2.21
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/index.cjs +7 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cfg/generated/cfg__dashboard__dashboard_overview/models.ts +3 -1
- package/src/cfg/generated/enums.ts +4 -0
- package/src/cfg/generated/schema.ts +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.21",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "DjangoCFG",
|
|
6
6
|
"url": "https://djangocfg.com"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@types/node": "^22.15.3",
|
|
69
69
|
"@types/react": "19.2.2",
|
|
70
70
|
"@types/react-dom": "19.2.1",
|
|
71
|
-
"@djangocfg/typescript-config": "^1.2.
|
|
71
|
+
"@djangocfg/typescript-config": "^1.2.21",
|
|
72
72
|
"react": "^19.1.0",
|
|
73
73
|
"react-dom": "^19.1.0",
|
|
74
74
|
"tsup": "^8.5.0",
|
|
@@ -89,7 +89,9 @@ export interface QuickAction {
|
|
|
89
89
|
* `success` - success
|
|
90
90
|
* `warning` - warning
|
|
91
91
|
* `danger` - danger
|
|
92
|
-
* `secondary` - secondary
|
|
92
|
+
* `secondary` - secondary
|
|
93
|
+
* `info` - info
|
|
94
|
+
* `default` - default */
|
|
93
95
|
color?: Enums.QuickActionColor;
|
|
94
96
|
/** Action category */
|
|
95
97
|
category?: string;
|
|
@@ -394,6 +394,8 @@ export enum PaymentListStatus {
|
|
|
394
394
|
* * `warning` - warning
|
|
395
395
|
* * `danger` - danger
|
|
396
396
|
* * `secondary` - secondary
|
|
397
|
+
* * `info` - info
|
|
398
|
+
* * `default` - default
|
|
397
399
|
*/
|
|
398
400
|
export enum QuickActionColor {
|
|
399
401
|
PRIMARY = "primary",
|
|
@@ -401,6 +403,8 @@ export enum QuickActionColor {
|
|
|
401
403
|
WARNING = "warning",
|
|
402
404
|
DANGER = "danger",
|
|
403
405
|
SECONDARY = "secondary",
|
|
406
|
+
INFO = "info",
|
|
407
|
+
DEFAULT = "default",
|
|
404
408
|
}
|
|
405
409
|
|
|
406
410
|
/**
|
|
@@ -6522,16 +6522,18 @@ export const OPENAPI_SCHEMA = {
|
|
|
6522
6522
|
},
|
|
6523
6523
|
"color": {
|
|
6524
6524
|
"default": "primary",
|
|
6525
|
-
"description": "Button color theme\n\n* `primary` - primary\n* `success` - success\n* `warning` - warning\n* `danger` - danger\n* `secondary` - secondary",
|
|
6525
|
+
"description": "Button color theme\n\n* `primary` - primary\n* `success` - success\n* `warning` - warning\n* `danger` - danger\n* `secondary` - secondary\n* `info` - info\n* `default` - default",
|
|
6526
6526
|
"enum": [
|
|
6527
6527
|
"primary",
|
|
6528
6528
|
"success",
|
|
6529
6529
|
"warning",
|
|
6530
6530
|
"danger",
|
|
6531
|
-
"secondary"
|
|
6531
|
+
"secondary",
|
|
6532
|
+
"info",
|
|
6533
|
+
"default"
|
|
6532
6534
|
],
|
|
6533
6535
|
"type": "string",
|
|
6534
|
-
"x-spec-enum-id": "
|
|
6536
|
+
"x-spec-enum-id": "7eed9d931d8a684d"
|
|
6535
6537
|
},
|
|
6536
6538
|
"description": {
|
|
6537
6539
|
"description": "Action description",
|