@webiny/tenant-manager 6.3.0-beta.1 → 6.3.0-beta.3

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,2 +1,9 @@
1
1
  export { TenantModelExtension } from "../../api/domain/TenantModelExtension.js";
2
2
  export type { TenantExtensions } from "../../shared/Tenant.js";
3
+ export { GetCurrentTenantUseCase } from "../../api/features/GetCurrentTenant/abstractions.js";
4
+ export { GetTenantByIdUseCase } from "../../api/features/GetTenantById/abstractions.js";
5
+ export { CreateTenantUseCase } from "../../api/features/CreateTenant/abstractions.js";
6
+ export { CreateAndInstallTenantUseCase } from "../../api/features/CreateAndInstallTenant/abstractions.js";
7
+ export { UpdateTenantUseCase } from "../../api/features/UpdateTenant/abstractions.js";
8
+ export { EnableTenantUseCase } from "../../api/features/EnableTenant/abstractions.js";
9
+ export { DisableTenantUseCase } from "../../api/features/DisableTenant/abstractions.js";
@@ -1,3 +1,10 @@
1
1
  export { TenantModelExtension } from "../../api/domain/TenantModelExtension.js";
2
+ export { GetCurrentTenantUseCase } from "../../api/features/GetCurrentTenant/abstractions.js";
3
+ export { GetTenantByIdUseCase } from "../../api/features/GetTenantById/abstractions.js";
4
+ export { CreateTenantUseCase } from "../../api/features/CreateTenant/abstractions.js";
5
+ export { CreateAndInstallTenantUseCase } from "../../api/features/CreateAndInstallTenant/abstractions.js";
6
+ export { UpdateTenantUseCase } from "../../api/features/UpdateTenant/abstractions.js";
7
+ export { EnableTenantUseCase } from "../../api/features/EnableTenant/abstractions.js";
8
+ export { DisableTenantUseCase } from "../../api/features/DisableTenant/abstractions.js";
2
9
 
3
10
  //# sourceMappingURL=tenant-manager.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["TenantModelExtension"],"sources":["tenant-manager.ts"],"sourcesContent":["export { TenantModelExtension } from \"~/api/domain/TenantModelExtension.js\";\nexport type { TenantExtensions } from \"~/shared/Tenant.js\";\n"],"mappings":"AAAA,SAASA,oBAAoB","ignoreList":[]}
1
+ {"version":3,"names":["TenantModelExtension","GetCurrentTenantUseCase","GetTenantByIdUseCase","CreateTenantUseCase","CreateAndInstallTenantUseCase","UpdateTenantUseCase","EnableTenantUseCase","DisableTenantUseCase"],"sources":["tenant-manager.ts"],"sourcesContent":["export { TenantModelExtension } from \"~/api/domain/TenantModelExtension.js\";\nexport type { TenantExtensions } from \"~/shared/Tenant.js\";\n\nexport { GetCurrentTenantUseCase } from \"~/api/features/GetCurrentTenant/abstractions.js\";\nexport { GetTenantByIdUseCase } from \"~/api/features/GetTenantById/abstractions.js\";\nexport { CreateTenantUseCase } from \"~/api/features/CreateTenant/abstractions.js\";\nexport { CreateAndInstallTenantUseCase } from \"~/api/features/CreateAndInstallTenant/abstractions.js\";\nexport { UpdateTenantUseCase } from \"~/api/features/UpdateTenant/abstractions.js\";\nexport { EnableTenantUseCase } from \"~/api/features/EnableTenant/abstractions.js\";\nexport { DisableTenantUseCase } from \"~/api/features/DisableTenant/abstractions.js\";\n"],"mappings":"AAAA,SAASA,oBAAoB;AAG7B,SAASC,uBAAuB;AAChC,SAASC,oBAAoB;AAC7B,SAASC,mBAAmB;AAC5B,SAASC,6BAA6B;AACtC,SAASC,mBAAmB;AAC5B,SAASC,mBAAmB;AAC5B,SAASC,oBAAoB","ignoreList":[]}
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@webiny/tenant-manager",
3
- "version": "6.3.0-beta.1",
3
+ "version": "6.3.0-beta.3",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
- "main": "index.js",
6
+ "exports": {
7
+ ".": "./index.js",
8
+ "./*": "./*"
9
+ },
7
10
  "repository": {
8
11
  "type": "git",
9
12
  "url": "https://github.com/webiny/webiny-js.git"
@@ -13,26 +16,26 @@
13
16
  "license": "Webiny Enterprise",
14
17
  "dependencies": {
15
18
  "@apollo/react-hooks": "3.1.5",
16
- "@webiny/admin-ui": "6.3.0-beta.1",
17
- "@webiny/api-core": "6.3.0-beta.1",
18
- "@webiny/api-headless-cms": "6.3.0-beta.1",
19
- "@webiny/app": "6.3.0-beta.1",
20
- "@webiny/app-aco": "6.3.0-beta.1",
21
- "@webiny/app-admin": "6.3.0-beta.1",
22
- "@webiny/app-headless-cms": "6.3.0-beta.1",
23
- "@webiny/feature": "6.3.0-beta.1",
24
- "@webiny/handler-graphql": "6.3.0-beta.1",
25
- "@webiny/icons": "6.3.0-beta.1",
26
- "@webiny/project": "6.3.0-beta.1",
27
- "@webiny/project-aws": "6.3.0-beta.1",
19
+ "@webiny/admin-ui": "6.3.0-beta.3",
20
+ "@webiny/api-core": "6.3.0-beta.3",
21
+ "@webiny/api-headless-cms": "6.3.0-beta.3",
22
+ "@webiny/app": "6.3.0-beta.3",
23
+ "@webiny/app-aco": "6.3.0-beta.3",
24
+ "@webiny/app-admin": "6.3.0-beta.3",
25
+ "@webiny/app-headless-cms": "6.3.0-beta.3",
26
+ "@webiny/feature": "6.3.0-beta.3",
27
+ "@webiny/handler-graphql": "6.3.0-beta.3",
28
+ "@webiny/icons": "6.3.0-beta.3",
29
+ "@webiny/project": "6.3.0-beta.3",
30
+ "@webiny/project-aws": "6.3.0-beta.3",
28
31
  "graphql-tag": "2.12.6",
29
- "mobx": "6.15.0",
32
+ "mobx": "6.15.1",
30
33
  "mobx-react-lite": "4.1.1",
31
34
  "react": "18.3.1",
32
35
  "react-dom": "18.3.1"
33
36
  },
34
37
  "devDependencies": {
35
- "@webiny/build-tools": "6.3.0-beta.1",
38
+ "@webiny/build-tools": "6.3.0-beta.3",
36
39
  "rimraf": "6.1.3",
37
40
  "typescript": "6.0.3"
38
41
  },
@@ -40,5 +43,5 @@
40
43
  "access": "public",
41
44
  "directory": "dist"
42
45
  },
43
- "gitHead": "664b273a9f0a971f9ca7e6ffe920db77fefdced1"
46
+ "gitHead": "e154ec3326903876c357d35422dc60d29e061419"
44
47
  }