@bikiran/utils 2.3.4 → 2.3.5
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/index.d.ts +1 -2
- package/dist/index.ts +5 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -29,10 +29,9 @@ export { getBikiranUrl, getAccountUrl, getApiUrl, getApi2Url, getApi3Url, getBas
|
|
|
29
29
|
export type { TInputChangeEvent, TTextAreaChangeEvent, TMouseEvent, TFormEvent, TKeyboardEvent, TFocusEvent, TDragEvent, TState, } from "./lib/types/GlobalType";
|
|
30
30
|
export type { TDomainProperty, TDomainDuration, TDomainInfo, } from "./lib/types/domain";
|
|
31
31
|
export type { TApp } from "./lib/types/app";
|
|
32
|
-
export type { TInputChangeEvent as TInputChangeEventAlt, TTextAreaChangeEvent as TTextAreaChangeEventAlt, TMouseEvent as TMouseEventAlt, TFormEvent as TFormEventAlt, TKeyboardEvent as TKeyboardEventAlt, TFocusEvent as TFocusEventAlt, TDragEvent as TDragEventAlt, TState as TStateAlt, } from "./lib/types/event";
|
|
33
32
|
export type { TUser } from "./lib/types/user";
|
|
34
33
|
export type { TApiResponse, TPagination } from "./lib/types/response";
|
|
35
|
-
export type { TInvoiceInfo, TAddressBilling, TAddressShipping, } from "./lib/types/invoice";
|
|
34
|
+
export type { TInvoiceInfo, TAddressBilling, TAddressPayload, TAddressShipping, TInvoiceData, TInvoiceProduct, TPaymentIssue, TPaymentOption, } from "./lib/types/invoice";
|
|
36
35
|
export { default as countries } from "./lib/utils/country.json";
|
|
37
36
|
export { win, doc, storage } from "./lib/utils/dom";
|
|
38
37
|
export { setLocalStorage, getLocalStorage } from "./lib/utils/storage";
|
package/dist/index.ts
CHANGED
|
@@ -71,19 +71,6 @@ export type {
|
|
|
71
71
|
|
|
72
72
|
// App types
|
|
73
73
|
export type { TApp } from "./lib/types/app";
|
|
74
|
-
|
|
75
|
-
// Event types (alternative to GlobalType)
|
|
76
|
-
export type {
|
|
77
|
-
TInputChangeEvent as TInputChangeEventAlt,
|
|
78
|
-
TTextAreaChangeEvent as TTextAreaChangeEventAlt,
|
|
79
|
-
TMouseEvent as TMouseEventAlt,
|
|
80
|
-
TFormEvent as TFormEventAlt,
|
|
81
|
-
TKeyboardEvent as TKeyboardEventAlt,
|
|
82
|
-
TFocusEvent as TFocusEventAlt,
|
|
83
|
-
TDragEvent as TDragEventAlt,
|
|
84
|
-
TState as TStateAlt,
|
|
85
|
-
} from "./lib/types/event";
|
|
86
|
-
|
|
87
74
|
// User types
|
|
88
75
|
export type { TUser } from "./lib/types/user";
|
|
89
76
|
|
|
@@ -94,7 +81,12 @@ export type { TApiResponse, TPagination } from "./lib/types/response";
|
|
|
94
81
|
export type {
|
|
95
82
|
TInvoiceInfo,
|
|
96
83
|
TAddressBilling,
|
|
84
|
+
TAddressPayload,
|
|
97
85
|
TAddressShipping,
|
|
86
|
+
TInvoiceData,
|
|
87
|
+
TInvoiceProduct,
|
|
88
|
+
TPaymentIssue,
|
|
89
|
+
TPaymentOption,
|
|
98
90
|
} from "./lib/types/invoice";
|
|
99
91
|
export { default as countries } from "./lib/utils/country.json";
|
|
100
92
|
export { win, doc, storage } from "./lib/utils/dom";
|