@uniteverses/shared 1.0.54 → 1.0.55
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,6 +2,8 @@ export declare const POSTS_PAGE_SIZE = 20;
|
|
|
2
2
|
export declare const DEALS_PAGE_SIZE = 20;
|
|
3
3
|
export declare const EVENTS_PAGE_SIZE = 20;
|
|
4
4
|
export declare const EVENTS_MAX_LIMIT = 200;
|
|
5
|
+
export declare const ORGS_PAGE_SIZE = 20;
|
|
6
|
+
export declare const ORGS_MAX_LIMIT = 200;
|
|
5
7
|
export declare const FOOD_GROUP_NESTING_DEPTH = 3;
|
|
6
8
|
export declare const TOPIC_NESTING_DEPTH = 3;
|
|
7
9
|
export declare const COMMENT_MAX_REPLY_DEPTH = 2;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.APPLICANT_STATUS = exports.CONTACT_PHONE = exports.COMMENT_MAX_INDENT_PX = exports.COMMENT_INDENT_PX = exports.COMMENT_MAX_REPLY_DEPTH = exports.TOPIC_NESTING_DEPTH = exports.FOOD_GROUP_NESTING_DEPTH = exports.EVENTS_MAX_LIMIT = exports.EVENTS_PAGE_SIZE = exports.DEALS_PAGE_SIZE = exports.POSTS_PAGE_SIZE = void 0;
|
|
3
|
+
exports.APPLICANT_STATUS = exports.CONTACT_PHONE = exports.COMMENT_MAX_INDENT_PX = exports.COMMENT_INDENT_PX = exports.COMMENT_MAX_REPLY_DEPTH = exports.TOPIC_NESTING_DEPTH = exports.FOOD_GROUP_NESTING_DEPTH = exports.ORGS_MAX_LIMIT = exports.ORGS_PAGE_SIZE = exports.EVENTS_MAX_LIMIT = exports.EVENTS_PAGE_SIZE = exports.DEALS_PAGE_SIZE = exports.POSTS_PAGE_SIZE = void 0;
|
|
4
4
|
// Pagination
|
|
5
5
|
exports.POSTS_PAGE_SIZE = 20;
|
|
6
6
|
exports.DEALS_PAGE_SIZE = 20;
|
|
7
7
|
exports.EVENTS_PAGE_SIZE = 20;
|
|
8
8
|
exports.EVENTS_MAX_LIMIT = 200;
|
|
9
|
+
exports.ORGS_PAGE_SIZE = 20;
|
|
10
|
+
exports.ORGS_MAX_LIMIT = 200;
|
|
9
11
|
// Food group recursive query depth
|
|
10
12
|
exports.FOOD_GROUP_NESTING_DEPTH = 3;
|
|
11
13
|
// Topic nesting depth
|