Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1825,12 +1825,11 @@ Employment type for Payment Protection, mirroring underwriter's `SwedishPaymentP
`UNEMPLOYED` and `HOURLY_EMPLOYED` are ineligible and rejected by underwriter.
"""
enum EmploymentType {
UNEMPLOYED
PROBATIONARY_EMPLOYED
HOURLY_EMPLOYED
PERMANENT_EMPLOYED_FULLTIME
PERMANENT_EMPLOYED_PARTTIME
CONTRACT_EMPLOYED
PERMANENT_EMPLOYED
SELF_EMPLOYED
UNEMPLOYED
}
type Entrypoint {
id: ID!
Expand Down Expand Up @@ -4264,7 +4263,7 @@ type PriceIntent {
"""
The minimum start date of the price intent.
"""
minStartDate: Date
minStartDate: Date @deprecated(reason: "Use ProductOffer.minStartDate instead")
"""
When 'true' it means user has gone trough Insurely flow with that price intent
"""
Expand Down Expand Up @@ -4500,6 +4499,14 @@ type ProductOffer {
"""
bundleDiscount: ProductOfferBundleDiscountInfo!
"""
The earliest start date allowed for this offer, if the product constrains it.
"""
minStartDate: Date
"""
The latest start date allowed for this offer.
"""
maxStartDate: Date!
"""
Values related to cancellation/switching of their existing other insurance.
"""
cancellation: ExternalInsuranceCancellation!
Expand Down Expand Up @@ -5053,6 +5060,7 @@ input ShopSessionAttributionInput {
A/B testing experiments
"""
experiments: [ShopSessionExperimentInput!]
""""""
trackingData: JSON
"""
The Vertex recommendation instance that led the member here (cross-sell arm only).
Expand Down Expand Up @@ -5917,23 +5925,23 @@ enum __DirectiveLocation {
"""
INPUT_FIELD_DEFINITION
}
directive @defer (label: String, if: Boolean! = true) on FRAGMENT_SPREAD|INLINE_FRAGMENT
directive @defer(label: String, if: Boolean! = true) on FRAGMENT_SPREAD | INLINE_FRAGMENT
"""
Directs the executor to include this field or fragment only when the `if` argument is true.
"""
directive @include ("Included when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT
directive @include("Included when true." if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
"""
Directs the executor to skip this field or fragment when the `if` argument is true.
"""
directive @skip ("Skipped when true." if: Boolean!) on FIELD|FRAGMENT_SPREAD|INLINE_FRAGMENT
directive @skip("Skipped when true." if: Boolean!) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
"""
Marks an element of a GraphQL schema as no longer supported.
"""
directive @deprecated ("Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/)." reason: String = "No longer supported") on FIELD_DEFINITION|ARGUMENT_DEFINITION|INPUT_FIELD_DEFINITION|ENUM_VALUE
directive @deprecated("Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/)." reason: String = "No longer supported") on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE
"""
Exposes a URL that specifies the behavior of this scalar.
"""
directive @specifiedBy ("The URL that specifies the behavior of this scalar." url: String!) on SCALAR
directive @specifiedBy("The URL that specifies the behavior of this scalar." url: String!) on SCALAR
schema {
query: Query
mutation: Mutation
Expand Down
Loading