@uniteverses/shared 1.0.62 → 1.0.66

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/README.md CHANGED
@@ -16,3 +16,5 @@ npm publish --access public
16
16
  cd uniteverses-website
17
17
  npm cache clean --force
18
18
  npm install @uniteverses/shared@1.0.X
19
+
20
+ #
@@ -0,0 +1,2 @@
1
+ export * from "./organization/types";
2
+ export * from "./organization_membership/types";
@@ -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("./organization/types"), exports);
18
+ __exportStar(require("./organization_membership/types"), exports);
@@ -0,0 +1,11 @@
1
+ import type { LawyersRealEstateAssistantsResearchOrganizationMembership } from "../organization_membership/types";
2
+ export type LawyersRealEstateAssistantsResearchOrganization = {
3
+ id: string;
4
+ organizationId: string;
5
+ name: string;
6
+ createdAt: string;
7
+ memberships: LawyersRealEstateAssistantsResearchOrganizationMembership[];
8
+ };
9
+ export type LawyersRealEstateAssistantsResearchOrganizationCreateInput = {
10
+ name: string;
11
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export type LawyersRealEstateAssistantsResearchOrganizationMembership = {
2
+ id: string;
3
+ userId: string;
4
+ username: string;
5
+ firstName: string;
6
+ lastName: string;
7
+ createdAt: string;
8
+ };
9
+ export type LawyersRealEstateAssistantsResearchOrganizationMembershipAddInput = {
10
+ username: string;
11
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export * from "./domains/politicians/community/residents/explore/types";
2
2
  export * from "./domains/politicians/community/residents/explore/constants";
3
3
  export * from "./domains/teachers/prep_center/students/simulate/types";
4
4
  export * from "./domains/students/writing/students/practice/types";
5
+ export * from "./domains/lawyers/real_estate/assistants/research";
package/dist/index.js CHANGED
@@ -18,3 +18,4 @@ __exportStar(require("./domains/politicians/community/residents/explore/types"),
18
18
  __exportStar(require("./domains/politicians/community/residents/explore/constants"), exports);
19
19
  __exportStar(require("./domains/teachers/prep_center/students/simulate/types"), exports);
20
20
  __exportStar(require("./domains/students/writing/students/practice/types"), exports);
21
+ __exportStar(require("./domains/lawyers/real_estate/assistants/research"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.62",
3
+ "version": "1.0.66",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [