From f95fa270de495f967e5d331a3af02bc084bd3b79 Mon Sep 17 00:00:00 2001 From: Chika Date: Fri, 8 Jul 2022 09:35:24 +0300 Subject: [PATCH] git: commit lead-opportunity interfaces --- .../reactions/__generated__/GetLeadUrl.ts | 24 +++++++++++++++++++ .../__generated__/GetOpportunityUrl.ts | 21 ++++++++++++++++ .../reactions/__generated__/GetQuoteUrl.ts | 21 ++++++++++++++++ 3 files changed, 66 insertions(+) create mode 100644 process/lead-opportunity/reactions/__generated__/GetLeadUrl.ts create mode 100644 process/lead-opportunity/reactions/__generated__/GetOpportunityUrl.ts create mode 100644 process/lead-opportunity/reactions/__generated__/GetQuoteUrl.ts diff --git a/process/lead-opportunity/reactions/__generated__/GetLeadUrl.ts b/process/lead-opportunity/reactions/__generated__/GetLeadUrl.ts new file mode 100644 index 0000000..090bc0e --- /dev/null +++ b/process/lead-opportunity/reactions/__generated__/GetLeadUrl.ts @@ -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; +} diff --git a/process/lead-opportunity/reactions/__generated__/GetOpportunityUrl.ts b/process/lead-opportunity/reactions/__generated__/GetOpportunityUrl.ts new file mode 100644 index 0000000..88d33d3 --- /dev/null +++ b/process/lead-opportunity/reactions/__generated__/GetOpportunityUrl.ts @@ -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; +} diff --git a/process/lead-opportunity/reactions/__generated__/GetQuoteUrl.ts b/process/lead-opportunity/reactions/__generated__/GetQuoteUrl.ts new file mode 100644 index 0000000..ab262ee --- /dev/null +++ b/process/lead-opportunity/reactions/__generated__/GetQuoteUrl.ts @@ -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; +}