From 8112ca851394586173b52541a96db21e20f97be4 Mon Sep 17 00:00:00 2001 From: MarekBodingerBA <104828482+MarekBodingerBA@users.noreply.github.com> Date: Fri, 31 Jan 2025 15:20:01 +0100 Subject: [PATCH] Add channelChangeEffectiveNextYearTitle to Strapi (#2193) Add channelChangeEffectiveNextYear to Strapi --- strapi/schema.graphql | 6 ++++++ strapi/src/api/tax/content-types/tax/schema.json | 6 ++++++ strapi/types/generated/contentTypes.d.ts | 2 ++ 3 files changed, 14 insertions(+) diff --git a/strapi/schema.graphql b/strapi/schema.graphql index f4d1134b2..97fc6bc74 100644 --- a/strapi/schema.graphql +++ b/strapi/schema.graphql @@ -771,6 +771,8 @@ input StringFilterInput { type Tax { accountCommunicationConsentText: String! + channelChangeEffectiveNextYearText: String + channelChangeEffectiveNextYearTitle: String createdAt: DateTime currentYearTaxInPreparationText: String currentYearTaxInPreparationTitle: String @@ -795,6 +797,8 @@ type TaxEntityResponseCollection { input TaxFiltersInput { accountCommunicationConsentText: StringFilterInput and: [TaxFiltersInput] + channelChangeEffectiveNextYearText: StringFilterInput + channelChangeEffectiveNextYearTitle: StringFilterInput createdAt: DateTimeFilterInput currentYearTaxInPreparationText: StringFilterInput currentYearTaxInPreparationTitle: StringFilterInput @@ -806,6 +810,8 @@ input TaxFiltersInput { input TaxInput { accountCommunicationConsentText: String + channelChangeEffectiveNextYearText: String + channelChangeEffectiveNextYearTitle: String currentYearTaxInPreparationText: String currentYearTaxInPreparationTitle: String displayCurrentYearTaxInPreparation: Boolean diff --git a/strapi/src/api/tax/content-types/tax/schema.json b/strapi/src/api/tax/content-types/tax/schema.json index ecbcd0f9e..afaa78ba4 100644 --- a/strapi/src/api/tax/content-types/tax/schema.json +++ b/strapi/src/api/tax/content-types/tax/schema.json @@ -26,6 +26,12 @@ }, "currentYearTaxInPreparationText": { "type": "richtext" + }, + "channelChangeEffectiveNextYearTitle": { + "type": "string" + }, + "channelChangeEffectiveNextYearText": { + "type": "richtext" } } } diff --git a/strapi/types/generated/contentTypes.d.ts b/strapi/types/generated/contentTypes.d.ts index 01fc8a9c0..adccd4051 100644 --- a/strapi/types/generated/contentTypes.d.ts +++ b/strapi/types/generated/contentTypes.d.ts @@ -736,6 +736,8 @@ export interface ApiTaxTax extends Schema.SingleType { Attribute.DefaultTo currentYearTaxInPreparationTitle: Attribute.String currentYearTaxInPreparationText: Attribute.RichText + channelChangeEffectiveNextYearTitle: Attribute.String + channelChangeEffectiveNextYearText: Attribute.RichText createdAt: Attribute.DateTime updatedAt: Attribute.DateTime createdBy: Attribute.Relation<'api::tax.tax', 'oneToOne', 'admin::user'> & Attribute.Private