@uniteverses/shared 1.0.61 → 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 +2 -0
- package/dist/domains/lawyers/real_estate/assistants/research/index.d.ts +2 -0
- package/dist/domains/lawyers/real_estate/assistants/research/index.js +18 -0
- package/dist/domains/lawyers/real_estate/assistants/research/organization/types.d.ts +11 -0
- package/dist/domains/lawyers/real_estate/assistants/research/organization/types.js +2 -0
- package/dist/domains/lawyers/real_estate/assistants/research/organization_membership/types.d.ts +11 -0
- package/dist/domains/lawyers/real_estate/assistants/research/organization_membership/types.js +2 -0
- package/dist/domains/politicians/community/residents/explore/types.d.ts +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|
+
};
|
package/dist/domains/lawyers/real_estate/assistants/research/organization_membership/types.d.ts
ADDED
|
@@ -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
|
+
};
|
|
@@ -324,6 +324,11 @@ export interface OrgEventTranslationInput {
|
|
|
324
324
|
name: string;
|
|
325
325
|
description?: string;
|
|
326
326
|
}
|
|
327
|
+
export interface OrgEventPartnerOrg {
|
|
328
|
+
id: string;
|
|
329
|
+
organizationId: string;
|
|
330
|
+
organization: Organization;
|
|
331
|
+
}
|
|
327
332
|
export interface OrgEvent {
|
|
328
333
|
id: string;
|
|
329
334
|
organizationId: string;
|
|
@@ -336,6 +341,7 @@ export interface OrgEvent {
|
|
|
336
341
|
types?: {
|
|
337
342
|
type: Type;
|
|
338
343
|
}[];
|
|
344
|
+
partnerOrgs?: OrgEventPartnerOrg[];
|
|
339
345
|
_count?: {
|
|
340
346
|
occurrences: number;
|
|
341
347
|
};
|
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);
|