diff --git a/.env b/.env index a5a45d6..c9d9d97 100644 --- a/.env +++ b/.env @@ -3,3 +3,4 @@ USERS_SUPER=["akalinina","vchikalkin"] ####### URLS ######## URL_GET_USER=http://auth_service/auth/user +NEXT_PUBLIC_URL_CRM_GRAPHQL_PROXY=/api/crmgraphql \ No newline at end of file diff --git a/.env.development b/.env.production.dev similarity index 71% rename from .env.development rename to .env.production.dev index 8f29004..7bf7b0e 100644 --- a/.env.development +++ b/.env.production.dev @@ -1,5 +1,4 @@ ####### Colors ######## NEXT_PUBLIC_COLOR_PRIMARY=#BF3676 NEXT_PUBLIC_COLOR_SECONDARY=#FD4047 -NEXT_PUBLIC_COLOR_TERTIARTY=#FF9112 - +NEXT_PUBLIC_COLOR_TERTIARTY=#FF9112 \ No newline at end of file diff --git a/.graphqlrc.yml b/.graphqlrc.yml new file mode 100644 index 0000000..26adb4b --- /dev/null +++ b/.graphqlrc.yml @@ -0,0 +1,2 @@ +schema: './services/crm/graphql/schema.graphql' +documents: '**/*.{graphql,js,ts,jsx,tsx}' diff --git a/@types/graphql.d.ts b/@types/graphql.d.ts new file mode 100644 index 0000000..d05e066 --- /dev/null +++ b/@types/graphql.d.ts @@ -0,0 +1,6 @@ +declare module '*.graphql' { + import { DocumentNode } from 'graphql'; + const Schema: DocumentNode; + + export = Schema; +} diff --git a/apollo.config.js b/apollo.config.js new file mode 100644 index 0000000..003f3ec --- /dev/null +++ b/apollo.config.js @@ -0,0 +1,10 @@ +/** @type {import('apollo').ApolloConfig} */ +module.exports = { + client: { + service: { + name: 'crmgraphql', + localSchemaFile: './services/crm/graphql/schema.graphql', + }, + excludes: ['services/crm/graphql/schema.graphql'], + }, +}; diff --git a/next.config.js b/next.config.js index 02dfcd6..14c9878 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,6 @@ const withPlugins = require('next-compose-plugins'); const withLess = require('next-with-less'); +const withGraphQL = require('next-plugin-graphql'); /** @type {import('next').NextConfig} */ const nextConfig = { @@ -7,6 +8,14 @@ const nextConfig = { compiler: { styledComponents: true, }, + async rewrites() { + return [ + { + source: process.env.NEXT_PUBLIC_URL_CRM_GRAPHQL_PROXY, + destination: process.env.URL_CRM_GRAPHQL_DIRECT, + }, + ]; + }, }; const plugins = [ @@ -22,6 +31,7 @@ const plugins = [ }, }, ], + [withGraphQL], ]; module.exports = withPlugins(plugins, nextConfig); diff --git a/package.json b/package.json index f16e970..5aabaa8 100644 --- a/package.json +++ b/package.json @@ -6,17 +6,22 @@ "dev": "next dev", "build": "next build", "start": "next start", - "lint": "next lint" + "lint": "next lint", + "graphql:codegen": "apollo client:codegen --target typescript", + "graphql:schema": "apollo client:download-schema services/crm/graphql/schema.graphql" }, "dependencies": { + "@apollo/client": "^3.6.0", "antd": "^4.19.5", "axios": "^0.26.1", + "graphql": "14.0.2 - 14.2.0 || ^14.3.1 || ^15.0.0", "less": "^4.1.2", "less-loader": "^10.2.0", "mobx": "^6.5.0", "mobx-react-lite": "^3.3.0", "next": "12.1.5", "next-compose-plugins": "^2.2.1", + "next-plugin-graphql": "^0.0.2", "next-with-less": "^2.0.5", "react": "18.0.0", "react-dom": "18.0.0", @@ -30,6 +35,7 @@ "@types/react-dom": "18.0.1", "@types/rebass": "^4.0.10", "@types/styled-components": "^5.1.25", + "apollo": "^2.33.10", "eslint": "8.13.0", "eslint-config-next": "12.1.5", "msw": "^0.39.2", @@ -38,4 +44,4 @@ "msw": { "workerDirectory": "public" } -} \ No newline at end of file +} diff --git a/pages/_app.tsx b/pages/_app.tsx index 327e10b..3806f71 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -1,7 +1,9 @@ +import { ApolloProvider } from '@apollo/client'; import 'antd/dist/antd.less'; import Layout from 'Components/Layout'; import type { AppProps } from 'next/app'; import Head from 'next/head'; +import { useApollo } from 'services/crm/graphql/client'; import { ThemeProvider } from 'styled-components'; import { GlobalStyle } from 'UIKit/colors'; import theme from 'UIKit/theme'; @@ -13,6 +15,8 @@ if (process.env.NODE_ENV === 'development') { } function App({ Component, pageProps }: AppProps) { + const apolloClient = useApollo(pageProps.initialApolloState); + return ( @@ -24,7 +28,9 @@ function App({ Component, pageProps }: AppProps) { - + + + diff --git a/pages/index.tsx b/pages/index.tsx index ff68f1e..0d1d527 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,9 +1,12 @@ +import { NormalizedCacheObject } from '@apollo/client'; import type { GetServerSideProps, NextPage } from 'next'; +import { initializeApollo } from 'services/crm/graphql/client'; import { fetchUser } from 'services/user'; import type { User } from 'services/user/types'; interface PageProps { user: User; + initialApolloState: NormalizedCacheObject; } const Home: NextPage = () => { @@ -17,7 +20,9 @@ export const getServerSideProps: GetServerSideProps = async ctx => { : undefined, }); - return { props: { user } }; + const apolloClient = initializeApollo(); + + return { props: { user, initialApolloState: apolloClient.cache.extract() } }; }; export default Home; diff --git a/services/crm/graphql/client.js b/services/crm/graphql/client.js new file mode 100644 index 0000000..2d86319 --- /dev/null +++ b/services/crm/graphql/client.js @@ -0,0 +1,39 @@ +import { ApolloClient, InMemoryCache } from '@apollo/client'; +import { useMemo } from 'react'; + +/** @type {import('@apollo/client').ApolloClient} */ +let apolloClient; + +const uri = + typeof window === 'undefined' + ? process.env.URL_CRM_GRAPHQL_DIRECT + : process.env.NEXT_PUBLIC_URL_CRM_GRAPHQL_PROXY; + +function createApolloClient() { + return new ApolloClient({ + ssrMode: typeof window === 'undefined', + uri, + cache: new InMemoryCache(), + }); +} + +export function initializeApollo(initialState = null) { + const _apolloClient = apolloClient ?? createApolloClient(); + + // If your page has Next.js data fetching methods that use Apollo Client, the initial state + // gets hydrated here + if (initialState) { + _apolloClient.cache.restore(initialState); + } + // For SSG and SSR always create a new Apollo Client + if (typeof window === 'undefined') return _apolloClient; + // Create the Apollo Client once in the client + if (!apolloClient) apolloClient = _apolloClient; + + return _apolloClient; +} + +export function useApollo(initialState) { + const client = useMemo(() => initializeApollo(initialState), [initialState]); + return client; +} diff --git a/services/crm/graphql/schema.graphql b/services/crm/graphql/schema.graphql new file mode 100644 index 0000000..de67fe8 --- /dev/null +++ b/services/crm/graphql/schema.graphql @@ -0,0 +1,2488 @@ +"""The cost directives is used to express the complexity of a field.""" +directive @cost( + """Defines the complexity of the field.""" + complexity: Int! = 1 + + """Defines field arguments that act as complexity multipliers.""" + multipliers: [MultiplierPath!] +) on FIELD_DEFINITION + +""" +Direct the client to resolve this field locally, either from the cache or local resolvers. +""" +directive @client( + """ + When true, the client will never use the cache for this value. See + https://www.apollographql.com/docs/react/essentials/local-state/#forcing-resolvers-with-clientalways-true + """ + always: Boolean +) on FIELD | FRAGMENT_DEFINITION | INLINE_FRAGMENT + +""" +Export this locally resolved field as a variable to be used in the remainder of this query. See +https://www.apollographql.com/docs/react/essentials/local-state/#using-client-fields-as-variables +""" +directive @export( + """The variable name to export this field as.""" + as: String! +) on FIELD + +""" +Specify a custom store key for this result. See +https://www.apollographql.com/docs/react/advanced/caching/#the-connection-directive +""" +directive @connection( + """Specify the store key.""" + key: String! + + """ + An array of query argument names to include in the generated custom store key. + """ + filter: [String!] +) on FIELD + +""" +The multiplier path scalar represents a valid GraphQL multiplier path string. +""" +scalar MultiplierPath + +type Query { + account(accountid: Uuid!): account + + """Контрагенты. statecode по умолчанию 0""" + accounts(evo_accnumber: String, evo_account_type: [Int!], evo_broker_accountid: Uuid, evo_fin_department_accountid: Uuid, evo_id_elt: String, evo_inn: String, evo_kpp: String, evo_legal_form: Int, evo_type_ins_policy: [Int!], ownerid: Uuid, owner_domainname: String, statecode: Int): [account] + + """Брокер. statecode по умолчанию 0""" + broker_agents(ownnerid: Uuid!, statecode: Int): [account] + contacts(parentcustomerid: Uuid, statecode: Int): [contact] + email(activityid: Uuid!): email + evo_addcontract(evo_addcontractid: Uuid!): evo_addcontract + evo_addproduct(evo_addproductid: Uuid!): evo_addproduct + evo_addproduct_type(evo_addproduct_typeid: Uuid!): evo_addproduct_type + evo_addproduct_types(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_max_period_param: DecimalParamInput, evo_min_period_param: DecimalParamInput, evo_product_type: Int, statecode: Int): [evo_addproduct_type] + evo_address(evo_addressid: Uuid!): evo_address + evo_addresses(evo_address_name: String, evo_fias: Boolean, statecode: Int): [evo_address] + evo_agency_agreement(evo_agency_agreementid: Uuid!): evo_agency_agreement + evo_bank_detailses(evo_accountid: Uuid, orderby: OrderByInput, statecode: Int = 0): [evo_bank_details] + evo_baseproduct(evo_baseproductid: Uuid!): evo_baseproduct + evo_baseproducts(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_relation: [Int!], statecode: Int): [evo_baseproduct] + evo_brands(evo_vehicle_type: [Int!], statecode: Int): [evo_brand] + evo_businessunits(statecode: Int): [evo_businessunit] + evo_client_risks(statecode: Int): [evo_client_risk] + evo_client_types(statecode: Int): [evo_client_type] + evo_coefficients(evo_client_riskid: Uuid, evo_client_typeid: Uuid, evo_corfficient_type: Int, evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_job_titleid: Uuid, evo_max_period_param: DecimalParamInput, evo_min_period_param: DecimalParamInput, statecode: Int): [evo_coefficient] + evo_contract(evo_contractid: Uuid!): evo_contract + evo_contracts(evo_name: String, statecode: Int): [evo_contract] + evo_countries(evo_code_numeric: String): [evo_countryGraphQL] + evo_country(evo_countryid: Uuid!): evo_countryGraphQL + evo_currencychanges(evo_coursedate_param: DateParamInput, evo_ref_transactioncurrency: Uuid, statecode: Int): [evo_currencychange] + evo_equipments(evo_modelid: Uuid, statecode: Int): [evo_equipment] + evo_external_supplier_codes(evo_id: String, statecode: Int): [evo_external_supplier_code] + evo_external_system_request(evo_external_system_requestid: Uuid!): evo_external_system_request + evo_external_system_requests(evo_integration_status: Int, evo_name: String, evo_system: Int, statecode: Int): [evo_external_system_request] + evo_finegibdd(evo_finegibddid: Uuid!): evo_finegibdd + evo_gps_brands(statecode: Int): [evo_gps_brand] + evo_gps_models(evo_gps_brandid: Uuid, statecode: Int): [evo_gps_model] + evo_graphs(evo_contractid: Uuid, statecode: Int): [evo_graph] + evo_identity_documents(evo_employee_systemuserid: Uuid!): [evo_identity_document] + evo_impairment_groups(statecode: Int): [evo_impairment_group] + evo_insurance_periods(evo_contractid: Uuid, statecode: Int): [evo_insurance_period] + evo_job_titles(statecode: Int): [evo_job_title] + evo_leasingobject(evo_leasingobjectid: Uuid!): evo_leasingobject + evo_leasingobject_type(evo_leasingobject_typeid: Uuid!): evo_leasingobject_type + evo_leasingobject_types(statecode: Int): [evo_leasingobject_type] + evo_model(evo_modelid: Uuid!): evo_model + evo_models(evo_brandid: Uuid, evo_vehicle_type: Int, statecode: Int): [evo_model] + evo_orglegalform(evo_orglegalformid: Uuid!): evo_orglegalform + evo_orglegalforms(statecode: Int = 0): [evo_orglegalform] + evo_paymentorders(evo_dds_1c: String, evo_name: String, evo_paydate_param: DateParamInput, evo_payment_number_1c: String, evo_paysum: Decimal, statecode: Int, statuscode: Int): [evo_paymentorder] + evo_planpayments(evo_addproduct_typeid: Uuid, statecode: Int): [evo_planpayment] + evo_product_risk(evo_product_riskid: Uuid!): evo_product_risk + evo_product_risks(statecode: Int): [evo_product_risk] + evo_rate(evo_rateid: Uuid!): evo_rate + evo_rates(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, statecode: Int): [evo_rate] + + """Регион. statecode по умолчанию 0""" + evo_regions(evo_businessunit_evolution: Boolean, evo_creditregistry_id: Int, statecode: Int): [evo_region] + evo_request_payment(evo_request_paymentid: Uuid!): evo_request_payment + evo_request_payments(evo_id: String, evo_name: String, statecode: Int): [evo_request_payment] + evo_reward_condition(evo_reward_conditionid: Uuid!): evo_reward_condition + evo_reward_conditions(evo_agency_agreementid_param: GuidParamInput, evo_agent_accountid: Uuid, evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, statecode: Int): [evo_reward_condition] + evo_sot_coefficient_types(statecode: Int): [evo_sot_coefficient_type] + evo_statuscode(evo_id: String, evo_statuscodeid: Uuid): evo_statuscode + evo_statuscodes(statecode: Int): [evo_statuscode] + evo_subsidies(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, statecode: Int): [evo_subsidy] + evo_tarif(evo_tarifid: Uuid!): evo_tarif + evo_tarifs(evo_balance_holder: [Int!], evo_baseproductid: Uuid, evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_graphtype_exception: [Int!], evo_ins_type: [Int!], evo_max_first_payment_param: DecimalParamInput, evo_max_last_payment_param: DecimalParamInput, evo_max_period_param: DecimalParamInput, evo_min_first_payment_param: DecimalParamInput, evo_min_last_payment_param: DecimalParamInput, evo_min_period_param: DecimalParamInput, evo_used: Boolean, statecode: Int): [evo_tarif] + evo_town(evo_fias_id: String, evo_townid: Uuid): evo_town + + """Города. statecode по умолчанию 0""" + evo_towns(evo_regionid: Uuid, statecode: Int): [evo_town] + evo_vehicle_body_type(evo_vehicle_body_typeid: Uuid!): evo_vehicle_body_typeGraphQL + + """ + Лизинговые сделки. statecode по умолчанию 0, можно отфильтровать по ownerid и/или domainName + """ + lead(leadid: Uuid!): lead + + """ + Интересы. statecode по умолчанию 0, можно отфильтровать по ownerid и/или domainName + """ + leads(evo_opportunityid: Uuid, ownerid: Uuid, owner_domainname: String, statecode: Int): [lead] + opportunities(evo_leadid: Uuid, ownerid: Uuid, owner_domainname: String, statecode: Int): [opportunity] + opportunity(opportunityid: Uuid!): opportunity + queue(emailaddress: String): queue + quote(quoteId: Uuid!): quote + + """ + Предложения. statecode по умолчанию 0, можно отфильтровать по ownerid и/или domainName + """ + quotes(condition: ConditionInput, evo_leadid: Uuid, ownerid: Uuid, owner_domainname: String, statecode: Int): [quote] + + """Агенты салона. statecode по умолчанию 0""" + salon_agents(salonaccountid: Uuid!, statecode: Int): [account] + + """Поставщики ЮЛ салона. statecode по умолчанию 0""" + salon_providers(salonaccountid: Uuid!, statecode: Int): [account] + systemuser(domainname: String, systemuserid: Uuid): systemuser + systemusers(evo_employee_id: String, isdisabled: Boolean = false): [systemuser] + templates(description: String): [template] + + """Валюта. statecode по умолчанию 0""" + transactioncurrencies(statecode: Int): [transactioncurrency] + transactioncurrency(transactioncurrencyid: Uuid!): transactioncurrency +} + +type Mutation { + by(domainName: String): MutationBy +} + +type account { + accountid: Uuid + childcontacts(statecode: Int): [contact] + createdon: DateTime + emailaddress1: String + evo_accnumber: String + evo_account_type: [Int!] + evo_address_factid: Uuid + evo_address_factidData: evo_address + evo_address_legalid: Uuid + evo_address_legalidData: evo_address + evo_address_legal_string: String + evo_address_postalid: Uuid + evo_address_postalidData: evo_address + evo_bank_detailses(statecode: Int): [evo_bank_details] + evo_branch_count: String + evo_branch_type: Int + evo_broker_accountid: Uuid + evo_broker_accountidData: account + evo_citizenship_countryid: Uuid + evo_client_riskid: Uuid + evo_consent_date: DateTime + evo_contracts: [evo_contract] + evo_dadata_dateupdate: DateTime + evo_dadatdalog: String + evo_dealer_responsible_systemuserid: Uuid + evo_div_12month: Boolean + evo_economic_security_systemuserid: Uuid + evo_employee_count: Int + evo_fingap_number_rules: Int + evo_fin_department_accountid: Uuid + evo_fin_department_accountidData: account + evo_fuel_card_code: String + evo_fuel_card_login: String + evo_fuel_card_pass: String + evo_fullname: String + evo_group_sales_network: Uuid + evo_id_elt: String + evo_id_elt_osago: String + evo_id_elt_smr: String + evo_ifns_code: String + evo_ifns_code_branch: String + evo_ifns_name: String + evo_inn: String + evo_insurance_agent_accountid: Uuid + evo_invoice_number_fix: String + evo_invoice_number_rules: Int + evo_kpp: String + evo_legal_form: Int + evo_legal_region_calc: Boolean + evo_licenses_list: String + evo_lk_regdate: DateTime + evo_management_disqualified: Boolean + evo_ogrn: String + evo_ogrn_date: DateTime + evo_okato: String + evo_okfs: String + evo_okogu: String + evo_okpo: String + evo_oktmo: String + evo_okved: String + evo_orglegalformid: Uuid + evo_orglegalformidData: evo_orglegalform + evo_osago_with_kasko: Boolean + evo_smb_category: Int + evo_smb_issue_date: DateTime + evo_state_actuality_date: DateTime + evo_state_liquidation_date: DateTime + evo_state_registration_date: DateTime + evo_state_status: Int + evo_storage: String + evo_subsidies(statecode: Int): [evo_subsidy] + evo_tax_system: Int + evo_type_ins_policy: [Int!] + modifiedon: DateTime + name: String + ownerid: Uuid + owneridsystemuserData: systemuser + owneridteamData: team + owneridtype: Int + ownerid_systemuser: Uuid + ownerid_team: Uuid + statecode: Int + telephone1: String + toObjectString: String +} + +scalar Uuid + +input DateParamInput { + eq: DateTime + gt: DateTime + gte: DateTime + lt: DateTime + lte: DateTime +} + +input DecimalParamInput { + eq: Decimal + gt: Decimal + gte: Decimal + lt: Decimal + lte: Decimal +} + +input ConditionInput { + conditions: [ConditionInput] + filters: [FilterInput] + logicoperation: LogicOperation! +} + +input GuidParamInput { + eq: Uuid + has: Boolean +} + +"""The built-in `Decimal` scalar type.""" +scalar Decimal + +input OrderByInput { + fieldName: String + sortingType: SortingType! +} + +type contact { + birthdate: DateTime + contactid: Uuid + createdon: DateTime + emailaddress1: String + emailaddress2: String + emailaddress3: String + evo_consent_date: DateTime + evo_fact_addressid: Uuid + evo_fact_addressidname: String + evo_fullname: String + evo_functiontype: [Int!] + evo_inn: String + evo_name_dative: String + evo_name_genitive: String + evo_no_middle_name: Boolean + evo_reg_addressid: Uuid + evo_share_capital: Decimal + evo_signer_rule_basis: Int + firstname: String + fullname: String + gendercode: Int + jobtitle: String + lastname: String + link: String + middlename: String + mobilephone: String + modifiedon: DateTime + ownerid: Uuid + owneridtype: Int + ownerid_systemuser: Uuid + ownerid_team: Uuid + parentcustomeridtype: Int + parentcustomerid_account: Uuid + parentcustomerid_contact: Uuid + statecode: Int + telephone1: String + toObjectString: String +} + +type evo_product_risk { + createdon: DateTime + evo_addproduct_typeid: Uuid + evo_addproduct_typeidData: evo_addproduct_type + evo_contractid: Uuid + evo_contractidData: evo_contract + evo_insurance_periodid: Uuid + evo_insurance_policyid: Uuid + evo_insurance_policyidData: evo_insurance_policy + evo_ins_price: Decimal + evo_ins_sum: Decimal + evo_name: String + evo_product_riskid: Uuid + evo_quoteid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_addproduct_type { + createdon: DateTime + evo_accountid: Uuid + evo_addproduct_typeid: Uuid + evo_addproduct_types: [evo_addproduct_type] + evo_controls_program: [Int!] + evo_cost_service_provider: Decimal + evo_cost_service_provider_withoutnds: Decimal + evo_datefrom: DateTime + evo_dateto: DateTime + evo_description: String + evo_equip_cost: Decimal + evo_gibdd_region: Boolean + evo_graph_price: Decimal + evo_graph_price_withoutnds: Decimal + evo_helpcard_type: Int + evo_id: String + evo_leasingobject_types(statecode: Int): [evo_leasingobject_type] + evo_max_age: Int + evo_max_period: Decimal + evo_min_age: Int + evo_min_period: Decimal + evo_name: String + evo_nsib_limit: Decimal + evo_planpayments(statecode: Int): [evo_planpayment] + evo_prime_cost: Decimal + evo_product_type: Int + evo_pts_type: [Int!] + evo_quote_name: String + evo_retro_bonus: Decimal + evo_retro_bonus_withoutnds: Decimal + evo_towtruck: Boolean + evo_type_calc_cerebellum: Int + evo_visible_calc: Boolean + evo_whom_register: Int + evo_who_register: Int + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_baseproduct { + createdon: DateTime + evo_baseproductid: Uuid + evo_brands(statecode: Int): [evo_brand] + evo_datefrom: DateTime + evo_dateto: DateTime + evo_id: String + evo_leasingobject_types(statecode: Int): [evo_leasingobject_type] + evo_name: String + evo_relation: [Int!] + evo_sale_without_nds: Boolean + modifiedon: DateTime + statecode: Int + systemusers(statecode: Int): [systemuser] + toObjectString: String +} + +type evo_graph { + createdon: DateTime + evo_addcontractid: Uuid + evo_contractid: Uuid + evo_cost_equipment_sum: Decimal + evo_cost_equipment_withoutnds_sum: Decimal + evo_cost_price_telematics_sum: Decimal + evo_cost_price_telematics_withoutnds_sum: Decimal + evo_cost_telematics_sum: Decimal + evo_cost_telematics_withoutnds_sum: Decimal + evo_graf_date_approve: DateTime + evo_graphid: Uuid + evo_name: String + evo_nds: Decimal + evo_planpayments: [evo_planpayment] + evo_quoteid: Uuid + evo_sumpay_withnds: Decimal + evo_sumpay_withoutnds: Decimal + modifiedon: DateTime + ownerid: Uuid + toObjectString: String +} + +type evo_insurance_period { + createdon: DateTime + evo_accept_pay_listid: Uuid + evo_accountid: Uuid + evo_age_drivers: Int + evo_base_reward_factor: Decimal + evo_base_reward_rub: Decimal + evo_close: Boolean + evo_comment: String + evo_contractid: Uuid + evo_datefrom: DateTime + evo_dateto: DateTime + evo_dgo_price: Decimal + evo_elt_id: String + evo_exp_drivers: Int + evo_franchise: Decimal + evo_id: String + evo_id_elt_calc: String + evo_insurance_decentral: Boolean + evo_insurance_decentral_factor: Decimal + evo_insurance_decentral_rub: Decimal + evo_insurance_periodid: Uuid + evo_insurance_policyid: Uuid + evo_insurance_policyidData: evo_insurance_policy + evo_insurance_price_result: Decimal + evo_insurance_supplier: Boolean + evo_insurance_supplier_factor: Decimal + evo_insurance_supplier_rub: Decimal + evo_insurance_type: Int + evo_insurer_accountid: Uuid + evo_insurer_accountidData: account + evo_ins_risk: [Int!] + evo_invoice_date: DateTime + evo_kasko_price: Decimal + evo_leasingobjectid: Uuid + evo_mobile_discount: Boolean + evo_mobile_discount_factor: Decimal + evo_mobile_discount_rub: Decimal + evo_name: String + evo_nsib_connection_listid: Uuid + evo_nsib_pay_summ: Decimal + evo_ns_price: Decimal + evo_opponent_discount: Boolean + evo_opponent_discount_factor: Decimal + evo_opponent_discount_rub: Decimal + evo_osago_price: Decimal + evo_other_discount: Boolean + evo_other_discount_factor: Decimal + evo_other_discount_rub: Decimal + evo_paid: Boolean + evo_payer: Int + evo_pay_summ_fact: Decimal + evo_period_number: Int + evo_prolong_listid: Uuid + evo_request_id_elt: String + evo_request_status: Int + evo_result_reward_factor: Decimal + evo_result_reward_rub: Decimal + evo_settlement_type: Int + evo_storage: String + evo_supplier_accountid: Uuid + evo_territory_price: Decimal + evo_under_payment_compensation: Decimal + evo_unlimit_drivers: Boolean + modifiedon: DateTime + ownerid_systemuser: Uuid + ownerid_team: Uuid + statecode: Int + statuscode: Int + toObjectString: String +} + +type evo_addproduct { + createdon: DateTime + evo_accountid: Uuid + evo_activation_date: DateTime + evo_addproductid: Uuid + evo_addproductnumberid: Uuid + evo_addproductnumberidData: evo_addproductnumber + evo_addproduct_typeid: Uuid + evo_addproduct_typeidData: evo_addproduct_type + evo_deactivation_date: DateTime + evo_fuel_card_currency_limit_check: Boolean + evo_fuel_card_limit_check: Boolean + evo_fuel_card_limit_used: Decimal + evo_leasingobjectid: Uuid + evo_name: String + evo_provider_accountid: Uuid + evo_provider_accountidData: account + evo_request_instal_message: String + evo_service_contactid: Uuid + evo_telematics_number: String + evo_validity_from: DateTime + modifiedon: DateTime + toObjectString: String +} + +type evo_external_supplier_code { + accounts(statecode: Int): [account] + createdon: DateTime + evo_accountid: Uuid + evo_accountidData: account + evo_external_supplier_codeid: Uuid + evo_id: String + evo_manager_systemuserid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_orglegalform { + createdon: DateTime + evo_code: String + evo_elt_id: String + evo_legal_form: Int + evo_name: String + evo_nko: Boolean + evo_not_financing: Boolean + evo_orglegalformid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_statuscode { + createdon: DateTime + evo_id: String + evo_name: String + evo_statuscodeid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_leasingobject { + createdon: DateTime + evo_3_person_sale_date: DateTime + evo_addequipment_list: String + evo_base: String + evo_brandid: Uuid + evo_brandidData: evo_brand + evo_category: Int + evo_category_tr: Int + evo_certificate: String + evo_certificate_date: DateTime + evo_certificate_issued: String + evo_chassis: String + evo_color: String + evo_contractid: Uuid + evo_create_contract_purchase: Boolean + evo_delivery_time: Int + evo_driving_axle: String + evo_ecological_class: Int + evo_engine_model: String + evo_engine_power: Decimal + evo_engine_power_kvt: Decimal + evo_engine_type: Int + evo_engine_volume: Decimal + evo_equipmentid: Uuid + evo_gosnumber: String + evo_gos_akt: String + evo_guarantee: String + evo_insured_contactid: Uuid + evo_leasingobjectid: Uuid + evo_leasingobject_specification: String + evo_leasingobject_typeid: Uuid + evo_leasingobject_typeidData: evo_leasingobject_type + evo_legal_regionid: Uuid + evo_legal_townid: Uuid + evo_maker: String + evo_max_mass: Decimal + evo_max_speed: Decimal + evo_mileage: Decimal + evo_modelid: Uuid + evo_motor_power_1: String + evo_name: String + evo_object_number: String + evo_passport_address: String + evo_passport_brand_model: String + evo_passport_company: String + evo_passport_date: DateTime + evo_passport_engine_type: String + evo_passport_name: String + evo_passport_number: String + evo_passport_seria: String + evo_passport_type: Int + evo_prop_type: String + evo_pts_type: Int + evo_quoteid: Uuid + evo_regionid: Uuid + evo_registration: Int + evo_registration_regionid: Uuid + evo_reg_date: DateTime + evo_seats: Int + evo_sts_number: String + evo_townid: Uuid + evo_trailer: Boolean + evo_transmission_number: String + evo_used: Boolean + evo_use_for: Int + evo_vehicle_type_tax: Int + evo_vin: String + evo_year: Int + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_reward_condition { + createdon: DateTime + evo_add_agency_agreement: Uuid + evo_agency_agreementid: Uuid + evo_agency_agreementidData: evo_agency_agreement + evo_agent_accountid: Uuid + evo_brandid: Uuid + evo_client_type: Int + evo_condition_type: Int + evo_datefrom: DateTime + evo_dateto: DateTime + evo_deactivated: Boolean + evo_double_agent_accountid: Uuid + evo_name: String + evo_reduce_reward: Boolean + evo_reward_conditionid: Uuid + evo_reward_summ: Decimal + modifiedon: DateTime + ownerid_systemuser: Uuid + ownerid_team: Uuid + statecode: Int + toObjectString: String +} + +type evo_leasingobject_type { + createdon: DateTime + evo_category: Int + evo_category_tr: [Int!] + evo_depreciation_rate1: Decimal + evo_depreciation_rate2: Decimal + evo_expluatation_period1: Decimal + evo_expluatation_period2: Decimal + evo_id: String + evo_leasingobject_typeid: Uuid + evo_name: String + evo_subsidies(statecode: Int): [evo_subsidy] + evo_type_code: String + evo_vehicle_type: [Int!] + evo_vehicle_type_tax: Int + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type lead { + accountidData: account + createdon: DateTime + customerid: Uuid + customeridtype: Int + customerid_account: Uuid + customerid_contact: Uuid + emailaddress1: String + evo_agent_accountid: Uuid + evo_broker_accountid: Uuid + evo_client_type: Int + evo_comment: String + evo_double_agent_accountid: Uuid + evo_external_supplierid: Uuid + evo_fin_department_accountid: Uuid + evo_firstname: String + evo_inn: String + evo_kpp: String + evo_lastname: String + evo_new_client: String + evo_opportunityid: Uuid + evo_opportunityidData: opportunity + evo_statuscodeid: Uuid + evo_supplier_accountid: Uuid + evo_utm_campaign: String + evo_utm_content: String + evo_utm_medium: String + evo_utm_source: String + evo_utm_term: String + fullname: String + leadid: Uuid + leadsourcecode: Int + link: String + modifiedon: DateTime + ownerid: Uuid + owneridsystemuserData: systemuser + owneridtype: Int + ownerid_systemuser: Uuid + ownerid_team: Uuid + statecode: Int + telephone1: String + toObjectString: String +} + +type opportunity { + accountid: Uuid + accountidData: account + createdon: DateTime + evo_acc_director_contactid: Uuid + evo_acc_singdoc_contactid: Uuid + evo_all_credit: Decimal + evo_all_credit_actual_date: DateTime + evo_all_credit_evolight: Decimal + evo_all_credit_evoprofi: Decimal + evo_all_credit_evosmart: Decimal + evo_approvallogs: [evo_approvallog] + evo_businessunitid: Uuid + evo_businessunitidData: businessunit + evo_client_riskid: Uuid + evo_client_riskidData: evo_client_risk + evo_comment_description: String + evo_contracts: [evo_contract] + evo_credit_analyst_systemuserid: Uuid + evo_date_change_statuscode: DateTime + evo_declaration_revenue: Decimal + evo_docpay_ka_received: Int + evo_docpay_ka_require: Boolean + evo_founder1_beneficial_owner: Boolean + evo_founder1_contactid: Uuid + evo_founder1_part: Decimal + evo_founder2_beneficial_owner: Boolean + evo_founder2_contactid: Uuid + evo_founder2_part: Decimal + evo_founder3_beneficial_owner: Boolean + evo_founder3_contactid: Uuid + evo_founder3_part: Decimal + evo_founder4_beneficial_owner: Boolean + evo_founder4_contactid: Uuid + evo_founder4_part: Decimal + evo_gt_client_riskid: Uuid + evo_guarantor1_accountid: Uuid + evo_guarantor1_contactid: Uuid + evo_guarantor1_report_year: Int + evo_guarantor1_year_equity_capital: Decimal + evo_guarantor1_year_profit: Decimal + evo_guarantor1_year_revenue: Decimal + evo_guarantor2_accountid: Uuid + evo_guarantor2_contactid: Uuid + evo_guarantor3_contactid: Uuid + evo_guarantor4_contactid: Uuid + evo_leadid: Uuid + evo_leadidData: lead + evo_mps_systemuserid: Uuid + evo_oppnumber: String + evo_process_type: Int + evo_programsolution: Int + evo_report_year: Int + evo_sfm_comment: [Int!] + evo_statuscodeid: Uuid + evo_statuscodeidData: evo_statuscode + evo_statuscode_reason: String + evo_storage: String + evo_year_equity_capital: Decimal + evo_year_profit: Decimal + evo_year_revenue: Decimal + link: String + modifiedon: DateTime + name: String + opportunityid: Uuid + ownerid: Uuid + owneridsystemuserData: systemuser + owneridtype: Int + ownerid_systemuser: Uuid + ownerid_team: Uuid + parentaccountid: Uuid + quotes: [quote] + statecode: Int + toObjectString: String +} + +type quote { + createdon: DateTime + customerid: Uuid + customerid_account: Uuid + customerid_contact: Uuid + evo_accept_control_addproduct_typeid: Uuid + evo_accept_period: Int + evo_accept_quoteid: Uuid + evo_acquisition_costs: Decimal + evo_addproduct_types: [evo_addproduct_type] + evo_add_bonus_summ: Decimal + evo_add_equipment: Boolean + evo_agent_accountid: Uuid + evo_agent_reward_conditionid: Uuid + evo_agent_reward_summ: Decimal + evo_agent_reward_total: Decimal + evo_age_drivers: Int + evo_another_payments: Decimal + evo_approvallogs: [evo_approvallog] + evo_approved_first_payment: Decimal + evo_balance_holder: Int + evo_baseproductid: Uuid + evo_base_bonus: Decimal + evo_base_calc_pay: Decimal + evo_brandid: Uuid + evo_broker_accountid: Uuid + evo_broker_reward_conditionid: Uuid + evo_broker_reward_summ: Decimal + evo_broker_reward_total: Decimal + evo_calc_irr: Decimal + evo_calc_profit: Decimal + evo_card: Boolean + evo_card_bonus_summ: Decimal + evo_card_quote: Boolean + evo_category: Int + evo_category_tr: Int + evo_check_ins_result: Int + evo_client_riskid: Uuid + evo_client_typeid: Uuid + evo_comission_perc: Decimal + evo_comission_rub: Decimal + evo_contact_name: String + evo_cost_increace: Boolean + evo_cost_increase_perc: Decimal + evo_db_accept_registration: Int + evo_dealer_broker_accountid: Uuid + evo_dealer_broker_reward_conditionid: Uuid + evo_dealer_broker_reward_summ: Decimal + evo_dealer_broker_reward_total: Decimal + evo_dealer_person_accountid: Uuid + evo_dealer_reward_conditionid: Uuid + evo_dealer_reward_summ: Decimal + evo_dealer_reward_total: Decimal + evo_declaration_knd: String + evo_declaration_period: Int + evo_declaration_profit: Decimal + evo_declaration_revenue: Decimal + evo_declaration_year: Int + evo_delivery_time: Int + evo_dgo_price: Decimal + evo_director_bonus: Decimal + evo_director_fingap_bonus: Decimal + evo_director_nsib_bonus: Decimal + evo_discount_perc: Decimal + evo_discount_rub: Decimal + evo_discount_supplier_currency: Decimal + evo_dog_credit: Decimal + evo_double_agent_accountid: Uuid + evo_double_agent_reward_conditionid: Uuid + evo_double_agent_reward_summ: Decimal + evo_double_agent_reward_total: Decimal + evo_economic: Decimal + evo_economic_with_nds: Decimal + evo_engine_hours: Decimal + evo_engine_type: Int + evo_engine_volume: Decimal + evo_equipmentid: Uuid + evo_equity_capital: Decimal + evo_exp_drivers: Int + evo_fingap_accountid: Uuid + evo_fingap_bonus_sum: Decimal + evo_fingap_payer: Int + evo_fingap_period: Int + evo_fingap_price: Decimal + evo_fingap_quote: Boolean + evo_fin_department_accountid: Uuid + evo_fin_department_reward_conditionid: Uuid + evo_fin_department_reward_summ: Decimal + evo_fin_department_reward_total: Decimal + evo_first_dgo_price: Decimal + evo_first_kasko_accountid: Uuid + evo_first_kasko_price: Decimal + evo_first_ns_price: Decimal + evo_first_osago_accountid: Uuid + evo_first_osago_price: Decimal + evo_first_payment_perc: Decimal + evo_first_payment_perc_without_subsidy: Decimal + evo_first_payment_rub: Decimal + evo_first_payment_rub_without_subsidy: Decimal + evo_franchise: Decimal + evo_fuel: Boolean + evo_gender: Int + evo_gps_brandid: Uuid + evo_gps_modelid: Uuid + evo_graphs: [evo_graph] + evo_graph_irr: Decimal + evo_graph_type: Int + evo_guarantor1_another_peyments: Decimal + evo_guarantor1_declaration_year: Int + evo_guarantor1_equity_capital: Decimal + evo_guarantor1_profit_period: Decimal + evo_guarantor1_report_period: Int + evo_guarantor1_report_year: Int + evo_guarantor1_revenue_period: Decimal + evo_guarantor1_riskid: Uuid + evo_guarantor1_year_equity_capital: Decimal + evo_guarantor1_year_profit: Decimal + evo_guarantor1_year_revenue: Decimal + evo_high_season: Int + evo_id_elt_kasko: String + evo_id_elt_osago: String + evo_id_kasko_calc: String + evo_id_osago_calc: String + evo_importer_reward_perc: Decimal + evo_importer_reward_rub: Decimal + evo_importer_reward_summ: Decimal + evo_individual_insurance: Boolean + evo_insurance: Boolean + evo_insurance_decentral: Boolean + evo_insurance_period: Int + evo_insurance_type: Int + evo_insurer_comment: String + evo_ins_accept_quoteid: Uuid + evo_ins_comment: String + evo_ins_legal_form: Int + evo_irr: Decimal + evo_irr_final: Decimal + evo_irr_msfo_final: Decimal + evo_irr_msfo_final2: Decimal + evo_kasko_accountid: Uuid + evo_kasko_payer: Int + evo_kasko_price: Decimal + evo_kasko_price_leasperiod: Decimal + evo_key_return: Boolean + evo_kilometrage_limit: Int + evo_kilometrage_limit_period: Int + evo_last_payment_calc: Int + evo_last_payment_perc: Decimal + evo_last_payment_redemption: Boolean + evo_last_payment_rub: Decimal + evo_leadid: Uuid + evo_leadidData: lead + evo_leasingobject_specification: String + evo_leasingobject_typeid: Uuid + evo_leasingobject_used: Boolean + evo_leasing_bonus_summ: Decimal + evo_legal_regionid: Uuid + evo_legal_townid: Uuid + evo_lessor_bank_detailsid: Uuid + evo_loan_appraisalid: Uuid + evo_logid: Uuid + evo_max_mass: Decimal + evo_max_price_change: Decimal + evo_max_speed: Decimal + evo_mileage: Decimal + evo_min_change_price: Decimal + evo_modelid: Uuid + evo_msfo_irr: Decimal + evo_nds_in_price_supplier_currency: Decimal + evo_nds_perc: Decimal + evo_net_irr: Decimal + evo_niatinception_msfo: Decimal + evo_ni_at_inception: Decimal + evo_npvni_msfo: Decimal + evo_npvni_msfo_final: Decimal + evo_nsib: Boolean + evo_nsib_bonus_summ: Decimal + evo_nsib_ins_summ: Decimal + evo_nsib_pay_summ: Decimal + evo_nsib_price: Decimal + evo_nsib_quote: Boolean + evo_ns_bonus_summ: Decimal + evo_ns_price: Decimal + evo_object_count: Int + evo_object_registration: Int + evo_one_year_insurance: Boolean + evo_osago_accountid: Uuid + evo_osago_payer: Int + evo_osago_price: Decimal + evo_passport_type: Int + evo_payments_decrease_perc: Decimal + evo_payment_redemption: Int + evo_payment_redemption_sum: Decimal + evo_payment_redemption_sum_without_nds: Decimal + evo_percent_subsidy: Decimal + evo_period: Int + evo_power: Decimal + evo_price_without_discount: Decimal + evo_price_without_discount_quote: Boolean + evo_price_without_discount_supplier_currency: Decimal + evo_price_without_nds_supplier_currency: Decimal + evo_price_with_discount: Boolean + evo_price_wthout_discount_nds_sup_currency: Decimal + evo_product_risks: [evo_product_risk] + evo_programsolution: Int + evo_pts_type: Int + evo_purchases_participation: Boolean + evo_quotename: String + evo_quotenumber: String + evo_rate: Decimal + evo_rateid: Uuid + evo_recalc_limit: Int + evo_recalc_quoteid: Uuid + evo_redemption_graph: Boolean + evo_regionid: Uuid + evo_region_director_nsib_bonus: Decimal + evo_registration: Boolean + evo_registration_quote: Boolean + evo_registration_regionid: Uuid + evo_report_year: Int + evo_req_telematic: Int + evo_req_telematic_accept: Int + evo_risk: Int + evo_risk_coefficientid: Uuid + evo_risk_profit_coefficientid: Uuid + evo_risk_programsolution: Uuid + evo_rub_price: Decimal + evo_sale_bonus: Decimal + evo_sale_without_nds: Boolean + evo_seasons_type: Int + evo_seats: Int + evo_statuscodeid: Uuid + evo_statuscodeidData: evo_statuscode + evo_statuscode_reason: String + evo_subsidyid: Uuid + evo_subsidy_summ: Decimal + evo_supplier_accountid: Uuid + evo_supplier_currency_price: Decimal + evo_tarifid: Uuid + evo_tax_period: Decimal + evo_telematic: Boolean + evo_townid: Uuid + evo_tracker: Boolean + evo_trailer: Boolean + evo_transactioncurrencyid: Uuid + evo_unlimit_drivers: Boolean + evo_use_for: Int + evo_vehicle_tax_approved: Decimal + evo_vehicle_tax_period: Decimal + evo_vehicle_tax_year: Decimal + evo_vehicle_type_tax: Int + evo_vin: String + evo_year: Int + evo_year_equity_capital: Decimal + evo_year_profit: Decimal + evo_year_revenue: Decimal + link: String + modifiedon: DateTime + name: String + offerprintform: String + offerprintformapi: String + opportunityid: Uuid + ownerid: Uuid + owneridsystemuserData: systemuser + owneridtype: Int + quoteid: Uuid + quotenumber: String + statecode: Int + toObjectString: String + transactioncurrencyid: Uuid +} + +type evo_brand { + createdon: DateTime + evo_baseproducts(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_relation: [Int!], statecode: Int): [evo_baseproduct] + evo_brandid: Uuid + evo_brand_owner: Int + evo_id: String + evo_importer_reward_perc: Decimal + evo_importer_reward_rub: Decimal + evo_name: String + evo_subsidies(statecode: Int): [evo_subsidy] + evo_vehicle_type: [Int!] + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_model { + createdon: DateTime + evo_baseproducts(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_relation: [Int!], statecode: Int): [evo_baseproduct] + evo_brandid: Uuid + evo_gps: Boolean + evo_high_risk_vehicle: Boolean + evo_id: String + evo_impairment_groupid: Uuid + evo_impairment_groupidData: evo_impairment_group + evo_importer_reward_perc: Decimal + evo_importer_reward_rub: Decimal + evo_leasingobject_risk: Int + evo_modelid: Uuid + evo_name: String + evo_not_match_evolight_scoring: Boolean + evo_running_gear: Int + evo_subsidies(statecode: Int): [evo_subsidy] + evo_taxi_sign: Boolean + evo_vehicle_body_typeid: Uuid + evo_vehicle_body_typeidData: evo_vehicle_body_typeGraphQL + evo_vehicle_type: Int + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_equipment { + createdon: DateTime + evo_baseproducts(evo_datefrom_param: DateParamInput, evo_dateto_param: DateParamInput, evo_relation: [Int!], statecode: Int): [evo_baseproduct] + evo_equipmentid: Uuid + evo_id: String + evo_impairment_groupid: Uuid + evo_impairment_groupidData: evo_impairment_group + evo_leasingobject_risk: Int + evo_modelid: Uuid + evo_name: String + evo_start_production_year: Int + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_subsidy { + accounts: [account] + createdon: DateTime + evo_brands: [evo_brand] + evo_datefrom: DateTime + evo_dateto: DateTime + evo_get_subsidy_payment: Int + evo_leasingobject_types: [evo_leasingobject_type] + evo_max_subsidy_summ: Decimal + evo_models: [evo_model] + evo_name: String + evo_percent_subsidy: Decimal + evo_subsidyid: Uuid + evo_subsidy_summ: Decimal + evo_subsidy_type: Int + modifiedon: DateTime + statecode: Int + statuscode: Int + toObjectString: String +} + +type evo_client_risk { + createdon: DateTime + evo_client_riskid: Uuid + evo_id: Int + evo_name: String + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_client_type { + createdon: DateTime + evo_client_typeid: Uuid + evo_name: String + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_currencychange { + createdon: DateTime + evo_coursedate: DateTime + evo_currencychange: Decimal + evo_ref_transactioncurrency: Uuid + evo_ref_transactioncurrencyData: transactioncurrency + modifiedon: DateTime + toObjectString: String +} + +type evo_town { + createdon: DateTime + evo_businessunit_evolution: Boolean + evo_fias_id: String + evo_kladr_id: String + evo_name: String + evo_townid: Uuid + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_region { + accounts(statecode: Int): [account] + createdon: DateTime + evo_businessunit_evolution: Boolean + evo_creditregistry_id: Int + evo_fias_id: String + evo_kladr_id: String + evo_name: String + evo_okato: String + evo_oktmo: String + evo_postal_code: String + evo_regionid: Uuid + evo_region_name: String + evo_region_type: String + evo_timezone: String + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_gps_brand { + createdon: DateTime + evo_gps_brandid: Uuid + evo_id: String + evo_name: String + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_gps_model { + createdon: DateTime + evo_gps_brandid: Uuid + evo_gps_modelid: Uuid + evo_id: String + evo_moto: Boolean + evo_name: String + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_impairment_group { + createdon: DateTime + evo_impairment_groupid: Uuid + evo_name: String + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type transactioncurrency { + createdon: DateTime + currencyname: String + isocurrencycode: String + modifiedon: DateTime + statecode: Int + toObjectString: String + transactioncurrencyid: Uuid +} + +type evo_businessunit { + createdon: DateTime + evo_businessunitid: Uuid + evo_name: String + evo_sale_businessunitid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_request_payment { + createdon: DateTime + evo_accountid: Uuid + evo_act_accept: Boolean + evo_agency_agreementid: Uuid + evo_agency_agreementidData: evo_agency_agreement + evo_agent_report_date: DateTime + evo_agent_report_summ: Decimal + evo_bank_accountid: Uuid + evo_bank_code: String + evo_bank_detailsid: Uuid + evo_bank_detailsidData: evo_bank_details + evo_businessunitid: Uuid + evo_contractid: Uuid + evo_contractidData: evo_contract + evo_contract_paysum: Decimal + evo_contract_paysum_currency: Decimal + evo_contract_paysum_fact: Decimal + evo_corresponding_account: String + evo_director_decision: Int + evo_director_systemuserid: Uuid + evo_final_accept: Int + evo_finegibddid: Uuid + evo_finegibddidData: evo_finegibdd + evo_id: String + evo_inn: String + evo_insurance_periodid: Uuid + evo_insurance_policyid: Uuid + evo_insurance_policyidData: evo_insurance_policy + evo_kpp: String + evo_leasingobjectid: Uuid + evo_name: String + evo_number_dkp: String + evo_oktmo_mreo: String + evo_opportunityid: Uuid + evo_paymentorders(evo_name: String, statecode: Int): [evo_paymentorder] + evo_payment_account: String + evo_payment_branch: Boolean + evo_payment_branch_accountid: Uuid + evo_payment_branch_accountidData: account + evo_payment_date: DateTime + evo_payment_recipient: Uuid + evo_payment_recipientData: account + evo_payment_recipient_account: Uuid + evo_payment_recipient_accountData: account + evo_payment_recipient_contact: Uuid + evo_payment_recipient_contactData: contact + evo_payorder_date: DateTime + evo_purpose_pay: String + evo_region_director_systemuserid: Uuid + evo_request_paymentid: Uuid + evo_request_payment_type: Int + evo_statuscodeid: Uuid + evo_storage: String + evo_supplier_payment_type: Int + evo_transactioncurrencyid: Uuid + evo_transfer_contact: Boolean + evo_vat: Decimal + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_contract { + createdon: DateTime + emailaddress: String + evo_1c_date_state: Int + evo_1c_date_update: DateTime + evo_accountid: Uuid + evo_accountidData: account + evo_acc_singdoc_contactid: Uuid + evo_acquisition_costs: Decimal + evo_act_date: DateTime + evo_add_bonus_summ: Decimal + evo_agent_accountid: Uuid + evo_agent_reward: Decimal + evo_agent_reward_conditionid: Uuid + evo_agent_reward_summ: Decimal + evo_approvallogs: [evo_approvallog] + evo_balance_holder: Int + evo_bank_detailsid: Uuid + evo_bank_detailsidData: evo_bank_details + evo_base_calc_pay: Decimal + evo_bonus_pay_systemuserid: Uuid + evo_broker_accountid: Uuid + evo_broker_reward: Decimal + evo_broker_reward_conditionid: Uuid + evo_broker_reward_summ: Decimal + evo_businessunitid: Uuid + evo_calc_irr: Decimal + evo_calc_profit: Decimal + evo_cancel_contract: Boolean + evo_card_bonus_summ: Decimal + evo_check_scan_comment: String + evo_check_scan_result: Int + evo_claim_pledge_agreementid: Uuid + evo_client_type: Int + evo_contractid: Uuid + evo_contract_status_1c: Int + evo_contract_status_change_date_in_crm: DateTime + evo_contract_status_date_1c: DateTime + evo_dateend: DateTime + evo_date_of_pledge_claim: DateTime + evo_date_of_pledge_leasobject: DateTime + evo_date_termination: DateTime + evo_dealer_broker_accountid: Uuid + evo_dealer_broker_reward: Decimal + evo_dealer_broker_reward_conditionid: Uuid + evo_dealer_broker_reward_summ: Decimal + evo_dealer_person_accountid: Uuid + evo_dealer_person_accountidData: account + evo_dealer_person_reward: Decimal + evo_dealer_person_reward_conditionid: Uuid + evo_dealer_person_reward_summ: Decimal + evo_debtwork_contractid: Uuid + evo_debtwork_contracts: [evo_debtwork_contract] + evo_debt_leasing: Decimal + evo_debt_penalty_fee: Decimal + evo_debt_total: Decimal + evo_delay_days_count: Int + evo_director_bonus: Decimal + evo_director_fingap_bonus: Decimal + evo_director_nsib_bonus: Decimal + evo_discount_perc: Decimal + evo_discount_supplier_currency: Decimal + evo_docdate: DateTime + evo_docdate_dkp: DateTime + evo_dogovortype: Int + evo_dog_credit: Decimal + evo_double_agent_accountid: Uuid + evo_double_agent_reward: Decimal + evo_double_agent_reward_conditionid: Uuid + evo_double_agent_reward_summ: Decimal + evo_economic: Decimal + evo_economic_actual: Decimal + evo_economic_with_nds: Decimal + evo_economic_with_nds_actual: Decimal + evo_end_date_of_pledge_claim: DateTime + evo_end_date_of_pledge_leasobject: DateTime + evo_expinput_actual_date: DateTime + evo_fedres_xml_date: DateTime + evo_finegibdds: [evo_finegibdd] + evo_fingap_bonus_sum: Decimal + evo_fingap_period: Int + evo_finmon_message_date: DateTime + evo_fin_department_accountid: Uuid + evo_fin_department_reward: Decimal + evo_fin_department_reward_conditionid: Uuid + evo_fin_department_reward_summ: Decimal + evo_first_payment_fact: Decimal + evo_first_payment_fact_date: DateTime + evo_first_payment_perc: Decimal + evo_first_payment_perc_without_subsidy: Decimal + evo_first_payment_rub: Decimal + evo_first_payment_rub_without_subsidy: Decimal + evo_forwarder_contactid: Uuid + evo_fuel_card_addproductid: Uuid + evo_fuel_card_addproduct_typeid: Uuid + evo_graphs(statecode: Int): [evo_graph] + evo_graph_irr: Decimal + evo_graph_irr_actual: Decimal + evo_help_card_addproductid: Uuid + evo_help_card_addproductidData: evo_addproduct + evo_help_card_addproduct_typeid: Uuid + evo_importer_reward_rub: Decimal + evo_info_redemption_date: DateTime + evo_insurance_period: Int + evo_irr_msfo_final: Decimal + evo_irr_msfo_final2_actual: Decimal + evo_irr_msfo_final_actual: Decimal + evo_issue_date_buh: DateTime + evo_issue_place_addressid: Uuid + evo_last_payment_redemption: Boolean + evo_leasingobjectid: Uuid + evo_leasingobjectidData: evo_leasingobject + evo_leasing_bonus_summ: Decimal + evo_leasing_pledge_agreementid: Uuid + evo_lessor_bank_detailsid: Uuid + evo_log_activdate_1c: String + evo_msfo_irr: Decimal + evo_msfo_irr_actual: Decimal + evo_name: String + evo_nds_in_price_supplier_currency: Decimal + evo_nds_perc: Decimal + evo_net_irr: Decimal + evo_niatinception_msfo: Decimal + evo_niatinception_msfo_actual: Decimal + evo_ni_at_inception: Decimal + evo_ni_at_inception_actual: Decimal + evo_non_payment_count: Decimal + evo_npvni_msfo: Decimal + evo_npvni_msfo_final: Decimal + evo_nsib_bonus_summ: Decimal + evo_ns_bonus_summ: Decimal + evo_number_dkp: String + evo_ownership_date: DateTime + evo_paymentorders(evo_name: String, statecode: Int): [evo_paymentorder] + evo_payment_redemption: Int + evo_payment_redemption_sum: Decimal + evo_payment_redemption_sum_without_nds: Decimal + evo_period: Int + evo_price_without_discount: Decimal + evo_price_without_discount_supplier_currency: Decimal + evo_price_wthout_discount_nds_sup_currency: Decimal + evo_purchases_participation: Boolean + evo_quoteid: Uuid + evo_rate: Decimal + evo_rateid: Uuid + evo_reason_change_account: Int + evo_ref_opportunityid: Uuid + evo_region_director_nsib_bonus: Decimal + evo_registration_addproductid: Uuid + evo_registration_addproductidData: evo_addproduct + evo_registration_addproduct_typeid: Uuid + evo_return_leasing: Boolean + evo_sale_without_nds: Boolean + evo_signer_different_contactid: Uuid + evo_signer_different_dkpid: Uuid + evo_signer_different_systemuserid: Uuid + evo_singdoc_systemuserid: Uuid + evo_statuscodeid: Uuid + evo_statuscodeidData: evo_statuscode + evo_storage: String + evo_subsidyid: Uuid + evo_subsidy_solution: Int + evo_subsidy_summ: Decimal + evo_subsidy_validity_date: DateTime + evo_supplier_accountid: Uuid + evo_supplier_bank_detailsid: Uuid + evo_supplier_bank_detailsidData: evo_bank_details + evo_supplier_currency_price: Decimal + evo_supplier_pay1_sum: Decimal + evo_supplier_payfull_date: DateTime + evo_supplier_pay_actual: Decimal + evo_supplier_pay_actual_currency: Decimal + evo_supplier_signer_contactid: Uuid + evo_tarifid: Uuid + evo_telematics_addproduct_typeid: Uuid + evo_telematics_addproduct_typeid_new: Uuid + evo_telematics_equipment_addproductid: Uuid + evo_telematics_equipment_addproductidData: evo_addproduct + evo_telematics_service_addproductid: Uuid + evo_termreason: Int + evo_tracking_addproductid: Uuid + evo_tracking_addproductidData: evo_addproduct + evo_tracking_addproduct_typeid: Uuid + evo_tracking_addproduct_typeid_new: Uuid + evo_trade_in_accountid: Uuid + evo_trade_in_cost_pre: Decimal + evo_transactioncurrencyid: Uuid + evo_transactioncurrencyidData: transactioncurrency + evo_uncritical_scan: Boolean + evo_vehicle_tax_period: Decimal + evo_vehicle_tax_year: Decimal + modifiedon: DateTime + ownerid: Uuid + toObjectString: String +} + +type evo_external_system_request { + createdon: DateTime + evo_accountid: Uuid + evo_accountidData: account + evo_addcontractid: Uuid + evo_addproductid: Uuid + evo_agency_agreementid: Uuid + evo_contactid: Uuid + evo_contractid: Uuid + evo_credreg_report_code: String + evo_emailid: Uuid + evo_emailidData: email + evo_external_system_requestid: Uuid + evo_finegibddid: Uuid + evo_fuel_card_request_id: Decimal + evo_insurance_periodid: Uuid + evo_insurance_policyid: Uuid + evo_integration_status: Int + evo_log: String + evo_name: String + evo_number_repetitions_fact: Int + evo_number_repetitions_plan: Int + evo_opportunityid: Uuid + evo_path_report: String + evo_prima_requestid: String + evo_request_paymentid: Uuid + evo_request_paymentidData: evo_request_payment + evo_system: Int + modifiedon: DateTime + toObjectString: String +} + +type evo_paymentorder { + createdon: DateTime + evo_account_name_text: String + evo_comment: String + evo_contractid: Uuid + evo_correction_date_1c: DateTime + evo_correction_number_1c: String + evo_dds_1c: String + evo_inn_text: String + evo_insurance_periodid: Uuid + evo_money_transfer_paymentorderid: Uuid + evo_name: String + evo_paydate: DateTime + evo_paydate_fact: DateTime + evo_paymentorderid: Uuid + evo_payment_number_1c: String + evo_payment_type: Int + evo_paystatus: Int + evo_paysum: Decimal + evo_received_not_from_client: Boolean + evo_request_paymentid: Uuid + modifiedon: DateTime + statecode: Int + statuscode: Int + toObjectString: String +} + +type evo_vehicle_body_typeGraphQL { + createdon: DateTime + evo_id: Int + evo_id_elt: String + evo_name: String + evo_vehicle_body_typeid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_coefficient { + createdon: DateTime + evo_businessunitid: Uuid + evo_businessunits(statecode: Int): [evo_businessunit] + evo_client_riskid: Uuid + evo_client_typeid: Uuid + evo_coefficientid: Uuid + evo_corfficient_type: Int + evo_correction_coefficient: Decimal + evo_datefrom: DateTime + evo_dateto: DateTime + evo_graph_type: Int + evo_job_titleid: Uuid + evo_leasingobject_types(statecode: Int): [evo_leasingobject_type] + evo_max_period: Int + evo_min_period: Int + evo_name: String + evo_risk_delta: Decimal + evo_season_type: Int + evo_sot_coefficient: Decimal + evo_sot_coefficient_typeid: Uuid + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_planpayment { + createdon: DateTime + evo_addcontractid: Uuid + evo_addproduct_typeid: Uuid + evo_cashflow_nsib: Decimal + evo_cost_equipment: Decimal + evo_cost_equipment_withoutnds: Decimal + evo_cost_price_telematics: Decimal + evo_cost_price_telematics_withoutnds: Decimal + evo_cost_telematics: Decimal + evo_cost_telematics_withoutnds: Decimal + evo_early_repayment_sum: Decimal + evo_fix_calc_sum: Decimal + evo_graphid: Uuid + evo_name: String + evo_nds: Decimal + evo_nsib_brutto: Decimal + evo_nsib_expenses: Decimal + evo_nsib_revenue: Decimal + evo_payment_ratio: Decimal + evo_plandate: DateTime + evo_planpaymentid: Uuid + evo_pl_sum: Decimal + evo_remaining_payments: Decimal + evo_subsidy_summ: Decimal + evo_sum: Decimal + evo_sum_withoutnds: Decimal + modifiedon: DateTime + ownerid: Uuid + statecode: Int + statuscode: Int + toObjectString: String +} + +type evo_tarif { + createdon: DateTime + evo_balance_holder: [Int!] + evo_baseproductid: Uuid + evo_client_risks(statecode: Int): [evo_client_risk] + evo_client_types(statecode: Int): [evo_client_type] + evo_datefrom: DateTime + evo_dateto: DateTime + evo_delivery_time: [Int!] + evo_graphtype_exception: [Int!] + evo_id: String + evo_ins_type: [Int!] + evo_irr: Decimal + evo_irr_plan: Decimal + evo_leasingobject_types(statecode: Int): [evo_leasingobject_type] + evo_max_first_payment: Decimal + evo_max_irr: Decimal + evo_max_last_payment: Decimal + evo_max_period: Decimal + evo_min_decreasing_perc: Decimal + evo_min_first_payment: Decimal + evo_min_irr: Decimal + evo_min_last_payment: Decimal + evo_min_period: Decimal + evo_min_profit: Decimal + evo_models(statecode: Int): [evo_model] + evo_model_exceptions(statecode: Int): [evo_model] + evo_name: String + evo_pay_supplier_without_addcontract: Boolean + evo_rates(statecode: Int): [evo_rate] + evo_seasons_type_exception: [Int!] + evo_tarifid: Uuid + evo_transactioncurrencyid: Uuid + evo_used: Boolean + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_rate { + createdon: DateTime + evo_base_rate: Decimal + evo_brands(statecode: Int): [evo_brand] + evo_coeff_12_23: Decimal + evo_coeff_24_35: Decimal + evo_coeff_36_47: Decimal + evo_coeff_48_60: Decimal + evo_coeff_7_11: Decimal + evo_credit_period: Int + evo_datefrom: DateTime + evo_dateto: DateTime + evo_id: String + evo_name: String + evo_rateid: Uuid + evo_tarifs(statecode: Int): [evo_tarif] + modifiedon: DateTime + toObjectString: String +} + +type evo_sot_coefficient_type { + createdon: DateTime + evo_id: String + evo_name: String + evo_sot_coefficient_typeid: Uuid + modifiedon: DateTime + statecode: Int + toObjectString: String +} + +type evo_job_title { + createdon: DateTime + evo_id: String + evo_job_titleid: Uuid + evo_name: String + modifiedon: DateTime + toObjectString: String +} + +type evo_address { + createdon: DateTime + evo_addressid: Uuid + evo_address_name: String + evo_area: String + evo_area_fias_id: String + evo_area_type: String + evo_area_type_full: String + evo_area_with_type: String + evo_block: String + evo_block_type: String + evo_block_type_full: String + evo_city: String + evo_city_district: String + evo_city_district_fias_id: String + evo_city_district_type: String + evo_city_district_type_full: String + evo_city_district_with_type: String + evo_city_fias_id: String + evo_city_type: String + evo_city_type_full: String + evo_city_with_type: String + evo_country: String + evo_country_iso_code: String + evo_federal_district: String + evo_fias: Boolean + evo_fias_code: String + evo_fias_level: Int + evo_flat: String + evo_flat_type: String + evo_flat_type_full: String + evo_geo_lat: String + evo_geo_lon: String + evo_house: String + evo_house_fias_id: String + evo_house_type: String + evo_house_type_full: String + evo_postal_box: String + evo_postal_code: String + evo_region: String + evo_regionid: Uuid + evo_region_fias_id: String + evo_region_iso_code: String + evo_region_type: String + evo_region_type_full: String + evo_region_with_type: String + evo_settlement: String + evo_settlement_fias_id: String + evo_settlement_type: String + evo_settlement_type_full: String + evo_settlement_with_type: String + evo_street: String + evo_street_fias_id: String + evo_street_type: String + evo_street_type_full: String + evo_street_with_type: String + modifiedon: DateTime + toObjectString: String +} + +type systemuser { + businessunitid: Uuid + businessunitidData: businessunit + createdon: DateTime + domainname: String + evo_baseproducts(statecode: Int): [evo_baseproduct] + evo_callrecords_access: Boolean + evo_datebirth: DateTime + evo_employee_id: String + evo_fedresurs_rules: Boolean + evo_identity_documents: [evo_identity_document] + evo_job_titleid: Uuid + evo_loader: String + evo_role_treasury: Boolean + evo_sfm: Boolean + evo_underwriting_purchases_rules: Boolean + evo_wordmergerui_access: Boolean + firstname: String + fullname: String + jobtitle: String + lastname: String + middlename: String + mobilephone: String + modifiedon: DateTime + roles: [role] + systemuserid: Uuid + tisa_phonecallprocessings(statecode: Int = 0): [tisa_phonecallprocessing] + toObjectString: String +} + +type evo_identity_document { + createdon: DateTime + evo_citizenship_countryid: Uuid + evo_code: String + evo_docnumber: String + evo_doctype: Int + evo_employee_systemuserid: Uuid + evo_identity_documentid: Uuid + evo_issueby: String + evo_issuedate: DateTime + evo_placebirth: String + evo_registration_addressid: Uuid + evo_seria: String + modifiedon: DateTime + toObjectString: String +} + +type evo_countryGraphQL { + createdon: DateTime + evo_alpha2_code: String + evo_code_numeric: String + evo_countryid: Uuid + modifiedon: DateTime + toObjectString: String +} + +type evo_finegibdd { + createdon: DateTime + evo_accountid: Uuid + evo_contractid: Uuid + evo_contractidData: evo_contract + evo_date_send_accrued: DateTime + evo_date_send_email: DateTime + evo_decree_date: DateTime + evo_decree_judicial_date: DateTime + evo_decree_judicial_number: String + evo_decree_number: String + evo_finegibddid: Uuid + evo_fine_creat: Int + evo_gibdd_accountid: Uuid + evo_kbk: String + evo_leasingobjectid: Uuid + evo_name: String + evo_oktmo: String + evo_payorder_date: DateTime + evo_payorder_sum: Decimal + evo_pay_before: DateTime + evo_storage: String + evo_sum: Decimal + evo_sum_discount: Decimal + modifiedon: DateTime + toObjectString: String +} + +type evo_agency_agreement { + createdon: DateTime + evo_add_agency_agreementid: Uuid + evo_agency_agreementid: Uuid + evo_agency_agreement_number: String + evo_agency_agreement_type: Int + evo_agent_accountid: Uuid + evo_bank_detailsid: Uuid + evo_boss_comment: String + evo_boss_decision: Int + evo_businessunitid: Uuid + evo_contactid: Uuid + evo_datefrom: DateTime + evo_dateto: DateTime + evo_date_change_statuscode: DateTime + evo_director_comment: String + evo_director_decision: Int + evo_name: String + evo_number: Int + evo_region_director_comment: String + evo_region_director_decision: Int + evo_signer_systemuserid: Uuid + evo_statuscodeid: Uuid + evo_storage: String + evo_termination_doc_date: DateTime + evo_termination_type: Int + evo_term_boss_systemuserid: Uuid + evo_term_director_systemuserid: Uuid + evo_term_region_director_systemuserid: Uuid + evo_term_topboss_systemuserid: Uuid + evo_topboss_comment: String + evo_topboss_decision: Int + evo_top_termination: Int + modifiedon: DateTime + ownerid_systemuser: Uuid + ownerid_team: Uuid + toObjectString: String +} + +type evo_addcontract { + createdon: DateTime + evo_accountid: Uuid + evo_accountid_new: Uuid + evo_account_change: Boolean + evo_acquisition_costs: Decimal + evo_activdate_1c: DateTime + evo_activdate_crm: DateTime + evo_activdate_insurance: DateTime + evo_addcontractid: Uuid + evo_add_bonus_summ: Decimal + evo_agent_reward_summ: Decimal + evo_age_drivers: Int + evo_age_drivers_new: Int + evo_approv_business_analyst: Boolean + evo_balance: Int + evo_balance_change: Boolean + evo_balance_new: Int + evo_bank_detailsid: Uuid + evo_bank_detailsid_new: Uuid + evo_ban_edit_date: DateTime + evo_base: String + evo_base_bonus: Decimal + evo_base_calc_pay: Decimal + evo_base_new: String + evo_broker_reward_summ: Decimal + evo_businessunitid: Uuid + evo_calculation_method: Int + evo_calculator_type: Int + evo_calc_profit: Decimal + evo_category: Int + evo_category_new: Int + evo_category_tr: Int + evo_category_tr_new: Int + evo_certificate: String + evo_certificate_date: DateTime + evo_certificate_date_new: DateTime + evo_certificate_issued: String + evo_certificate_issued_new: String + evo_certificate_new: String + evo_change_payment_date: Boolean + evo_chassis: String + evo_chassis_new: String + evo_color: String + evo_color_new: String + evo_contractid: Uuid + evo_contract_term_change: Boolean + evo_cost_change: Boolean + evo_cost_currency_change: Boolean + evo_dateend: DateTime + evo_date_addcontract: DateTime + evo_date_calculation_done: DateTime + evo_date_offset_change: Boolean + evo_deadline_date: DateTime + evo_dealer_broker_accountid: Uuid + evo_dealer_broker_accountid_new: Uuid + evo_dealer_broker_reward: Decimal + evo_dealer_broker_reward_conditionid: Uuid + evo_dealer_broker_reward_conditionid_new: Uuid + evo_dealer_broker_reward_new: Decimal + evo_dealer_broker_reward_summ: Decimal + evo_dealer_broker_reward_summ_new: Decimal + evo_dealer_person_accountid: Uuid + evo_dealer_person_accountid_new: Uuid + evo_dealer_person_reward: Decimal + evo_dealer_person_reward_conditionid: Uuid + evo_dealer_person_reward_conditionid_new: Uuid + evo_dealer_person_reward_new: Decimal + evo_dealer_person_reward_summ: Decimal + evo_dealer_person_reward_summ_new: Decimal + evo_deviation_investments_withoutnds: Decimal + evo_deviation_irr: Decimal + evo_dgo_price: Decimal + evo_dgo_price_new: Decimal + evo_director_bonus: Decimal + evo_discount_perc: Decimal + evo_discount_perc_new: Decimal + evo_discount_supplier_currency: Decimal + evo_discount_supplier_currency_new: Decimal + evo_dog_credit: Decimal + evo_dog_credit_new: Decimal + evo_double_agent_reward_summ: Decimal + evo_driving_axle: String + evo_driving_axle_new: String + evo_early_change_discount: Boolean + evo_early_discount_perc: Decimal + evo_early_partly_type: Int + evo_early_redemption_change: Boolean + evo_ecological_class: Int + evo_ecological_class_new: Int + evo_economic: Decimal + evo_economic_with_nds: Decimal + evo_emailaddress: String + evo_emailaddress_new: String + evo_engine_model: String + evo_engine_model_new: String + evo_engine_power: Decimal + evo_engine_power_kvt: Decimal + evo_engine_power_kvt_new: Decimal + evo_engine_power_new: Decimal + evo_engine_type: Int + evo_engine_type_new: Int + evo_engine_volume: Decimal + evo_engine_volume_new: Decimal + evo_exp_drivers: Int + evo_exp_drivers_new: Int + evo_fin_department_reward_conditionid: Uuid + evo_fin_department_reward_conditionid_new: Uuid + evo_fin_department_reward_summ: Decimal + evo_fin_department_reward_summ_new: Decimal + evo_fix_last_payment: Boolean + evo_franchise: Decimal + evo_franchise_new: Decimal + evo_gos_akt: String + evo_gos_akt_new: String + evo_graph_irr: Decimal + evo_importer_reward_rub: Decimal + evo_insurance_change: Boolean + evo_insurance_period: Int + evo_insurance_period_new: Int + evo_insurance_price_result: Decimal + evo_insurance_price_result_new: Decimal + evo_insurer_kasko_accountid: Uuid + evo_insurer_kasko_accountid_new: Uuid + evo_insurer_osago_accountid: Uuid + evo_insurer_osago_accountid_new: Uuid + evo_ins_period_kasko_date: DateTime + evo_ins_period_kasko_number: Int + evo_ins_period_osago_date: DateTime + evo_ins_period_osago_number: Int + evo_irr_msfo_final: Decimal + evo_irr_msfo_final2: Decimal + evo_kasko_elt_id: String + evo_kasko_elt_id_new: String + evo_kasko_id_elt_calc: String + evo_kasko_id_elt_calc_new: String + evo_kasko_price: Decimal + evo_kasko_price_new: Decimal + evo_last_day_month: Boolean + evo_last_payment_change: Boolean + evo_last_payment_redemption: Boolean + evo_last_payment_redemption_new: Boolean + evo_leasingobjectid: Uuid + evo_leasingobject_specification: String + evo_leasingobject_specification_new: String + evo_leasing_bonus_summ: Decimal + evo_log_activdate_1c: String + evo_maker: String + evo_maker_new: String + evo_max_mass: Decimal + evo_max_mass_new: Decimal + evo_max_speed: Decimal + evo_max_speed_new: Decimal + evo_motor_power_1: String + evo_motor_power_1_new: String + evo_msfo_irr: Decimal + evo_name: String + evo_nds_in_price_calc: Decimal + evo_nds_in_price_supplier_currency: Decimal + evo_nds_in_price_supplier_currency_new: Decimal + evo_nds_perc: Decimal + evo_nds_perc_new: Decimal + evo_net_irr: Decimal + evo_niatinception_msfo: Decimal + evo_ni_at_inception: Decimal + evo_npvni_msfo: Decimal + evo_npvni_msfo_final: Decimal + evo_ns_bonus_summ: Decimal + evo_ns_price: Decimal + evo_ns_price_new: Decimal + evo_number_paydate: DateTime + evo_number_planpaymentid: Uuid + evo_object_number: String + evo_object_number_new: String + evo_osago_elt_id: String + evo_osago_elt_id_new: String + evo_osago_id_elt_calc: String + evo_osago_id_elt_calc_new: String + evo_osago_price: Decimal + evo_osago_price_new: Decimal + evo_passport_address: String + evo_passport_address_new: String + evo_passport_brand_model: String + evo_passport_brand_model_new: String + evo_passport_company: String + evo_passport_company_new: String + evo_passport_date: DateTime + evo_passport_date_new: DateTime + evo_passport_engine_type: String + evo_passport_engine_type_new: String + evo_passport_name: String + evo_passport_name_new: String + evo_passport_number: String + evo_passport_number_new: String + evo_passport_seria: String + evo_passport_seria_new: String + evo_passport_type: Int + evo_passport_type_new: Int + evo_payer_kasko: Int + evo_payer_kasko_new: Int + evo_payer_osago: Int + evo_payer_osago_new: Int + evo_payment_redemption: Int + evo_period: Int + evo_period_new: Int + evo_price_calc: Decimal + evo_price_without_discount: Decimal + evo_price_without_discount_new: Decimal + evo_price_without_discount_supplier_rub: Decimal + evo_price_without_discount_supplier_rub_new: Decimal + evo_price_without_disc_supplier_currency: Decimal + evo_price_without_disc_supplier_currency_new: Decimal + evo_price_wthout_disc_nds_sup_currency: Decimal + evo_price_wthout_disc_nds_sup_currency_new: Decimal + evo_prop_type: String + evo_prop_type_new: String + evo_pts_change: Boolean + evo_pts_type: Int + evo_pts_type_new: Int + evo_quoteid: Uuid + evo_recalculate_demand: Boolean + evo_refuse_reason: Int + evo_regionid: Uuid + evo_regionid_new: Uuid + evo_registration: Int + evo_registration_addproduct_typeid: Uuid + evo_registration_addproduct_typeid_new: Uuid + evo_registration_change: Boolean + evo_registration_new: Int + evo_registration_regionid: Uuid + evo_registration_regionid_new: Uuid + evo_remove_restrictions: Boolean + evo_seats: Int + evo_seats_new: Int + evo_signatory_evo_systemuserid: Uuid + evo_signatory_lp_contactid: Uuid + evo_signatory_lp_contactid_new: Uuid + evo_source: Int + evo_specification_change: Boolean + evo_statuscodeid: Uuid + evo_statuscodeidData: evo_statuscode + evo_statuscode_reason: String + evo_storage: String + evo_sum_pay_change: Boolean + evo_supplier_accountid: Uuid + evo_supplier_accountid_new: Uuid + evo_supplier_bank_detailsid: Uuid + evo_supplier_bank_detailsid_new: Uuid + evo_supplier_change: Boolean + evo_supplier_currency_price: Decimal + evo_supplier_currency_price_new: Decimal + evo_supplier_pay_actual: Decimal + evo_supplier_pay_actual_currency: Decimal + evo_supplier_signer_contactid_new: Uuid + evo_suspend_contract_change: Boolean + evo_telematics_addproduct_typeid: Uuid + evo_telematics_addproduct_typeid_new: Uuid + evo_townid: Uuid + evo_townid_new: Uuid + evo_tracking_addproduct_typeid: Uuid + evo_tracking_addproduct_typeid_new: Uuid + evo_tracking_control_change: Boolean + evo_transmission_number: String + evo_transmission_number_new: String + evo_type_agreement: Int + evo_type_change_registration: Int + evo_type_change_telematics: Int + evo_type_change_tracking: Int + evo_unlimit_drivers: Boolean + evo_unlimit_drivers_new: Boolean + evo_vacation_number_months: Int + evo_vehicle_tax_approved: Decimal + evo_vehicle_tax_approved_new: Decimal + evo_vehicle_tax_period: Decimal + evo_vehicle_tax_period_new: Decimal + evo_vehicle_tax_year: Decimal + evo_vehicle_tax_year_new: Decimal + evo_vehicle_type_tax: Int + evo_vehicle_type_tax_new: Int + evo_vin: String + evo_vin_new: String + evo_year: Int + evo_year_new: Int + modifiedon: DateTime + ownerid: Uuid + toObjectString: String +} + +type email { + activityid: Uuid + createdon: DateTime + description: String + email_activity_parties: [activityparty] + evo_accountid: Uuid + modifiedon: DateTime + regardingobjectid_account: Uuid + regardingobjectid_evo_contract: Uuid + regardingobjectid_evo_insurance_period: Uuid + regardingobjectid_evo_insurance_policy: Uuid + regardingobjectid_evo_insurance_policyData: evo_insurance_policy + regardingobjectid_evo_list: Uuid + regardingobjectid_opportunity: Uuid + statuscode: Int + subject: String + templateid: Uuid + toObjectString: String +} + +type evo_bank_details { + createdon: DateTime + evo_accountid: Uuid + evo_bankid: Uuid + evo_bankidData: account + evo_bank_code: String + evo_bank_detailsid: Uuid + evo_contactid: Uuid + evo_corresponding_account: String + evo_kbk: String + evo_name: String + evo_payment_account: String + modifiedon: DateTime + toObjectString: String +} + +type queue { + createdon: DateTime + emailaddress: String + evo_id: String + modifiedon: DateTime + name: String + queueid: Uuid + toObjectString: String +} + +type template { + body: String + createdon: DateTime + description: String + modifiedon: DateTime + subject: String + templateid: Uuid + toObjectString: String +} + +type MutationBy { + createEntity(data: EntityDataInput): Uuid! + updateEntity(data: EntityDataInput): Boolean! +} + +type team { + createdon: DateTime + evo_baseproducts(statecode: Int): [evo_baseproduct] + evo_identity_documents: [evo_identity_document] + modifiedon: DateTime + name: String + teamid: Uuid + toObjectString: String +} + +"""The `DateTime` scalar represents an ISO-8601 compliant date time type.""" +scalar DateTime + +input FilterInput { + fieldname: String + guidvalues: [Uuid] + intvalues: [Int!] + operation: FilterOperation! + stringvalues: [String] +} + +enum LogicOperation { + AND + OR +} + +enum SortingType { + DESC + ASC +} + +type evo_insurance_policy { + createdon: DateTime + evo_accountid: Uuid + evo_addproductnumberid: Uuid + evo_contractid: Uuid + evo_create_contract_elt: Boolean + evo_create_period_status: Int + evo_id: String + evo_insurance_periods(statecode: Int): [evo_insurance_period] + evo_insurance_policyid: Uuid + evo_insurer_accountid: Uuid + evo_ins_change_comment: String + evo_nsib_ins_summ: Decimal + evo_one_year_insurance: Boolean + evo_owner_comment: String + evo_pay_period: Int + evo_polis_number: String + evo_polis_type: Int + evo_pre_polis_number: String + evo_quoteid: Uuid + evo_statuscodeid: Uuid + modifiedon: DateTime + ownerid: Uuid + statecode: Int + statuscode: Int + toObjectString: String +} + +type evo_addproductnumber { + createdon: DateTime + evo_accountid: Uuid + evo_addproductnumberid: Uuid + evo_insurance_type: Int + evo_name: String + evo_number_status: Int + modifiedon: DateTime + ownerid: Uuid + toObjectString: String +} + +type businessunit { + businessunitid: Uuid + createdon: DateTime + evo_addressid: Uuid + evo_boss_systemuserid: Uuid + evo_director_systemuserid: Uuid + evo_region_director_systgemuserid: Uuid + evo_region_director_systgemuseridname: String + modifiedon: DateTime + name: String + toObjectString: String +} + +type evo_approvallog { + createdon: DateTime + evo_addcontractid: Uuid + evo_agency_agreementid: Uuid + evo_approvallogid: Uuid + evo_contractid: Uuid + evo_incidentid: Uuid + evo_insurance_policyid: Uuid + evo_leadid: Uuid + evo_opportunityid: Uuid + evo_predate_change_statuscode: DateTime + evo_prestatuscodeid: Uuid + evo_quoteid: Uuid + evo_reason: String + evo_request_paymentid: Uuid + evo_statuscodeid: Uuid + evo_statuscodeidData: evo_statuscode + modifiedon: DateTime + toObjectString: String +} + +type evo_debtwork_contract { + createdon: DateTime + evo_accountid: Uuid + evo_contractid: Uuid + evo_date_change_statuscode: DateTime + evo_db_region_com: String + evo_debtwork_contractid: Uuid + evo_debt_restruct_description: String + evo_economic_security_com: String + evo_erroneous_pay_contractname: String + evo_inspection_done: Boolean + evo_inspection_impossible: Boolean + evo_inspection_impossible_reason: String + evo_inspection_link_report: String + evo_inspection_systemuserid: Uuid + evo_insurance_case_dateend: DateTime + evo_leasingobjectid: Uuid + evo_non_payment_count: Decimal + evo_opportunityid: Uuid + evo_plan_date_transfer_pay: DateTime + evo_redemption_com: String + evo_redemption_type: [Int!] + evo_result_debt_restruct: Boolean + evo_result_error_payment: Boolean + evo_result_inspection: Boolean + evo_result_insurance_case: Boolean + evo_result_redemption: Boolean + evo_result_termination: Boolean + evo_result_wait_payment: Boolean + evo_result_withdrawal: Boolean + evo_statuscodeid: Uuid + evo_statuscodeidData: evo_statuscode + evo_statuscode_reason: String + evo_storage: String + evo_termination_add_registry: Int + evo_termination_com: String + evo_termination_com_lawyer: String + evo_termination_lawyer_systemuserid: Uuid + evo_termination_reason_terms: Int + evo_termination_reason_terms_doc: String + evo_termination_reason_terms_text: String + evo_termination_send_notice: Boolean + evo_termination_send_notice_date: DateTime + evo_termination_send_notice_repeat: Boolean + evo_termination_solution: Int + evo_termination_status_work: Int + evo_termination_suspended_until: DateTime + evo_termination_unique_notice: Boolean + evo_withdrawal_businessunitid: Uuid + evo_withdrawal_done: Boolean + evo_withdrawal_impossible: Boolean + evo_withdrawal_impossible_reason: String + evo_withdrawal_issue_agreed: Int + evo_withdrawal_issue_done: Int + evo_withdrawal_parking_addressid: Uuid + evo_withdrawal_plan_date: DateTime + evo_withdrawal_systemuserid: Uuid + modifiedon: DateTime + ownerid: Uuid + toObjectString: String +} + +type tisa_phonecallprocessing { + createdon: DateTime + modifiedon: DateTime + tisa_emploeeid: Uuid + tisa_extension: String + tisa_phonecallprocessingid: Uuid + toObjectString: String +} + +type role { + createdon: DateTime + modifiedon: DateTime + name: String + roleid: Uuid + toObjectString: String +} + +type activityparty { + addressused: String + createdon: DateTime + modifiedon: DateTime + participationtypemask: Int + partyid_account: Uuid + partyid_contact: Uuid + partyid_evo_contract: Uuid + partyid_queue: Uuid + partyid_systemuser: Uuid + toObjectString: String +} + +input EntityDataInput { + fields: [EntityFieldInput] + id: Uuid + logicalName: String +} + +enum FilterOperation { + ISNULL + EQUAL + CONTAINS + NOTCONTAINS + MORETHEN + MOREOREQUALTHEN + LESSTHEN + LESSOREQUALTHEN +} + +input EntityFieldInput { + activitypartiesvalue: [activitypartyInput] + boolvalue: Boolean + datetimevalue: DateTime + decimalvalue: Decimal + guidvalue: Uuid + intarrayvalue: [Int!] + intvalue: Int + key: String + stringvalue: String +} + +input activitypartyInput { + addressused: String + createdon: DateTime + modifiedon: DateTime + participationtypemask: Int + partyid_account: Uuid + partyid_contact: Uuid + partyid_evo_contract: Uuid + partyid_queue: Uuid + partyid_systemuser: Uuid +} diff --git a/tsconfig.json b/tsconfig.json index 4495504..92ae294 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,8 +14,10 @@ "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", - "incremental": true + "incremental": true, + "typeRoots": ["node_modules/@types", "@types"] }, + "files": ["@types/graphql.d.ts"], "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], "exclude": ["node_modules"] } diff --git a/yarn.lock b/yarn.lock index d659363..db7e4c9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -36,6 +36,66 @@ lodash "^4.17.21" resize-observer-polyfill "^1.5.0" +"@apollo/client@^3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.6.0.tgz#7a99c35292dec80392177a1f795d11d2e72ca070" + integrity sha512-2+UZoe6fCI3qG9lz8Kdt5ranEllRk8ewpt3ma6fWMjbpt7AP9sprnnoG7n6UmBcOpUTOvAAcaxBf8nByRcXn7g== + dependencies: + "@graphql-typed-document-node/core" "^3.1.1" + "@wry/context" "^0.6.0" + "@wry/equality" "^0.5.0" + "@wry/trie" "^0.3.0" + graphql-tag "^2.12.6" + hoist-non-react-statics "^3.3.2" + optimism "^0.16.1" + prop-types "^15.7.2" + symbol-observable "^4.0.0" + ts-invariant "^0.10.0" + tslib "^2.3.0" + use-sync-external-store "^1.0.0" + zen-observable-ts "^1.2.0" + +"@apollo/federation@0.27.0": + version "0.27.0" + resolved "https://registry.yarnpkg.com/@apollo/federation/-/federation-0.27.0.tgz#2ee13b28cff94817ff07bb02215aa764d8becba3" + integrity sha512-hMeRN9IPsIn+5J5SmWof0ODbvRjRj8mBNqbsm9Zjkqjbw6RTlcx90taMk7cYhcd/E+uTyLQt5cOSRVBx53cxbQ== + dependencies: + apollo-graphql "^0.9.3" + lodash.xorby "^4.7.0" + +"@apollographql/apollo-tools@^0.5.3": + version "0.5.3" + resolved "https://registry.yarnpkg.com/@apollographql/apollo-tools/-/apollo-tools-0.5.3.tgz#ba241d50f0849150ca0de54fd2927160033bc0bc" + integrity sha512-VcsXHfTFoCodDAgJZxN04GdFK1kqOhZQnQY/9Fa147P+I8xfvOSz5d+lKAPB+hwSgBNyd7ncAKGIs4+utbL+yA== + +"@apollographql/graphql-language-service-interface@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@apollographql/graphql-language-service-interface/-/graphql-language-service-interface-2.0.2.tgz#0e793636eca3d2ee0f818602d52fb5dab9edc0e3" + integrity sha512-28wePK0hlIVjgmvMXMAUq8qRSjz9O+6lqFp4PzOTHtfJfSsjVe9EfjF98zTpHsTgT3HcOxmbqDZZy8jlXtOqEA== + dependencies: + "@apollographql/graphql-language-service-parser" "^2.0.0" + "@apollographql/graphql-language-service-types" "^2.0.0" + "@apollographql/graphql-language-service-utils" "^2.0.2" + +"@apollographql/graphql-language-service-parser@^2.0.0": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@apollographql/graphql-language-service-parser/-/graphql-language-service-parser-2.0.2.tgz#50cb7a6c3e331eae09f6de13101da688dab261f1" + integrity sha512-rpTPrEJu1PMaRQxz5P8BZWsixNNhYloS0H0dwTxNBuE3qctbARvR7o8UCKLsmKgTbo+cz3T3a6IAsWlkHgMWGg== + dependencies: + "@apollographql/graphql-language-service-types" "^2.0.0" + +"@apollographql/graphql-language-service-types@^2.0.0": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@apollographql/graphql-language-service-types/-/graphql-language-service-types-2.0.2.tgz#1034e47eb7479129959c1bed2ee12d874aab5cab" + integrity sha512-vE+Dz8pG+Xa1Z2nMl82LoO66lQ6JqBUjaXqLDvS3eMjvA3N4hf+YUDOWfPdNZ0zjhHhHXzUIIZCkax6bXfFbzQ== + +"@apollographql/graphql-language-service-utils@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@apollographql/graphql-language-service-utils/-/graphql-language-service-utils-2.0.2.tgz#aa552c31de16172433bbdbc03914585caaca1d03" + integrity sha512-fDj5rWlTi/czvUS5t7V7I45Ai6bOO3Z7JARYj21Y2xxfbRGtJi6h8FvLX0N/EbzQgo/fiZc/HAhtfwn+OCjD7A== + dependencies: + "@apollographql/graphql-language-service-types" "^2.0.0" + "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789" @@ -43,6 +103,15 @@ dependencies: "@babel/highlight" "^7.16.7" +"@babel/generator@7.16.5": + version "7.16.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.16.5.tgz#26e1192eb8f78e0a3acaf3eede3c6fc96d22bedf" + integrity sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA== + dependencies: + "@babel/types" "^7.16.0" + jsesc "^2.5.1" + source-map "^0.5.0" + "@babel/generator@^7.17.9": version "7.17.9" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.9.tgz#f4af9fd38fa8de143c29fce3f71852406fc1e2fc" @@ -95,7 +164,7 @@ dependencies: "@babel/types" "^7.16.7" -"@babel/helper-validator-identifier@^7.16.7": +"@babel/helper-validator-identifier@^7.15.7", "@babel/helper-validator-identifier@^7.16.7": version "7.16.7" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad" integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw== @@ -109,7 +178,7 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.16.7", "@babel/parser@^7.17.9": +"@babel/parser@^7.1.3", "@babel/parser@^7.16.7", "@babel/parser@^7.17.9": version "7.17.9" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.9.tgz#9c94189a6062f0291418ca021077983058e171ef" integrity sha512-vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg== @@ -154,7 +223,15 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.16.7", "@babel/types@^7.17.0": +"@babel/types@7.16.0": + version "7.16.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.16.0.tgz#db3b313804f96aadd0b776c4823e127ad67289ba" + integrity sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg== + dependencies: + "@babel/helper-validator-identifier" "^7.15.7" + to-fast-properties "^2.0.0" + +"@babel/types@^7.16.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0": version "7.17.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b" integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw== @@ -281,6 +358,16 @@ resolved "https://registry.yarnpkg.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46" integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA== +"@endemolshinegroup/cosmiconfig-typescript-loader@^1.0.0": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-1.0.2.tgz#c1eadbb4c269f7898195ca8f7428bf5f5d1c449a" + integrity sha512-ZHkXKq2XFFmAUdmSZrmqUSIrRM4O9gtkdpxMmV+LQl7kScUnbo6pMnXu6+FTDgZ12aW6SDoZoOJfS56WD+Eu6A== + dependencies: + lodash.get "^4" + make-error "^1" + ts-node "^8" + tslib "^1" + "@eslint/eslintrc@^1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6" @@ -296,6 +383,11 @@ minimatch "^3.0.4" strip-json-comments "^3.1.1" +"@graphql-typed-document-node/core@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@graphql-typed-document-node/core/-/core-3.1.1.tgz#076d78ce99822258cf813ecc1e7fa460fa74d052" + integrity sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg== + "@humanwhocodes/config-array@^0.9.2": version "0.9.5" resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" @@ -423,6 +515,202 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@oclif/color@^0.1.2": + version "0.1.2" + resolved "https://registry.yarnpkg.com/@oclif/color/-/color-0.1.2.tgz#28b07e2850d9ce814d0b587ce3403b7ad8f7d987" + integrity sha512-M9o+DOrb8l603qvgz1FogJBUGLqcMFL1aFg2ZEL0FbXJofiNTLOWIeB4faeZTLwE6dt0xH9GpCVpzksMMzGbmA== + dependencies: + ansi-styles "^3.2.1" + chalk "^3.0.0" + strip-ansi "^5.2.0" + supports-color "^5.4.0" + tslib "^1" + +"@oclif/command@1.8.11": + version "1.8.11" + resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.11.tgz#926919fe8ddb7ab778fef8a8f2951c975f35e0c2" + integrity sha512-2fGLMvi6J5+oNxTaZfdWPMWY8oW15rYj0V8yLzmZBAEjfzjLqLIzJE9IlNccN1zwRqRHc1bcISSRDdxJ56IS/Q== + dependencies: + "@oclif/config" "^1.18.2" + "@oclif/errors" "^1.3.5" + "@oclif/parser" "^3.8.6" + "@oclif/plugin-help" "3.2.14" + debug "^4.1.1" + semver "^7.3.2" + +"@oclif/command@1.8.16", "@oclif/command@^1.5.13", "@oclif/command@^1.8.15", "@oclif/command@^1.8.6", "@oclif/command@^1.8.9": + version "1.8.16" + resolved "https://registry.yarnpkg.com/@oclif/command/-/command-1.8.16.tgz#bea46f81b2061b47e1cda318a0b923e62ca4cc0c" + integrity sha512-rmVKYEsKzurfRU0xJz+iHelbi1LGlihIWZ7Qvmb/CBz1EkhL7nOkW4SVXmG2dA5Ce0si2gr88i6q4eBOMRNJ1w== + dependencies: + "@oclif/config" "^1.18.2" + "@oclif/errors" "^1.3.5" + "@oclif/help" "^1.0.1" + "@oclif/parser" "^3.8.6" + debug "^4.1.1" + semver "^7.3.2" + +"@oclif/config@1.18.2": + version "1.18.2" + resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.18.2.tgz#5bfe74a9ba6a8ca3dceb314a81bd9ce2e15ebbfe" + integrity sha512-cE3qfHWv8hGRCP31j7fIS7BfCflm/BNZ2HNqHexH+fDrdF2f1D5S8VmXWLC77ffv3oDvWyvE9AZeR0RfmHCCaA== + dependencies: + "@oclif/errors" "^1.3.3" + "@oclif/parser" "^3.8.0" + debug "^4.1.1" + globby "^11.0.1" + is-wsl "^2.1.1" + tslib "^2.0.0" + +"@oclif/config@1.18.3", "@oclif/config@^1.13.0", "@oclif/config@^1.17.1", "@oclif/config@^1.18.2": + version "1.18.3" + resolved "https://registry.yarnpkg.com/@oclif/config/-/config-1.18.3.tgz#ddfc144fdab66b1658c2f1b3478fa7fbfd317e79" + integrity sha512-sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA== + dependencies: + "@oclif/errors" "^1.3.5" + "@oclif/parser" "^3.8.0" + debug "^4.1.1" + globby "^11.0.1" + is-wsl "^2.1.1" + tslib "^2.3.1" + +"@oclif/errors@1.3.5", "@oclif/errors@^1.3.3", "@oclif/errors@^1.3.5": + version "1.3.5" + resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.3.5.tgz#a1e9694dbeccab10fe2fe15acb7113991bed636c" + integrity sha512-OivucXPH/eLLlOT7FkCMoZXiaVYf8I/w1eTAM1+gKzfhALwWTusxEx7wBmW0uzvkSg/9ovWLycPaBgJbM3LOCQ== + dependencies: + clean-stack "^3.0.0" + fs-extra "^8.1" + indent-string "^4.0.0" + strip-ansi "^6.0.0" + wrap-ansi "^7.0.0" + +"@oclif/help@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@oclif/help/-/help-1.0.1.tgz#fd96a3dd9fb2314479e6c8584c91b63754a7dff5" + integrity sha512-8rsl4RHL5+vBUAKBL6PFI3mj58hjPCp2VYyXD4TAa7IMStikFfOH2gtWmqLzIlxAED2EpD0dfYwo9JJxYsH7Aw== + dependencies: + "@oclif/config" "1.18.2" + "@oclif/errors" "1.3.5" + chalk "^4.1.2" + indent-string "^4.0.0" + lodash "^4.17.21" + string-width "^4.2.0" + strip-ansi "^6.0.0" + widest-line "^3.1.0" + wrap-ansi "^6.2.0" + +"@oclif/linewrap@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91" + integrity sha512-Ups2dShK52xXa8w6iBWLgcjPJWjais6KPJQq3gQ/88AY6BXoTX+MIGFPrWQO1KLMiQfoTpcLnUwloN4brrVUHw== + +"@oclif/parser@^3.8.0", "@oclif/parser@^3.8.6": + version "3.8.7" + resolved "https://registry.yarnpkg.com/@oclif/parser/-/parser-3.8.7.tgz#236d48db05d0b00157d3b42d31f9dac7550d2a7c" + integrity sha512-b11xBmIUK+LuuwVGJpFs4LwQN2xj2cBWj2c4z1FtiXGrJ85h9xV6q+k136Hw0tGg1jQoRXuvuBnqQ7es7vO9/Q== + dependencies: + "@oclif/errors" "^1.3.5" + "@oclif/linewrap" "^1.0.0" + chalk "^4.1.0" + tslib "^2.3.1" + +"@oclif/plugin-autocomplete@0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@oclif/plugin-autocomplete/-/plugin-autocomplete-0.3.0.tgz#eec788596a88a4ca5170a9103b6c2835119a8fbd" + integrity sha512-gCuIUCswvoU1BxDDvHSUGxW8rFagiacle8jHqE49+WnuniXD/N8NmJvnzmlNyc8qLE192CnKK+qYyAF+vaFQBg== + dependencies: + "@oclif/command" "^1.5.13" + "@oclif/config" "^1.13.0" + chalk "^4.1.0" + cli-ux "^5.2.1" + debug "^4.0.0" + fs-extra "^9.0.1" + moment "^2.22.1" + +"@oclif/plugin-help@3.2.14": + version "3.2.14" + resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.2.14.tgz#7149eb322d36abc6cbf09f205bad128141e7eba4" + integrity sha512-NP5qmE2YfcW3MmXjcrxiqKe9Hf3G0uK/qNc0zAMYKU4crFyIsWj7dBfQVFZSb28YXGioOOpjMzG1I7VMxKF38Q== + dependencies: + "@oclif/command" "^1.8.9" + "@oclif/config" "^1.18.2" + "@oclif/errors" "^1.3.5" + chalk "^4.1.2" + indent-string "^4.0.0" + lodash "^4.17.21" + string-width "^4.2.0" + strip-ansi "^6.0.0" + widest-line "^3.1.0" + wrap-ansi "^6.2.0" + +"@oclif/plugin-help@3.3.1": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@oclif/plugin-help/-/plugin-help-3.3.1.tgz#36adb4e0173f741df409bb4b69036d24a53bfb24" + integrity sha512-QuSiseNRJygaqAdABYFWn/H1CwIZCp9zp/PLid6yXvy6VcQV7OenEFF5XuYaCvSARe2Tg9r8Jqls5+fw1A9CbQ== + dependencies: + "@oclif/command" "^1.8.15" + "@oclif/config" "1.18.2" + "@oclif/errors" "1.3.5" + "@oclif/help" "^1.0.1" + chalk "^4.1.2" + indent-string "^4.0.0" + lodash "^4.17.21" + string-width "^4.2.0" + strip-ansi "^6.0.0" + widest-line "^3.1.0" + wrap-ansi "^6.2.0" + +"@oclif/plugin-not-found@1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@oclif/plugin-not-found/-/plugin-not-found-1.2.6.tgz#7e354f7de6866477fe415c8fde357765876fe8ec" + integrity sha512-cfkDub79I9EpselfU/W8FTXhslrkOgfqjaa25tyGo99dAX5UVr6BWL2wbUobsU+rUcm4HN3byzdHDcqfu6hoAw== + dependencies: + "@oclif/color" "^0.1.2" + "@oclif/command" "1.8.11" + cli-ux "5.6.6" + fast-levenshtein "^3.0.0" + lodash "^4.17.21" + +"@oclif/plugin-plugins@1.10.11": + version "1.10.11" + resolved "https://registry.yarnpkg.com/@oclif/plugin-plugins/-/plugin-plugins-1.10.11.tgz#f2d11dc164a3dd96392298670b4aafc04e89a44a" + integrity sha512-C9eHF10UkxwoAqRYrPW51YDuDOpDXASX4BEA++kTVcqhMQTKBQalmEJKw+gVnLl1YNmapse1ZSAcU1TrXjqykg== + dependencies: + "@oclif/color" "^0.1.2" + "@oclif/command" "^1.8.15" + "@oclif/errors" "^1.3.5" + chalk "^4.1.2" + cli-ux "^5.6.7" + debug "^4.3.3" + fs-extra "^9.0" + http-call "^5.3.0" + load-json-file "^5.3.0" + npm-run-path "^4.0.1" + semver "^7.3.2" + tslib "^2.0.0" + yarn "^1.21.1" + +"@oclif/plugin-warn-if-update-available@1.7.3": + version "1.7.3" + resolved "https://registry.yarnpkg.com/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-1.7.3.tgz#efe6676655fabbed2e90cc9e646e9da4c99bc8ae" + integrity sha512-q8q0NIneVCwIAJzglUMsl3EbXR/H5aPDk6g+qs7uF0tToxe07SWSONoNaKPzViwRWvYChMPjL77/rXyW1HVn4A== + dependencies: + "@oclif/command" "^1.8.6" + "@oclif/config" "^1.17.1" + "@oclif/errors" "^1.3.5" + chalk "^4.1.0" + debug "^4.1.0" + fs-extra "^9.0.1" + http-call "^5.2.2" + lodash "^4.17.21" + semver "^7.3.2" + +"@oclif/screen@^1.0.4": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@oclif/screen/-/screen-1.0.4.tgz#b740f68609dfae8aa71c3a6cab15d816407ba493" + integrity sha512-60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw== + "@open-draft/until@^1.0.3": version "1.0.3" resolved "https://registry.yarnpkg.com/@open-draft/until/-/until-1.0.3.tgz#db9cc719191a62e7d9200f6e7bab21c5b848adca" @@ -433,6 +721,13 @@ resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.0.8.tgz#be3e914e84eacf16dbebd311c0d0b44aa1174c64" integrity sha512-ZK5v4bJwgXldAUA8r3q9YKfCwOqoHTK/ZqRjSeRXQrBXWouoPnS4MQtgC4AXGiiBuUu5wxrRgTlv0ktmM4P1Aw== +"@samverschueren/stream-to-observable@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301" + integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ== + dependencies: + any-observable "^0.3.0" + "@styled-system/background@^5.1.2": version "5.1.2" resolved "https://registry.yarnpkg.com/@styled-system/background/-/background-5.1.2.tgz#75c63d06b497ab372b70186c0bf608d62847a2ba" @@ -555,6 +850,14 @@ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= +"@types/node-fetch@^2.5.10": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.1.tgz#8f127c50481db65886800ef496f20bbf15518975" + integrity sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA== + dependencies: + "@types/node" "*" + form-data "^3.0.0" + "@types/node@*", "@types/node@17.0.25": version "17.0.25" resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.25.tgz#527051f3c2f77aa52e5dc74e45a3da5fb2301448" @@ -675,6 +978,34 @@ "@typescript-eslint/types" "5.10.1" eslint-visitor-keys "^3.0.0" +"@wry/context@^0.6.0": + version "0.6.1" + resolved "https://registry.yarnpkg.com/@wry/context/-/context-0.6.1.tgz#c3c29c0ad622adb00f6a53303c4f965ee06ebeb2" + integrity sha512-LOmVnY1iTU2D8tv4Xf6MVMZZ+juIJ87Kt/plMijjN20NMAXGmH4u8bS1t0uT74cZ5gwpocYueV58YwyI8y+GKw== + dependencies: + tslib "^2.3.0" + +"@wry/equality@^0.1.2": + version "0.1.11" + resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.1.11.tgz#35cb156e4a96695aa81a9ecc4d03787bc17f1790" + integrity sha512-mwEVBDUVODlsQQ5dfuLUS5/Tf7jqUKyhKYHmVi4fPB6bDMOfWvUPJmKgS1Z7Za/sOI3vzWt4+O7yCiL/70MogA== + dependencies: + tslib "^1.9.3" + +"@wry/equality@^0.5.0": + version "0.5.2" + resolved "https://registry.yarnpkg.com/@wry/equality/-/equality-0.5.2.tgz#72c8a7a7d884dff30b612f4f8464eba26c080e73" + integrity sha512-oVMxbUXL48EV/C0/M7gLVsoK6qRHPS85x8zECofEZOVvxGmIPLA9o5Z27cc2PoAyZz1S2VoM2A7FLAnpfGlneA== + dependencies: + tslib "^2.3.0" + +"@wry/trie@^0.3.0": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@wry/trie/-/trie-0.3.1.tgz#2279b790f15032f8bcea7fc944d27988e5b3b139" + integrity sha512-WwB53ikYudh9pIorgxrkHKrQZcCqNM/Q/bDzZBffEaGUKGuHrRb3zZUT9Sh2qw9yogC7SsdRmQ1ER0pqvd3bfw== + dependencies: + tslib "^2.3.0" + "@xmldom/xmldom@^0.7.5": version "0.7.5" resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.7.5.tgz#09fa51e356d07d0be200642b0e4f91d8e6dd408d" @@ -700,7 +1031,22 @@ ajv@^6.10.0, ajv@^6.12.4: json-schema-traverse "^0.4.1" uri-js "^4.2.2" -ansi-escapes@^4.2.1: +ajv@^8.0.1: + version "8.11.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-escapes@^3.0.0, ansi-escapes@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1, ansi-escapes@^4.3.0: version "4.3.2" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== @@ -712,11 +1058,26 @@ ansi-regex@^2.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + ansi-regex@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" @@ -724,13 +1085,18 @@ ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@^4.0.0, ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0, ansi-styles@^4.2.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" +ansicolors@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.3.2.tgz#665597de86a9ffe3aa9bfbe6cae5c6ea426b4979" + integrity sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= + antd@^4.19.5: version "4.19.5" resolved "https://registry.yarnpkg.com/antd/-/antd-4.19.5.tgz#38d08f3e1391a7a69c2ca76f50968bb12ec2ac93" @@ -780,6 +1146,11 @@ antd@^4.19.5: rc-util "^5.19.3" scroll-into-view-if-needed "^2.2.25" +any-observable@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" + integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== + anymatch@~3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" @@ -788,6 +1159,240 @@ anymatch@~3.1.2: normalize-path "^3.0.0" picomatch "^2.0.4" +apollo-codegen-core@^0.40.8: + version "0.40.8" + resolved "https://registry.yarnpkg.com/apollo-codegen-core/-/apollo-codegen-core-0.40.8.tgz#bead416d01ccddfd593477cb86b5a3bb86bd36e3" + integrity sha512-IuudtJMUdKb2FhEWN+7FjSVYVCOgyGXjFZ7/b4uereaAQgd6FSigzLBUhHafCbR0XmKys1vuYJ/JgPtSPc8f/w== + dependencies: + "@babel/generator" "7.16.5" + "@babel/parser" "^7.1.3" + "@babel/types" "7.16.0" + apollo-env "^0.10.1" + apollo-language-server "^1.26.8" + ast-types "^0.14.0" + common-tags "^1.5.1" + recast "^0.20.0" + +apollo-codegen-flow@^0.38.8: + version "0.38.8" + resolved "https://registry.yarnpkg.com/apollo-codegen-flow/-/apollo-codegen-flow-0.38.8.tgz#ebc69f751fd12733288585b8e6fd0032874f7b32" + integrity sha512-QMxvuCqNG7W8MSXTSn8tFThL+fRQW8mKRvdVA4bybVmw6ujbttuIZ7DoAgvmE9l0o1+EzsSoFSRE6sA7R28k7w== + dependencies: + "@babel/generator" "7.16.5" + "@babel/types" "7.16.0" + apollo-codegen-core "^0.40.8" + change-case "^4.0.0" + common-tags "^1.5.1" + inflected "^2.0.3" + +apollo-codegen-scala@^0.39.8: + version "0.39.8" + resolved "https://registry.yarnpkg.com/apollo-codegen-scala/-/apollo-codegen-scala-0.39.8.tgz#7e40c40ccb9600e8b8ec3eef27b5b52ca53b40e3" + integrity sha512-XnqUR4778Tt9KpJ2Pxi5mgtkq0ySh0NmfZZloIShwQR67FES0zZepYruGrwlDcLUX0XlSazxgwA1kcQm46dLDQ== + dependencies: + apollo-codegen-core "^0.40.8" + change-case "^4.0.0" + common-tags "^1.5.1" + inflected "^2.0.3" + +apollo-codegen-swift@^0.40.8: + version "0.40.8" + resolved "https://registry.yarnpkg.com/apollo-codegen-swift/-/apollo-codegen-swift-0.40.8.tgz#c9c25fa6dcf00c6451447011a3704a893095566b" + integrity sha512-x4wvHwF9NGw5dR0DRL4yFhPE2i0y5Z/cItMNRWFoo85GpfzsUstyUg2uqkQlWaFeJj06zfAeWd0sfQLDsBywbQ== + dependencies: + apollo-codegen-core "^0.40.8" + change-case "^4.0.0" + common-tags "^1.5.1" + inflected "^2.0.3" + +apollo-codegen-typescript@^0.40.8: + version "0.40.8" + resolved "https://registry.yarnpkg.com/apollo-codegen-typescript/-/apollo-codegen-typescript-0.40.8.tgz#459d5e0b43f342d07d2e96013158901f4961d5e8" + integrity sha512-LzzH+Jc2qIzA0lqLGoIw7V28CteBB+2Vr/H6HzADD8gVb184Dns0GBDaV4rCoCb+S7W0UGF3prvX9DWKYH++iQ== + dependencies: + "@babel/generator" "7.16.5" + "@babel/types" "7.16.0" + apollo-codegen-core "^0.40.8" + change-case "^4.0.0" + common-tags "^1.5.1" + inflected "^2.0.3" + +apollo-datasource@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/apollo-datasource/-/apollo-datasource-0.9.0.tgz#b0b2913257a6103a5f4c03cb56d78a30e9d850db" + integrity sha512-y8H99NExU1Sk4TvcaUxTdzfq2SZo6uSj5dyh75XSQvbpH6gdAXIW9MaBcvlNC7n0cVPsidHmOcHOWxJ/pTXGjA== + dependencies: + apollo-server-caching "^0.7.0" + apollo-server-env "^3.1.0" + +apollo-env@^0.10.1: + version "0.10.1" + resolved "https://registry.yarnpkg.com/apollo-env/-/apollo-env-0.10.1.tgz#6476929b924ca4edf2116e5129b90f35bed5753b" + integrity sha512-exlGUw3kVODb0itnOF+3M8aElccoOD5US4zNTKUKdZpEtYdPc31WUi152CkY5OzefuK2bS9JgjTfALpP92XFDg== + dependencies: + "@types/node-fetch" "^2.5.10" + core-js "^3.0.1" + node-fetch "^2.6.1" + sha.js "^2.4.11" + +apollo-graphql@^0.9.3, apollo-graphql@^0.9.6: + version "0.9.6" + resolved "https://registry.yarnpkg.com/apollo-graphql/-/apollo-graphql-0.9.6.tgz#756312a92685b0547f82cceb04f5b2d6e9f0df5c" + integrity sha512-CrqJxZwfu/U5x0bYYPPluwu1G+oC3jjKFK/EVn9CDcpi4+yD9rAYko/h1iUB5A6VRQhA4Boluc7QexMYQ2tCng== + dependencies: + core-js-pure "^3.10.2" + lodash.sortby "^4.7.0" + sha.js "^2.4.11" + +apollo-language-server@^1.26.8: + version "1.26.8" + resolved "https://registry.yarnpkg.com/apollo-language-server/-/apollo-language-server-1.26.8.tgz#f47aca09e91c3f6d051b28e7656e14b3cd6d23f6" + integrity sha512-TyVT8S+hy5XwY1xUt6mXy7/MJcGc84M9CveDemSOHFF6ERI0atldoQzEkeKfxRJXMmRoOYGJODebXda2DRIejw== + dependencies: + "@apollo/federation" "0.27.0" + "@apollographql/apollo-tools" "^0.5.3" + "@apollographql/graphql-language-service-interface" "^2.0.2" + "@endemolshinegroup/cosmiconfig-typescript-loader" "^1.0.0" + apollo-datasource "^0.9.0" + apollo-env "^0.10.1" + apollo-graphql "^0.9.6" + apollo-link "^1.2.3" + apollo-link-context "^1.0.9" + apollo-link-error "^1.1.1" + apollo-link-http "^1.5.5" + apollo-server-errors "^2.0.2" + await-to-js "^2.0.1" + core-js "^3.0.1" + cosmiconfig "^5.0.6" + dotenv "^8.0.0" + glob "^7.1.3" + graphql "14.0.2 - 14.2.0 || ^14.3.1 || ^15.0.0" + graphql-tag "^2.10.1" + lodash.debounce "^4.0.8" + lodash.merge "^4.6.1" + minimatch "^3.0.4" + moment "2.29.1" + vscode-languageserver "^5.1.0" + vscode-uri "1.0.6" + +apollo-link-context@^1.0.9: + version "1.0.20" + resolved "https://registry.yarnpkg.com/apollo-link-context/-/apollo-link-context-1.0.20.tgz#1939ac5dc65d6dff0c855ee53521150053c24676" + integrity sha512-MLLPYvhzNb8AglNsk2NcL9AvhO/Vc9hn2ZZuegbhRHGet3oGr0YH9s30NS9+ieoM0sGT11p7oZ6oAILM/kiRBA== + dependencies: + apollo-link "^1.2.14" + tslib "^1.9.3" + +apollo-link-error@^1.1.1: + version "1.1.13" + resolved "https://registry.yarnpkg.com/apollo-link-error/-/apollo-link-error-1.1.13.tgz#c1a1bb876ffe380802c8df0506a32c33aad284cd" + integrity sha512-jAZOOahJU6bwSqb2ZyskEK1XdgUY9nkmeclCrW7Gddh1uasHVqmoYc4CKdb0/H0Y1J9lvaXKle2Wsw/Zx1AyUg== + dependencies: + apollo-link "^1.2.14" + apollo-link-http-common "^0.2.16" + tslib "^1.9.3" + +apollo-link-http-common@^0.2.16: + version "0.2.16" + resolved "https://registry.yarnpkg.com/apollo-link-http-common/-/apollo-link-http-common-0.2.16.tgz#756749dafc732792c8ca0923f9a40564b7c59ecc" + integrity sha512-2tIhOIrnaF4UbQHf7kjeQA/EmSorB7+HyJIIrUjJOKBgnXwuexi8aMecRlqTIDWcyVXCeqLhUnztMa6bOH/jTg== + dependencies: + apollo-link "^1.2.14" + ts-invariant "^0.4.0" + tslib "^1.9.3" + +apollo-link-http@^1.5.5: + version "1.5.17" + resolved "https://registry.yarnpkg.com/apollo-link-http/-/apollo-link-http-1.5.17.tgz#499e9f1711bf694497f02c51af12d82de5d8d8ba" + integrity sha512-uWcqAotbwDEU/9+Dm9e1/clO7hTB2kQ/94JYcGouBVLjoKmTeJTUPQKcJGpPwUjZcSqgYicbFqQSoJIW0yrFvg== + dependencies: + apollo-link "^1.2.14" + apollo-link-http-common "^0.2.16" + tslib "^1.9.3" + +apollo-link@^1.2.14, apollo-link@^1.2.3: + version "1.2.14" + resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-1.2.14.tgz#3feda4b47f9ebba7f4160bef8b977ba725b684d9" + integrity sha512-p67CMEFP7kOG1JZ0ZkYZwRDa369w5PIjtMjvrQd/HnIV8FRsHRqLqK+oAZQnFa1DDdZtOtHTi+aMIW6EatC2jg== + dependencies: + apollo-utilities "^1.3.0" + ts-invariant "^0.4.0" + tslib "^1.9.3" + zen-observable-ts "^0.8.21" + +apollo-server-caching@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/apollo-server-caching/-/apollo-server-caching-0.7.0.tgz#e6d1e68e3bb571cba63a61f60b434fb771c6ff39" + integrity sha512-MsVCuf/2FxuTFVhGLK13B+TZH9tBd2qkyoXKKILIiGcZ5CDUEBO14vIV63aNkMkS1xxvK2U4wBcuuNj/VH2Mkw== + dependencies: + lru-cache "^6.0.0" + +apollo-server-env@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/apollo-server-env/-/apollo-server-env-3.1.0.tgz#0733c2ef50aea596cc90cf40a53f6ea2ad402cd0" + integrity sha512-iGdZgEOAuVop3vb0F2J3+kaBVi4caMoxefHosxmgzAbbSpvWehB8Y1QiSyyMeouYC38XNVk5wnZl+jdGSsWsIQ== + dependencies: + node-fetch "^2.6.1" + util.promisify "^1.0.0" + +apollo-server-errors@^2.0.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/apollo-server-errors/-/apollo-server-errors-2.5.0.tgz#5d1024117c7496a2979e3e34908b5685fe112b68" + integrity sha512-lO5oTjgiC3vlVg2RKr3RiXIIQ5pGXBFxYGGUkKDhTud3jMIhs+gel8L8zsEjKaKxkjHhCQAA/bcEfYiKkGQIvA== + +apollo-utilities@^1.3.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/apollo-utilities/-/apollo-utilities-1.3.4.tgz#6129e438e8be201b6c55b0f13ce49d2c7175c9cf" + integrity sha512-pk2hiWrCXMAy2fRPwEyhvka+mqwzeP60Jr1tRYi5xru+3ko94HI9o6lK0CT33/w4RDlxWchmdhDCrvdr+pHCig== + dependencies: + "@wry/equality" "^0.1.2" + fast-json-stable-stringify "^2.0.0" + ts-invariant "^0.4.0" + tslib "^1.10.0" + +apollo@^2.33.10: + version "2.33.10" + resolved "https://registry.yarnpkg.com/apollo/-/apollo-2.33.10.tgz#be247d72f2e8ca8819622fe03f5e073425610011" + integrity sha512-V6S1OHcy9rbwJFSEWw+Qti+C6WIU7+R/uezMoPH9lA+50TMX9+p9TwwyFEu14AfLEYjZ+XYoA/WBxqaGAbtIzg== + dependencies: + "@apollographql/apollo-tools" "^0.5.3" + "@oclif/command" "1.8.16" + "@oclif/config" "1.18.3" + "@oclif/errors" "1.3.5" + "@oclif/plugin-autocomplete" "0.3.0" + "@oclif/plugin-help" "3.3.1" + "@oclif/plugin-not-found" "1.2.6" + "@oclif/plugin-plugins" "1.10.11" + "@oclif/plugin-warn-if-update-available" "1.7.3" + apollo-codegen-core "^0.40.8" + apollo-codegen-flow "^0.38.8" + apollo-codegen-scala "^0.39.8" + apollo-codegen-swift "^0.40.8" + apollo-codegen-typescript "^0.40.8" + apollo-env "^0.10.1" + apollo-graphql "^0.9.6" + apollo-language-server "^1.26.8" + chalk "2.4.2" + cli-ux "5.6.7" + env-ci "5.5.0" + gaze "1.1.3" + git-parse "1.0.5" + git-rev-sync "3.0.1" + git-url-parse "11.5.0" + glob "7.2.0" + global-agent "2.2.0" + graphql "14.0.2 - 14.2.0 || ^14.3.1 || ^15.0.0" + graphql-tag "2.12.4" + listr "0.14.3" + lodash.identity "3.0.0" + lodash.pickby "4.6.0" + mkdirp "1.0.4" + moment "2.29.1" + strip-ansi "5.2.0" + table "6.8.0" + tty "1.0.1" + vscode-uri "1.0.6" + aproba@^1.0.3: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -801,6 +1406,18 @@ are-we-there-yet@~1.1.2: delegates "^1.0.0" readable-stream "^2.0.6" +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" @@ -860,11 +1477,38 @@ ast-types-flow@^0.0.7: resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= +ast-types@0.14.2, ast-types@^0.14.0: + version "0.14.2" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.14.2.tgz#600b882df8583e3cd4f2df5fa20fa83759d4bdfd" + integrity sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA== + dependencies: + tslib "^2.0.1" + +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + async-validator@^4.0.2: version "4.0.7" resolved "https://registry.yarnpkg.com/async-validator/-/async-validator-4.0.7.tgz#034a0fd2103a6b2ebf010da75183bec299247afe" integrity sha512-Pj2IR7u8hmUEDOwB++su6baaRi+QvsgajuFB9j95foM1N2gy5HM4z60hfusIO0fBPG5uLAEl6yCJr1jNSVugEQ== +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + +await-to-js@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/await-to-js/-/await-to-js-2.1.1.tgz#c2093cd5a386f2bb945d79b292817bbc3f41b31b" + integrity sha512-CHBC6gQGCIzjZ09tJ+XmpQoZOn4GdWePB4qUweCaKNJ0D3f115YdhmYVTZ4rMVpiJ3cFzZcTYK1VMYEICV4YXw== + axe-core@^4.3.5: version "4.4.1" resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413" @@ -947,6 +1591,11 @@ bl@^4.0.3, bl@^4.1.0: inherits "^2.0.4" readable-stream "^3.4.0" +boolean@^3.0.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" + integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -962,6 +1611,11 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + buffer@^5.5.0: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" @@ -970,6 +1624,11 @@ buffer@^5.5.0: base64-js "^1.3.1" ieee754 "^1.1.13" +byline@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/byline/-/byline-5.0.0.tgz#741c5216468eadc457b03410118ad77de8c1ddb1" + integrity sha1-dBxSFkaOrcRXsDQQEYrXfejB3bE= + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -978,11 +1637,38 @@ call-bind@^1.0.0, call-bind@^1.0.2: function-bind "^1.1.1" get-intrinsic "^1.0.2" +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + camelize@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" @@ -993,15 +1679,24 @@ caniuse-lite@^1.0.30001283: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz#39476d3aa8d83ea76359c70302eafdd4a1d727dd" integrity sha512-10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw== -chalk@4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" - integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== +capital-case@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" + integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" -chalk@^2.0.0: +cardinal@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-2.1.1.tgz#7cc1055d822d212954d07b085dea251cc7bc5505" + integrity sha1-fMEFXYItISlU0HsIXeolHMe8VQU= + dependencies: + ansicolors "~0.3.2" + redeyed "~2.1.0" + +chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -1010,7 +1705,34 @@ chalk@^2.0.0: escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: +chalk@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" + integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -1018,6 +1740,24 @@ chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1: ansi-styles "^4.1.0" supports-color "^7.1.0" +change-case@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" + integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== + dependencies: + camel-case "^4.1.2" + capital-case "^1.0.4" + constant-case "^3.0.4" + dot-case "^3.0.4" + header-case "^2.0.4" + no-case "^3.0.4" + param-case "^3.0.4" + pascal-case "^3.1.2" + path-case "^3.0.4" + sentence-case "^3.0.4" + snake-case "^3.0.4" + tslib "^2.0.3" + chardet@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" @@ -1048,6 +1788,20 @@ classnames@2.x, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.5, classna resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.1.tgz#dfcfa3891e306ec1dad105d0e88f4417b8535e8e" integrity sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA== +clean-stack@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-3.0.1.tgz#155bf0b2221bf5f4fba89528d24c5953f17fe3a8" + integrity sha512-lR9wNiMRcVQjSB3a7xXGLuz4cr4wJuuXlaAEbRutGowQTmlp7R72/DOgN21e8jdwblMWl9UOJMJXarX94pzKdg== + dependencies: + escape-string-regexp "4.0.0" + +cli-cursor@^2.0.0, cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + cli-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" @@ -1055,11 +1809,90 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" +cli-progress@^3.4.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/cli-progress/-/cli-progress-3.10.0.tgz#63fd9d6343c598c93542fdfa3563a8b59887d78a" + integrity sha512-kLORQrhYCAtUPLZxqsAt2YJGOvRdt34+O6jl5cQGb7iF3dM55FQZlTR+rQyIK9JUcO9bBMwZsTlND+3dmFU2Cw== + dependencies: + string-width "^4.2.0" + cli-spinners@^2.5.0: version "2.6.1" resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.6.1.tgz#adc954ebe281c37a6319bfa401e6dd2488ffb70d" integrity sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g== +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cli-ux@5.6.6: + version "5.6.6" + resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-5.6.6.tgz#1424f5a9fbddcd796ad985b867a3de7f5a452090" + integrity sha512-4wUB34zoFklcZV0z5YiOM5IqVMMt9c3TK3QYRK3dqyk3XoRC0ybiWDWHfsMDjkKrzsVTw95rXn9NrzSHbae4pg== + dependencies: + "@oclif/command" "^1.8.9" + "@oclif/errors" "^1.3.5" + "@oclif/linewrap" "^1.0.0" + "@oclif/screen" "^1.0.4" + ansi-escapes "^4.3.0" + ansi-styles "^4.2.0" + cardinal "^2.1.1" + chalk "^4.1.0" + clean-stack "^3.0.0" + cli-progress "^3.4.0" + extract-stack "^2.0.0" + fs-extra "^8.1" + hyperlinker "^1.0.0" + indent-string "^4.0.0" + is-wsl "^2.2.0" + js-yaml "^3.13.1" + lodash "^4.17.21" + natural-orderby "^2.0.1" + object-treeify "^1.1.4" + password-prompt "^1.1.2" + semver "^7.3.2" + string-width "^4.2.0" + strip-ansi "^6.0.0" + supports-color "^8.1.0" + supports-hyperlinks "^2.1.0" + tslib "^2.0.0" + +cli-ux@5.6.7, cli-ux@^5.2.1, cli-ux@^5.6.7: + version "5.6.7" + resolved "https://registry.yarnpkg.com/cli-ux/-/cli-ux-5.6.7.tgz#32ef9e6cb2b457be834280cc799028a11c8235a8" + integrity sha512-dsKAurMNyFDnO6X1TiiRNiVbL90XReLKcvIq4H777NMqXGBxBws23ag8ubCJE97vVZEgWG2eSUhsyLf63Jv8+g== + dependencies: + "@oclif/command" "^1.8.15" + "@oclif/errors" "^1.3.5" + "@oclif/linewrap" "^1.0.0" + "@oclif/screen" "^1.0.4" + ansi-escapes "^4.3.0" + ansi-styles "^4.2.0" + cardinal "^2.1.1" + chalk "^4.1.0" + clean-stack "^3.0.0" + cli-progress "^3.4.0" + extract-stack "^2.0.0" + fs-extra "^8.1" + hyperlinker "^1.0.0" + indent-string "^4.0.0" + is-wsl "^2.2.0" + js-yaml "^3.13.1" + lodash "^4.17.21" + natural-orderby "^2.0.1" + object-treeify "^1.1.4" + password-prompt "^1.1.2" + semver "^7.3.2" + string-width "^4.2.0" + strip-ansi "^6.0.0" + supports-color "^8.1.0" + supports-hyperlinks "^2.1.0" + tslib "^2.0.0" + cli-width@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" @@ -1133,6 +1966,18 @@ color@^4.2.3: color-convert "^2.0.1" color-string "^1.9.0" +combined-stream@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +common-tags@^1.5.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== + compute-scroll-into-view@^1.0.17: version "1.0.17" resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz#6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab" @@ -1148,6 +1993,20 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= +constant-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1" + integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case "^2.0.2" + +content-type@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + convert-source-map@^1.5.0: version "1.8.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" @@ -1174,16 +2033,36 @@ copy-to-clipboard@^3.2.0: dependencies: toggle-selection "^1.0.6" +core-js-pure@^3.10.2: + version "3.22.2" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.22.2.tgz#c10bffdc3028d25c2aae505819a05543db61544f" + integrity sha512-Lb+/XT4WC4PaCWWtZpNPaXmjiNDUe5CJuUtbkMrIM1kb1T/jJoAIp+bkVP/r5lHzMr+ZAAF8XHp7+my6Ol0ysQ== + core-js-pure@^3.20.2: version "3.22.1" resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.22.1.tgz#4d94e0c9a7b710da20dadd727fe98b43543119f0" integrity sha512-TChjCtgcMDc8t12RiwAsThjqrS/VpBlEvDgL009ot4HESzBo3h2FSZNa6ZS1nWKZEPDoulnszxUll9n0/spflQ== +core-js@^3.0.1, core-js@^3.6.5: + version "3.22.2" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.22.2.tgz#3ea0a245b0895fa39d1faa15fe75d91ade504a01" + integrity sha512-Z5I2vzDnEIqO2YhELVMFcL1An2CIsFe9Q7byZhs8c/QxummxZlAHw33TUHbIte987LkisOgL0LwQ1P9D6VISnA== + core-util-is@~1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== +cosmiconfig@^5.0.6: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + cosmiconfig@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" @@ -1195,7 +2074,18 @@ cosmiconfig@^6.0.0: path-type "^4.0.0" yaml "^1.7.2" -cross-spawn@^7.0.2: +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -1238,6 +2128,11 @@ date-fns@2.x: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.28.0.tgz#9570d656f5fc13143e50c975a3b6bbeb46cd08b2" integrity sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw== +date-fns@^1.27.2: + version "1.30.1" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" + integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== + dayjs@1.x: version "1.11.1" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.1.tgz#90b33a3dda3417258d48ad2771b415def6545eb0" @@ -1257,13 +2152,18 @@ debug@^3.2.6, debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3: +debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== dependencies: ms "2.1.2" +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + decompress-response@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" @@ -1296,6 +2196,11 @@ define-properties@^1.1.3: has-property-descriptors "^1.0.0" object-keys "^1.1.1" +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + delegates@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" @@ -1306,6 +2211,16 @@ detect-libc@^2.0.0, detect-libc@^2.0.1: resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== +detect-node@^2.0.4: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -1332,6 +2247,24 @@ dom-align@^1.7.0: resolved "https://registry.yarnpkg.com/dom-align/-/dom-align-1.12.2.tgz#0f8164ebd0c9c21b0c790310493cd855892acd4b" integrity sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg== +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dotenv@^8.0.0: + version "8.6.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" + integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -1349,6 +2282,15 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" +env-ci@5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-5.5.0.tgz#43364e3554d261a586dec707bc32be81112b545f" + integrity sha512-o0JdWIbOLP+WJKIUt36hz1ImQQFuN92nhsfTkHHap+J8CiI8WgGpH/a9jEGHh4/TU5BUUGjlnKXNoDb57+ne+A== + dependencies: + execa "^5.0.0" + fromentries "^1.3.2" + java-properties "^1.0.0" + errno@^0.1.1: version "0.1.8" resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" @@ -1405,17 +2347,22 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" +es6-error@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" + integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== -escape-string-regexp@^1.0.5: +escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -escape-string-regexp@^4.0.0: +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== @@ -1607,6 +2554,11 @@ espree@^9.3.1: acorn-jsx "^5.3.1" eslint-visitor-keys "^3.3.0" +esprima@^4.0.0, esprima@~4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + esquery@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" @@ -1636,6 +2588,21 @@ events@^3.3.0: resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== +execa@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== + dependencies: + cross-spawn "^7.0.3" + get-stream "^6.0.0" + human-signals "^2.1.0" + is-stream "^2.0.0" + merge-stream "^2.0.0" + npm-run-path "^4.0.1" + onetime "^5.1.2" + signal-exit "^3.0.3" + strip-final-newline "^2.0.0" + expand-template@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" @@ -1650,6 +2617,11 @@ external-editor@^3.0.3: iconv-lite "^0.4.24" tmp "^0.0.33" +extract-stack@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-2.0.0.tgz#11367bc865bfcd9bc0db3123e5edb57786f11f9b" + integrity sha512-AEo4zm+TenK7zQorGK1f9mJ8L14hnTDi2ZQPR+Mub1NX8zimka1mXpV5LpH8x9HoUmFSHZCfLHqWvp0Y4FxxzQ== + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -1676,6 +2648,18 @@ fast-levenshtein@^2.0.6: resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= +fast-levenshtein@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz#37b899ae47e1090e40e3fd2318e4d5f0142ca912" + integrity sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ== + dependencies: + fastest-levenshtein "^1.0.7" + +fastest-levenshtein@^1.0.7: + version "1.0.12" + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2" + integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== + fastq@^1.6.0: version "1.13.0" resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" @@ -1683,6 +2667,21 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + figures@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" @@ -1704,6 +2703,11 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +filter-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + integrity sha1-mzERErxsYSehbgFsbF1/GeCAXFs= + find-root@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" @@ -1734,11 +2738,51 @@ follow-redirects@^1.14.8: resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7" integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w== +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +form-data@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.8" + mime-types "^2.1.12" + +fromentries@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a" + integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== + fs-constants@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== +fs-extra@^8.1: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^9.0, fs-extra@^9.0.1: + version "9.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" + integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -1778,6 +2822,13 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" +gaze@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" + integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== + dependencies: + globule "^1.0.0" + get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -1792,6 +2843,11 @@ get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: has "^1.0.3" has-symbols "^1.0.1" +get-stream@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== + get-symbol-description@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" @@ -1800,6 +2856,38 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" +git-parse@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/git-parse/-/git-parse-1.0.5.tgz#2f845719f4f72d213ca90d73fe38e986015d88b8" + integrity sha512-M35mIAQB+HolaP3nOyRNIbfPFJzEsIwFz4eiNsRQflNzSQVj88wCE1vbNoiWB7RQfFhA3POr8E0/ylWIwMskhw== + dependencies: + byline "5.0.0" + util.promisify "1.1.1" + +git-rev-sync@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/git-rev-sync/-/git-rev-sync-3.0.1.tgz#a393a97f2e4b2a0cc41e512b48065e64f4d8ca3a" + integrity sha512-8xZzUwzukIuU3sasgYt3RELc3Ny7o+tbtvitnnU4a4j3djyZNpJ5JmqVX+K7Xv3gE/i7ln3hGdBfZ00T5WWoow== + dependencies: + escape-string-regexp "1.0.5" + graceful-fs "4.1.15" + shelljs "0.8.4" + +git-up@^4.0.0: + version "4.0.5" + resolved "https://registry.yarnpkg.com/git-up/-/git-up-4.0.5.tgz#e7bb70981a37ea2fb8fe049669800a1f9a01d759" + integrity sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA== + dependencies: + is-ssh "^1.3.0" + parse-url "^6.0.0" + +git-url-parse@11.5.0: + version "11.5.0" + resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.5.0.tgz#acaaf65239cb1536185b19165a24bbc754b3f764" + integrity sha512-TZYSMDeM37r71Lqg1mbnMlOqlHd7BSij9qN7XwTkRqSAYFMihGLGhfHwgqQob3GUhEneKnV4nskN9rbQw2KGxA== + dependencies: + git-up "^4.0.0" + github-from-package@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" @@ -1819,7 +2907,7 @@ glob-parent@^6.0.1: dependencies: is-glob "^4.0.3" -glob@7.1.7: +glob@7.1.7, glob@~7.1.1: version "7.1.7" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== @@ -1831,7 +2919,7 @@ glob@7.1.7: once "^1.3.0" path-is-absolute "^1.0.0" -glob@^7.1.3, glob@^7.1.6: +glob@7.2.0, glob@^7.0.0, glob@^7.1.3, glob@^7.1.6: version "7.2.0" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== @@ -1843,6 +2931,19 @@ glob@^7.1.3, glob@^7.1.6: once "^1.3.0" path-is-absolute "^1.0.0" +global-agent@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-2.2.0.tgz#566331b0646e6bf79429a16877685c4a1fbf76dc" + integrity sha512-+20KpaW6DDLqhG7JDiJpD1JvNvb8ts+TNl7BPOYcURqCrXqnN1Vf+XVOrkKJAFPqfX+oEhsdzOj1hLWkBTdNJg== + dependencies: + boolean "^3.0.1" + core-js "^3.6.5" + es6-error "^4.1.1" + matcher "^3.0.0" + roarr "^2.15.3" + semver "^7.3.2" + serialize-error "^7.0.1" + globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" @@ -1855,7 +2956,14 @@ globals@^13.6.0, globals@^13.9.0: dependencies: type-fest "^0.20.2" -globby@^11.0.4: +globalthis@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" + integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== + dependencies: + define-properties "^1.1.3" + +globby@^11.0.1, globby@^11.0.4: version "11.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== @@ -1867,16 +2975,56 @@ globby@^11.0.4: merge2 "^1.4.1" slash "^3.0.0" -graceful-fs@^4.1.2: +globule@^1.0.0: + version "1.3.3" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.3.tgz#811919eeac1ab7344e905f2e3be80a13447973c2" + integrity sha512-mb1aYtDbIjTu4ShMB85m3UzjX9BVKe9WCzsnfMSZk+K5GpIbBOexgg4PPCt5eHDEG5/ZQAUX2Kct02zfiPLsKg== + dependencies: + glob "~7.1.1" + lodash "~4.17.10" + minimatch "~3.0.2" + +graceful-fs@4.1.15: + version "4.1.15" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== + +graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: version "4.2.10" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== +graphql-tag@2.12.4: + version "2.12.4" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.4.tgz#d34066688a4f09e72d6f4663c74211e9b4b7c4bf" + integrity sha512-VV1U4O+9x99EkNpNmCUV5RZwq6MnK4+pGbRYWG+lA/m3uo7TSqJF81OkcOP148gFP6fzdl7JWYBrwWVTS9jXww== + dependencies: + tslib "^2.1.0" + +graphql-tag@^2.10.0, graphql-tag@^2.10.1, graphql-tag@^2.12.6: + version "2.12.6" + resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.12.6.tgz#d441a569c1d2537ef10ca3d1633b48725329b5f1" + integrity sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg== + dependencies: + tslib "^2.1.0" + +"graphql@14.0.2 - 14.2.0 || ^14.3.1 || ^15.0.0": + version "15.8.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-15.8.0.tgz#33410e96b012fa3bdb1091cc99a94769db212b38" + integrity sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw== + graphql@^16.3.0: version "16.3.0" resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.3.0.tgz#a91e24d10babf9e60c706919bb182b53ccdffc05" integrity sha512-xm+ANmA16BzCT5pLjuXySbQVFwH3oJctUVdy81w1sV0vBU0KgDdBGtxQOUd5zqOBk/JayAFeG8Dlmeq74rjm/A== +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + has-bigints@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" @@ -1923,18 +3071,48 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" +header-case@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063" + integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== + dependencies: + capital-case "^1.0.4" + tslib "^2.0.3" + headers-polyfill@^3.0.4: version "3.0.7" resolved "https://registry.yarnpkg.com/headers-polyfill/-/headers-polyfill-3.0.7.tgz#725c4f591e6748f46b036197eae102c92b959ff4" integrity sha512-JoLCAdCEab58+2/yEmSnOlficyHFpIl0XJqwu3l+Unkm1gXpFUYsThz6Yha3D6tNhocWkCPfyW0YVIGWFqTi7w== -hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.0: +hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== dependencies: react-is "^16.7.0" +http-call@^5.2.2, http-call@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/http-call/-/http-call-5.3.0.tgz#4ded815b13f423de176eb0942d69c43b25b148db" + integrity sha512-ahwimsC23ICE4kPl9xTBjKB4inbRaeLyZeRunC/1Jy/Z6X8tv22MEAjK+KBOMSVLaqXPTTmd8638waVIKLGx2w== + dependencies: + content-type "^1.0.4" + debug "^4.1.1" + is-retry-allowed "^1.1.0" + is-stream "^2.0.0" + parse-json "^4.0.0" + tunnel-agent "^0.6.0" + +human-signals@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== + +hyperlinker@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hyperlinker/-/hyperlinker-1.0.0.tgz#23dc9e38a206b208ee49bc2d6c8ef47027df0c0e" + integrity sha512-Ty8UblRWFEcfSuIaajM34LdPXIhbs1ajEX/BBPv24J+enSVaEVY63xQ6lTO9VRYS5LAoghIG0IDJ+p+IPzKUQQ== + iconv-lite@^0.4.24, iconv-lite@^0.4.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -1957,6 +3135,14 @@ image-size@~0.5.0: resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w= +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: version "3.3.0" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" @@ -1970,6 +3156,21 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= +indent-string@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +inflected@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/inflected/-/inflected-2.1.0.tgz#2816ac17a570bbbc8303ca05bca8bf9b3f959687" + integrity sha512-hAEKNxvHf2Iq3H60oMBHkB4wl5jn3TPF3+fXek/sRwAB5gP9xWs4r7aweSF95f99HFoz69pnZTcu8f0SIHV18w== + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -1978,7 +3179,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -2017,6 +3218,11 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" +interpret@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" + integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" @@ -2049,7 +3255,7 @@ is-boolean-object@^1.1.0: call-bind "^1.0.2" has-tostringtag "^1.0.0" -is-callable@^1.1.4, is-callable@^1.2.4: +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== @@ -2068,6 +3274,16 @@ is-date-object@^1.0.1: dependencies: has-tostringtag "^1.0.0" +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -2080,6 +3296,11 @@ is-fullwidth-code-point@^1.0.0: dependencies: number-is-nan "^1.0.0" +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" @@ -2119,6 +3340,13 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-observable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" + integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== + dependencies: + symbol-observable "^1.1.0" + is-plain-object@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" @@ -2126,6 +3354,11 @@ is-plain-object@^2.0.4: dependencies: isobject "^3.0.1" +is-promise@^2.1.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" + integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== + is-regex@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" @@ -2134,6 +3367,11 @@ is-regex@^1.1.4: call-bind "^1.0.2" has-tostringtag "^1.0.0" +is-retry-allowed@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" + integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== + is-shared-array-buffer@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" @@ -2141,6 +3379,23 @@ is-shared-array-buffer@^1.0.2: dependencies: call-bind "^1.0.2" +is-ssh@^1.3.0: + version "1.3.3" + resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.3.3.tgz#7f133285ccd7f2c2c7fc897b771b53d95a2b2c7e" + integrity sha512-NKzJmQzJfEEma3w5cJNcUMxoXfDjz0Zj0eyCalHn2E6VOwlzjZo0yuO2fcBSf8zhFuVCL/82/r5gRcoi6aEPVQ== + dependencies: + protocols "^1.1.0" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-stream@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + is-string@^1.0.5, is-string@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" @@ -2172,6 +3427,13 @@ is-what@^3.14.1: resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== +is-wsl@^2.1.1, is-wsl@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" @@ -2187,6 +3449,11 @@ isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= +java-properties@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/java-properties/-/java-properties-1.0.2.tgz#ccd1fa73907438a5b5c38982269d0e771fe78211" + integrity sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ== + js-levenshtein@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" @@ -2197,6 +3464,14 @@ js-levenshtein@^1.1.6: resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + js-yaml@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -2209,6 +3484,11 @@ jsesc@^2.5.1: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + json-parse-even-better-errors@^2.3.0: version "2.3.1" resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" @@ -2219,11 +3499,21 @@ json-schema-traverse@^0.4.1: resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + json-stable-stringify-without-jsonify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= +json-stringify-safe@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + json2mq@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/json2mq/-/json2mq-0.2.0.tgz#b637bd3ba9eabe122c83e9720483aeb10d2c904a" @@ -2238,6 +3528,22 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== + dependencies: + universalify "^2.0.0" + optionalDependencies: + graceful-fs "^4.1.6" + "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1: version "3.2.2" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.2.2.tgz#6ab1e52c71dfc0c0707008a91729a9491fe9f76c" @@ -2305,6 +3611,61 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= + +listr-update-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" + integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" + integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== + dependencies: + chalk "^2.4.1" + cli-cursor "^2.1.0" + date-fns "^1.27.2" + figures "^2.0.0" + +listr@0.14.3: + version "0.14.3" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" + integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + dependencies: + "@samverschueren/stream-to-observable" "^0.3.0" + is-observable "^1.1.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.5.0" + listr-verbose-renderer "^0.5.0" + p-map "^2.0.0" + rxjs "^6.3.3" + +load-json-file@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-5.3.0.tgz#4d3c1e01fa1c03ea78a60ac7af932c9ce53403f3" + integrity sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw== + dependencies: + graceful-fs "^4.1.15" + parse-json "^4.0.0" + pify "^4.0.1" + strip-bom "^3.0.0" + type-fest "^0.3.0" + locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -2313,16 +3674,58 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" -lodash.merge@^4.6.2: +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= + +lodash.get@^4: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= + +lodash.identity@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash.identity/-/lodash.identity-3.0.0.tgz#ad7bc6a4e647d79c972e1b80feef7af156267876" + integrity sha1-rXvGpOZH15yXLhuA/u968VYmeHY= + +lodash.merge@^4.6.1, lodash.merge@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== -lodash@^4.17.11, lodash@^4.17.21: +lodash.pickby@4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.pickby/-/lodash.pickby-4.6.0.tgz#7dea21d8c18d7703a27c704c15d3b84a67e33aff" + integrity sha1-feoh2MGNdwOifHBMFdO4SmfjOv8= + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + +lodash.xorby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.xorby/-/lodash.xorby-4.7.0.tgz#9c19a6f9f063a6eb53dd03c1b6871799801463d7" + integrity sha1-nBmm+fBjputT3QPBtocXmYAUY9c= + +lodash@^4.17.11, lodash@^4.17.21, lodash@~4.17.10: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= + dependencies: + chalk "^1.0.0" + log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" @@ -2331,6 +3734,15 @@ log-symbols@^4.1.0: chalk "^4.1.0" is-unicode-supported "^0.1.0" +log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" @@ -2338,6 +3750,13 @@ loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + lru-cache@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" @@ -2353,11 +3772,28 @@ make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" +make-error@^1, make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + +matcher@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/matcher/-/matcher-3.0.0.tgz#bd9060f4c5b70aa8041ccc6f80368760994f30ca" + integrity sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng== + dependencies: + escape-string-regexp "^4.0.0" + memoize-one@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045" integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw== +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" @@ -2371,11 +3807,28 @@ micromatch@^4.0.4: braces "^3.0.2" picomatch "^2.3.1" +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + mime@^1.4.1: version "1.6.0" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" @@ -2393,6 +3846,13 @@ minimatch@^3.0.4, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" +minimatch@~3.0.2: + version "3.0.8" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1" + integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== + dependencies: + brace-expansion "^1.1.7" + minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" @@ -2403,6 +3863,11 @@ mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== +mkdirp@1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + mobx-react-lite@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/mobx-react-lite/-/mobx-react-lite-3.3.0.tgz#7174e807201943beff6f9d3701492314c9fc0db3" @@ -2413,7 +3878,12 @@ mobx@^6.5.0: resolved "https://registry.yarnpkg.com/mobx/-/mobx-6.5.0.tgz#dc2d028b1882737f6e813fc92454381e438b7ad3" integrity sha512-pHZ/cySF00FVENDWIDzJyoObFahK6Eg4d0papqm6d7yMkxWTZ/S/csqJX1A3PsYy4t5k3z2QnlwuCfMW5lSEwA== -moment@^2.24.0, moment@^2.25.3: +moment@2.29.1: + version "2.29.1" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" + integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== + +moment@^2.22.1, moment@^2.24.0, moment@^2.25.3: version "2.29.3" resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.3.tgz#edd47411c322413999f7a5940d526de183c031f3" integrity sha512-c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw== @@ -2478,6 +3948,11 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= +natural-orderby@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/natural-orderby/-/natural-orderby-2.0.3.tgz#8623bc518ba162f8ff1cdb8941d74deb0fdcc016" + integrity sha512-p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q== + needle@^2.5.2: version "2.9.1" resolved "https://registry.yarnpkg.com/needle/-/needle-2.9.1.tgz#22d1dffbe3490c2b83e301f7709b6736cd8f2684" @@ -2492,6 +3967,13 @@ next-compose-plugins@^2.2.1: resolved "https://registry.yarnpkg.com/next-compose-plugins/-/next-compose-plugins-2.2.1.tgz#020fc53f275a7e719d62521bef4300fbb6fde5ab" integrity sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg== +next-plugin-graphql@^0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/next-plugin-graphql/-/next-plugin-graphql-0.0.2.tgz#31625abe1cef282194063533522026010a9d6255" + integrity sha512-PgRqONNSF+lTyrtraNC7wJWNYq1U4v4jgIHmvTXYvdtYEz7oeuNNqk3N8mlunV2WzntpSFSe0BCdinRN25tkmQ== + dependencies: + graphql-tag "^2.10.0" + next-with-less@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/next-with-less/-/next-with-less-2.0.5.tgz#901dc94918bb19f08e879a5bc7b11b44c9351f6c" @@ -2522,6 +4004,19 @@ next@12.1.5: "@next/swc-win32-ia32-msvc" "12.1.5" "@next/swc-win32-x64-msvc" "12.1.5" +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + node-abi@^3.3.0: version "3.15.0" resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.15.0.tgz#cd9ac8c58328129b49998cc6fa16aa5506152716" @@ -2534,7 +4029,7 @@ node-addon-api@^4.3.0: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== -node-fetch@^2.6.7: +node-fetch@^2.6.1, node-fetch@^2.6.7: version "2.6.7" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== @@ -2546,6 +4041,18 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +normalize-url@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + +npm-run-path@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== + dependencies: + path-key "^3.0.0" + npmlog@^4.0.1: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" @@ -2576,6 +4083,11 @@ object-keys@^1.1.1: resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== +object-treeify@^1.1.4: + version "1.1.33" + resolved "https://registry.yarnpkg.com/object-treeify/-/object-treeify-1.1.33.tgz#f06fece986830a3cba78ddd32d4c11d1f76cdf40" + integrity sha512-EFVjAYfzWqWsBMRHPMAXLCDIJnpMhdWAqR7xG6M6a2cs6PMFpl/+Z20w9zDW4vkxOFfddegBKq9Rehd0bxWE7A== + object.assign@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" @@ -2604,6 +4116,15 @@ object.fromentries@^2.0.5: define-properties "^1.1.3" es-abstract "^1.19.1" +object.getownpropertydescriptors@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz#b223cf38e17fefb97a63c10c91df72ccb386df9e" + integrity sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.1" + object.hasown@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5" @@ -2628,13 +4149,28 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^5.1.0: +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + +onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== dependencies: mimic-fn "^2.1.0" +optimism@^0.16.1: + version "0.16.1" + resolved "https://registry.yarnpkg.com/optimism/-/optimism-0.16.1.tgz#7c8efc1f3179f18307b887e18c15c5b7133f6e7d" + integrity sha512-64i+Uw3otrndfq5kaoGNoY7pvOhSsjFEN4bdEFh80MWVk/dbgJfMv7VFDeCT8LxNAlEVhQmdVEbfE7X2nWNIIg== + dependencies: + "@wry/context" "^0.6.0" + "@wry/trie" "^0.3.0" + optionator@^0.9.1: version "0.9.1" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" @@ -2686,11 +4222,24 @@ p-locate@^2.0.0: dependencies: p-limit "^1.1.0" +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -2698,6 +4247,14 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + parse-json@^5.0.0: version "5.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" @@ -2713,6 +4270,50 @@ parse-node-version@^1.0.1: resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== +parse-path@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-4.0.3.tgz#82d81ec3e071dcc4ab49aa9f2c9c0b8966bb22bf" + integrity sha512-9Cepbp2asKnWTJ9x2kpw6Fe8y9JDbqwahGCTvklzd/cEq5C5JC59x2Xb0Kx+x0QZ8bvNquGO8/BWP0cwBHzSAA== + dependencies: + is-ssh "^1.3.0" + protocols "^1.4.0" + qs "^6.9.4" + query-string "^6.13.8" + +parse-url@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-6.0.0.tgz#f5dd262a7de9ec00914939220410b66cff09107d" + integrity sha512-cYyojeX7yIIwuJzledIHeLUBVJ6COVLeT4eF+2P6aKVzwvgKQPndCBv3+yQ7pcWjqToYwaligxzSYNNmGoMAvw== + dependencies: + is-ssh "^1.3.0" + normalize-url "^6.1.0" + parse-path "^4.0.0" + protocols "^1.4.0" + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +password-prompt@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923" + integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA== + dependencies: + ansi-escapes "^3.1.0" + cross-spawn "^6.0.5" + +path-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" + integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -2723,7 +4324,12 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-key@^3.1.0: +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== @@ -2801,7 +4407,7 @@ process-nextick-args@~2.0.0: resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== -prop-types@^15.8.1: +prop-types@^15.7.2, prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== @@ -2810,6 +4416,11 @@ prop-types@^15.8.1: object-assign "^4.1.1" react-is "^16.13.1" +protocols@^1.1.0, protocols@^1.4.0: + version "1.4.8" + resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.8.tgz#48eea2d8f58d9644a4a32caae5d5db290a075ce8" + integrity sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg== + prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" @@ -2828,6 +4439,23 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +qs@^6.9.4: + version "6.10.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.3.tgz#d6cde1b2ffca87b5aa57889816c5f81535e22e8e" + integrity sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ== + dependencies: + side-channel "^1.0.4" + +query-string@^6.13.8: + version "6.14.1" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" + integrity sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw== + dependencies: + decode-uri-component "^0.2.0" + filter-obj "^1.1.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -3266,6 +4894,30 @@ rebass@^4.0.7: dependencies: reflexbox "^4.0.6" +recast@^0.20.0: + version "0.20.5" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.20.5.tgz#8e2c6c96827a1b339c634dd232957d230553ceae" + integrity sha512-E5qICoPoNL4yU0H0NoBDntNB0Q5oMSNh9usFctYniLBluTthi3RsQVBXIJNbApOlvSwW/RGxIuokPcAc59J5fQ== + dependencies: + ast-types "0.14.2" + esprima "~4.0.0" + source-map "~0.6.1" + tslib "^2.0.1" + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= + dependencies: + resolve "^1.1.6" + +redeyed@~2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-2.1.1.tgz#8984b5815d99cb220469c99eeeffe38913e6cc0b" + integrity sha1-iYS1gV2ZyyIEacme7v/jiRPmzAs= + dependencies: + esprima "~4.0.0" + reflexbox@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/reflexbox/-/reflexbox-4.0.6.tgz#fc756d2cc1ca493baf9b96bb27dd640ad8154cf1" @@ -3301,17 +4953,27 @@ require-directory@^2.1.1: resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + resize-observer-polyfill@^1.5.0, resize-observer-polyfill@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.20.0: +resolve@^1.1.6, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.20.0: version "1.22.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198" integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw== @@ -3328,6 +4990,14 @@ resolve@^2.0.0-next.3: is-core-module "^2.2.0" path-parse "^1.0.6" +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -3348,6 +5018,18 @@ rimraf@^3.0.2: dependencies: glob "^7.1.3" +roarr@^2.15.3: + version "2.15.4" + resolved "https://registry.yarnpkg.com/roarr/-/roarr-2.15.4.tgz#f5fe795b7b838ccfe35dc608e0282b9eba2e7afd" + integrity sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A== + dependencies: + boolean "^3.0.1" + detect-node "^2.0.4" + globalthis "^1.0.1" + json-stringify-safe "^5.0.1" + semver-compare "^1.0.0" + sprintf-js "^1.1.2" + run-async@^2.4.0: version "2.4.1" resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" @@ -3360,6 +5042,13 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" +rxjs@^6.3.3: + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + rxjs@^7.5.5: version "7.5.5" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.5.tgz#2ebad89af0f560f460ad5cc4213219e1f7dd4e9f" @@ -3401,7 +5090,12 @@ scroll-into-view-if-needed@^2.2.25: dependencies: compute-scroll-into-view "^1.0.17" -semver@^5.6.0: +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + +semver@^5.5.0, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -3411,13 +5105,29 @@ semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.5, semver@^7.3.7: +semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: version "7.3.7" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== dependencies: lru-cache "^6.0.0" +sentence-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" + integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" + +serialize-error@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-7.0.1.tgz#f1360b0447f61ffb483ec4157c737fab7d778e18" + integrity sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw== + dependencies: + type-fest "^0.13.1" + set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" @@ -3428,6 +5138,14 @@ set-cookie-parser@^2.4.6: resolved "https://registry.yarnpkg.com/set-cookie-parser/-/set-cookie-parser-2.4.8.tgz#d0da0ed388bc8f24e706a391f9c9e252a13c58b2" integrity sha512-edRH8mBKEWNVIVMKejNnuJxleqYE/ZSdcT8/Nem9/mmosx12pctd80s2Oy00KNZzrogMZS5mauK2/ymL1bvlvg== +sha.js@^2.4.11: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + shallow-clone@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" @@ -3454,6 +5172,13 @@ sharp@^0.30.4: tar-fs "^2.1.1" tunnel-agent "^0.6.0" +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -3461,11 +5186,25 @@ shebang-command@^2.0.0: dependencies: shebang-regex "^3.0.0" +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + shebang-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +shelljs@0.8.4: + version "0.8.4" + resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2" + integrity sha512-7gk3UZ9kOfPLIAbslLzyWeGiEqx9e3rxwZM0KE6EL8GlGwjym9Mrlx5/p33bWTu9YG6vcS4MBxYZDHYr5lr8BQ== + dependencies: + glob "^7.0.0" + interpret "^1.0.0" + rechoir "^0.6.2" + side-channel@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" @@ -3475,7 +5214,7 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" -signal-exit@^3.0.0, signal-exit@^3.0.2: +signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3: version "3.0.7" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== @@ -3506,21 +5245,66 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + source-map-js@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-support@^0.5.17: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + source-map@^0.5.0, source-map@^0.5.7: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= -source-map@~0.6.0: +source-map@^0.6.0, source-map@~0.6.0, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + +sprintf-js@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" + integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + statuses@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" @@ -3533,6 +5317,11 @@ strict-event-emitter@^0.2.0: dependencies: events "^3.3.0" +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha1-ucczDHBChi9rFC3CdLvMWGbONUY= + string-convert@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/string-convert/-/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97" @@ -3547,7 +5336,7 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -3556,6 +5345,14 @@ string-width@^1.0.1: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + string.prototype.matchall@^4.0.6: version "4.0.7" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" @@ -3600,6 +5397,13 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" +strip-ansi@5.2.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" @@ -3607,6 +5411,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -3619,6 +5430,11 @@ strip-bom@^3.0.0: resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= +strip-final-newline@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== + strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" @@ -3669,25 +5485,66 @@ styled-system@^5.0.0, styled-system@^5.1.5: "@styled-system/variant" "^5.1.5" object-assign "^4.1.1" -supports-color@^5.3.0, supports-color@^5.5.0: +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" -supports-color@^7.1.0: +supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== dependencies: has-flag "^4.0.0" +supports-color@^8.1.0: + version "8.1.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== + dependencies: + has-flag "^4.0.0" + +supports-hyperlinks@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" + integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== + dependencies: + has-flag "^4.0.0" + supports-color "^7.0.0" + supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== +symbol-observable@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +symbol-observable@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" + integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== + +table@6.8.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/table/-/table-6.8.0.tgz#87e28f14fa4321c3377ba286f07b79b281a3b3ca" + integrity sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA== + dependencies: + ajv "^8.0.1" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + tar-fs@^2.0.0, tar-fs@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" @@ -3748,6 +5605,31 @@ tr46@~0.0.3: resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= +ts-invariant@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.10.1.tgz#df002059ffcc3f94b5064fa74e32796434cd1b06" + integrity sha512-dOmY3naALBtNyK+nrVGzD8DVxSJ9OIHragItZ3XvxGORNAZL6uszgQYaD3PW+TPh2NWNsOpuQUxznuvTkmcdqw== + dependencies: + tslib "^2.1.0" + +ts-invariant@^0.4.0: + version "0.4.4" + resolved "https://registry.yarnpkg.com/ts-invariant/-/ts-invariant-0.4.4.tgz#97a523518688f93aafad01b0e80eb803eb2abd86" + integrity sha512-uEtWkFM/sdZvRNNDL3Ehu4WVpwaulhwQszV8mrtcdeE8nN00BV9mAmQ88RkrBhFgl9gMgvjJLAQcZbnPXI9mlA== + dependencies: + tslib "^1.9.3" + +ts-node@^8: + version "8.10.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz#eee03764633b1234ddd37f8db9ec10b75ec7fb8d" + integrity sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA== + dependencies: + arg "^4.1.0" + diff "^4.0.1" + make-error "^1.1.1" + source-map-support "^0.5.17" + yn "3.1.1" + tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0: version "3.14.1" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" @@ -3758,12 +5640,12 @@ tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0: minimist "^1.2.6" strip-bom "^3.0.0" -tslib@^1.8.1: +tslib@^1, tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: version "1.14.1" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== -tslib@^2.1.0: +tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1: version "2.4.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== @@ -3780,6 +5662,11 @@ tsutils@^3.21.0: dependencies: tslib "^1.8.1" +tty@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tty/-/tty-1.0.1.tgz#e4409ac98b0dd1c50b59ff38e86eac3f0764ee45" + integrity sha1-5ECayYsN0cULWf846G6sPwdk7kU= + tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -3794,6 +5681,11 @@ type-check@^0.4.0, type-check@~0.4.0: dependencies: prelude-ls "^1.2.1" +type-fest@^0.13.1: + version "0.13.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" + integrity sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg== + type-fest@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" @@ -3804,6 +5696,11 @@ type-fest@^0.21.3: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== +type-fest@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" + integrity sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ== + type-fest@^1.2.2: version "1.4.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" @@ -3824,6 +5721,30 @@ unbox-primitive@^1.0.1: has-symbols "^1.0.2" which-boxed-primitive "^1.0.2" +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +universalify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== + +upper-case-first@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324" + integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== + dependencies: + tslib "^2.0.3" + +upper-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a" + integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== + dependencies: + tslib "^2.0.3" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -3831,16 +5752,68 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" +use-sync-external-store@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.1.0.tgz#3343c3fe7f7e404db70f8c687adf5c1652d34e82" + integrity sha512-SEnieB2FPKEVne66NpXPd1Np4R1lTNKfjuy3XdIoPQKYBAFdzbzSZlSn1KJZUiihQLQC5Znot4SBz1EOTBwQAQ== + util-deprecate@^1.0.1, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= +util.promisify@1.1.1, util.promisify@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.1.1.tgz#77832f57ced2c9478174149cae9b96e9918cd54b" + integrity sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + for-each "^0.3.3" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.1" + v8-compile-cache@^2.0.3: version "2.3.0" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== +vscode-jsonrpc@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-4.0.0.tgz#a7bf74ef3254d0a0c272fab15c82128e378b3be9" + integrity sha512-perEnXQdQOJMTDFNv+UF3h1Y0z4iSiaN9jIlb0OqIYgosPCZGYh/MCUlkFtV2668PL69lRDO32hmvL2yiidUYg== + +vscode-languageserver-protocol@3.14.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.14.1.tgz#b8aab6afae2849c84a8983d39a1cf742417afe2f" + integrity sha512-IL66BLb2g20uIKog5Y2dQ0IiigW0XKrvmWiOvc0yXw80z3tMEzEnHjaGAb3ENuU7MnQqgnYJ1Cl2l9RvNgDi4g== + dependencies: + vscode-jsonrpc "^4.0.0" + vscode-languageserver-types "3.14.0" + +vscode-languageserver-types@3.14.0: + version "3.14.0" + resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz#d3b5952246d30e5241592b6dde8280e03942e743" + integrity sha512-lTmS6AlAlMHOvPQemVwo3CezxBp0sNB95KNPkqp3Nxd5VFEnuG1ByM0zlRWos0zjO3ZWtkvhal0COgiV1xIA4A== + +vscode-languageserver@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-5.2.1.tgz#0d2feddd33f92aadf5da32450df498d52f6f14eb" + integrity sha512-GuayqdKZqAwwaCUjDvMTAVRPJOp/SLON3mJ07eGsx/Iq9HjRymhKWztX41rISqDKhHVVyFM+IywICyZDla6U3A== + dependencies: + vscode-languageserver-protocol "3.14.1" + vscode-uri "^1.0.6" + +vscode-uri@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.6.tgz#6b8f141b0bbc44ad7b07e94f82f168ac7608ad4d" + integrity sha512-sLI2L0uGov3wKVb9EB+vIQBl9tVP90nqRvxSoJ35vI3NjxE8jfsE5DSOhWgSunHSZmKS4OCi2jrtfxK7uyp2ww== + +vscode-uri@^1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-1.0.8.tgz#9769aaececae4026fb6e22359cb38946580ded59" + integrity sha512-obtSWTlbJ+a+TFRYGaUumtVwb+InIUVI0Lu0VBUAPmj2cU5JutEXg3xUE0c2J5Tcy7h2DEKVJBFi+Y9ZSFzzPQ== + wcwidth@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" @@ -3872,6 +5845,13 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -3886,11 +5866,35 @@ wide-align@^1.1.0: dependencies: string-width "^1.0.2 || 2 || 3 || 4" +widest-line@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-3.1.0.tgz#8292333bbf66cb45ff0de1603b136b7ae1496eca" + integrity sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg== + dependencies: + string-width "^4.0.0" + word-wrap@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== +wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrap-ansi@^6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" + integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" @@ -3937,3 +5941,33 @@ yargs@^17.3.1: string-width "^4.2.3" y18n "^5.0.5" yargs-parser "^21.0.0" + +yarn@^1.21.1: + version "1.22.18" + resolved "https://registry.yarnpkg.com/yarn/-/yarn-1.22.18.tgz#05b822ade8c672987bab8858635145da0850f78a" + integrity sha512-oFffv6Jp2+BTUBItzx1Z0dpikTX+raRdqupfqzeMKnoh7WD6RuPAxcqDkMUy9vafJkrB0YaV708znpuMhEBKGQ== + +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + +zen-observable-ts@^0.8.21: + version "0.8.21" + resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-0.8.21.tgz#85d0031fbbde1eba3cd07d3ba90da241215f421d" + integrity sha512-Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg== + dependencies: + tslib "^1.9.3" + zen-observable "^0.8.0" + +zen-observable-ts@^1.2.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/zen-observable-ts/-/zen-observable-ts-1.2.3.tgz#c2f5ccebe812faf0cfcde547e6004f65b1a6d769" + integrity sha512-hc/TGiPkAWpByykMwDcem3SdUgA4We+0Qb36bItSuJC9xD0XVBZoFHYoadAomDSNf64CG8Ydj0Qb8Od8BUWz5g== + dependencies: + zen-observable "0.8.15" + +zen-observable@0.8.15, zen-observable@^0.8.0: + version "0.8.15" + resolved "https://registry.yarnpkg.com/zen-observable/-/zen-observable-0.8.15.tgz#96415c512d8e3ffd920afd3889604e30b9eaac15" + integrity sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==