release 0.3.0

This commit is contained in:
apilki
2026-08-29 15:07:33 +00:00
parent 3db10ca0b1
commit e1e04dd2bc
10 changed files with 324 additions and 182 deletions

View File

@@ -1,31 +0,0 @@
/**
* API Яндекс Маркета для продавцов
* API Яндекс Маркета помогает продавцам автоматизировать и упростить работу с маркетплейсом. В числе возможностей интеграции: * управление каталогом товаров и витриной, * обработка заказов, * изменение настроек магазина, * получение отчетов.
*
* The version of the OpenAPI document: LATEST
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Echo200Response
*/
export interface Echo200Response {
/**
*
* @type {string}
* @memberof Echo200Response
*/
message?: string;
}
/**
* Check if a given object implements the Echo200Response interface.
*/
export declare function instanceOfEcho200Response(value: object): value is Echo200Response;
export declare function Echo200ResponseFromJSON(json: any): Echo200Response;
export declare function Echo200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Echo200Response;
export declare function Echo200ResponseToJSON(value?: Echo200Response | null): any;

View File

@@ -1,38 +0,0 @@
/* tslint:disable */
/* eslint-disable */
/**
* API Яндекс Маркета для продавцов
* API Яндекс Маркета помогает продавцам автоматизировать и упростить работу с маркетплейсом. В числе возможностей интеграции: * управление каталогом товаров и витриной, * обработка заказов, * изменение настроек магазина, * получение отчетов.
*
* The version of the OpenAPI document: LATEST
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* Check if a given object implements the Echo200Response interface.
*/
export function instanceOfEcho200Response(value) {
return true;
}
export function Echo200ResponseFromJSON(json) {
return Echo200ResponseFromJSONTyped(json, false);
}
export function Echo200ResponseFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'message': json['message'] == null ? undefined : json['message'],
};
}
export function Echo200ResponseToJSON(value) {
if (value == null) {
return value;
}
return {
'message': value['message'],
};
}

View File

@@ -1,31 +0,0 @@
/**
* API Яндекс Маркета для продавцов
* API Яндекс Маркета помогает продавцам автоматизировать и упростить работу с маркетплейсом. В числе возможностей интеграции: * управление каталогом товаров и витриной, * обработка заказов, * изменение настроек магазина, * получение отчетов.
*
* The version of the OpenAPI document: LATEST
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Echo200Response
*/
export interface Echo200Response {
/**
*
* @type {string}
* @memberof Echo200Response
*/
message?: string;
}
/**
* Check if a given object implements the Echo200Response interface.
*/
export declare function instanceOfEcho200Response(value: object): value is Echo200Response;
export declare function Echo200ResponseFromJSON(json: any): Echo200Response;
export declare function Echo200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Echo200Response;
export declare function Echo200ResponseToJSON(value?: Echo200Response | null): any;

View File

@@ -1,44 +0,0 @@
"use strict";
/* tslint:disable */
/* eslint-disable */
/**
* API Яндекс Маркета для продавцов
* API Яндекс Маркета помогает продавцам автоматизировать и упростить работу с маркетплейсом. В числе возможностей интеграции: * управление каталогом товаров и витриной, * обработка заказов, * изменение настроек магазина, * получение отчетов.
*
* The version of the OpenAPI document: LATEST
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.instanceOfEcho200Response = instanceOfEcho200Response;
exports.Echo200ResponseFromJSON = Echo200ResponseFromJSON;
exports.Echo200ResponseFromJSONTyped = Echo200ResponseFromJSONTyped;
exports.Echo200ResponseToJSON = Echo200ResponseToJSON;
/**
* Check if a given object implements the Echo200Response interface.
*/
function instanceOfEcho200Response(value) {
return true;
}
function Echo200ResponseFromJSON(json) {
return Echo200ResponseFromJSONTyped(json, false);
}
function Echo200ResponseFromJSONTyped(json, ignoreDiscriminator) {
if (json == null) {
return json;
}
return {
'message': json['message'] == null ? undefined : json['message'],
};
}
function Echo200ResponseToJSON(value) {
if (value == null) {
return value;
}
return {
'message': value['message'],
};
}