Confirm Your Access
+Hi,
+Confirm access to your Flash account using the following code:
+This code will only be used once. Do not share it with anyone.
+diff --git a/dev/apollo-federation/supergraph.graphql b/dev/apollo-federation/supergraph.graphql index 4c0006339..a24128e71 100644 --- a/dev/apollo-federation/supergraph.graphql +++ b/dev/apollo-federation/supergraph.graphql @@ -1132,6 +1132,8 @@ type Mutation lnUsdInvoiceCreateOnBehalfOfRecipient(input: LnUsdInvoiceCreateOnBehalfOfRecipientInput!): LnInvoicePayload! lnUsdInvoiceFeeProbe(input: LnUsdInvoiceFeeProbeInput!): CentAmountPayload! merchantMapSuggest(input: MerchantMapSuggestInput!): MerchantPayload! + newUserEmailRegistrationInitiate(input: NewUserEmailRegistrationInitiateInput!): NewUserEmailRegistrationInitiatePayload! + newUserEmailRegistrationValidate(input: NewUserEmailRegistrationValidateInput!): AuthTokenPayload! onChainAddressCreate(input: OnChainAddressCreateInput!): OnChainAddressPayload! onChainAddressCurrent(input: OnChainAddressCurrentInput!): OnChainAddressPayload! onChainPaymentSend(input: OnChainPaymentSendInput!): PaymentSendPayload! @@ -1181,6 +1183,26 @@ enum Network testnet @join__enumValue(graph: PUBLIC) } +input NewUserEmailRegistrationInitiateInput + @join__type(graph: PUBLIC) +{ + email: EmailAddress! +} + +type NewUserEmailRegistrationInitiatePayload + @join__type(graph: PUBLIC) +{ + emailFlowId: String + errors: [Error!]! +} + +input NewUserEmailRegistrationValidateInput + @join__type(graph: PUBLIC) +{ + code: OneTimeAuthCode! + emailFlowId: String! +} + scalar NotificationCategory @join__type(graph: PUBLIC) diff --git a/dev/ory/email-template.html b/dev/ory/email-template.html new file mode 100644 index 000000000..194d19fbf --- /dev/null +++ b/dev/ory/email-template.html @@ -0,0 +1,93 @@ + + + +
+ + + + + + +
+ Hi,
+Confirm access to your Flash account using the following code:
+This code will only be used once. Do not share it with anyone.
+