@tonder.io/ionic-lite-sdk 0.0.35-beta.6 → 0.0.35-beta.7
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
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
<updated>1724776429568</updated>
|
|
100
100
|
<workItem from="1724776430626" duration="1847000" />
|
|
101
101
|
<workItem from="1724790840744" duration="239000" />
|
|
102
|
-
<workItem from="1725305433705" duration="
|
|
102
|
+
<workItem from="1725305433705" duration="19521000" />
|
|
103
103
|
</task>
|
|
104
104
|
<servers />
|
|
105
105
|
</component>
|
package/package.json
CHANGED
|
@@ -124,7 +124,7 @@ export class LiteCheckout {
|
|
|
124
124
|
* It is no longer necessary to use this method as customer registration is now automatically handled
|
|
125
125
|
* during the payment process or when using card management methods.
|
|
126
126
|
*/
|
|
127
|
-
|
|
127
|
+
customerRegister(email: string): Promise<CustomerRegisterResponse | ErrorResponse>
|
|
128
128
|
|
|
129
129
|
// TODO: DEPRECATED
|
|
130
130
|
/**
|
|
@@ -132,7 +132,7 @@ export class LiteCheckout {
|
|
|
132
132
|
* It is no longer necessary to use this method as order creation is now automatically
|
|
133
133
|
* handled when making a payment through the `payment` function.
|
|
134
134
|
*/
|
|
135
|
-
|
|
135
|
+
createOrder(orderItems: CreateOrderRequest): Promise<CreateOrderResponse | ErrorResponse>
|
|
136
136
|
|
|
137
137
|
// TODO: DEPRECATED
|
|
138
138
|
/**
|
|
@@ -140,28 +140,28 @@ export class LiteCheckout {
|
|
|
140
140
|
* It is no longer necessary to use this method as payment creation is now automatically
|
|
141
141
|
* handled when making a payment through the `payment` function.
|
|
142
142
|
*/
|
|
143
|
-
|
|
143
|
+
createPayment(paymentItems: CreatePaymentRequest): Promise<CreatePaymentResponse | ErrorResponse>
|
|
144
144
|
|
|
145
145
|
// TODO: DEPRECATED
|
|
146
146
|
/**
|
|
147
147
|
* @deprecated This method is deprecated and will be removed in a future release.
|
|
148
148
|
* Use the {@link payment} method
|
|
149
149
|
*/
|
|
150
|
-
|
|
150
|
+
startCheckoutRouter(routerData: StartCheckoutRequest | StartCheckoutIdRequest): Promise<StartCheckoutResponse | ErrorResponse | undefined>
|
|
151
151
|
|
|
152
152
|
// TODO: DEPRECATED
|
|
153
153
|
/**
|
|
154
154
|
* @deprecated This method is deprecated and will be removed in a future release.
|
|
155
155
|
* Use the {@link payment} method
|
|
156
156
|
*/
|
|
157
|
-
|
|
157
|
+
startCheckoutRouterFull(routerFullData: StartCheckoutFullRequest): Promise<StartCheckoutResponse | ErrorResponse | undefined>
|
|
158
158
|
|
|
159
159
|
// TODO: DEPRECATED
|
|
160
160
|
/**
|
|
161
161
|
* @deprecated This method is deprecated and will be removed in a future release.
|
|
162
162
|
* Use the {@link saveCustomerCard} method
|
|
163
163
|
*/
|
|
164
|
-
|
|
164
|
+
registerCustomerCard(customerToken: string, data: RegisterCustomerCardRequest): Promise<RegisterCustomerCardResponse | ErrorResponse>
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
// TODO: DEPRECATED
|
|
@@ -169,14 +169,14 @@ export class LiteCheckout {
|
|
|
169
169
|
* @deprecated This method is deprecated and will be removed in a future release.
|
|
170
170
|
* Use the {@link removeCustomerCard} method
|
|
171
171
|
*/
|
|
172
|
-
|
|
172
|
+
deleteCustomerCard(customerToken: string, skyflowId: string): Promise<Boolean | ErrorResponse>
|
|
173
173
|
|
|
174
174
|
// TODO: DEPRECATED
|
|
175
175
|
/**
|
|
176
176
|
* @deprecated This method is deprecated and will be removed in a future release.
|
|
177
177
|
* Use the {@link getCustomerPaymentMethods} method
|
|
178
178
|
*/
|
|
179
|
-
|
|
179
|
+
getActiveAPMs(): Promise<APM[]>;
|
|
180
180
|
|
|
181
181
|
// TODO: DEPRECATED
|
|
182
182
|
/**
|
|
@@ -184,7 +184,7 @@ export class LiteCheckout {
|
|
|
184
184
|
* It is no longer necessary to use this method as customer registration is now automatically handled
|
|
185
185
|
* during the payment process or when using card management methods.
|
|
186
186
|
*/
|
|
187
|
-
|
|
187
|
+
getSkyflowTokens({vault_id, vault_url, data}: TokensRequest): Promise<any | ErrorResponse>
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
|