fix: open-api usage for deal barcodes print

This commit is contained in:
2024-09-28 20:19:44 +04:00
parent 943291c7d1
commit cbb75f0110
5 changed files with 19 additions and 5 deletions

View File

@@ -2,11 +2,12 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { BillPaymentInfo } from './BillPaymentInfo';
import type { BillPaymentStatus } from './BillPaymentStatus';
import type { NotificationChannel } from './NotificationChannel';
export type BillStatusUpdateRequest = {
listenerTransactionId: number;
channel: NotificationChannel;
info: BillPaymentStatus;
info: (BillPaymentInfo | BillPaymentStatus);
};

View File

@@ -1,3 +1,8 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type GetDealProductsBarcodesPdfRequest = {
dealId: number;
};

View File

@@ -1,5 +1,10 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type GetDealProductsBarcodesPdfResponse = {
base64String: string;
filename: string;
mimeType: string;
};
};