@vendure/common
Advanced tools
Comparing version 0.13.1 to 0.14.0
@@ -86,2 +86,12 @@ export declare type Maybe<T> = T | null; | ||
} | ||
export declare type AuthenticationInput = { | ||
native?: Maybe<NativeAuthInput>; | ||
}; | ||
export declare type AuthenticationMethod = Node & { | ||
__typename?: 'AuthenticationMethod'; | ||
id: Scalars['ID']; | ||
createdAt: Scalars['DateTime']; | ||
updatedAt: Scalars['DateTime']; | ||
strategy: Scalars['String']; | ||
}; | ||
export declare type BooleanCustomFieldConfig = CustomField & { | ||
@@ -530,2 +540,3 @@ __typename?: 'BooleanCustomFieldConfig'; | ||
User: Array<CustomFieldConfig>; | ||
ShippingMethod: Array<CustomFieldConfig>; | ||
}; | ||
@@ -910,2 +921,3 @@ export declare type DateOperators = { | ||
setOrderBillingAddress?: Maybe<Order>; | ||
setOrderCustomFields?: Maybe<Order>; | ||
setOrderShippingMethod?: Maybe<Order>; | ||
@@ -915,2 +927,3 @@ addPaymentToOrder?: Maybe<Order>; | ||
login: LoginResult; | ||
authenticate: LoginResult; | ||
logout: Scalars['Boolean']; | ||
@@ -956,2 +969,5 @@ refreshCustomerVerification: Scalars['Boolean']; | ||
}; | ||
export declare type MutationSetOrderCustomFieldsArgs = { | ||
input: UpdateOrderInput; | ||
}; | ||
export declare type MutationSetOrderShippingMethodArgs = { | ||
@@ -971,2 +987,6 @@ shippingMethodId: Scalars['ID']; | ||
}; | ||
export declare type MutationAuthenticateArgs = { | ||
input: AuthenticationInput; | ||
rememberMe?: Maybe<Scalars['Boolean']>; | ||
}; | ||
export declare type MutationRefreshCustomerVerificationArgs = { | ||
@@ -992,3 +1012,3 @@ emailAddress: Scalars['String']; | ||
token: Scalars['String']; | ||
password: Scalars['String']; | ||
password?: Maybe<Scalars['String']>; | ||
}; | ||
@@ -1013,2 +1033,6 @@ export declare type MutationUpdateCustomerPasswordArgs = { | ||
}; | ||
export declare type NativeAuthInput = { | ||
username: Scalars['String']; | ||
password: Scalars['String']; | ||
}; | ||
export declare type Node = { | ||
@@ -1128,2 +1152,7 @@ id: Scalars['ID']; | ||
}; | ||
export declare type OrderProcessState = { | ||
__typename?: 'OrderProcessState'; | ||
name: Scalars['String']; | ||
to: Array<Scalars['String']>; | ||
}; | ||
export declare type OrderSortParameter = { | ||
@@ -1253,2 +1282,3 @@ id?: Maybe<SortOrder>; | ||
groupId: Scalars['ID']; | ||
group: ProductOptionGroup; | ||
translations: Array<ProductOptionTranslation>; | ||
@@ -1306,2 +1336,3 @@ customFields?: Maybe<Scalars['JSON']>; | ||
id: Scalars['ID']; | ||
product: Product; | ||
productId: Scalars['ID']; | ||
@@ -1539,2 +1570,3 @@ createdAt: Scalars['DateTime']; | ||
__typename?: 'ServerConfig'; | ||
orderProcess: Array<OrderProcessState>; | ||
customFieldConfig: CustomFields; | ||
@@ -1551,2 +1583,3 @@ }; | ||
calculator: ConfigurableOperation; | ||
customFields?: Maybe<Scalars['JSON']>; | ||
}; | ||
@@ -1670,2 +1703,5 @@ export declare type ShippingMethodList = PaginatedList & { | ||
}; | ||
export declare type UpdateOrderInput = { | ||
customFields?: Maybe<Scalars['JSON']>; | ||
}; | ||
export declare type User = Node & { | ||
@@ -1679,3 +1715,4 @@ __typename?: 'User'; | ||
roles: Array<Role>; | ||
lastLogin?: Maybe<Scalars['String']>; | ||
lastLogin?: Maybe<Scalars['DateTime']>; | ||
authenticationMethods: Array<AuthenticationMethod>; | ||
customFields?: Maybe<Scalars['JSON']>; | ||
@@ -1682,0 +1719,0 @@ }; |
@@ -36,2 +36,3 @@ import { LanguageCode } from './generated-types'; | ||
availableLanguages: LanguageCode[]; | ||
loginUrl?: string; | ||
} | ||
@@ -38,0 +39,0 @@ export interface AdminUiAppConfig { |
{ | ||
"name": "@vendure/common", | ||
"version": "0.13.1", | ||
"version": "0.14.0", | ||
"main": "index.js", | ||
@@ -23,3 +23,3 @@ "license": "MIT", | ||
}, | ||
"gitHead": "67b80ad503dc896f72186c5d43222e42b28778a8" | ||
"gitHead": "01214847e68a540abc711b42924df44003d11fdb" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
204427
5709