dev-classes 1.3.12 → 1.3.14

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.
@@ -15,5 +15,6 @@ export declare class HTTPSApi {
15
15
  static on: <K extends "fetch">(name: K, cb: HTTPSApi_Events[K]) => void;
16
16
  static off: <K extends "fetch">(name: K, cb: HTTPSApi_Events[K]) => void;
17
17
  static request<Result, Req extends RequestPayloadHTTPSApi = RequestPayloadHTTPSApi>({ keyAction, request }: Req): Promise<FetchInfoHTTPSApi<Result>>;
18
- static removeCookie(): void;
18
+ static removeAuthCookie: () => void;
19
+ static getAuthCookies: () => any;
19
20
  }
@@ -1,11 +1,11 @@
1
- var h = Object.defineProperty;
2
- var v = (i, e, r) => e in i ? h(i, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : i[e] = r;
1
+ var w = Object.defineProperty;
2
+ var v = (i, e, r) => e in i ? w(i, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : i[e] = r;
3
3
  var s = (i, e, r) => (v(i, typeof e != "symbol" ? e + "" : e, r), r);
4
- import { NetworkInformation as b } from "../Utils/NetworkInformation/NetworkInformation.js";
5
- import { apiRequest as l } from "./deps/apiRequest/apiRequest.js";
6
- import { NetworkInformationCordova as k } from "../Utils/NetworkInformation/classes/NetworkInformationCordova.js";
7
- import { NetworkInformationPC as N } from "../Utils/NetworkInformation/classes/NetworkInformationPC.js";
8
- import { EventSubscribers as g } from "../Utils/EventSubscribers/EventSubscribers.js";
4
+ import { NetworkInformation as k } from "../Utils/NetworkInformation/NetworkInformation.js";
5
+ import { apiRequest as u } from "./deps/apiRequest/apiRequest.js";
6
+ import { NetworkInformationCordova as g } from "../Utils/NetworkInformation/classes/NetworkInformationCordova.js";
7
+ import { NetworkInformationPC as b } from "../Utils/NetworkInformation/classes/NetworkInformationPC.js";
8
+ import { EventSubscribers as N } from "../Utils/EventSubscribers/EventSubscribers.js";
9
9
  const t = class t {
10
10
  static setState(e) {
11
11
  t.state = { ...t.state, ...e };
@@ -17,8 +17,8 @@ const t = class t {
17
17
  return t.state.isNetworkStatus;
18
18
  }
19
19
  static request({ keyAction: e, request: r }) {
20
- const { url: f, ...I } = r;
21
- return new Promise((w, u) => {
20
+ const { url: f, ...h } = r;
21
+ return new Promise((I, l) => {
22
22
  t.getIsInit() || t.init();
23
23
  const o = t.getIsNetwork(), a = {
24
24
  url: f,
@@ -30,7 +30,7 @@ const t = class t {
30
30
  isReload: !1
31
31
  };
32
32
  if (t.events.publish("fetch", a), o) {
33
- l.requestInServer(f, I).then((c) => {
33
+ u.requestInServer(f, h).then((c) => {
34
34
  const n = {
35
35
  isReq: !1,
36
36
  isReload: !0,
@@ -39,7 +39,7 @@ const t = class t {
39
39
  msg: "",
40
40
  ...c
41
41
  };
42
- t.events.publish("fetch", n), w(n);
42
+ t.events.publish("fetch", n), I(n);
43
43
  }).catch((c) => {
44
44
  const n = {
45
45
  isReq: !1,
@@ -47,21 +47,18 @@ const t = class t {
47
47
  keyAction: e,
48
48
  ...c
49
49
  };
50
- t.events.publish("fetch", n), u(n);
50
+ t.events.publish("fetch", n), l(n);
51
51
  });
52
52
  return;
53
53
  }
54
- t.events.publish("fetch", a), u(a);
54
+ t.events.publish("fetch", a), l(a);
55
55
  });
56
56
  }
57
- static removeCookie() {
58
- l.removeAuthCookie();
59
- }
60
57
  };
61
58
  s(t, "state", {
62
59
  isInit: !1,
63
60
  isNetworkStatus: navigator.onLine
64
- }), s(t, "internet", new b([new N(), new k()])), s(t, "events", new g(["fetch"])), s(t, "online", () => {
61
+ }), s(t, "internet", new k([new b(), new g()])), s(t, "events", new N(["fetch"])), s(t, "online", () => {
65
62
  t.setState({ isNetworkStatus: !0 });
66
63
  }), s(t, "offline", () => {
67
64
  t.setState({ isNetworkStatus: !1 });
@@ -74,7 +71,7 @@ s(t, "state", {
74
71
  t.internet.run((e) => {
75
72
  e ? t.online() : t.offline();
76
73
  }), t.setState({ isInit: !0 });
77
- }), s(t, "on", t.events.subscribe), s(t, "off", t.events.unsubscribe);
74
+ }), s(t, "on", t.events.subscribe), s(t, "off", t.events.unsubscribe), s(t, "removeAuthCookie", u.removeAuthCookie), s(t, "getAuthCookies", u.getAuthCookies);
78
75
  let m = t;
79
76
  export {
80
77
  m as HTTPSApi
@@ -27,7 +27,7 @@ export declare class apiRequest {
27
27
  private static errorsHandler;
28
28
  static setMethodUploadToken: (cb: RequestUploadToken_F) => void;
29
29
  static requestInServer: <ResT = any, T extends object = ResolveRequestInServer_P<ResT>>(url: string, options?: RequestOptions_P) => Promise<T>;
30
- static getToken: () => any;
30
+ static getAuthCookies: () => any;
31
31
  static saveToken: (token: string) => void;
32
32
  static removeAuthCookie: () => void;
33
33
  static setCookieOptions: (options: CookieAttributes) => void;