We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3571145 commit 6e2d295Copy full SHA for 6e2d295
src/dtable-web-api.js
@@ -3762,6 +3762,9 @@ class DTableWebAPI {
3762
if (orgInfo.bigDataStorageQuotaMb) {
3763
formData.append('big_data_storage_quota_mb', orgInfo.bigDataStorageQuotaMb);
3764
}
3765
+ if (orgInfo.autoRulesLimitPerMonth) {
3766
+ formData.append('auto_rules_limit_per_month', orgInfo.autoRulesLimitPerMonth);
3767
+ }
3768
return this.req.put(url, formData);
3769
3770
@@ -3949,6 +3952,9 @@ class DTableWebAPI {
3949
3952
case 'unit':
3950
3953
formData.append('unit', value);
3951
3954
break;
3955
+ case 'auto_rules_limit_per_month':
3956
+ formData.append('auto_rules_limit_per_month', value);
3957
+ break;
3958
3959
3960
0 commit comments