@uniteverses/shared 1.0.135 → 1.0.137

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.
@@ -2,14 +2,20 @@ export type StudentsLifeStudentsLiveDiaryEntry = {
2
2
  id: string;
3
3
  userId: string;
4
4
  date: string;
5
+ past: string | null;
5
6
  content: string;
7
+ future: string | null;
6
8
  createdAt: string;
7
9
  };
8
10
  export type StudentsLifeStudentsLiveDiaryEntryCreateInput = {
9
11
  date: string;
12
+ past?: string | null;
10
13
  content: string;
14
+ future?: string | null;
11
15
  };
12
16
  export type StudentsLifeStudentsLiveDiaryEntryUpdateInput = {
13
17
  date: string;
18
+ past?: string | null;
14
19
  content: string;
20
+ future?: string | null;
15
21
  };
@@ -2,5 +2,7 @@ export * from "./reminder/types";
2
2
  export * from "./ideal/types";
3
3
  export * from "./ideal-influence/types";
4
4
  export * from "./person/types";
5
+ export * from "./person-tag/types";
6
+ export * from "./person-tag-assignment/types";
5
7
  export * from "./diary-entry/types";
6
8
  export * from "./goal/types";
@@ -18,5 +18,7 @@ __exportStar(require("./reminder/types"), exports);
18
18
  __exportStar(require("./ideal/types"), exports);
19
19
  __exportStar(require("./ideal-influence/types"), exports);
20
20
  __exportStar(require("./person/types"), exports);
21
+ __exportStar(require("./person-tag/types"), exports);
22
+ __exportStar(require("./person-tag-assignment/types"), exports);
21
23
  __exportStar(require("./diary-entry/types"), exports);
22
24
  __exportStar(require("./goal/types"), exports);
@@ -0,0 +1,12 @@
1
+ export type StudentsLifeStudentsLivePersonTag = {
2
+ id: string;
3
+ userId: string;
4
+ name: string;
5
+ createdAt: string;
6
+ };
7
+ export type StudentsLifeStudentsLivePersonTagCreateInput = {
8
+ name: string;
9
+ };
10
+ export type StudentsLifeStudentsLivePersonTagUpdateInput = {
11
+ name: string;
12
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
1
+ import type { StudentsLifeStudentsLivePerson } from "../person/types";
2
+ import type { StudentsLifeStudentsLivePersonTag } from "../person-tag/types";
3
+ export type StudentsLifeStudentsLivePersonTagAssignment = {
4
+ id: string;
5
+ userId: string;
6
+ personId: string;
7
+ personTagId: string;
8
+ createdAt: string;
9
+ person: StudentsLifeStudentsLivePerson;
10
+ tag: StudentsLifeStudentsLivePersonTag;
11
+ };
12
+ export type StudentsLifeStudentsLivePersonTagAssignmentCreateInput = {
13
+ personId: string;
14
+ personTagId: string;
15
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,2 @@
1
+ export * from "./insider_trade/types";
2
+ export * from "./insider_trade/constants";
@@ -0,0 +1,18 @@
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("./insider_trade/types"), exports);
18
+ __exportStar(require("./insider_trade/constants"), exports);
@@ -0,0 +1,4 @@
1
+ export declare const TRADERS_PROPRIETARY_TRADERS_RESEARCH_INSIDER_TRADE_SOURCES: {
2
+ readonly QUIVER: "quiver";
3
+ readonly MASSIVE: "massive";
4
+ };
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.TRADERS_PROPRIETARY_TRADERS_RESEARCH_INSIDER_TRADE_SOURCES = void 0;
4
+ exports.TRADERS_PROPRIETARY_TRADERS_RESEARCH_INSIDER_TRADE_SOURCES = {
5
+ QUIVER: "quiver",
6
+ MASSIVE: "massive",
7
+ };
@@ -0,0 +1,12 @@
1
+ export type TradersProprietaryTradersResearchInsiderTradeSource = "quiver" | "massive";
2
+ export type TradersProprietaryTradersResearchInsiderTrade = {
3
+ id: string;
4
+ source: TradersProprietaryTradersResearchInsiderTradeSource;
5
+ ticker: string;
6
+ insiderName: string;
7
+ transactionType: string;
8
+ shares: number | null;
9
+ pricePerShare: number | null;
10
+ value: number | null;
11
+ transactionDate: string;
12
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export * from "./domains/students/life/students/live";
6
6
  export * from "./domains/lawyers/real_estate/assistants/research";
7
7
  export * from "./domains/artists/gamestory/directors/develop";
8
8
  export * from "./domains/ceos/technology/ceos/manage";
9
+ export * from "./domains/traders/proprietary/traders/research";
package/dist/index.js CHANGED
@@ -22,3 +22,4 @@ __exportStar(require("./domains/students/life/students/live"), exports);
22
22
  __exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
23
23
  __exportStar(require("./domains/artists/gamestory/directors/develop"), exports);
24
24
  __exportStar(require("./domains/ceos/technology/ceos/manage"), exports);
25
+ __exportStar(require("./domains/traders/proprietary/traders/research"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.135",
3
+ "version": "1.0.137",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [