feat: ym sync

This commit is contained in:
2025-04-13 13:48:06 +03:00
parent 5487aab274
commit 69c5f1419f
9 changed files with 159 additions and 18 deletions

View File

@@ -0,0 +1,8 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type GetYandexMarketCampaignsRequest = {
apiKey: string;
};

View File

@@ -0,0 +1,9 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { YandexMarketCampaignSchema } from './YandexMarketCampaignSchema';
export type GetYandexMarketCampaignsResponse = {
campaigns: Array<YandexMarketCampaignSchema>;
};

View File

@@ -0,0 +1,9 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type YandexMarketCampaignSchema = {
id: number;
name: string;
};