@aneuhold/core-ts-api-lib 1.0.3 → 1.0.4
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/lib/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import APIService from './services/APIService/APIService';
|
|
|
2
2
|
import DOFunctionService from './services/DOFunctionService/DOFunctionService';
|
|
3
3
|
import { AuthCheckPasswordInput, AuthCheckPasswordOutput, AuthCheckPasswordRawOutput } from './services/DOFunctionService/functions/authCheckPassword';
|
|
4
4
|
import { AuthValidateUserInput, AuthValidateUserOutput, AuthValidateUserRawOutput } from './services/DOFunctionService/functions/authValidateUser';
|
|
5
|
+
import { Translation, Translations } from './types/Translations';
|
|
5
6
|
export { DOFunctionService, APIService };
|
|
6
|
-
export type { AuthCheckPasswordInput, AuthCheckPasswordOutput, AuthCheckPasswordRawOutput, AuthValidateUserInput, AuthValidateUserOutput, AuthValidateUserRawOutput };
|
|
7
|
+
export type { AuthCheckPasswordInput, AuthCheckPasswordOutput, AuthCheckPasswordRawOutput, AuthValidateUserInput, AuthValidateUserOutput, AuthValidateUserRawOutput, Translations, Translation };
|
|
7
8
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,kCAAkC,CAAC;AAC1D,OAAO,iBAAiB,MAAM,gDAAgD,CAAC;AAC/E,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,0BAA0B,EAC3B,MAAM,0DAA0D,CAAC;AAClE,OAAO,EACL,qBAAqB,EACrB,sBAAsB,EACtB,yBAAyB,EAC1B,MAAM,yDAAyD,CAAC;AAGjE,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,CAAC;AAGzC,YAAY,EACV,sBAAsB,EACtB,uBAAuB,EACvB,0BAA0B,EAC1B,qBAAqB,EACrB,sBAAsB,EACtB,yBAAyB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,kCAAkC,CAAC;AAC1D,OAAO,iBAAiB,MAAM,gDAAgD,CAAC;AAC/E,OAAO,EACL,sBAAsB,EACtB,uBAAuB,EACvB,0BAA0B,EAC3B,MAAM,0DAA0D,CAAC;AAClE,OAAO,EACL,qBAAqB,EACrB,sBAAsB,EACtB,yBAAyB,EAC1B,MAAM,yDAAyD,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGjE,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,CAAC;AAGzC,YAAY,EACV,sBAAsB,EACtB,uBAAuB,EACvB,0BAA0B,EAC1B,qBAAqB,EACrB,sBAAsB,EACtB,yBAAyB,EACzB,YAAY,EACZ,WAAW,EACZ,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An individual translation as defined in the translations repo.
|
|
3
|
+
*/
|
|
4
|
+
export type Translation = {
|
|
5
|
+
value: string;
|
|
6
|
+
description: string;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* A collection of translations for a given project.
|
|
10
|
+
*/
|
|
11
|
+
export interface Translations {
|
|
12
|
+
[key: string]: Translation;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=Translations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Translations.d.ts","sourceRoot":"","sources":["../../src/types/Translations.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,CAAC,GAAG,EAAE,MAAM,GAAG,WAAW,CAAC;CAC5B"}
|
package/package.json
CHANGED