@bprotsyk/aso-core 1.2.0 → 1.2.1

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
@@ -18,3 +18,4 @@ export { IOfferWallResponse } from "./aso/offerwall/offerwall-response";
18
18
  export { IFlashApp, FlashAppSchema } from "./flash/flash-app";
19
19
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry";
20
20
  export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user";
21
+ export { IAuthToken } from "./panel/auth";
@@ -1,5 +1,5 @@
1
1
  import { PanelUserAccessScope } from "index";
2
- export interface AuthToken {
2
+ export interface IAuthToken {
3
3
  id: string;
4
4
  username: string;
5
5
  accessScopes: PanelUserAccessScope[];
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@bprotsyk/aso-core",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {
7
- "prod": "tsc; git add .; git commit -m \"Stub\"; git push origin master; npm version minor; npm publish;",
7
+ "prod": "tsc; git add .; git commit -m \"Stub\"; git push origin master; npm version patch; npm publish;",
8
8
  "build": "tsc",
9
9
  "test": "echo \"Error: no test specified\" && exit 1"
10
10
  },
package/src/index.ts CHANGED
@@ -22,4 +22,5 @@ export { IFlashApp, FlashAppSchema } from "./flash/flash-app"
22
22
 
23
23
  export * as ASOConfigFetch from "./aso/usage-logs/aso-config-fetch-entry"
24
24
 
25
- export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user"
25
+ export { IPanelUser, PanelUserAccessScope, PanelUserSchema } from "./panel/user"
26
+ export { IAuthToken } from "./panel/auth"
package/src/panel/auth.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { PanelUserAccessScope } from "index";
2
2
 
3
- export interface AuthToken {
3
+ export interface IAuthToken {
4
4
  id: string,
5
5
  username: string,
6
6
  accessScopes: PanelUserAccessScope[],