@addev-be/ui 0.16.8 → 0.16.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/Icons.d.ts +3 -1
- package/dist/Icons.js +6 -1
- package/dist/components/auth/LoginForm.js +7 -5
- package/dist/components/auth/PasswordRecoveryForm.js +6 -5
- package/dist/components/auth/styles.d.ts +1 -3
- package/dist/components/data/DataGrid/DataGridCell.d.ts +1 -1
- package/dist/components/data/DataGrid/DataGridCell.js +25 -15
- package/dist/components/data/DataGrid/DataGridColumnsModal/hooks.js +2 -2
- package/dist/components/data/DataGrid/DataGridColumnsModal/index.js +17 -7
- package/dist/components/data/DataGrid/DataGridColumnsModal/styles.d.ts +6 -18
- package/dist/components/data/DataGrid/DataGridColumnsModal/styles.js +19 -9
- package/dist/components/data/DataGrid/DataGridEditableCell/CheckboxEditableCell.d.ts +1 -1
- package/dist/components/data/DataGrid/DataGridEditableCell/CheckboxEditableCell.js +3 -3
- package/dist/components/data/DataGrid/DataGridEditableCell/DateEditableCell.d.ts +1 -1
- package/dist/components/data/DataGrid/DataGridEditableCell/DateEditableCell.js +4 -4
- package/dist/components/data/DataGrid/DataGridEditableCell/NumberEditableCell.d.ts +4 -2
- package/dist/components/data/DataGrid/DataGridEditableCell/NumberEditableCell.js +7 -5
- package/dist/components/data/DataGrid/DataGridEditableCell/TextEditableCell.d.ts +1 -1
- package/dist/components/data/DataGrid/DataGridEditableCell/TextEditableCell.js +3 -3
- package/dist/components/data/DataGrid/DataGridEditableCell/index.js +12 -12
- package/dist/components/data/DataGrid/DataGridEditableCell/styles.js +1 -1
- package/dist/components/data/DataGrid/DataGridEditableCell/types.d.ts +3 -3
- package/dist/components/data/DataGrid/DataGridFilterMenu/FilterValuesScroller.js +19 -10
- package/dist/components/data/DataGrid/DataGridFilterMenu/helpers.d.ts +2 -0
- package/dist/components/data/DataGrid/DataGridFilterMenu/helpers.js +19 -0
- package/dist/components/data/DataGrid/DataGridFilterMenu/hooks.js +2 -2
- package/dist/components/data/DataGrid/DataGridFilterMenu/index.js +24 -19
- package/dist/components/data/DataGrid/DataGridFilterMenu/styles.d.ts +5 -15
- package/dist/components/data/DataGrid/DataGridFilterMenu/styles.js +5 -5
- package/dist/components/data/DataGrid/DataGridFooter.js +18 -10
- package/dist/components/data/DataGrid/DataGridHeader.js +20 -60
- package/dist/components/data/DataGrid/DataGridHeaderCell.js +22 -13
- package/dist/components/data/DataGrid/DataGridRowTemplate.js +22 -10
- package/dist/components/data/DataGrid/DataGridToolbar.d.ts +4 -0
- package/dist/components/data/DataGrid/DataGridToolbar.js +141 -0
- package/dist/components/data/DataGrid/FilterModalContent/index.js +22 -12
- package/dist/components/data/DataGrid/FilterModalContent/styles.d.ts +1 -3
- package/dist/components/data/DataGrid/helpers/columns.d.ts +11 -9
- package/dist/components/data/DataGrid/helpers/columns.js +38 -19
- package/dist/components/data/DataGrid/hooks/useDataGrid.js +6 -5
- package/dist/components/data/DataGrid/hooks/useDataGridChangedRows.d.ts +7 -7
- package/dist/components/data/DataGrid/hooks/useDataGridChangedRows.js +52 -32
- package/dist/components/data/DataGrid/hooks/useDataGridSettings.d.ts +8 -12
- package/dist/components/data/DataGrid/hooks/useDataGridSettings.js +2 -2
- package/dist/components/data/DataGrid/hooks/useRefreshModal.d.ts +5 -0
- package/dist/components/data/DataGrid/hooks/useRefreshModal.js +25 -0
- package/dist/components/data/DataGrid/index.d.ts +3 -6
- package/dist/components/data/DataGrid/index.js +42 -19
- package/dist/components/data/DataGrid/styles.d.ts +10 -18
- package/dist/components/data/DataGrid/styles.js +64 -37
- package/dist/components/data/DataGrid/types.d.ts +42 -30
- package/dist/components/data/DataGrid/types.js +25 -15
- package/dist/components/data/SqlRequestDataGrid/SqlRequestForeignListEditableCell.d.ts +2 -1
- package/dist/components/data/SqlRequestDataGrid/SqlRequestForeignListEditableCell.js +2 -3
- package/dist/components/data/SqlRequestDataGrid/helpers/columns.d.ts +1 -1
- package/dist/components/data/SqlRequestDataGrid/helpers/columns.js +70 -47
- package/dist/components/data/SqlRequestDataGrid/helpers/rows.d.ts +2 -0
- package/dist/components/data/SqlRequestDataGrid/helpers/rows.js +17 -0
- package/dist/components/data/SqlRequestDataGrid/index.d.ts +4 -11
- package/dist/components/data/SqlRequestDataGrid/index.js +50 -30
- package/dist/components/data/SqlRequestForeignList/index.d.ts +4 -3
- package/dist/components/data/SqlRequestForeignList/index.js +15 -15
- package/dist/components/data/SqlRequestForeignList/styles.js +1 -1
- package/dist/components/data/SqlRequestForeignList/types.d.ts +1 -1
- package/dist/components/data/SqlRequestForeignList/types.js +0 -1
- package/dist/components/data/SqlRequestGrid/filters/FiltersSidebar.js +19 -10
- package/dist/components/data/SqlRequestGrid/filters/styles.js +3 -3
- package/dist/components/data/SqlRequestGrid/index.d.ts +4 -3
- package/dist/components/data/SqlRequestGrid/index.js +26 -26
- package/dist/components/data/SqlRequestGrid/styles.d.ts +1 -3
- package/dist/components/data/SqlRequestGrid/types.js +0 -1
- package/dist/components/data/VirtualScroller/hooks.js +2 -2
- package/dist/components/data/VirtualScroller/index.js +17 -8
- package/dist/components/data/VirtualScroller/styles.d.ts +2 -6
- package/dist/components/data/VirtualScroller/styles.js +0 -1
- package/dist/components/data/VirtualScroller/types.js +0 -1
- package/dist/components/forms/AutoTextArea.js +2 -1
- package/dist/components/forms/Button.d.ts +4 -4
- package/dist/components/forms/Button.js +29 -19
- package/dist/components/forms/Form/Checkbox.d.ts +2 -2
- package/dist/components/forms/Form/Checkbox.js +2 -2
- package/dist/components/forms/Form/CustomSelect.d.ts +13 -0
- package/dist/components/forms/Form/CustomSelect.js +50 -0
- package/dist/components/forms/Form/FormGroup.d.ts +3 -1
- package/dist/components/forms/Form/FormGroup.js +2 -2
- package/dist/components/forms/Form/Input.d.ts +2 -2
- package/dist/components/forms/Form/Input.js +3 -2
- package/dist/components/forms/Form/Row.d.ts +9 -0
- package/dist/components/forms/Form/Row.js +10 -0
- package/dist/components/forms/Form/Select.d.ts +4 -8
- package/dist/components/forms/Form/Select.js +12 -8
- package/dist/components/forms/Form/TextArea.d.ts +2 -2
- package/dist/components/forms/Form/TextArea.js +3 -2
- package/dist/components/forms/Form/index.d.ts +40 -20
- package/dist/components/forms/Form/index.js +15 -8
- package/dist/components/forms/Form/styles.d.ts +10 -7
- package/dist/components/forms/Form/styles.js +31 -19
- package/dist/components/forms/IconButton.d.ts +8 -4
- package/dist/components/forms/IconButton.js +4 -4
- package/dist/components/forms/NumberInput.d.ts +9 -0
- package/dist/components/forms/NumberInput.js +40 -0
- package/dist/components/forms/index.d.ts +2 -1
- package/dist/components/forms/index.js +2 -1
- package/dist/components/forms/styles.d.ts +18 -6
- package/dist/components/forms/styles.js +25 -14
- package/dist/components/layout/Columns.d.ts +3 -1
- package/dist/components/layout/Columns.js +8 -6
- package/dist/components/layout/Dropdown/index.js +19 -9
- package/dist/components/layout/Dropdown/styles.d.ts +3 -6
- package/dist/components/layout/Dropdown/styles.js +22 -9
- package/dist/components/layout/Flexbox.d.ts +11 -0
- package/dist/components/layout/Flexbox.js +26 -0
- package/dist/components/layout/Grid/styles.d.ts +1 -3
- package/dist/components/layout/Loading/index.js +19 -9
- package/dist/components/layout/Loading/styles.d.ts +2 -6
- package/dist/components/layout/Modal/index.js +19 -9
- package/dist/components/layout/Modal/styles.d.ts +9 -27
- package/dist/components/layout/Modal/styles.js +21 -11
- package/dist/components/layout/index.d.ts +1 -0
- package/dist/components/layout/index.js +1 -0
- package/dist/components/search/HighlightedText.js +11 -9
- package/dist/components/search/QuickSearchBar.d.ts +6 -2
- package/dist/components/search/QuickSearchBar.js +28 -25
- package/dist/components/search/QuickSearchResults.js +17 -7
- package/dist/components/search/styles.d.ts +9 -27
- package/dist/components/search/styles.js +5 -5
- package/dist/components/search/types.d.ts +3 -0
- package/dist/components/ui/Avatar/index.d.ts +1 -1
- package/dist/components/ui/Avatar/index.js +17 -7
- package/dist/components/ui/Avatar/styles.js +17 -7
- package/dist/components/ui/Card/styles.d.ts +3 -9
- package/dist/components/ui/Card/styles.js +3 -3
- package/dist/components/ui/ContextMenu/styles.d.ts +4 -12
- package/dist/components/ui/ContextMenu/styles.js +22 -12
- package/dist/components/ui/Ellipsis.d.ts +0 -1
- package/dist/components/ui/Label.d.ts +2 -1
- package/dist/components/ui/Label.js +23 -13
- package/dist/components/ui/Message/index.js +19 -9
- package/dist/components/ui/Message/styles.d.ts +4 -7
- package/dist/components/ui/Message/styles.js +20 -9
- package/dist/components/ui/TabsView/TabsList.d.ts +10 -0
- package/dist/components/ui/TabsView/TabsList.js +40 -0
- package/dist/components/ui/TabsView/TabsView.d.ts +9 -0
- package/dist/components/ui/TabsView/TabsView.js +17 -0
- package/dist/components/ui/TabsView/index.d.ts +3 -0
- package/dist/components/ui/TabsView/index.js +19 -0
- package/dist/components/ui/TabsView/styles.d.ts +11 -0
- package/dist/components/ui/TabsView/styles.js +57 -0
- package/dist/components/ui/TabsView/types.d.ts +10 -0
- package/dist/components/ui/TabsView/types.js +2 -0
- package/dist/components/ui/index.d.ts +1 -0
- package/dist/components/ui/index.js +1 -0
- package/dist/config/index.d.ts +1 -4
- package/dist/helpers/components.d.ts +2 -0
- package/dist/helpers/components.js +8 -0
- package/dist/helpers/index.d.ts +1 -0
- package/dist/helpers/index.js +1 -0
- package/dist/helpers/react.d.ts +2 -0
- package/dist/helpers/react.js +8 -0
- package/dist/helpers/styled/index.d.ts +1 -0
- package/dist/helpers/styled/index.js +17 -0
- package/dist/helpers/styled/space.d.ts +39 -0
- package/dist/helpers/styled/space.js +90 -0
- package/dist/helpers/styled/typography.d.ts +9 -0
- package/dist/helpers/styled/typography.js +61 -0
- package/dist/helpers/types.d.ts +2 -0
- package/dist/helpers/types.js +8 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +1 -0
- package/dist/hooks/useMutableState.d.ts +8 -0
- package/dist/hooks/useMutableState.js +14 -0
- package/dist/index.d.ts +86 -5
- package/dist/index.js +86 -5
- package/dist/providers/AuthenticationProvider/index.d.ts +2 -1
- package/dist/providers/AuthenticationProvider/index.js +63 -21
- package/dist/providers/LoadingProvider/index.js +2 -2
- package/dist/providers/PortalsProvider/index.js +17 -7
- package/dist/providers/PortalsProvider/styles.d.ts +3 -9
- package/dist/providers/ThemeProvider/ThemeProvider.d.ts +1 -0
- package/dist/providers/ThemeProvider/ThemeProvider.js +11 -9
- package/dist/providers/ThemeProvider/defaultTheme.d.ts +1 -0
- package/dist/providers/ThemeProvider/defaultTheme.js +20 -1
- package/dist/providers/ThemeProvider/helpers.d.ts +12 -3
- package/dist/providers/ThemeProvider/helpers.js +54 -2
- package/dist/providers/ThemeProvider/index.d.ts +8 -3
- package/dist/providers/ThemeProvider/index.js +49 -18
- package/dist/providers/ThemeProvider/types.d.ts +3 -2
- package/dist/providers/ToastProvider/index.d.ts +12 -0
- package/dist/providers/ToastProvider/index.js +66 -0
- package/dist/providers/TrackingProvider/index.js +2 -2
- package/dist/providers/UiProviders/index.d.ts +4 -1
- package/dist/providers/UiProviders/index.js +20 -10
- package/dist/providers/UiProviders/styles.d.ts +1 -3
- package/dist/providers/UiProviders/styles.js +1 -1
- package/dist/providers/hooks.d.ts +6 -0
- package/dist/providers/hooks.js +4 -1
- package/dist/providers/index.d.ts +1 -0
- package/dist/providers/index.js +1 -0
- package/dist/services/WebSocketService.d.ts +8 -0
- package/dist/services/WebSocketService.js +34 -2
- package/dist/services/globalSearch.d.ts +5 -2
- package/dist/services/hooks.d.ts +10 -0
- package/dist/services/hooks.js +91 -4
- package/dist/services/index.js +17 -7
- package/dist/services/requests/auth.d.ts +9 -11
- package/dist/services/requests/generic.d.ts +62 -15
- package/dist/services/requests/generic.js +7 -7
- package/dist/services/requests/tracking.d.ts +4 -8
- package/dist/services/requests/userProfiles.d.ts +5 -5
- package/dist/services/requests/users.d.ts +11 -16
- package/dist/services/types/auth.d.ts +80 -82
- package/dist/services/types/auth.js +58 -48
- package/dist/services/types/base.d.ts +5 -5
- package/dist/services/types/base.js +21 -11
- package/dist/services/types/generic.d.ts +39 -40
- package/dist/services/types/generic.js +55 -49
- package/dist/services/types/tracking.d.ts +24 -24
- package/dist/services/types/tracking.js +30 -28
- package/dist/services/types/userProfiles.d.ts +60 -60
- package/dist/services/types/userProfiles.js +48 -45
- package/dist/services/types/users.d.ts +108 -114
- package/dist/services/types/users.js +56 -59
- package/dist/services/updateSqlRequests.js +0 -1
- package/dist/types.d.ts +3 -0
- package/dist/types.js +2 -0
- package/eslint.config.js +28 -28
- package/package.json +1 -1
- package/src/components/data/DataGrid/DataGridEditableCell/index.tsx +7 -5
- package/src/components/data/DataGrid/DataGridHeader.tsx +4 -16
- package/src/components/data/DataGrid/DataGridRowTemplate.tsx +2 -4
- package/src/components/data/DataGrid/hooks/useDataGrid.tsx +6 -3
- package/src/components/data/DataGrid/hooks/useDataGridChangedRows.ts +32 -65
- package/src/components/data/DataGrid/styles.ts +2 -9
- package/src/components/data/DataGrid/types.ts +5 -5
- package/src/components/data/SqlRequestDataGrid/helpers/columns.tsx +3 -4
- package/src/components/layout/Modal/styles.ts +2 -6
- package/src/components/search/QuickSearchBar.tsx +7 -11
- package/tsconfig.tsbuildinfo +1 -1
- package/src/components/data/DataGrid/hooks/useRefreshModal.tsx +0 -48
|
@@ -15,58 +15,68 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
var
|
|
36
|
+
exports.resetPasswordResponseDtoSchema = exports.resetPasswordRequestDtoSchema = exports.checkRecoveryKeyResponseDtoSchema = exports.checkRecoveryKeyRequestDtoSchema = exports.sendRecoveryKeyResponseDtoSchema = exports.sendRecoveryKeyRequestDtoSchema = exports.authenticateResponseDtoSchema = exports.authenticateRequestDtoSchema = exports.logoutResponseDtoSchema = exports.logoutRequestDtoSchema = exports.loginResponseDtoSchema = exports.loginRequestDtoSchema = void 0;
|
|
37
|
+
var z = __importStar(require("zod"));
|
|
28
38
|
var users_1 = require("./users");
|
|
29
|
-
exports.
|
|
30
|
-
username:
|
|
31
|
-
password:
|
|
32
|
-
}
|
|
33
|
-
exports.
|
|
34
|
-
status:
|
|
35
|
-
token:
|
|
36
|
-
user:
|
|
37
|
-
}
|
|
39
|
+
exports.loginRequestDtoSchema = z.object({
|
|
40
|
+
username: z.string(),
|
|
41
|
+
password: z.string(),
|
|
42
|
+
});
|
|
43
|
+
exports.loginResponseDtoSchema = z.object({
|
|
44
|
+
status: z.number(),
|
|
45
|
+
token: z.string(),
|
|
46
|
+
user: users_1.userDtoSchema.nullable(),
|
|
47
|
+
});
|
|
38
48
|
/*****/
|
|
39
|
-
exports.
|
|
40
|
-
exports.
|
|
41
|
-
status:
|
|
42
|
-
}
|
|
49
|
+
exports.logoutRequestDtoSchema = z.object({});
|
|
50
|
+
exports.logoutResponseDtoSchema = z.object({
|
|
51
|
+
status: z.number(),
|
|
52
|
+
});
|
|
43
53
|
/*****/
|
|
44
|
-
exports.
|
|
45
|
-
token:
|
|
46
|
-
}
|
|
47
|
-
exports.
|
|
48
|
-
status:
|
|
49
|
-
user:
|
|
50
|
-
}
|
|
54
|
+
exports.authenticateRequestDtoSchema = z.object({
|
|
55
|
+
token: z.string(),
|
|
56
|
+
});
|
|
57
|
+
exports.authenticateResponseDtoSchema = z.object({
|
|
58
|
+
status: z.number(),
|
|
59
|
+
user: users_1.userDtoSchema.nullable(),
|
|
60
|
+
});
|
|
51
61
|
/*****/
|
|
52
|
-
exports.
|
|
53
|
-
email:
|
|
54
|
-
}
|
|
55
|
-
exports.
|
|
56
|
-
status:
|
|
57
|
-
}
|
|
62
|
+
exports.sendRecoveryKeyRequestDtoSchema = z.object({
|
|
63
|
+
email: z.string(),
|
|
64
|
+
});
|
|
65
|
+
exports.sendRecoveryKeyResponseDtoSchema = z.object({
|
|
66
|
+
status: z.number(),
|
|
67
|
+
});
|
|
58
68
|
/*****/
|
|
59
|
-
exports.
|
|
60
|
-
key:
|
|
61
|
-
}
|
|
62
|
-
exports.
|
|
63
|
-
status:
|
|
64
|
-
}
|
|
69
|
+
exports.checkRecoveryKeyRequestDtoSchema = z.object({
|
|
70
|
+
key: z.string(),
|
|
71
|
+
});
|
|
72
|
+
exports.checkRecoveryKeyResponseDtoSchema = z.object({
|
|
73
|
+
status: z.number(),
|
|
74
|
+
});
|
|
65
75
|
/*****/
|
|
66
|
-
exports.
|
|
67
|
-
key:
|
|
68
|
-
password:
|
|
69
|
-
}
|
|
70
|
-
exports.
|
|
71
|
-
status:
|
|
72
|
-
}
|
|
76
|
+
exports.resetPasswordRequestDtoSchema = z.object({
|
|
77
|
+
key: z.string(),
|
|
78
|
+
password: z.string(),
|
|
79
|
+
});
|
|
80
|
+
exports.resetPasswordResponseDtoSchema = z.object({
|
|
81
|
+
status: z.number(),
|
|
82
|
+
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
export declare const
|
|
3
|
-
id:
|
|
4
|
-
}>;
|
|
5
|
-
export type BaseModelDTO =
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
export declare const baseModelDtoSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodUUID;
|
|
4
|
+
}, z.core.$strip>;
|
|
5
|
+
export type BaseModelDTO = z.infer<typeof baseModelDtoSchema>;
|
|
6
6
|
export declare const UUID_REGEX: RegExp;
|
|
@@ -15,17 +15,27 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.UUID_REGEX = exports.
|
|
27
|
-
var
|
|
28
|
-
exports.
|
|
29
|
-
id:
|
|
36
|
+
exports.UUID_REGEX = exports.baseModelDtoSchema = void 0;
|
|
37
|
+
var z = __importStar(require("zod"));
|
|
38
|
+
exports.baseModelDtoSchema = z.object({
|
|
39
|
+
id: z.uuid(),
|
|
30
40
|
});
|
|
31
41
|
exports.UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
@@ -1,44 +1,43 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
export declare const
|
|
3
|
-
id:
|
|
4
|
-
}>;
|
|
5
|
-
export declare const
|
|
6
|
-
status:
|
|
7
|
-
data:
|
|
8
|
-
}>;
|
|
9
|
-
export type GenericGetRequestDTO =
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
export declare const genericGetRequestDtoSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
}, z.core.$strip>;
|
|
5
|
+
export declare const getGenericGetResponseDtoSchema: <T extends z.ZodType>(schema: T) => z.ZodObject<{
|
|
6
|
+
status: z.ZodNumber;
|
|
7
|
+
data: T;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
export type GenericGetRequestDTO = z.infer<typeof genericGetRequestDtoSchema>;
|
|
10
10
|
/*****/
|
|
11
|
-
export declare const
|
|
12
|
-
export declare const
|
|
13
|
-
status:
|
|
14
|
-
data:
|
|
15
|
-
}>;
|
|
16
|
-
export type GenericGetAllRequestDTO =
|
|
11
|
+
export declare const genericGetAllRequestDtoSchema: z.ZodObject<{}, z.core.$strip>;
|
|
12
|
+
export declare const getGenericGetAllResponseDtoSchema: <T extends z.ZodType>(schema: T) => z.ZodObject<{
|
|
13
|
+
status: z.ZodNumber;
|
|
14
|
+
data: z.ZodArray<T>;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
export type GenericGetAllRequestDTO = z.infer<typeof genericGetAllRequestDtoSchema>;
|
|
17
17
|
/*****/
|
|
18
|
-
export declare const
|
|
19
|
-
data:
|
|
20
|
-
}>;
|
|
21
|
-
export declare const
|
|
22
|
-
status:
|
|
23
|
-
data:
|
|
24
|
-
}>;
|
|
18
|
+
export declare const getGenericSaveRequestDtoSchema: <T extends z.ZodType>(schema: T) => z.ZodObject<{
|
|
19
|
+
data: T;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
export declare const getGenericSaveResponseDtoSchema: <T extends z.ZodType>(schema: T) => z.ZodObject<{
|
|
22
|
+
status: z.ZodNumber;
|
|
23
|
+
data: T;
|
|
24
|
+
}, z.core.$strip>;
|
|
25
25
|
/*****/
|
|
26
|
-
export declare const
|
|
27
|
-
ids:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
export type
|
|
35
|
-
export type GenericArchiveResponseDTO = t.TypeOf<typeof genericArchiveResponseDtoCodec>;
|
|
26
|
+
export declare const genericArchiveRequestDtoSchema: z.ZodObject<{
|
|
27
|
+
ids: z.ZodArray<z.ZodString>;
|
|
28
|
+
archived: z.ZodOptional<z.ZodBoolean>;
|
|
29
|
+
}, z.core.$strip>;
|
|
30
|
+
export declare const genericArchiveResponseDtoSchema: z.ZodObject<{
|
|
31
|
+
status: z.ZodArray<z.ZodNumber>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
export type GenericArchiveRequestDTO = z.infer<typeof genericArchiveRequestDtoSchema>;
|
|
34
|
+
export type GenericArchiveResponseDTO = z.infer<typeof genericArchiveResponseDtoSchema>;
|
|
36
35
|
/*****/
|
|
37
|
-
export declare const
|
|
38
|
-
ids:
|
|
39
|
-
}>;
|
|
40
|
-
export declare const
|
|
41
|
-
status:
|
|
42
|
-
}>;
|
|
43
|
-
export type GenericDeleteRequestDTO =
|
|
44
|
-
export type GenericDeleteResponseDTO =
|
|
36
|
+
export declare const genericDeleteRequestDtoSchema: z.ZodObject<{
|
|
37
|
+
ids: z.ZodArray<z.ZodString>;
|
|
38
|
+
}, z.core.$strip>;
|
|
39
|
+
export declare const genericDeleteResponseDtoSchema: z.ZodObject<{
|
|
40
|
+
status: z.ZodArray<z.ZodNumber>;
|
|
41
|
+
}, z.core.$strip>;
|
|
42
|
+
export type GenericDeleteRequestDTO = z.infer<typeof genericDeleteRequestDtoSchema>;
|
|
43
|
+
export type GenericDeleteResponseDTO = z.infer<typeof genericDeleteResponseDtoSchema>;
|
|
@@ -15,65 +15,71 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
var
|
|
28
|
-
exports.
|
|
29
|
-
id:
|
|
30
|
-
}
|
|
31
|
-
var
|
|
32
|
-
return
|
|
33
|
-
status:
|
|
34
|
-
data:
|
|
36
|
+
exports.genericDeleteResponseDtoSchema = exports.genericDeleteRequestDtoSchema = exports.genericArchiveResponseDtoSchema = exports.genericArchiveRequestDtoSchema = exports.getGenericSaveResponseDtoSchema = exports.getGenericSaveRequestDtoSchema = exports.getGenericGetAllResponseDtoSchema = exports.genericGetAllRequestDtoSchema = exports.getGenericGetResponseDtoSchema = exports.genericGetRequestDtoSchema = void 0;
|
|
37
|
+
var z = __importStar(require("zod"));
|
|
38
|
+
exports.genericGetRequestDtoSchema = z.object({
|
|
39
|
+
id: z.string(),
|
|
40
|
+
});
|
|
41
|
+
var getGenericGetResponseDtoSchema = function (schema) {
|
|
42
|
+
return z.object({
|
|
43
|
+
status: z.number(),
|
|
44
|
+
data: schema,
|
|
35
45
|
});
|
|
36
46
|
};
|
|
37
|
-
exports.
|
|
47
|
+
exports.getGenericGetResponseDtoSchema = getGenericGetResponseDtoSchema;
|
|
38
48
|
/*****/
|
|
39
|
-
exports.
|
|
40
|
-
var
|
|
41
|
-
return
|
|
42
|
-
status:
|
|
43
|
-
data:
|
|
49
|
+
exports.genericGetAllRequestDtoSchema = z.object({});
|
|
50
|
+
var getGenericGetAllResponseDtoSchema = function (schema) {
|
|
51
|
+
return z.object({
|
|
52
|
+
status: z.number(),
|
|
53
|
+
data: z.array(schema),
|
|
44
54
|
});
|
|
45
55
|
};
|
|
46
|
-
exports.
|
|
56
|
+
exports.getGenericGetAllResponseDtoSchema = getGenericGetAllResponseDtoSchema;
|
|
47
57
|
/*****/
|
|
48
|
-
var
|
|
49
|
-
return
|
|
50
|
-
data:
|
|
58
|
+
var getGenericSaveRequestDtoSchema = function (schema) {
|
|
59
|
+
return z.object({
|
|
60
|
+
data: schema,
|
|
51
61
|
});
|
|
52
62
|
};
|
|
53
|
-
exports.
|
|
54
|
-
var
|
|
55
|
-
return
|
|
56
|
-
status:
|
|
57
|
-
data:
|
|
63
|
+
exports.getGenericSaveRequestDtoSchema = getGenericSaveRequestDtoSchema;
|
|
64
|
+
var getGenericSaveResponseDtoSchema = function (schema) {
|
|
65
|
+
return z.object({
|
|
66
|
+
status: z.number(),
|
|
67
|
+
data: schema,
|
|
58
68
|
});
|
|
59
69
|
};
|
|
60
|
-
exports.
|
|
70
|
+
exports.getGenericSaveResponseDtoSchema = getGenericSaveResponseDtoSchema;
|
|
61
71
|
/*****/
|
|
62
|
-
exports.
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
], 'GenericArchiveRequestDTO');
|
|
70
|
-
exports.genericArchiveResponseDtoCodec = t.type({
|
|
71
|
-
status: t.array(t.number),
|
|
72
|
-
}, 'GenericArchiveResponseDTO');
|
|
72
|
+
exports.genericArchiveRequestDtoSchema = z.object({
|
|
73
|
+
ids: z.array(z.string()),
|
|
74
|
+
archived: z.boolean().optional(),
|
|
75
|
+
});
|
|
76
|
+
exports.genericArchiveResponseDtoSchema = z.object({
|
|
77
|
+
status: z.array(z.number()),
|
|
78
|
+
});
|
|
73
79
|
/*****/
|
|
74
|
-
exports.
|
|
75
|
-
ids:
|
|
76
|
-
}
|
|
77
|
-
exports.
|
|
78
|
-
status:
|
|
79
|
-
}
|
|
80
|
+
exports.genericDeleteRequestDtoSchema = z.object({
|
|
81
|
+
ids: z.array(z.string()),
|
|
82
|
+
});
|
|
83
|
+
exports.genericDeleteResponseDtoSchema = z.object({
|
|
84
|
+
status: z.array(z.number()),
|
|
85
|
+
});
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}>;
|
|
7
|
-
export type TrackingEventDTO =
|
|
8
|
-
export declare const
|
|
9
|
-
data:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}>;
|
|
14
|
-
}>;
|
|
15
|
-
export declare const
|
|
16
|
-
status:
|
|
17
|
-
data:
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}>;
|
|
22
|
-
}>;
|
|
23
|
-
export type SendTrackingEventRequestDTO =
|
|
24
|
-
export type SendTrackingEventResponseDTO =
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
export declare const trackingEventDtoSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodUUID;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
details: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
export type TrackingEventDTO = z.infer<typeof trackingEventDtoSchema>;
|
|
8
|
+
export declare const sendTrackingEventRequestDtoSchema: z.ZodObject<{
|
|
9
|
+
data: z.ZodObject<{
|
|
10
|
+
id: z.ZodUUID;
|
|
11
|
+
name: z.ZodString;
|
|
12
|
+
details: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
|
+
export declare const sendTrackingEventResponseDtoSchema: z.ZodObject<{
|
|
16
|
+
status: z.ZodNumber;
|
|
17
|
+
data: z.ZodObject<{
|
|
18
|
+
id: z.ZodUUID;
|
|
19
|
+
name: z.ZodString;
|
|
20
|
+
details: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
}, z.core.$strip>;
|
|
23
|
+
export type SendTrackingEventRequestDTO = z.infer<typeof sendTrackingEventRequestDtoSchema>;
|
|
24
|
+
export type SendTrackingEventResponseDTO = z.infer<typeof sendTrackingEventResponseDtoSchema>;
|
|
@@ -1,15 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
|
3
|
-
__assign = Object.assign || function(t) {
|
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
-
s = arguments[i];
|
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
-
t[p] = s[p];
|
|
8
|
-
}
|
|
9
|
-
return t;
|
|
10
|
-
};
|
|
11
|
-
return __assign.apply(this, arguments);
|
|
12
|
-
};
|
|
13
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
14
3
|
if (k2 === undefined) k2 = k;
|
|
15
4
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
@@ -26,22 +15,35 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
26
15
|
}) : function(o, v) {
|
|
27
16
|
o["default"] = v;
|
|
28
17
|
});
|
|
29
|
-
var __importStar = (this && this.__importStar) || function (
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
36
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
37
|
-
exports.
|
|
38
|
-
var
|
|
36
|
+
exports.sendTrackingEventResponseDtoSchema = exports.sendTrackingEventRequestDtoSchema = exports.trackingEventDtoSchema = void 0;
|
|
37
|
+
var z = __importStar(require("zod"));
|
|
39
38
|
var base_1 = require("./base");
|
|
40
|
-
exports.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
44
|
-
exports.
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
39
|
+
exports.trackingEventDtoSchema = base_1.baseModelDtoSchema.extend({
|
|
40
|
+
name: z.string(),
|
|
41
|
+
details: z.record(z.string(), z.union([z.string(), z.number(), z.boolean(), z.null()])),
|
|
42
|
+
});
|
|
43
|
+
exports.sendTrackingEventRequestDtoSchema = z.object({
|
|
44
|
+
data: exports.trackingEventDtoSchema,
|
|
45
|
+
});
|
|
46
|
+
exports.sendTrackingEventResponseDtoSchema = z.object({
|
|
47
|
+
status: z.number(),
|
|
48
|
+
data: exports.trackingEventDtoSchema,
|
|
49
|
+
});
|
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
}>;
|
|
8
|
-
export type UserProfileDTO =
|
|
1
|
+
import * as z from 'zod';
|
|
2
|
+
export declare const userProfileDtoSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodUUID;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
6
|
+
isAdmin: z.ZodBoolean;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
export type UserProfileDTO = z.infer<typeof userProfileDtoSchema>;
|
|
9
9
|
/*****/
|
|
10
|
-
export declare const
|
|
11
|
-
id:
|
|
12
|
-
}>;
|
|
13
|
-
export declare const
|
|
14
|
-
status:
|
|
15
|
-
data:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}>;
|
|
21
|
-
}>;
|
|
22
|
-
export type GetUserProfileRequestDTO =
|
|
23
|
-
export type GetUserProfileResponseDTO =
|
|
10
|
+
export declare const getUserProfileRequestDtoSchema: z.ZodObject<{
|
|
11
|
+
id: z.ZodString;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
export declare const getUserProfileResponseDtoSchema: z.ZodObject<{
|
|
14
|
+
status: z.ZodNumber;
|
|
15
|
+
data: z.ZodObject<{
|
|
16
|
+
id: z.ZodUUID;
|
|
17
|
+
name: z.ZodString;
|
|
18
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
19
|
+
isAdmin: z.ZodBoolean;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
}, z.core.$strip>;
|
|
22
|
+
export type GetUserProfileRequestDTO = z.infer<typeof getUserProfileRequestDtoSchema>;
|
|
23
|
+
export type GetUserProfileResponseDTO = z.infer<typeof getUserProfileResponseDtoSchema>;
|
|
24
24
|
/*****/
|
|
25
|
-
export declare const
|
|
26
|
-
export declare const
|
|
27
|
-
data:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}>>;
|
|
33
|
-
}>;
|
|
34
|
-
export type GetAllUserProfilesRequestDTO =
|
|
35
|
-
export type GetAllUserProfilesResponseDTO =
|
|
25
|
+
export declare const getAllUserProfilesRequestDtoSchema: z.ZodObject<{}, z.core.$strip>;
|
|
26
|
+
export declare const getAllUserProfilesResponseDtoSchema: z.ZodObject<{
|
|
27
|
+
data: z.ZodArray<z.ZodObject<{
|
|
28
|
+
id: z.ZodUUID;
|
|
29
|
+
name: z.ZodString;
|
|
30
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
31
|
+
isAdmin: z.ZodBoolean;
|
|
32
|
+
}, z.core.$strip>>;
|
|
33
|
+
}, z.core.$strip>;
|
|
34
|
+
export type GetAllUserProfilesRequestDTO = z.infer<typeof getAllUserProfilesRequestDtoSchema>;
|
|
35
|
+
export type GetAllUserProfilesResponseDTO = z.infer<typeof getAllUserProfilesResponseDtoSchema>;
|
|
36
36
|
/*****/
|
|
37
|
-
export declare const
|
|
38
|
-
data:
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}>;
|
|
44
|
-
}>;
|
|
45
|
-
export declare const
|
|
46
|
-
status:
|
|
47
|
-
data:
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}>;
|
|
53
|
-
}>;
|
|
54
|
-
export type SaveUserProfileRequestDTO =
|
|
55
|
-
export type SaveUserProfileResponseDTO =
|
|
37
|
+
export declare const saveUserProfileRequestDtoSchema: z.ZodObject<{
|
|
38
|
+
data: z.ZodObject<{
|
|
39
|
+
id: z.ZodUUID;
|
|
40
|
+
name: z.ZodString;
|
|
41
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
42
|
+
isAdmin: z.ZodBoolean;
|
|
43
|
+
}, z.core.$strip>;
|
|
44
|
+
}, z.core.$strip>;
|
|
45
|
+
export declare const saveUserProfileResponseDtoSchema: z.ZodObject<{
|
|
46
|
+
status: z.ZodNumber;
|
|
47
|
+
data: z.ZodObject<{
|
|
48
|
+
id: z.ZodUUID;
|
|
49
|
+
name: z.ZodString;
|
|
50
|
+
permissions: z.ZodArray<z.ZodString>;
|
|
51
|
+
isAdmin: z.ZodBoolean;
|
|
52
|
+
}, z.core.$strip>;
|
|
53
|
+
}, z.core.$strip>;
|
|
54
|
+
export type SaveUserProfileRequestDTO = z.infer<typeof saveUserProfileRequestDtoSchema>;
|
|
55
|
+
export type SaveUserProfileResponseDTO = z.infer<typeof saveUserProfileResponseDtoSchema>;
|
|
56
56
|
/*****/
|
|
57
|
-
export declare const
|
|
58
|
-
id:
|
|
59
|
-
}>;
|
|
60
|
-
export declare const
|
|
61
|
-
status:
|
|
62
|
-
}>;
|
|
63
|
-
export type DeleteUserProfileRequestDTO =
|
|
64
|
-
export type DeleteUserProfileResponseDTO =
|
|
57
|
+
export declare const deleteUserProfileRequestDtoSchema: z.ZodObject<{
|
|
58
|
+
id: z.ZodString;
|
|
59
|
+
}, z.core.$strip>;
|
|
60
|
+
export declare const deleteUserProfileResponseDtoSchema: z.ZodObject<{
|
|
61
|
+
status: z.ZodNumber;
|
|
62
|
+
}, z.core.$strip>;
|
|
63
|
+
export type DeleteUserProfileRequestDTO = z.infer<typeof deleteUserProfileRequestDtoSchema>;
|
|
64
|
+
export type DeleteUserProfileResponseDTO = z.infer<typeof deleteUserProfileResponseDtoSchema>;
|