@uniteverses/shared 1.0.115 → 1.0.117

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.
@@ -0,0 +1,14 @@
1
+ import type { StudentsLifeStudentsLiveIdeal } from "../ideal/types";
2
+ export type StudentsLifeStudentsLiveIdealInfluence = {
3
+ id: string;
4
+ userId: string;
5
+ influencerId: string;
6
+ influencedId: string;
7
+ createdAt: string;
8
+ influencer: StudentsLifeStudentsLiveIdeal;
9
+ influenced: StudentsLifeStudentsLiveIdeal;
10
+ };
11
+ export type StudentsLifeStudentsLiveIdealInfluenceCreateInput = {
12
+ influencerId: string;
13
+ influencedId: string;
14
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,2 +1,4 @@
1
1
  export * from "./reminder/types";
2
2
  export * from "./ideal/types";
3
+ export * from "./ideal-influence/types";
4
+ export * from "./person/types";
@@ -16,3 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./reminder/types"), exports);
18
18
  __exportStar(require("./ideal/types"), exports);
19
+ __exportStar(require("./ideal-influence/types"), exports);
20
+ __exportStar(require("./person/types"), exports);
@@ -0,0 +1,18 @@
1
+ export type StudentsLifeStudentsLivePerson = {
2
+ id: string;
3
+ userId: string;
4
+ firstName: string;
5
+ lastName: string;
6
+ description: string | null;
7
+ createdAt: string;
8
+ };
9
+ export type StudentsLifeStudentsLivePersonCreateInput = {
10
+ firstName: string;
11
+ lastName: string;
12
+ description?: string | null;
13
+ };
14
+ export type StudentsLifeStudentsLivePersonUpdateInput = {
15
+ firstName: string;
16
+ lastName: string;
17
+ description?: string | null;
18
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.115",
3
+ "version": "1.0.117",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [