@webiny/languages 6.2.0-beta.0 → 6.3.0-beta.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.
@@ -1 +1,4 @@
1
- export declare const Extension: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const Extension: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const AddCmsPermissionsFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const AddCmsPermissionsFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const EnsureSingleDefaultLanguageFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const EnsureSingleDefaultLanguageFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const GetLanguageByCodeFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const GetLanguageByCodeFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const ListLanguagesFeature: import("@webiny/feature/api/createFeature.js").FeatureDefinition<unknown>;
1
+ export declare const ListLanguagesFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
@@ -1 +1,4 @@
1
- export declare const LanguagesPermissionsFeature: import("@webiny/feature/api/createFeature").FeatureDefinition<unknown>;
1
+ export declare const LanguagesPermissionsFeature: {
2
+ name: string;
3
+ register(container: import("@webiny/di").Container): void;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/languages",
3
- "version": "6.2.0-beta.0",
3
+ "version": "6.3.0-beta.0",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "index.js",
@@ -12,35 +12,35 @@
12
12
  "author": "Webiny Ltd.",
13
13
  "license": "Webiny Enterprise",
14
14
  "dependencies": {
15
- "@webiny/admin-ui": "6.2.0-beta.0",
16
- "@webiny/api": "6.2.0-beta.0",
17
- "@webiny/api-core": "6.2.0-beta.0",
18
- "@webiny/api-headless-cms": "6.2.0-beta.0",
19
- "@webiny/app": "6.2.0-beta.0",
20
- "@webiny/app-admin": "6.2.0-beta.0",
21
- "@webiny/app-headless-cms": "6.2.0-beta.0",
22
- "@webiny/feature": "6.2.0-beta.0",
23
- "@webiny/handler": "6.2.0-beta.0",
24
- "@webiny/icons": "6.2.0-beta.0",
25
- "@webiny/project": "6.2.0-beta.0",
26
- "@webiny/project-aws": "6.2.0-beta.0",
15
+ "@webiny/admin-ui": "6.3.0-beta.0",
16
+ "@webiny/api": "6.3.0-beta.0",
17
+ "@webiny/api-core": "6.3.0-beta.0",
18
+ "@webiny/api-headless-cms": "6.3.0-beta.0",
19
+ "@webiny/app": "6.3.0-beta.0",
20
+ "@webiny/app-admin": "6.3.0-beta.0",
21
+ "@webiny/app-headless-cms": "6.3.0-beta.0",
22
+ "@webiny/feature": "6.3.0-beta.0",
23
+ "@webiny/handler": "6.3.0-beta.0",
24
+ "@webiny/icons": "6.3.0-beta.0",
25
+ "@webiny/project": "6.3.0-beta.0",
26
+ "@webiny/project-aws": "6.3.0-beta.0",
27
27
  "mobx": "6.15.0",
28
28
  "react": "18.3.1",
29
29
  "react-dom": "18.3.1"
30
30
  },
31
31
  "devDependencies": {
32
- "@webiny/build-tools": "6.2.0-beta.0",
33
- "@webiny/handler-aws": "6.2.0-beta.0",
34
- "@webiny/handler-graphql": "6.2.0-beta.0",
35
- "@webiny/project-utils": "6.2.0-beta.0",
36
- "@webiny/wcp": "6.2.0-beta.0",
32
+ "@webiny/build-tools": "6.3.0-beta.0",
33
+ "@webiny/handler-aws": "6.3.0-beta.0",
34
+ "@webiny/handler-graphql": "6.3.0-beta.0",
35
+ "@webiny/project-utils": "6.3.0-beta.0",
36
+ "@webiny/wcp": "6.3.0-beta.0",
37
37
  "rimraf": "6.1.3",
38
- "typescript": "5.9.3",
38
+ "typescript": "6.0.3",
39
39
  "vitest": "4.1.4"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public",
43
43
  "directory": "dist"
44
44
  },
45
- "gitHead": "3d3148358b6febbc857371930871743bec3b3939"
45
+ "gitHead": "94c21e58aebc9855bf1ae972423281faa0f5c135"
46
46
  }