Skip to content

Commit

Permalink
fix(core): Add missing timestamp fields to Asset GraphQL type
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed May 7, 2019
1 parent 0522e5c commit 1c543db
Show file tree
Hide file tree
Showing 6 changed files with 2,070 additions and 1,978 deletions.
6 changes: 5 additions & 1 deletion packages/common/src/generated-shop-types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// tslint:disable
// Generated in 2019-05-02T20:00:05+02:00
// Generated in 2019-05-07T09:20:23+02:00
export type Maybe<T> = T | null;

export interface OrderListOptions {
Expand Down Expand Up @@ -1112,6 +1112,10 @@ export interface ProductVariant extends Node {
export interface Asset extends Node {
id: string;

createdAt: DateTime;

updatedAt: DateTime;

name: string;

type: AssetType;
Expand Down
Loading

0 comments on commit 1c543db

Please sign in to comment.