@xuulu/xuulu-types 1.0.53 → 1.0.55

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.
@@ -1,3 +1,5 @@
1
+ export * from "./account";
2
+ export * from "./auth";
1
3
  export * from "./candidates";
2
4
  export * from "./candidateStatuses";
3
5
  export * from "./companies";
@@ -11,7 +13,9 @@ export * from "./interviews";
11
13
  export * from "./interviewSetup";
12
14
  export * from "./interviewStatuses";
13
15
  export * from "./interviewTypes";
16
+ export * from "./mails";
14
17
  export * from "./offices";
18
+ export * from "./pagination";
15
19
  export * from "./positionContracts";
16
20
  export * from "./positions";
17
21
  export * from "./positionsJobTypes";
@@ -22,11 +26,8 @@ export * from "./roles";
22
26
  export * from "./sections";
23
27
  export * from "./seniorityLevels";
24
28
  export * from "./sign";
29
+ export * from "./socket";
30
+ export * from "./sorting";
31
+ export * from "./stripe";
25
32
  export * from "./users";
26
33
  export * from "./userSettings";
27
- export * from "./stripe";
28
- export * from "./auth";
29
- export * from "./mails";
30
- export * from "./account";
31
- export * from "./pagination";
32
- export * from "./sorting";
package/dist/cjs/index.js CHANGED
@@ -14,6 +14,8 @@ 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("./account"), exports);
18
+ __exportStar(require("./auth"), exports);
17
19
  __exportStar(require("./candidates"), exports);
18
20
  __exportStar(require("./candidateStatuses"), exports);
19
21
  __exportStar(require("./companies"), exports);
@@ -27,7 +29,9 @@ __exportStar(require("./interviews"), exports);
27
29
  __exportStar(require("./interviewSetup"), exports);
28
30
  __exportStar(require("./interviewStatuses"), exports);
29
31
  __exportStar(require("./interviewTypes"), exports);
32
+ __exportStar(require("./mails"), exports);
30
33
  __exportStar(require("./offices"), exports);
34
+ __exportStar(require("./pagination"), exports);
31
35
  __exportStar(require("./positionContracts"), exports);
32
36
  __exportStar(require("./positions"), exports);
33
37
  __exportStar(require("./positionsJobTypes"), exports);
@@ -38,11 +42,8 @@ __exportStar(require("./roles"), exports);
38
42
  __exportStar(require("./sections"), exports);
39
43
  __exportStar(require("./seniorityLevels"), exports);
40
44
  __exportStar(require("./sign"), exports);
45
+ __exportStar(require("./socket"), exports);
46
+ __exportStar(require("./sorting"), exports);
47
+ __exportStar(require("./stripe"), exports);
41
48
  __exportStar(require("./users"), exports);
42
49
  __exportStar(require("./userSettings"), exports);
43
- __exportStar(require("./stripe"), exports);
44
- __exportStar(require("./auth"), exports);
45
- __exportStar(require("./mails"), exports);
46
- __exportStar(require("./account"), exports);
47
- __exportStar(require("./pagination"), exports);
48
- __exportStar(require("./sorting"), exports);
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./requests"), exports);
@@ -0,0 +1,5 @@
1
+ export type SocketConnectMsg = {
2
+ accessToken: string;
3
+ email: string;
4
+ interviewId: number;
5
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -1,3 +1,5 @@
1
+ export * from "./account";
2
+ export * from "./auth";
1
3
  export * from "./candidates";
2
4
  export * from "./candidateStatuses";
3
5
  export * from "./companies";
@@ -11,7 +13,9 @@ export * from "./interviews";
11
13
  export * from "./interviewSetup";
12
14
  export * from "./interviewStatuses";
13
15
  export * from "./interviewTypes";
16
+ export * from "./mails";
14
17
  export * from "./offices";
18
+ export * from "./pagination";
15
19
  export * from "./positionContracts";
16
20
  export * from "./positions";
17
21
  export * from "./positionsJobTypes";
@@ -22,11 +26,8 @@ export * from "./roles";
22
26
  export * from "./sections";
23
27
  export * from "./seniorityLevels";
24
28
  export * from "./sign";
29
+ export * from "./socket";
30
+ export * from "./sorting";
31
+ export * from "./stripe";
25
32
  export * from "./users";
26
33
  export * from "./userSettings";
27
- export * from "./stripe";
28
- export * from "./auth";
29
- export * from "./mails";
30
- export * from "./account";
31
- export * from "./pagination";
32
- export * from "./sorting";
package/dist/esm/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ export * from "./account";
2
+ export * from "./auth";
1
3
  export * from "./candidates";
2
4
  export * from "./candidateStatuses";
3
5
  export * from "./companies";
@@ -11,7 +13,9 @@ export * from "./interviews";
11
13
  export * from "./interviewSetup";
12
14
  export * from "./interviewStatuses";
13
15
  export * from "./interviewTypes";
16
+ export * from "./mails";
14
17
  export * from "./offices";
18
+ export * from "./pagination";
15
19
  export * from "./positionContracts";
16
20
  export * from "./positions";
17
21
  export * from "./positionsJobTypes";
@@ -22,11 +26,8 @@ export * from "./roles";
22
26
  export * from "./sections";
23
27
  export * from "./seniorityLevels";
24
28
  export * from "./sign";
29
+ export * from "./socket";
30
+ export * from "./sorting";
31
+ export * from "./stripe";
25
32
  export * from "./users";
26
33
  export * from "./userSettings";
27
- export * from "./stripe";
28
- export * from "./auth";
29
- export * from "./mails";
30
- export * from "./account";
31
- export * from "./pagination";
32
- export * from "./sorting";
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1,5 @@
1
+ export type SocketConnectMsg = {
2
+ accessToken: string;
3
+ email: string;
4
+ interviewId: number;
5
+ };
@@ -0,0 +1 @@
1
+ export {};
File without changes
@@ -0,0 +1 @@
1
+ "use strict";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuulu/xuulu-types",
3
- "version": "1.0.53",
3
+ "version": "1.0.55",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json"
package/src/index.ts CHANGED
@@ -1,3 +1,5 @@
1
+ export * from "./account";
2
+ export * from "./auth";
1
3
  export * from "./candidates";
2
4
  export * from "./candidateStatuses";
3
5
  export * from "./companies";
@@ -11,7 +13,9 @@ export * from "./interviews";
11
13
  export * from "./interviewSetup";
12
14
  export * from "./interviewStatuses";
13
15
  export * from "./interviewTypes";
16
+ export * from "./mails";
14
17
  export * from "./offices";
18
+ export * from "./pagination";
15
19
  export * from "./positionContracts";
16
20
  export * from "./positions";
17
21
  export * from "./positionsJobTypes";
@@ -22,11 +26,8 @@ export * from "./roles";
22
26
  export * from "./sections";
23
27
  export * from "./seniorityLevels";
24
28
  export * from "./sign";
29
+ export * from "./socket";
30
+ export * from "./sorting";
31
+ export * from "./stripe";
25
32
  export * from "./users";
26
33
  export * from "./userSettings";
27
- export * from "./stripe";
28
- export * from "./auth";
29
- export * from "./mails";
30
- export * from "./account";
31
- export * from "./pagination";
32
- export * from "./sorting";
@@ -0,0 +1 @@
1
+ export * from "./requests";
@@ -0,0 +1,5 @@
1
+ export type SocketConnectMsg = {
2
+ accessToken: string;
3
+ email: string;
4
+ interviewId: number;
5
+ };
File without changes