Documentation
¶
Index ¶
- func FixedError(err error) db.Hook
- func If(hk db.Hook, cond Condition) db.Hook
- func On(hk db.Hook, op db.Op) db.Hook
- func Reject(op db.Op) db.Hook
- func Unless(hk db.Hook, op db.Op) db.Hook
- type AppCustomerFunc
- type AppFunc
- type AppStripeCustomerFunc
- type AppStripeFunc
- type BalanceSnapshotFunc
- type BillingCustomerOverrideFunc
- type BillingInvoiceFlatFeeLineConfigFunc
- type BillingInvoiceFunc
- type BillingInvoiceLineDiscountFunc
- type BillingInvoiceLineFunc
- type BillingInvoiceUsageBasedLineConfigFunc
- type BillingInvoiceValidationIssueFunc
- type BillingProfileFunc
- type BillingWorkflowConfigFunc
- type Chain
- type Condition
- func And(first, second Condition, rest ...Condition) Condition
- func HasAddedFields(field string, fields ...string) Condition
- func HasClearedFields(field string, fields ...string) Condition
- func HasFields(field string, fields ...string) Condition
- func HasOp(op db.Op) Condition
- func Not(cond Condition) Condition
- func Or(first, second Condition, rest ...Condition) Condition
- type CustomerFunc
- type CustomerSubjectsFunc
- type EntitlementFunc
- type FeatureFunc
- type GrantFunc
- type NotificationChannelFunc
- type NotificationEventDeliveryStatusFunc
- type NotificationEventFunc
- type NotificationRuleFunc
- type PlanFunc
- type PlanPhaseFunc
- type PlanRateCardFunc
- type SubscriptionFunc
- type SubscriptionItemFunc
- type SubscriptionPhaseFunc
- type UsageResetFunc
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func If ¶
If executes the given hook under condition.
hook.If(ComputeAverage, And(HasFields(...), HasAddedFields(...)))
func On ¶
On executes the given hook only for the given operation.
hook.On(Log, db.Delete|db.Create)
Types ¶
type AppCustomerFunc ¶
The AppCustomerFunc type is an adapter to allow the use of ordinary function as AppCustomer mutator.
type AppStripeCustomerFunc ¶
The AppStripeCustomerFunc type is an adapter to allow the use of ordinary function as AppStripeCustomer mutator.
type AppStripeFunc ¶
The AppStripeFunc type is an adapter to allow the use of ordinary function as AppStripe mutator.
type BalanceSnapshotFunc ¶
The BalanceSnapshotFunc type is an adapter to allow the use of ordinary function as BalanceSnapshot mutator.
type BillingCustomerOverrideFunc ¶
type BillingCustomerOverrideFunc func(context.Context, *db.BillingCustomerOverrideMutation) (db.Value, error)
The BillingCustomerOverrideFunc type is an adapter to allow the use of ordinary function as BillingCustomerOverride mutator.
type BillingInvoiceFlatFeeLineConfigFunc ¶
type BillingInvoiceFlatFeeLineConfigFunc func(context.Context, *db.BillingInvoiceFlatFeeLineConfigMutation) (db.Value, error)
The BillingInvoiceFlatFeeLineConfigFunc type is an adapter to allow the use of ordinary function as BillingInvoiceFlatFeeLineConfig mutator.
type BillingInvoiceFunc ¶
The BillingInvoiceFunc type is an adapter to allow the use of ordinary function as BillingInvoice mutator.
type BillingInvoiceLineDiscountFunc ¶
type BillingInvoiceLineDiscountFunc func(context.Context, *db.BillingInvoiceLineDiscountMutation) (db.Value, error)
The BillingInvoiceLineDiscountFunc type is an adapter to allow the use of ordinary function as BillingInvoiceLineDiscount mutator.
type BillingInvoiceLineFunc ¶
The BillingInvoiceLineFunc type is an adapter to allow the use of ordinary function as BillingInvoiceLine mutator.
type BillingInvoiceUsageBasedLineConfigFunc ¶
type BillingInvoiceUsageBasedLineConfigFunc func(context.Context, *db.BillingInvoiceUsageBasedLineConfigMutation) (db.Value, error)
The BillingInvoiceUsageBasedLineConfigFunc type is an adapter to allow the use of ordinary function as BillingInvoiceUsageBasedLineConfig mutator.
type BillingInvoiceValidationIssueFunc ¶
type BillingInvoiceValidationIssueFunc func(context.Context, *db.BillingInvoiceValidationIssueMutation) (db.Value, error)
The BillingInvoiceValidationIssueFunc type is an adapter to allow the use of ordinary function as BillingInvoiceValidationIssue mutator.
type BillingProfileFunc ¶
The BillingProfileFunc type is an adapter to allow the use of ordinary function as BillingProfile mutator.
type BillingWorkflowConfigFunc ¶
type BillingWorkflowConfigFunc func(context.Context, *db.BillingWorkflowConfigMutation) (db.Value, error)
The BillingWorkflowConfigFunc type is an adapter to allow the use of ordinary function as BillingWorkflowConfig mutator.
type Chain ¶
type Chain struct {
// contains filtered or unexported fields
}
Chain acts as a list of hooks and is effectively immutable. Once created, it will always hold the same set of hooks in the same order.
func (Chain) Append ¶
Append extends a chain, adding the specified hook as the last ones in the mutation flow.
type Condition ¶
Condition is a hook condition function.
func HasAddedFields ¶
HasAddedFields is a condition validating `.AddedField` on fields.
func HasClearedFields ¶
HasClearedFields is a condition validating `.FieldCleared` on fields.
type CustomerFunc ¶
The CustomerFunc type is an adapter to allow the use of ordinary function as Customer mutator.
type CustomerSubjectsFunc ¶
The CustomerSubjectsFunc type is an adapter to allow the use of ordinary function as CustomerSubjects mutator.
type EntitlementFunc ¶
The EntitlementFunc type is an adapter to allow the use of ordinary function as Entitlement mutator.
type FeatureFunc ¶
The FeatureFunc type is an adapter to allow the use of ordinary function as Feature mutator.
type GrantFunc ¶
The GrantFunc type is an adapter to allow the use of ordinary function as Grant mutator.
type NotificationChannelFunc ¶
type NotificationChannelFunc func(context.Context, *db.NotificationChannelMutation) (db.Value, error)
The NotificationChannelFunc type is an adapter to allow the use of ordinary function as NotificationChannel mutator.
type NotificationEventDeliveryStatusFunc ¶
type NotificationEventDeliveryStatusFunc func(context.Context, *db.NotificationEventDeliveryStatusMutation) (db.Value, error)
The NotificationEventDeliveryStatusFunc type is an adapter to allow the use of ordinary function as NotificationEventDeliveryStatus mutator.
type NotificationEventFunc ¶
The NotificationEventFunc type is an adapter to allow the use of ordinary function as NotificationEvent mutator.
type NotificationRuleFunc ¶
The NotificationRuleFunc type is an adapter to allow the use of ordinary function as NotificationRule mutator.
type PlanFunc ¶
The PlanFunc type is an adapter to allow the use of ordinary function as Plan mutator.
type PlanPhaseFunc ¶
The PlanPhaseFunc type is an adapter to allow the use of ordinary function as PlanPhase mutator.
type PlanRateCardFunc ¶
The PlanRateCardFunc type is an adapter to allow the use of ordinary function as PlanRateCard mutator.
type SubscriptionFunc ¶
The SubscriptionFunc type is an adapter to allow the use of ordinary function as Subscription mutator.
type SubscriptionItemFunc ¶
The SubscriptionItemFunc type is an adapter to allow the use of ordinary function as SubscriptionItem mutator.
type SubscriptionPhaseFunc ¶
The SubscriptionPhaseFunc type is an adapter to allow the use of ordinary function as SubscriptionPhase mutator.
type UsageResetFunc ¶
The UsageResetFunc type is an adapter to allow the use of ordinary function as UsageReset mutator.