@crowdin/app-project-module 1.13.1 → 1.14.0
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/index.js +2 -0
- package/out/modules/chat/index.d.ts +6 -0
- package/out/modules/chat/index.js +21 -0
- package/out/modules/integration/handlers/users.js +3 -1
- package/out/modules/integration/util/defaults.js +6 -0
- package/out/modules/manifest.js +7 -0
- package/out/static/ui/form.bundle.js +606 -266
- package/out/static/ui/form.bundle.js.map +1 -1
- package/out/types.d.ts +6 -0
- package/package.json +2 -2
package/out/types.d.ts
CHANGED
|
@@ -179,6 +179,10 @@ export interface ClientConfig extends ImagePath {
|
|
|
179
179
|
* modal module
|
|
180
180
|
*/
|
|
181
181
|
modal?: OneOrMany<ModalModule>;
|
|
182
|
+
/**
|
|
183
|
+
* chat module
|
|
184
|
+
*/
|
|
185
|
+
chat?: ChatModule[];
|
|
182
186
|
/**
|
|
183
187
|
* Install hook
|
|
184
188
|
*/
|
|
@@ -580,6 +584,8 @@ export declare enum storageFiles {
|
|
|
580
584
|
}
|
|
581
585
|
export interface ModalModule extends ModuleContent, UiModule, Environments {
|
|
582
586
|
}
|
|
587
|
+
export interface ChatModule extends ModuleContent, UiModule, Environments {
|
|
588
|
+
}
|
|
583
589
|
export interface ContextModule extends ContextContent, UiModule, Environments {
|
|
584
590
|
}
|
|
585
591
|
export interface FileStore {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crowdin/app-project-module",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "Module that generates for you all common endpoints for serving standalone Crowdin App",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"@types/better-sqlite3": "^7.6.13",
|
|
112
112
|
"@types/cors": "^2.8.19",
|
|
113
113
|
"@types/express": "^5.0.3",
|
|
114
|
-
"@types/jest": "^
|
|
114
|
+
"@types/jest": "^30.0.0",
|
|
115
115
|
"@types/jsonwebtoken": "^9.0.10",
|
|
116
116
|
"@types/minimatch": "^5.1.2",
|
|
117
117
|
"@types/node": "^20",
|