@uniteverses/shared 1.0.88 → 1.0.89
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/dist/domains/politicians/community/residents/explore/comment/constants.d.ts +3 -0
- package/dist/domains/politicians/community/residents/explore/comment/constants.js +6 -0
- package/dist/domains/politicians/community/residents/explore/deal/constants.d.ts +1 -0
- package/dist/domains/politicians/community/residents/explore/deal/constants.js +4 -0
- package/dist/domains/politicians/community/residents/explore/food_group/constants.d.ts +1 -0
- package/dist/domains/politicians/community/residents/explore/food_group/constants.js +4 -0
- package/dist/domains/politicians/community/residents/explore/index.d.ts +9 -1
- package/dist/domains/politicians/community/residents/explore/index.js +9 -1
- package/dist/domains/politicians/community/residents/explore/inquiry/constants.d.ts +1 -0
- package/dist/domains/politicians/community/residents/explore/inquiry/constants.js +4 -0
- package/dist/domains/politicians/community/residents/explore/organization/constants.d.ts +2 -0
- package/dist/domains/politicians/community/residents/explore/organization/constants.js +5 -0
- package/dist/domains/politicians/community/residents/explore/organization_event/constants.d.ts +2 -0
- package/dist/domains/politicians/community/residents/explore/organization_event/constants.js +5 -0
- package/dist/domains/politicians/community/residents/explore/organization_event_occurrence/constants.d.ts +7 -0
- package/dist/domains/politicians/community/residents/explore/organization_event_occurrence/constants.js +10 -0
- package/dist/domains/politicians/community/residents/explore/post/constants.d.ts +1 -0
- package/dist/domains/politicians/community/residents/explore/post/constants.js +4 -0
- package/dist/domains/politicians/community/residents/explore/topic/constants.d.ts +1 -0
- package/dist/domains/politicians/community/residents/explore/topic/constants.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.COMMENT_MAX_INDENT_PX = exports.COMMENT_INDENT_PX = exports.COMMENT_MAX_REPLY_DEPTH = void 0;
|
|
4
|
+
exports.COMMENT_MAX_REPLY_DEPTH = 2;
|
|
5
|
+
exports.COMMENT_INDENT_PX = 16;
|
|
6
|
+
exports.COMMENT_MAX_INDENT_PX = 48;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEALS_PAGE_SIZE = 20;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const FOOD_GROUP_NESTING_DEPTH = 3;
|
|
@@ -18,4 +18,12 @@ export * from "./organization_food_item/types";
|
|
|
18
18
|
export * from "./organization_food_group/types";
|
|
19
19
|
export * from "./organization_member/types";
|
|
20
20
|
export * from "./inquiry/types";
|
|
21
|
-
export * from "./constants";
|
|
21
|
+
export * from "./post/constants";
|
|
22
|
+
export * from "./deal/constants";
|
|
23
|
+
export * from "./organization/constants";
|
|
24
|
+
export * from "./organization_event/constants";
|
|
25
|
+
export * from "./organization_event_occurrence/constants";
|
|
26
|
+
export * from "./food_group/constants";
|
|
27
|
+
export * from "./topic/constants";
|
|
28
|
+
export * from "./comment/constants";
|
|
29
|
+
export * from "./inquiry/constants";
|
|
@@ -34,4 +34,12 @@ __exportStar(require("./organization_food_item/types"), exports);
|
|
|
34
34
|
__exportStar(require("./organization_food_group/types"), exports);
|
|
35
35
|
__exportStar(require("./organization_member/types"), exports);
|
|
36
36
|
__exportStar(require("./inquiry/types"), exports);
|
|
37
|
-
__exportStar(require("./constants"), exports);
|
|
37
|
+
__exportStar(require("./post/constants"), exports);
|
|
38
|
+
__exportStar(require("./deal/constants"), exports);
|
|
39
|
+
__exportStar(require("./organization/constants"), exports);
|
|
40
|
+
__exportStar(require("./organization_event/constants"), exports);
|
|
41
|
+
__exportStar(require("./organization_event_occurrence/constants"), exports);
|
|
42
|
+
__exportStar(require("./food_group/constants"), exports);
|
|
43
|
+
__exportStar(require("./topic/constants"), exports);
|
|
44
|
+
__exportStar(require("./comment/constants"), exports);
|
|
45
|
+
__exportStar(require("./inquiry/constants"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CONTACT_PHONE = "+1 (917) 000-0000";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.APPLICANT_STATUS = exports.OCCURRENCES_MAX_LIMIT = exports.OCCURRENCES_PAGE_SIZE = void 0;
|
|
4
|
+
exports.OCCURRENCES_PAGE_SIZE = 100;
|
|
5
|
+
exports.OCCURRENCES_MAX_LIMIT = 500;
|
|
6
|
+
exports.APPLICANT_STATUS = {
|
|
7
|
+
PENDING: "pending",
|
|
8
|
+
APPROVED: "approved",
|
|
9
|
+
REJECTED: "rejected",
|
|
10
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const POSTS_PAGE_SIZE = 20;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TOPIC_NESTING_DEPTH = 3;
|