Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export type Scalars = {
BusinessUserID: { input: any; output: any; }
/** The ID for a BusinessUsersImport. */
BusinessUsersImportID: { input: any; output: any; }
/** The ID for a CollaboratorRelationship. */
CollaboratorRelationshipID: { input: any; output: any; }
/** A signed decimal number, which supports arbitrary precision and is serialized as a string. */
Decimal: { input: any; output: any; }
/** The ID for a DocumentAttachment. */
Expand All @@ -49,6 +51,11 @@ export type Scalars = {
JSON: { input: JsonMapType | string; output: JsonMapType; }
/** The ID for a LegalEntity. */
LegalEntityID: { input: any; output: any; }
/**
* An ISO 8601 date and time serialized with microsecond precision, so a value read
* from a field can be supplied back as an argument and still compare equal to the stored row.
*/
MicrosecondDateTime: { input: any; output: any; }
/** The ID for a OrganizationDomain. */
OrganizationDomainID: { input: any; output: any; }
/** The ID for a Organization. */
Expand All @@ -71,6 +78,8 @@ export type Scalars = {
RoleID: { input: any; output: any; }
/** The ID for a Shop. */
ShopID: { input: any; output: any; }
/** The ID for a ShopTransferRequest. */
ShopTransferRequestID: { input: any; output: any; }
/** The ID for a ShopifyShop. */
ShopifyShopID: { input: any; output: any; }
/** The ID for a StoreAdditionRequest. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,8 @@ export type OnlineStoreThemeFilesUserErrorsCode =
| 'LESS_THAN_OR_EQUAL_TO'
/** The record with the ID used as the input value couldn't be found. */
| 'NOT_FOUND'
/** Another request is already updating this theme's files. Try again. */
| 'OPERATION_IN_PROGRESS'
/** Theme contextualization and condition types are not compatible with each other. */
| 'THEME_CONTEXTUALIZATION_NOT_COMPATIBLE_WITH_CONDITION_TYPES'
/** There are theme files with conflicts. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export type Scalars = {
BusinessUserID: { input: any; output: any; }
/** The ID for a BusinessUsersImport. */
BusinessUsersImportID: { input: any; output: any; }
/** The ID for a CollaboratorRelationship. */
CollaboratorRelationshipID: { input: any; output: any; }
/** A signed decimal number, which supports arbitrary precision and is serialized as a string. */
Decimal: { input: any; output: any; }
/** The ID for a DocumentAttachment. */
Expand All @@ -49,6 +51,11 @@ export type Scalars = {
JSON: { input: JsonMapType | string; output: JsonMapType; }
/** The ID for a LegalEntity. */
LegalEntityID: { input: any; output: any; }
/**
* An ISO 8601 date and time serialized with microsecond precision, so a value read
* from a field can be supplied back as an argument and still compare equal to the stored row.
*/
MicrosecondDateTime: { input: any; output: any; }
/** The ID for a OrganizationDomain. */
OrganizationDomainID: { input: any; output: any; }
/** The ID for a Organization. */
Expand All @@ -71,6 +78,8 @@ export type Scalars = {
RoleID: { input: any; output: any; }
/** The ID for a Shop. */
ShopID: { input: any; output: any; }
/** The ID for a ShopTransferRequest. */
ShopTransferRequestID: { input: any; output: any; }
/** The ID for a ShopifyShop. */
ShopifyShopID: { input: any; output: any; }
/** The ID for a StoreAdditionRequest. */
Expand Down
Loading