Skip to content

Commit

Permalink
Add channelChangeEffectiveNextYearTitle to Strapi (#2193)
Browse files Browse the repository at this point in the history
Add channelChangeEffectiveNextYear to Strapi
  • Loading branch information
MarekBodingerBA authored Jan 31, 2025
1 parent c5e0105 commit 8112ca8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions strapi/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,8 @@ input StringFilterInput {

type Tax {
accountCommunicationConsentText: String!
channelChangeEffectiveNextYearText: String
channelChangeEffectiveNextYearTitle: String
createdAt: DateTime
currentYearTaxInPreparationText: String
currentYearTaxInPreparationTitle: String
Expand All @@ -795,6 +797,8 @@ type TaxEntityResponseCollection {
input TaxFiltersInput {
accountCommunicationConsentText: StringFilterInput
and: [TaxFiltersInput]
channelChangeEffectiveNextYearText: StringFilterInput
channelChangeEffectiveNextYearTitle: StringFilterInput
createdAt: DateTimeFilterInput
currentYearTaxInPreparationText: StringFilterInput
currentYearTaxInPreparationTitle: StringFilterInput
Expand All @@ -806,6 +810,8 @@ input TaxFiltersInput {

input TaxInput {
accountCommunicationConsentText: String
channelChangeEffectiveNextYearText: String
channelChangeEffectiveNextYearTitle: String
currentYearTaxInPreparationText: String
currentYearTaxInPreparationTitle: String
displayCurrentYearTaxInPreparation: Boolean
Expand Down
6 changes: 6 additions & 0 deletions strapi/src/api/tax/content-types/tax/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
},
"currentYearTaxInPreparationText": {
"type": "richtext"
},
"channelChangeEffectiveNextYearTitle": {
"type": "string"
},
"channelChangeEffectiveNextYearText": {
"type": "richtext"
}
}
}
2 changes: 2 additions & 0 deletions strapi/types/generated/contentTypes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,8 @@ export interface ApiTaxTax extends Schema.SingleType {
Attribute.DefaultTo<false>
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
Expand Down

0 comments on commit 8112ca8

Please sign in to comment.