pi-kiosk-shared 1.0.26 → 1.0.28
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/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare const API_ENDPOINTS: {
|
|
|
8
8
|
readonly PAYMENT_COMPLETE_MULTI: "/api/payments/complete-multi";
|
|
9
9
|
readonly PAYMENT_CANCEL: "/api/payments/cancel";
|
|
10
10
|
readonly PAYMENT_START_MONITORING: "/api/payments/start-monitoring";
|
|
11
|
+
readonly PAYMENT_STOP_MONITORING: "/api/payments/stop-monitoring";
|
|
11
12
|
readonly PAYMENT_THEPAY_CREATE: "/api/payments/create-thepay";
|
|
12
13
|
readonly PAYMENT_THEPAY_STATUS: "/api/payments/thepay-status/:paymentId";
|
|
13
14
|
readonly PAYMENT_THEPAY_CANCEL: "/api/payments/thepay-cancel";
|
package/dist/api.js
CHANGED
|
@@ -11,6 +11,7 @@ export const API_ENDPOINTS = {
|
|
|
11
11
|
PAYMENT_COMPLETE_MULTI: '/api/payments/complete-multi',
|
|
12
12
|
PAYMENT_CANCEL: '/api/payments/cancel',
|
|
13
13
|
PAYMENT_START_MONITORING: '/api/payments/start-monitoring',
|
|
14
|
+
PAYMENT_STOP_MONITORING: '/api/payments/stop-monitoring',
|
|
14
15
|
// ThePay.eu payment endpoints
|
|
15
16
|
PAYMENT_THEPAY_CREATE: '/api/payments/create-thepay',
|
|
16
17
|
PAYMENT_THEPAY_STATUS: '/api/payments/thepay-status/:paymentId',
|
package/dist/types.d.ts
CHANGED
|
@@ -173,7 +173,7 @@ export interface StartMonitoringRequest {
|
|
|
173
173
|
export interface StartMonitoringResponse {
|
|
174
174
|
paymentId: string;
|
|
175
175
|
status: string;
|
|
176
|
-
monitoringStartTime
|
|
176
|
+
monitoringStartTime?: number;
|
|
177
177
|
}
|
|
178
178
|
export interface ThePayCreateRequest {
|
|
179
179
|
items: Array<{
|