prostgles-server 4.2.508 → 4.2.509
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/PublishParser/getTableRulesWithoutFileTable.js +1 -1
- package/dist/PublishParser/publishTypesAndUtils.d.ts +1 -1
- package/dist/PublishParser/publishTypesAndUtils.js +1 -1
- package/lib/PublishParser/getTableRulesWithoutFileTable.ts +1 -1
- package/lib/PublishParser/publishTypesAndUtils.ts +1 -1
- package/package.json +1 -1
|
@@ -56,7 +56,7 @@ async function getTableRulesWithoutFileTable({ tableName, clientReq }, clientInf
|
|
|
56
56
|
...selectRule.disableMethods,
|
|
57
57
|
subscribe: 1,
|
|
58
58
|
},
|
|
59
|
-
subscribeThrottle: selectRule.subscribeThrottle ??
|
|
59
|
+
subscribeThrottle: selectRule.subscribeThrottle ?? 0,
|
|
60
60
|
},
|
|
61
61
|
insert: insertRule,
|
|
62
62
|
update: updateRule,
|
|
@@ -267,7 +267,7 @@ export declare const TABLE_RULE_NO_LIMITS: {
|
|
|
267
267
|
readonly select: {
|
|
268
268
|
readonly fields: "*";
|
|
269
269
|
readonly disableMethods: undefined;
|
|
270
|
-
readonly subscribeThrottle:
|
|
270
|
+
readonly subscribeThrottle: 0;
|
|
271
271
|
};
|
|
272
272
|
readonly insert: {
|
|
273
273
|
readonly fields: "*";
|
|
@@ -79,7 +79,7 @@ export async function getTableRulesWithoutFileTable(
|
|
|
79
79
|
...selectRule.disableMethods,
|
|
80
80
|
subscribe: 1,
|
|
81
81
|
},
|
|
82
|
-
subscribeThrottle: selectRule.subscribeThrottle ??
|
|
82
|
+
subscribeThrottle: selectRule.subscribeThrottle ?? 0,
|
|
83
83
|
},
|
|
84
84
|
insert: insertRule,
|
|
85
85
|
update: updateRule,
|