Skip to content

Commit

Permalink
feat(core): Implement deletion of PaymentMethods
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Apr 8, 2021
1 parent 23cc655 commit f97cd4f
Show file tree
Hide file tree
Showing 11 changed files with 12,192 additions and 11,481 deletions.
6,216 changes: 3,062 additions & 3,154 deletions packages/asset-server-plugin/e2e/graphql/generated-e2e-asset-server-plugin-types.ts

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions packages/common/src/generated-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,8 @@ export type Mutation = {
createPaymentMethod: PaymentMethod;
/** Update an existing PaymentMethod */
updatePaymentMethod: PaymentMethod;
/** Delete a PaymentMethod */
deletePaymentMethod: DeletionResponse;
/** Create a new ProductOptionGroup */
createProductOptionGroup: ProductOptionGroup;
/** Update an existing ProductOptionGroup */
Expand Down Expand Up @@ -830,6 +832,12 @@ export type MutationUpdatePaymentMethodArgs = {
};


export type MutationDeletePaymentMethodArgs = {
id: Scalars['ID'];
force?: Maybe<Scalars['Boolean']>;
};


export type MutationCreateProductOptionGroupArgs = {
input: CreateProductOptionGroupInput;
};
Expand Down
Loading

0 comments on commit f97cd4f

Please sign in to comment.