You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/app/src/cli/api/graphql/bulk-operations/generated/types.d.ts
+146Lines changed: 146 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -120,6 +120,32 @@ export type Scalars = {
120
120
UtcOffset: {input: any;output: any}
121
121
}
122
122
123
+
/** Possible error codes that can be returned by `BulkMutationUserError`. */
124
+
exporttypeBulkMutationErrorCode=
125
+
/**
126
+
* There was a problem reading the JSONL file. This error might be intermittent,
127
+
* so you can try performing the same query again.
128
+
*/
129
+
|'INTERNAL_FILE_SERVER_ERROR'
130
+
/** The operation did not run because the mutation is invalid. Check your mutation syntax and try again. */
131
+
|'INVALID_MUTATION'
132
+
/** The JSONL file submitted via the `stagedUploadsCreate` mutation is invalid. Update the file and try again. */
133
+
|'INVALID_STAGED_UPLOAD_FILE'
134
+
/** Bulk operations limit reached. Please try again later. */
135
+
|'LIMIT_REACHED'
136
+
/**
137
+
* The JSONL file could not be found. Try [uploading the file](https://shopify.dev/api/usage/bulk-operations/imports#generate-the-uploaded-url-and-parameters)
138
+
* again, and check that you've entered the URL correctly for the
139
+
* `stagedUploadPath` mutation argument.
140
+
*/
141
+
|'NO_SUCH_FILE'
142
+
/**
143
+
* The operation did not run because another bulk mutation is already running.
144
+
* [Wait for the operation to finish](https://shopify.dev/api/usage/bulk-operations/imports#wait-for-the-operation-to-finish)
145
+
* before retrying this operation.
146
+
*/
147
+
|'OPERATION_IN_PROGRESS'
148
+
123
149
/** Error codes for failed bulk operations. */
124
150
exporttypeBulkOperationErrorCode=
125
151
/**
@@ -177,3 +203,123 @@ export type BulkOperationUserErrorCode =
177
203
|'LIMIT_REACHED'
178
204
/** A bulk operation is already in progress. */
179
205
|'OPERATION_IN_PROGRESS'
206
+
207
+
/**
208
+
* The possible HTTP methods that can be used when sending a request to upload a file using information from a
0 commit comments