@cakemail-org/ui-components-v2 2.2.89 → 2.2.91
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/cjs/data/theme/MuiAvatar.d.ts +87 -55
- package/dist/cjs/data/theme/MuiMenuItem.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTableCell.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTableHead.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTablePagination.d.ts +87 -55
- package/dist/cjs/data/theme/MuiTextField.d.ts +348 -220
- package/dist/cjs/data/theme/MuiTooltip.d.ts +87 -55
- package/dist/cjs/factories/automations/index.d.ts +1 -1
- package/dist/cjs/factories/automations/types.d.ts +1 -1
- package/dist/cjs/index.js +166 -91
- package/dist/cjs/models/automation/index.d.ts +2 -2
- package/dist/cjs/services/automations/index.d.ts +9 -9
- package/dist/cjs/services/domains/index.d.ts +2 -1
- package/dist/esm/data/theme/MuiAvatar.d.ts +87 -55
- package/dist/esm/data/theme/MuiMenuItem.d.ts +87 -55
- package/dist/esm/data/theme/MuiTableCell.d.ts +87 -55
- package/dist/esm/data/theme/MuiTableHead.d.ts +87 -55
- package/dist/esm/data/theme/MuiTablePagination.d.ts +87 -55
- package/dist/esm/data/theme/MuiTextField.d.ts +348 -220
- package/dist/esm/data/theme/MuiTooltip.d.ts +87 -55
- package/dist/esm/factories/automations/index.d.ts +1 -1
- package/dist/esm/factories/automations/types.d.ts +1 -1
- package/dist/esm/index.js +167 -92
- package/dist/esm/models/automation/index.d.ts +2 -2
- package/dist/esm/services/automations/index.d.ts +9 -9
- package/dist/esm/services/domains/index.d.ts +2 -1
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { TAutomation } from "../../factories/automations/types";
|
|
2
|
-
import { TAutomationEmailContent, TSingleAutomationStats } from "./types";
|
|
3
2
|
import { TDeleteApiResource } from "../../types";
|
|
3
|
+
import { TAutomationEmailContent, TSingleAutomationStats } from "./types";
|
|
4
4
|
export declare class AutomationModel {
|
|
5
|
-
readonly id:
|
|
5
|
+
readonly id: string;
|
|
6
6
|
name: string;
|
|
7
7
|
description: string;
|
|
8
8
|
status: "active" | "inactive" | "deleted";
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TAutomation, TAutomationStatsParam } from "../../factories/automations/types";
|
|
2
2
|
import { TGenericListParams } from "../../types";
|
|
3
3
|
export declare function getAllAutomationStats({ ...options }: TAutomationStatsParam): Promise<any>;
|
|
4
4
|
export declare function listAutomations({ ...options }: TGenericListParams): Promise<any>;
|
|
5
5
|
export declare function listWorkflows({ ...options }: TGenericListParams): Promise<any>;
|
|
6
6
|
export declare function getAutomation({ id }: {
|
|
7
|
-
id:
|
|
7
|
+
id: string;
|
|
8
8
|
}): Promise<any>;
|
|
9
9
|
export declare function deleteAutomation({ id }: {
|
|
10
|
-
id:
|
|
10
|
+
id: string;
|
|
11
11
|
}): Promise<any>;
|
|
12
12
|
export declare function getAutomationExecutionsCount({ id }: {
|
|
13
13
|
id: string;
|
|
14
14
|
}): Promise<any>;
|
|
15
15
|
export declare function updateAutomation({ id, data }: {
|
|
16
|
-
id:
|
|
16
|
+
id: string;
|
|
17
17
|
data: Partial<TAutomation>;
|
|
18
18
|
}): Promise<any>;
|
|
19
19
|
export declare function deleteWorkflow({ id }: {
|
|
20
|
-
id:
|
|
20
|
+
id: string;
|
|
21
21
|
}): Promise<any>;
|
|
22
22
|
export declare function updateWorkflow({ id, data }: {
|
|
23
|
-
id:
|
|
23
|
+
id: string;
|
|
24
24
|
data: Partial<TAutomation>;
|
|
25
25
|
}): Promise<any>;
|
|
26
26
|
export declare function getAutomationStats({ id, path }: {
|
|
27
|
-
id:
|
|
27
|
+
id: string;
|
|
28
28
|
path: string;
|
|
29
29
|
}): Promise<any>;
|
|
30
30
|
export declare function getAutomationEmailContent({ contentId }: {
|
|
31
31
|
contentId: string;
|
|
32
32
|
}): Promise<any>;
|
|
33
33
|
export declare function deleteAnyAutomation({ id, v1 }: {
|
|
34
|
-
id:
|
|
34
|
+
id: string;
|
|
35
35
|
v1?: boolean;
|
|
36
36
|
}): Promise<any>;
|
|
37
37
|
export declare function updateAnyAutomation({ id, data, v1 }: {
|
|
38
|
-
id:
|
|
38
|
+
id: string;
|
|
39
39
|
data: Partial<TAutomation>;
|
|
40
40
|
v1?: boolean;
|
|
41
41
|
}): Promise<any>;
|
|
@@ -8,7 +8,8 @@ export declare function isDomainValidService({ domain, useImpersonationTree, que
|
|
|
8
8
|
useImpersonationTree?: boolean;
|
|
9
9
|
query?: any;
|
|
10
10
|
}): Promise<any>;
|
|
11
|
-
export declare function listDkimService({ id }?: {
|
|
11
|
+
export declare function listDkimService({ id, useImpersonationTree }?: {
|
|
12
12
|
id?: TNumStr;
|
|
13
|
+
useImpersonationTree?: boolean;
|
|
13
14
|
}): Promise<TGenericListReturn<TDkimKey>>;
|
|
14
15
|
export * from "./types";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cakemail-org/ui-components-v2",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.91",
|
|
4
4
|
"description": "ui library kit made with material UI",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"classnames": "^2.5.1",
|
|
77
77
|
"country-list": "^2.3.0",
|
|
78
78
|
"moment": "^2.30.1",
|
|
79
|
-
"posthog-js": "
|
|
79
|
+
"posthog-js": "1.368.2",
|
|
80
80
|
"react": "^19.1.0",
|
|
81
81
|
"react-colorful": "^5.6.1",
|
|
82
82
|
"react-dom": "^19.1.0",
|