|
|
@@ -1863,6 +1863,7 @@ export type Mutation = {
|
|
|
updateOrderNote: HistoryEntry;
|
|
|
deleteOrderNote: DeletionResponse;
|
|
|
transitionOrderToState?: Maybe<Order>;
|
|
|
+ setOrderCustomFields?: Maybe<Order>;
|
|
|
/** Update an existing PaymentMethod */
|
|
|
updatePaymentMethod: PaymentMethod;
|
|
|
/** Create a new ProductOptionGroup */
|
|
|
@@ -2155,6 +2156,10 @@ export type MutationTransitionOrderToStateArgs = {
|
|
|
state: Scalars['String'];
|
|
|
};
|
|
|
|
|
|
+export type MutationSetOrderCustomFieldsArgs = {
|
|
|
+ input: UpdateOrderInput;
|
|
|
+};
|
|
|
+
|
|
|
export type MutationUpdatePaymentMethodArgs = {
|
|
|
input: UpdatePaymentMethodInput;
|
|
|
};
|
|
|
@@ -3541,6 +3546,11 @@ export type UpdateGlobalSettingsInput = {
|
|
|
customFields?: Maybe<Scalars['JSON']>;
|
|
|
};
|
|
|
|
|
|
+export type UpdateOrderInput = {
|
|
|
+ id: Scalars['ID'];
|
|
|
+ customFields?: Maybe<Scalars['JSON']>;
|
|
|
+};
|
|
|
+
|
|
|
export type UpdateOrderNoteInput = {
|
|
|
noteId: Scalars['ID'];
|
|
|
note?: Maybe<Scalars['String']>;
|