@matchi/api 0.20250902.1 → 0.20250916.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.
@@ -1368,6 +1368,11 @@ type pendingPayment = {
1368
1368
  * URL to the checkout flow
1369
1369
  */
1370
1370
  checkoutUrl: string;
1371
+ /**
1372
+ * URL to TPC's external payment
1373
+ */
1374
+ externalPaymentUrl?: string;
1375
+ method?: string;
1371
1376
  paymentId: number;
1372
1377
  };
1373
1378
  declare namespace pendingPayment {
@@ -2397,7 +2402,7 @@ declare class AuthorizedService {
2397
2402
  /**
2398
2403
  * Update fields in a booking for m2m/admin
2399
2404
  * @param bookingId ID of the booking to update
2400
- * @param requestBody Update the entrycode or the externalPaymentLink for a booking
2405
+ * @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
2401
2406
  * @returns any Booking updated successfully
2402
2407
  * @throws ApiError
2403
2408
  */
@@ -2405,6 +2410,7 @@ declare class AuthorizedService {
2405
2410
  actor: actor;
2406
2411
  entryCode?: string;
2407
2412
  externalPaymentLink?: string;
2413
+ markPaidExternally?: boolean;
2408
2414
  }): CancelablePromise<any>;
2409
2415
  /**
2410
2416
  * Cancel a booking by ID for m2m/admin
@@ -2749,7 +2755,7 @@ declare class BookingServiceV1Service {
2749
2755
  /**
2750
2756
  * Update fields in a booking for m2m/admin
2751
2757
  * @param bookingId ID of the booking to update
2752
- * @param requestBody Update the entrycode or the externalPaymentLink for a booking
2758
+ * @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
2753
2759
  * @returns any Booking updated successfully
2754
2760
  * @throws ApiError
2755
2761
  */
@@ -2757,6 +2763,7 @@ declare class BookingServiceV1Service {
2757
2763
  actor: actor;
2758
2764
  entryCode?: string;
2759
2765
  externalPaymentLink?: string;
2766
+ markPaidExternally?: boolean;
2760
2767
  }): CancelablePromise<any>;
2761
2768
  /**
2762
2769
  * Cancel a booking by ID for m2m/admin
@@ -1368,6 +1368,11 @@ type pendingPayment = {
1368
1368
  * URL to the checkout flow
1369
1369
  */
1370
1370
  checkoutUrl: string;
1371
+ /**
1372
+ * URL to TPC's external payment
1373
+ */
1374
+ externalPaymentUrl?: string;
1375
+ method?: string;
1371
1376
  paymentId: number;
1372
1377
  };
1373
1378
  declare namespace pendingPayment {
@@ -2397,7 +2402,7 @@ declare class AuthorizedService {
2397
2402
  /**
2398
2403
  * Update fields in a booking for m2m/admin
2399
2404
  * @param bookingId ID of the booking to update
2400
- * @param requestBody Update the entrycode or the externalPaymentLink for a booking
2405
+ * @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
2401
2406
  * @returns any Booking updated successfully
2402
2407
  * @throws ApiError
2403
2408
  */
@@ -2405,6 +2410,7 @@ declare class AuthorizedService {
2405
2410
  actor: actor;
2406
2411
  entryCode?: string;
2407
2412
  externalPaymentLink?: string;
2413
+ markPaidExternally?: boolean;
2408
2414
  }): CancelablePromise<any>;
2409
2415
  /**
2410
2416
  * Cancel a booking by ID for m2m/admin
@@ -2749,7 +2755,7 @@ declare class BookingServiceV1Service {
2749
2755
  /**
2750
2756
  * Update fields in a booking for m2m/admin
2751
2757
  * @param bookingId ID of the booking to update
2752
- * @param requestBody Update the entrycode or the externalPaymentLink for a booking
2758
+ * @param requestBody Update the entrycode or the externalPaymentLink for a booking, mark booking as paidExternally
2753
2759
  * @returns any Booking updated successfully
2754
2760
  * @throws ApiError
2755
2761
  */
@@ -2757,6 +2763,7 @@ declare class BookingServiceV1Service {
2757
2763
  actor: actor;
2758
2764
  entryCode?: string;
2759
2765
  externalPaymentLink?: string;
2766
+ markPaidExternally?: boolean;
2760
2767
  }): CancelablePromise<any>;
2761
2768
  /**
2762
2769
  * Cancel a booking by ID for m2m/admin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20250902.1",
3
+ "version": "0.20250916.1",
4
4
  "main": "dist/main/index.js",
5
5
  "module": "dist/main/index.mjs",
6
6
  "devDependencies": {