@hawk.so/types 0.5.4 → 0.5.5
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/build/index.d.ts +32 -32
- package/build/index.js +32 -0
- package/eslint.config.mjs +1 -0
- package/index.ts +36 -36
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './src/auth/tokensPair';
|
|
2
2
|
export * from './src/base/businessOperation/businessOperation';
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
export
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
export
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export
|
|
29
|
-
export
|
|
30
|
-
export
|
|
3
|
+
export * from './src/billing/planProlongrationPayload';
|
|
4
|
+
export * from './src/base/event/affectedUser';
|
|
5
|
+
export * from './src/base/event/backtraceFrame';
|
|
6
|
+
export * from './src/base/event/breadcrumb';
|
|
7
|
+
export * from './src/base/event/event';
|
|
8
|
+
export * from './src/base/event/sourceCodeLine';
|
|
9
|
+
export * from './src/base/event/addons';
|
|
10
|
+
export * from './src/base/integrations/integrationToken';
|
|
11
|
+
export * from './src/base/project/ProjectTaskManager';
|
|
12
|
+
export * from './src/dbScheme/businessOperation';
|
|
13
|
+
export * from './src/dbScheme/groupedEvent';
|
|
14
|
+
export * from './src/dbScheme/notificationsChannels';
|
|
15
|
+
export * from './src/dbScheme/notificationsChannelSettings';
|
|
16
|
+
export * from './src/dbScheme/membership';
|
|
17
|
+
export * from './src/dbScheme/userProjectsLastVisit';
|
|
18
|
+
export * from './src/dbScheme/plan';
|
|
19
|
+
export * from './src/dbScheme/project';
|
|
20
|
+
export * from './src/dbScheme/projectNotificationsRule';
|
|
21
|
+
export * from './src/dbScheme/release';
|
|
22
|
+
export * from './src/dbScheme/repetition';
|
|
23
|
+
export * from './src/dbScheme/sourceMap';
|
|
24
|
+
export * from './src/dbScheme/user';
|
|
25
|
+
export * from './src/dbScheme/userNotifications';
|
|
26
|
+
export * from './src/dbScheme/workspace';
|
|
27
|
+
export * from './src/dbScheme/bankCard';
|
|
28
|
+
export * from './src/dbScheme/sso';
|
|
29
|
+
export * from './src/dbScheme/projectEventGroupingPattern';
|
|
30
|
+
export * from './src/notifications/createProjectNotifications';
|
|
31
31
|
export * from './src/notifications/receiveTypes';
|
|
32
|
-
export
|
|
32
|
+
export * from './src/notifications/updateProjectNotifications';
|
|
33
33
|
export * from './src/notifications/userNotification';
|
|
34
|
-
export
|
|
35
|
-
export
|
|
34
|
+
export * from './src/catchers/catcher-message';
|
|
35
|
+
export * from './src/utils';
|
package/build/index.js
CHANGED
|
@@ -14,6 +14,38 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./src/auth/tokensPair"), exports);
|
|
17
18
|
__exportStar(require("./src/base/businessOperation/businessOperation"), exports);
|
|
19
|
+
__exportStar(require("./src/billing/planProlongrationPayload"), exports);
|
|
20
|
+
__exportStar(require("./src/base/event/affectedUser"), exports);
|
|
21
|
+
__exportStar(require("./src/base/event/backtraceFrame"), exports);
|
|
22
|
+
__exportStar(require("./src/base/event/breadcrumb"), exports);
|
|
23
|
+
__exportStar(require("./src/base/event/event"), exports);
|
|
24
|
+
__exportStar(require("./src/base/event/sourceCodeLine"), exports);
|
|
25
|
+
__exportStar(require("./src/base/event/addons"), exports);
|
|
26
|
+
__exportStar(require("./src/base/integrations/integrationToken"), exports);
|
|
27
|
+
__exportStar(require("./src/base/project/ProjectTaskManager"), exports);
|
|
28
|
+
__exportStar(require("./src/dbScheme/businessOperation"), exports);
|
|
29
|
+
__exportStar(require("./src/dbScheme/groupedEvent"), exports);
|
|
30
|
+
__exportStar(require("./src/dbScheme/notificationsChannels"), exports);
|
|
31
|
+
__exportStar(require("./src/dbScheme/notificationsChannelSettings"), exports);
|
|
32
|
+
__exportStar(require("./src/dbScheme/membership"), exports);
|
|
33
|
+
__exportStar(require("./src/dbScheme/userProjectsLastVisit"), exports);
|
|
34
|
+
__exportStar(require("./src/dbScheme/plan"), exports);
|
|
35
|
+
__exportStar(require("./src/dbScheme/project"), exports);
|
|
36
|
+
__exportStar(require("./src/dbScheme/projectNotificationsRule"), exports);
|
|
37
|
+
__exportStar(require("./src/dbScheme/release"), exports);
|
|
38
|
+
__exportStar(require("./src/dbScheme/repetition"), exports);
|
|
39
|
+
__exportStar(require("./src/dbScheme/sourceMap"), exports);
|
|
40
|
+
__exportStar(require("./src/dbScheme/user"), exports);
|
|
41
|
+
__exportStar(require("./src/dbScheme/userNotifications"), exports);
|
|
42
|
+
__exportStar(require("./src/dbScheme/workspace"), exports);
|
|
43
|
+
__exportStar(require("./src/dbScheme/bankCard"), exports);
|
|
44
|
+
__exportStar(require("./src/dbScheme/sso"), exports);
|
|
45
|
+
__exportStar(require("./src/dbScheme/projectEventGroupingPattern"), exports);
|
|
46
|
+
__exportStar(require("./src/notifications/createProjectNotifications"), exports);
|
|
18
47
|
__exportStar(require("./src/notifications/receiveTypes"), exports);
|
|
48
|
+
__exportStar(require("./src/notifications/updateProjectNotifications"), exports);
|
|
19
49
|
__exportStar(require("./src/notifications/userNotification"), exports);
|
|
50
|
+
__exportStar(require("./src/catchers/catcher-message"), exports);
|
|
51
|
+
__exportStar(require("./src/utils"), exports);
|
package/eslint.config.mjs
CHANGED
|
@@ -17,6 +17,7 @@ export default [
|
|
|
17
17
|
'object-curly-spacing': ['error', 'always'],
|
|
18
18
|
'@typescript-eslint/no-empty-interface': 'off',
|
|
19
19
|
'@typescript-eslint/no-empty-object-type': ['error', { allowInterfaces: 'always' }],
|
|
20
|
+
'@typescript-eslint/consistent-type-exports': 'off',
|
|
20
21
|
'@typescript-eslint/naming-convention': [
|
|
21
22
|
'error',
|
|
22
23
|
{
|
package/index.ts
CHANGED
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './src/auth/tokensPair';
|
|
2
2
|
|
|
3
3
|
export * from './src/base/businessOperation/businessOperation';
|
|
4
4
|
|
|
5
|
-
export
|
|
6
|
-
|
|
7
|
-
export
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
12
|
-
export
|
|
13
|
-
|
|
14
|
-
export
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
export
|
|
18
|
-
export
|
|
19
|
-
export
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export
|
|
29
|
-
export
|
|
30
|
-
export
|
|
31
|
-
export
|
|
32
|
-
export
|
|
33
|
-
export
|
|
34
|
-
export
|
|
35
|
-
|
|
36
|
-
export
|
|
5
|
+
export * from './src/billing/planProlongrationPayload';
|
|
6
|
+
|
|
7
|
+
export * from './src/base/event/affectedUser';
|
|
8
|
+
export * from './src/base/event/backtraceFrame';
|
|
9
|
+
export * from './src/base/event/breadcrumb';
|
|
10
|
+
export * from './src/base/event/event';
|
|
11
|
+
export * from './src/base/event/sourceCodeLine';
|
|
12
|
+
export * from './src/base/event/addons';
|
|
13
|
+
|
|
14
|
+
export * from './src/base/integrations/integrationToken';
|
|
15
|
+
export * from './src/base/project/ProjectTaskManager';
|
|
16
|
+
|
|
17
|
+
export * from './src/dbScheme/businessOperation';
|
|
18
|
+
export * from './src/dbScheme/groupedEvent';
|
|
19
|
+
export * from './src/dbScheme/notificationsChannels';
|
|
20
|
+
export * from './src/dbScheme/notificationsChannelSettings';
|
|
21
|
+
export * from './src/dbScheme/membership';
|
|
22
|
+
export * from './src/dbScheme/userProjectsLastVisit';
|
|
23
|
+
export * from './src/dbScheme/plan';
|
|
24
|
+
export * from './src/dbScheme/project';
|
|
25
|
+
export * from './src/dbScheme/projectNotificationsRule';
|
|
26
|
+
export * from './src/dbScheme/release';
|
|
27
|
+
export * from './src/dbScheme/repetition';
|
|
28
|
+
export * from './src/dbScheme/sourceMap';
|
|
29
|
+
export * from './src/dbScheme/user';
|
|
30
|
+
export * from './src/dbScheme/userNotifications';
|
|
31
|
+
export * from './src/dbScheme/workspace';
|
|
32
|
+
export * from './src/dbScheme/bankCard';
|
|
33
|
+
export * from './src/dbScheme/sso';
|
|
34
|
+
export * from './src/dbScheme/projectEventGroupingPattern';
|
|
35
|
+
|
|
36
|
+
export * from './src/notifications/createProjectNotifications';
|
|
37
37
|
export * from './src/notifications/receiveTypes';
|
|
38
|
-
export
|
|
38
|
+
export * from './src/notifications/updateProjectNotifications';
|
|
39
39
|
export * from './src/notifications/userNotification';
|
|
40
40
|
|
|
41
|
-
export
|
|
41
|
+
export * from './src/catchers/catcher-message';
|
|
42
42
|
|
|
43
|
-
export
|
|
43
|
+
export * from './src/utils';
|