@luminix/support 0.0.1-beta.5 → 0.0.1-beta.6

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/dist/support.js CHANGED
@@ -4892,6 +4892,7 @@ const Wp = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
4892
4892
  }, Symbol.toStringTag, { value: "Module" }));
4893
4893
  export {
4894
4894
  Sp as Arr,
4895
+ Tn as Client,
4895
4896
  ce as Collection,
4896
4897
  Ds as EventSource,
4897
4898
  Hp as Http,
@@ -4900,5 +4901,7 @@ export {
4900
4901
  Ti as PropertyBag,
4901
4902
  Wp as Query,
4902
4903
  qp as Reducible,
4904
+ fe as Request,
4905
+ Wt as Response,
4903
4906
  Jp as Str
4904
4907
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luminix/support",
3
- "version": "0.0.1-beta.5",
3
+ "version": "0.0.1-beta.6",
4
4
  "module": "dist/support.js",
5
5
  "types": "types/index.d.ts",
6
6
  "type": "module",
@@ -22,4 +22,5 @@ declare class HttpStatic {
22
22
  delete<TResponse = any>(url: string, query?: string | object): Request<TResponse, any>;
23
23
  }
24
24
  declare const Http: HttpStatic & Record<string, () => Client> & import('../Mixins/Macroable').MacroableInterface<Record<string, () => Client>>;
25
+ export { Client, Response, Request, };
25
26
  export default Http;
package/types/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { default as Collection } from './Collection';
2
2
  import { default as EventSource } from './Contracts/EventSource';
3
- import { default as Http } from './Http/index';
3
+ import { default as Http, Response, Client, Request } from './Http';
4
4
  import { default as PropertyBag } from './PropertyBag';
5
5
  import { default as Reducible } from './Mixins/Reducible';
6
6
  import { default as Macroable } from './Mixins/Macroable';
@@ -8,4 +8,9 @@ import * as Arr from './Arr';
8
8
  import * as Obj from './Obj';
9
9
  import * as Query from './Query';
10
10
  import * as Str from './Str';
11
- export { Arr, Collection, EventSource, Http, PropertyBag, Reducible, Macroable, Obj, Query, Str, };
11
+ export type { Event } from './Contracts/EventSource';
12
+ export type { ReducibleInterface } from './Mixins/Reducible';
13
+ export type { PropertyBagEventMap } from './PropertyBag';
14
+ export type { Constructor } from './Js';
15
+ export type { RequestOptions } from './Http/Client';
16
+ export { Arr, Client, Collection, EventSource, Http, PropertyBag, Reducible, Request, Response, Macroable, Obj, Query, Str, };