@aristid/leav-types 0.0.6-4e52efe → 0.0.7-8bd5a2d
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.
|
@@ -6,6 +6,7 @@ import { IUtils } from 'utils/utils';
|
|
|
6
6
|
import { IApiKey, IGetCoreApiKeysParams } from '_types/apiKey';
|
|
7
7
|
import { IQueryInfos } from '_types/queryInfos';
|
|
8
8
|
import { IList } from '../../_types/list';
|
|
9
|
+
import { IConfig } from '../../_types/config';
|
|
9
10
|
export interface IApiKeyDomain {
|
|
10
11
|
getApiKeys(params: {
|
|
11
12
|
params?: IGetCoreApiKeysParams;
|
|
@@ -35,5 +36,6 @@ export interface IApiKeyDomainDeps {
|
|
|
35
36
|
'core.infra.apiKey': IApiKeyRepo;
|
|
36
37
|
'core.utils': IUtils;
|
|
37
38
|
translator: i18n;
|
|
39
|
+
config: IConfig;
|
|
38
40
|
}
|
|
39
|
-
export default function ({ 'core.domain.permission.admin': adminPermissionDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.infra.apiKey': apiKeyRepo, 'core.utils': utils }: IApiKeyDomainDeps): IApiKeyDomain;
|
|
41
|
+
export default function ({ 'core.domain.permission.admin': adminPermissionDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.infra.apiKey': apiKeyRepo, 'core.utils': utils, config }: IApiKeyDomainDeps): IApiKeyDomain;
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aristid/leav-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7-8bd5a2d",
|
|
4
4
|
"description": "Shared Leav types",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tscheck": "",
|
|
7
7
|
"test:ci": "",
|
|
8
8
|
"test:commit": "",
|
|
9
|
-
"publish": "npm publish --access public"
|
|
9
|
+
"publish-types": "npm publish --access public"
|
|
10
10
|
},
|
|
11
11
|
"license": "LGPL3",
|
|
12
12
|
"repository": "https://github.com/leav-solutions/leav-engine"
|