git: commit lead-opportunity interfaces

This commit is contained in:
Chika 2022-07-08 09:35:24 +03:00
parent e263908bd8
commit f95fa270de
3 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,24 @@
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: GetLeadUrl
// ====================================================
export interface GetLeadUrl_entity {
__typename: "lead";
link: string | null;
}
export interface GetLeadUrl {
/**
* Лизинговые сделки. statecode по умолчанию 0, можно отфильтровать по ownerid и/или domainName
*/
entity: GetLeadUrl_entity | null;
}
export interface GetLeadUrlVariables {
id: any;
}

View File

@ -0,0 +1,21 @@
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: GetOpportunityUrl
// ====================================================
export interface GetOpportunityUrl_entity {
__typename: "opportunity";
link: string | null;
}
export interface GetOpportunityUrl {
entity: GetOpportunityUrl_entity | null;
}
export interface GetOpportunityUrlVariables {
id: any;
}

View File

@ -0,0 +1,21 @@
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: GetQuoteUrl
// ====================================================
export interface GetQuoteUrl_entity {
__typename: "quote";
link: string | null;
}
export interface GetQuoteUrl {
entity: GetQuoteUrl_entity | null;
}
export interface GetQuoteUrlVariables {
id: any;
}