@crowdin/app-project-module 0.26.4 → 0.26.5
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/README.md +1 -0
- package/out/handlers/manifest.js +1 -0
- package/out/models/index.d.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/out/handlers/manifest.js
CHANGED
|
@@ -26,6 +26,7 @@ function handle(config) {
|
|
|
26
26
|
customSrxSupported: !!config.customFileFormat.customSrxSupported,
|
|
27
27
|
extensions: config.customFileFormat.extensions,
|
|
28
28
|
signaturePatterns: config.customFileFormat.signaturePatterns,
|
|
29
|
+
multilingualExport: config.customFileFormat.multilingualExport,
|
|
29
30
|
url: '/process',
|
|
30
31
|
},
|
|
31
32
|
];
|
package/out/models/index.d.ts
CHANGED
|
@@ -495,6 +495,10 @@ export interface CustomFileFormatLogic {
|
|
|
495
495
|
* Enable custom srx
|
|
496
496
|
*/
|
|
497
497
|
customSrxSupported?: boolean;
|
|
498
|
+
/**
|
|
499
|
+
* Enable multi language strings export
|
|
500
|
+
*/
|
|
501
|
+
multilingualExport?: boolean;
|
|
498
502
|
/**
|
|
499
503
|
* Used for initial source file upload, source file update, and translation upload
|
|
500
504
|
*/
|
package/package.json
CHANGED