@brimble/models 3.8.188 → 3.8.190
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/enum/index.d.ts
CHANGED
|
@@ -169,7 +169,8 @@ export declare enum SUBSCRIPTION_PLAN_TYPE {
|
|
|
169
169
|
TeamPlan = "TEAM_PLAN",
|
|
170
170
|
DomainPlan = "DOMAIN_PLAN",
|
|
171
171
|
HackerPlan = "HACKER_PLAN",
|
|
172
|
-
LiscensePlan = "LISCENSE_PLAN"
|
|
172
|
+
LiscensePlan = "LISCENSE_PLAN",
|
|
173
|
+
EmailForwardingPlan = "EMAIL_FORWARDING_PLAN"
|
|
173
174
|
}
|
|
174
175
|
export declare enum OAUTH_PERMISSIONS {
|
|
175
176
|
READ_USER = "read_user",
|
package/dist/enum/index.js
CHANGED
|
@@ -201,6 +201,7 @@ var SUBSCRIPTION_PLAN_TYPE;
|
|
|
201
201
|
SUBSCRIPTION_PLAN_TYPE["DomainPlan"] = "DOMAIN_PLAN";
|
|
202
202
|
SUBSCRIPTION_PLAN_TYPE["HackerPlan"] = "HACKER_PLAN";
|
|
203
203
|
SUBSCRIPTION_PLAN_TYPE["LiscensePlan"] = "LISCENSE_PLAN";
|
|
204
|
+
SUBSCRIPTION_PLAN_TYPE["EmailForwardingPlan"] = "EMAIL_FORWARDING_PLAN";
|
|
204
205
|
})(SUBSCRIPTION_PLAN_TYPE || (exports.SUBSCRIPTION_PLAN_TYPE = SUBSCRIPTION_PLAN_TYPE = {}));
|
|
205
206
|
var OAUTH_PERMISSIONS;
|
|
206
207
|
(function (OAUTH_PERMISSIONS) {
|
package/dist/project/index.js
CHANGED
|
@@ -78,6 +78,7 @@ export interface IProject extends Document {
|
|
|
78
78
|
backupEnabled: boolean;
|
|
79
79
|
backup_mode: "automatic" | "manual";
|
|
80
80
|
backup_schedule: string;
|
|
81
|
+
backup_timezone: string;
|
|
81
82
|
http2: boolean;
|
|
82
83
|
free_tier_expires_at?: Date | null;
|
|
83
84
|
free_tier_expiry_notified_at?: Date | null;
|