34 lines
909 B
TypeScript
34 lines
909 B
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
// @generated
|
|
// This file was automatically generated and should not be edited.
|
|
|
|
// ====================================================
|
|
// GraphQL query operation: GetMainOptions
|
|
// ====================================================
|
|
|
|
export interface GetMainOptions_selectSupplierCurrency {
|
|
__typename: "transactioncurrency";
|
|
label: string | null;
|
|
currencysymbol: string | null;
|
|
value: any | null;
|
|
}
|
|
|
|
export interface GetMainOptions_selectProduct {
|
|
__typename: "evo_baseproduct";
|
|
label: string | null;
|
|
value: any | null;
|
|
}
|
|
|
|
export interface GetMainOptions {
|
|
/**
|
|
* Валюта. statecode по умолчанию 0
|
|
*/
|
|
selectSupplierCurrency: (GetMainOptions_selectSupplierCurrency | null)[] | null;
|
|
selectProduct: (GetMainOptions_selectProduct | null)[] | null;
|
|
}
|
|
|
|
export interface GetMainOptionsVariables {
|
|
currentDate?: any | null;
|
|
}
|