@abyss-project/main 1.0.48 → 1.0.49

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