@crowdin/app-project-module 0.41.1 → 0.41.2
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/out/models/index.d.ts +2 -1
- package/out/models/index.js +1 -0
- package/package.json +1 -1
package/out/models/index.d.ts
CHANGED
|
@@ -199,7 +199,8 @@ export declare enum Scope {
|
|
|
199
199
|
WEBHOOKS = "project.webhook",
|
|
200
200
|
TRANSLATIONS = "project.translation",
|
|
201
201
|
SCREENSHOTS = "project.screenshot",
|
|
202
|
-
SECURITY_LOGS = "security-log"
|
|
202
|
+
SECURITY_LOGS = "security-log",
|
|
203
|
+
VENDORS = "vendor"
|
|
203
204
|
}
|
|
204
205
|
export interface IntegrationLogic {
|
|
205
206
|
/**
|
package/out/models/index.js
CHANGED
|
@@ -25,6 +25,7 @@ var Scope;
|
|
|
25
25
|
Scope["TRANSLATIONS"] = "project.translation";
|
|
26
26
|
Scope["SCREENSHOTS"] = "project.screenshot";
|
|
27
27
|
Scope["SECURITY_LOGS"] = "security-log";
|
|
28
|
+
Scope["VENDORS"] = "vendor";
|
|
28
29
|
})(Scope = exports.Scope || (exports.Scope = {}));
|
|
29
30
|
var AccountType;
|
|
30
31
|
(function (AccountType) {
|
package/package.json
CHANGED