@abyss-project/main 1.0.46 → 1.0.47

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.
@@ -48,6 +48,7 @@ type ProjectConfigPerService = {
48
48
  statsHistoryDays: number;
49
49
  maxStoreEntry: number;
50
50
  eventPublishLimitPerDay: number;
51
+ maxSentinelCountPerProject: number;
51
52
  };
52
53
  [AbyssService.ABYSS_STORAGE]: {
53
54
  maxFileSizeMo: number;
@@ -113,6 +113,7 @@ exports.PROJECT_SUBSCRIPTION_CONFIG = {
113
113
  statsHistoryDays: 3,
114
114
  maxStoreEntry: 10,
115
115
  eventPublishLimitPerDay: 100,
116
+ maxSentinelCountPerProject: 5,
116
117
  },
117
118
  ABYSS_FORM: {
118
119
  maxDocumentPerForm: 10,
@@ -137,6 +138,7 @@ exports.PROJECT_SUBSCRIPTION_CONFIG = {
137
138
  statsHistoryDays: 7,
138
139
  maxStoreEntry: 100,
139
140
  eventPublishLimitPerDay: 1000,
141
+ maxSentinelCountPerProject: 30,
140
142
  },
141
143
  ABYSS_FORM: {
142
144
  maxDocumentPerForm: 50,
@@ -161,6 +163,7 @@ exports.PROJECT_SUBSCRIPTION_CONFIG = {
161
163
  statsHistoryDays: Infinity,
162
164
  maxStoreEntry: 500,
163
165
  eventPublishLimitPerDay: 10000,
166
+ maxSentinelCountPerProject: 100,
164
167
  },
165
168
  ABYSS_FORM: {
166
169
  maxDocumentPerForm: 100,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/main",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "description": "Core package to interact with Abyss-Project",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",