@tonder.io/ionic-lite-sdk 0.0.35-beta.18 → 0.0.35-beta.19
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/.idea/workspace.xml +2 -1
- package/dist/types/commons.d.ts +1 -1
- package/package.json +1 -1
- package/src/types/commons.ts +3 -1
package/.idea/workspace.xml
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
<change beforePath="$PROJECT_DIR$/src/helpers/utils.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/helpers/utils.ts" afterDir="false" />
|
|
21
21
|
<change beforePath="$PROJECT_DIR$/src/index.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.ts" afterDir="false" />
|
|
22
22
|
<change beforePath="$PROJECT_DIR$/src/types/card.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/card.ts" afterDir="false" />
|
|
23
|
+
<change beforePath="$PROJECT_DIR$/src/types/commons.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/types/commons.ts" afterDir="false" />
|
|
23
24
|
<change beforePath="$PROJECT_DIR$/src/types/index.d.ts" beforeDir="false" />
|
|
24
25
|
</list>
|
|
25
26
|
<option name="SHOW_DIALOG" value="false" />
|
|
@@ -83,7 +84,7 @@
|
|
|
83
84
|
<workItem from="1725305433705" duration="21026000" />
|
|
84
85
|
<workItem from="1725333899382" duration="2939000" />
|
|
85
86
|
<workItem from="1725337022494" duration="3671000" />
|
|
86
|
-
<workItem from="1725378545854" duration="
|
|
87
|
+
<workItem from="1725378545854" duration="13450000" />
|
|
87
88
|
</task>
|
|
88
89
|
<servers />
|
|
89
90
|
</component>
|
package/dist/types/commons.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ export interface IInlineCheckoutBaseOptions {
|
|
|
101
101
|
signal?: AbortSignal;
|
|
102
102
|
apiKey: string;
|
|
103
103
|
returnUrl?: string;
|
|
104
|
-
callBack?: (response: any) => void;
|
|
104
|
+
callBack?: (response: Record<string, any> | Object | {} | void) => void;
|
|
105
105
|
}
|
|
106
106
|
export interface IApiError {
|
|
107
107
|
code: string;
|
package/package.json
CHANGED
package/src/types/commons.ts
CHANGED
|
@@ -107,8 +107,10 @@ export interface IInlineCheckoutBaseOptions {
|
|
|
107
107
|
signal?: AbortSignal;
|
|
108
108
|
apiKey: string;
|
|
109
109
|
returnUrl?: string;
|
|
110
|
-
callBack?: (response: any) => void;
|
|
110
|
+
callBack?: (response: Record<string, any> | Object | {} | void) => void;
|
|
111
111
|
}
|
|
112
|
+
|
|
113
|
+
|
|
112
114
|
export interface IApiError {
|
|
113
115
|
code: string;
|
|
114
116
|
body: Record<string, string> | string;
|