@matchi/api 0.20250902.1 → 0.20250905.1
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/main/index.d.mts +4 -2
- package/dist/main/index.d.ts +4 -2
- package/package.json +1 -1
package/dist/main/index.d.mts
CHANGED
|
@@ -2397,7 +2397,7 @@ declare class AuthorizedService {
|
|
|
2397
2397
|
/**
|
|
2398
2398
|
* Update fields in a booking for m2m/admin
|
|
2399
2399
|
* @param bookingId ID of the booking to update
|
|
2400
|
-
* @param requestBody Update the entrycode or the externalPaymentLink for a booking
|
|
2400
|
+
* @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
|
|
2401
2401
|
* @returns any Booking updated successfully
|
|
2402
2402
|
* @throws ApiError
|
|
2403
2403
|
*/
|
|
@@ -2405,6 +2405,7 @@ declare class AuthorizedService {
|
|
|
2405
2405
|
actor: actor;
|
|
2406
2406
|
entryCode?: string;
|
|
2407
2407
|
externalPaymentLink?: string;
|
|
2408
|
+
markPaidExternally?: boolean;
|
|
2408
2409
|
}): CancelablePromise<any>;
|
|
2409
2410
|
/**
|
|
2410
2411
|
* Cancel a booking by ID for m2m/admin
|
|
@@ -2749,7 +2750,7 @@ declare class BookingServiceV1Service {
|
|
|
2749
2750
|
/**
|
|
2750
2751
|
* Update fields in a booking for m2m/admin
|
|
2751
2752
|
* @param bookingId ID of the booking to update
|
|
2752
|
-
* @param requestBody Update the entrycode or the externalPaymentLink for a booking
|
|
2753
|
+
* @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
|
|
2753
2754
|
* @returns any Booking updated successfully
|
|
2754
2755
|
* @throws ApiError
|
|
2755
2756
|
*/
|
|
@@ -2757,6 +2758,7 @@ declare class BookingServiceV1Service {
|
|
|
2757
2758
|
actor: actor;
|
|
2758
2759
|
entryCode?: string;
|
|
2759
2760
|
externalPaymentLink?: string;
|
|
2761
|
+
markPaidExternally?: boolean;
|
|
2760
2762
|
}): CancelablePromise<any>;
|
|
2761
2763
|
/**
|
|
2762
2764
|
* Cancel a booking by ID for m2m/admin
|
package/dist/main/index.d.ts
CHANGED
|
@@ -2397,7 +2397,7 @@ declare class AuthorizedService {
|
|
|
2397
2397
|
/**
|
|
2398
2398
|
* Update fields in a booking for m2m/admin
|
|
2399
2399
|
* @param bookingId ID of the booking to update
|
|
2400
|
-
* @param requestBody Update the entrycode or the externalPaymentLink for a booking
|
|
2400
|
+
* @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
|
|
2401
2401
|
* @returns any Booking updated successfully
|
|
2402
2402
|
* @throws ApiError
|
|
2403
2403
|
*/
|
|
@@ -2405,6 +2405,7 @@ declare class AuthorizedService {
|
|
|
2405
2405
|
actor: actor;
|
|
2406
2406
|
entryCode?: string;
|
|
2407
2407
|
externalPaymentLink?: string;
|
|
2408
|
+
markPaidExternally?: boolean;
|
|
2408
2409
|
}): CancelablePromise<any>;
|
|
2409
2410
|
/**
|
|
2410
2411
|
* Cancel a booking by ID for m2m/admin
|
|
@@ -2749,7 +2750,7 @@ declare class BookingServiceV1Service {
|
|
|
2749
2750
|
/**
|
|
2750
2751
|
* Update fields in a booking for m2m/admin
|
|
2751
2752
|
* @param bookingId ID of the booking to update
|
|
2752
|
-
* @param requestBody Update the entrycode or the externalPaymentLink for a booking
|
|
2753
|
+
* @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
|
|
2753
2754
|
* @returns any Booking updated successfully
|
|
2754
2755
|
* @throws ApiError
|
|
2755
2756
|
*/
|
|
@@ -2757,6 +2758,7 @@ declare class BookingServiceV1Service {
|
|
|
2757
2758
|
actor: actor;
|
|
2758
2759
|
entryCode?: string;
|
|
2759
2760
|
externalPaymentLink?: string;
|
|
2761
|
+
markPaidExternally?: boolean;
|
|
2760
2762
|
}): CancelablePromise<any>;
|
|
2761
2763
|
/**
|
|
2762
2764
|
* Cancel a booking by ID for m2m/admin
|