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