@tonder.io/ionic-lite-sdk 0.0.35-beta.1 → 0.0.35-beta.2
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 +1 -1
- package/dist/types/commons.d.ts +6 -1
- package/package.json +1 -1
- package/src/types/commons.ts +6 -1
package/.idea/workspace.xml
CHANGED
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
<updated>1724776429568</updated>
|
|
93
93
|
<workItem from="1724776430626" duration="1847000" />
|
|
94
94
|
<workItem from="1724790840744" duration="239000" />
|
|
95
|
-
<workItem from="1725305433705" duration="
|
|
95
|
+
<workItem from="1725305433705" duration="16640000" />
|
|
96
96
|
</task>
|
|
97
97
|
<servers />
|
|
98
98
|
</component>
|
package/dist/types/commons.d.ts
CHANGED
|
@@ -87,12 +87,17 @@ export interface IInlineCheckoutBaseOptions {
|
|
|
87
87
|
* `baseUrlTonder` is no longer required.
|
|
88
88
|
*/
|
|
89
89
|
baseUrlTonder?: string;
|
|
90
|
-
apiKey: string;
|
|
91
90
|
/**
|
|
92
91
|
* @deprecated This property is deprecated and will be removed in a future release.
|
|
93
92
|
* Use `apiKey` instead, as `apiKeyTonder` is no longer required.
|
|
94
93
|
*/
|
|
95
94
|
apiKeyTonder?: string;
|
|
95
|
+
/**
|
|
96
|
+
* @deprecated This property is deprecated and will be removed in a future release.
|
|
97
|
+
* `signal` is no longer required.
|
|
98
|
+
*/
|
|
99
|
+
signal?: AbortSignal;
|
|
100
|
+
apiKey: string;
|
|
96
101
|
returnUrl: string;
|
|
97
102
|
callBack?: (response: any) => void;
|
|
98
103
|
}
|
package/package.json
CHANGED
package/src/types/commons.ts
CHANGED
|
@@ -96,12 +96,17 @@ export interface IInlineCheckoutBaseOptions {
|
|
|
96
96
|
* `baseUrlTonder` is no longer required.
|
|
97
97
|
*/
|
|
98
98
|
baseUrlTonder?: string;
|
|
99
|
-
apiKey: string;
|
|
100
99
|
/**
|
|
101
100
|
* @deprecated This property is deprecated and will be removed in a future release.
|
|
102
101
|
* Use `apiKey` instead, as `apiKeyTonder` is no longer required.
|
|
103
102
|
*/
|
|
104
103
|
apiKeyTonder?: string;
|
|
104
|
+
/**
|
|
105
|
+
* @deprecated This property is deprecated and will be removed in a future release.
|
|
106
|
+
* `signal` is no longer required.
|
|
107
|
+
*/
|
|
108
|
+
signal?: AbortSignal;
|
|
109
|
+
apiKey: string;
|
|
105
110
|
returnUrl: string;
|
|
106
111
|
callBack?: (response: any) => void;
|
|
107
112
|
}
|