|
|
@@ -598,7 +598,7 @@ export type CreateZoneInput = {
|
|
|
/**
|
|
|
* @description
|
|
|
* ISO 4217 currency code
|
|
|
- *
|
|
|
+ *
|
|
|
* @docsCategory common
|
|
|
*/
|
|
|
export enum CurrencyCode {
|
|
|
@@ -1393,7 +1393,7 @@ export type JobSortParameter = {
|
|
|
/**
|
|
|
* @description
|
|
|
* The state of a Job in the JobQueue
|
|
|
- *
|
|
|
+ *
|
|
|
* @docsCategory common
|
|
|
*/
|
|
|
export enum JobState {
|
|
|
@@ -1411,7 +1411,7 @@ export enum JobState {
|
|
|
* region or script modifier (e.g. de_AT). The selection available is based
|
|
|
* on the [Unicode CLDR summary list](https://unicode-org.github.io/cldr-staging/charts/37/summary/root.html)
|
|
|
* and includes the major spoken languages of the world and any widely-used variants.
|
|
|
- *
|
|
|
+ *
|
|
|
* @docsCategory common
|
|
|
*/
|
|
|
export enum LanguageCode {
|
|
|
@@ -1778,6 +1778,7 @@ export type Mutation = {
|
|
|
assignProductsToChannel: Array<Product>;
|
|
|
/** Assign a Role to an Administrator */
|
|
|
assignRoleToAdministrator: Administrator;
|
|
|
+ authenticate: LoginResult;
|
|
|
cancelOrder: Order;
|
|
|
/** Create a new Administrator */
|
|
|
createAdministrator: Administrator;
|
|
|
@@ -1855,6 +1856,7 @@ export type Mutation = {
|
|
|
deleteZone: DeletionResponse;
|
|
|
fulfillOrder: Fulfillment;
|
|
|
importProducts?: Maybe<ImportInfo>;
|
|
|
+ /** @deprecated Use `authenticate` mutation with the 'native' strategy instead. */
|
|
|
login: LoginResult;
|
|
|
logout: Scalars['Boolean'];
|
|
|
/** Move a Collection to a different parent or index */
|
|
|
@@ -1966,6 +1968,12 @@ export type MutationAssignRoleToAdministratorArgs = {
|
|
|
};
|
|
|
|
|
|
|
|
|
+export type MutationAuthenticateArgs = {
|
|
|
+ input: AuthenticationInput;
|
|
|
+ rememberMe?: Maybe<Scalars['Boolean']>;
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
export type MutationCancelOrderArgs = {
|
|
|
input: CancelOrderInput;
|
|
|
};
|
|
|
@@ -2597,7 +2605,7 @@ export type PaymentMethodSortParameter = {
|
|
|
* @description
|
|
|
* Permissions for administrators and customers. Used to control access to
|
|
|
* GraphQL resolvers via the {@link Allow} decorator.
|
|
|
- *
|
|
|
+ *
|
|
|
* @docsCategory common
|
|
|
*/
|
|
|
export enum Permission {
|