@evenicanpm/storefront-graphql-codegen 2.0.0 → 2.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,464 @@
1
+
2
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
3
+ ../../apps/strapi |  WARN  Unsupported engine: wanted: {"node":">=18.0.0 <=22.x.x"} (current: {"node":"v24.16.0","pnpm":"11.0.0"})
4
+ $ pnpm dlx @biomejs/biome check --write .
5
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
6
+  WARN  Failed to replace env in config: ${NPM_TOKEN}
7
+ documents/Account/read.ts:3:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8
+
9
+  ⚠ This variable ACCOUNT_READ is unused.
10
+  
11
+   1 │ import { gql } from "graphql-request";
12
+   2 │ 
13
+  > 3 │ const ACCOUNT_READ = gql`
14
+    │       ^^^^^^^^^^^^
15
+   4 │   query account($id: ID) {
16
+   5 │     account(id: $id) {
17
+  
18
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
19
+  
20
+  ℹ Unsafe fix: If this is intentional, prepend ACCOUNT_READ with an underscore.
21
+  
22
+    1  1 │   import { gql } from "graphql-request";
23
+    2  2 │   
24
+    3    │ - const·ACCOUNT_READ·=·gql`
25
+       3 │ + const·_ACCOUNT_READ·=·gql`
26
+    4  4 │     query account($id: ID) {
27
+    5  5 │       account(id: $id) {
28
+  
29
+ 
30
+ documents/Account/readList.ts:3:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
31
+
32
+  ⚠ This variable ACCOUNT_LIST is unused.
33
+  
34
+   1 │ import { gql } from "graphql-request";
35
+   2 │ 
36
+  > 3 │ const ACCOUNT_LIST = gql`
37
+    │       ^^^^^^^^^^^^
38
+   4 │   query accounts($input: AccountQueryInput) {
39
+   5 │     accounts(input: $input) {
40
+  
41
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
42
+  
43
+  ℹ Unsafe fix: If this is intentional, prepend ACCOUNT_LIST with an underscore.
44
+  
45
+    1  1 │   import { gql } from "graphql-request";
46
+    2  2 │   
47
+    3    │ - const·ACCOUNT_LIST·=·gql`
48
+       3 │ + const·_ACCOUNT_LIST·=·gql`
49
+    4  4 │     query accounts($input: AccountQueryInput) {
50
+    5  5 │       accounts(input: $input) {
51
+  
52
+ 
53
+ documents/Account/update.ts:3:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
54
+
55
+  ⚠ This variable UPDATE_PROFILE is unused.
56
+  
57
+   1 │ import { gql } from "graphql-request";
58
+   2 │ 
59
+  > 3 │ const UPDATE_PROFILE = gql`
60
+    │       ^^^^^^^^^^^^^^
61
+   4 │   mutation updateProfile($profile: ProfileInput) {
62
+   5 │     updateProfile(profile: $profile) {
63
+  
64
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
65
+  
66
+  ℹ Unsafe fix: If this is intentional, prepend UPDATE_PROFILE with an underscore.
67
+  
68
+    1  1 │   import { gql } from "graphql-request";
69
+    2  2 │   
70
+    3    │ - const·UPDATE_PROFILE·=·gql`
71
+       3 │ + const·_UPDATE_PROFILE·=·gql`
72
+    4  4 │     mutation updateProfile($profile: ProfileInput) {
73
+    5  5 │       updateProfile(profile: $profile) {
74
+  
75
+ 
76
+ documents/Address/addressType.ts:5:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
77
+
78
+  ⚠ This variable ADDRESSTYPE_LIST is unused.
79
+  
80
+   3 │ import { ADDRESSTYPE_FRAGMENT } from "./fragments";
81
+   4 │ 
82
+  > 5 │ const ADDRESSTYPE_LIST = gql`
83
+    │       ^^^^^^^^^^^^^^^^
84
+   6 │   ${ADDRESSTYPE_FRAGMENT}
85
+   7 │   query e4AddressTypeList($query: CollectionRequestInput) {
86
+  
87
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
88
+  
89
+  ℹ Unsafe fix: If this is intentional, prepend ADDRESSTYPE_LIST with an underscore.
90
+  
91
+    3  3 │   import { ADDRESSTYPE_FRAGMENT } from "./fragments";
92
+    4  4 │   
93
+    5    │ - const·ADDRESSTYPE_LIST·=·gql`
94
+       5 │ + const·_ADDRESSTYPE_LIST·=·gql`
95
+    6  6 │     ${ADDRESSTYPE_FRAGMENT}
96
+    7  7 │     query e4AddressTypeList($query: CollectionRequestInput) {
97
+  
98
+ 
99
+ documents/Address/countries.ts:5:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
100
+
101
+  ⚠ This variable COUNTRY_LIST is unused.
102
+  
103
+   3 │ import { COUNTRY_FRAGMENT, STATE_FRAGMENT } from "./fragments";
104
+   4 │ 
105
+  > 5 │ const COUNTRY_LIST = gql`
106
+    │       ^^^^^^^^^^^^
107
+   6 │   ${COUNTRY_FRAGMENT}
108
+   7 │   query e4CountryList($query: CollectionRequestInput) {
109
+  
110
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
111
+  
112
+  ℹ Unsafe fix: If this is intentional, prepend COUNTRY_LIST with an underscore.
113
+  
114
+    3  3 │   import { COUNTRY_FRAGMENT, STATE_FRAGMENT } from "./fragments";
115
+    4  4 │   
116
+    5    │ - const·COUNTRY_LIST·=·gql`
117
+       5 │ + const·_COUNTRY_LIST·=·gql`
118
+    6  6 │     ${COUNTRY_FRAGMENT}
119
+    7  7 │     query e4CountryList($query: CollectionRequestInput) {
120
+  
121
+ 
122
+ documents/Address/countries.ts:14:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
123
+
124
+  ⚠ This variable COUNTRY is unused.
125
+  
126
+   12 │ `;
127
+   13 │ 
128
+  > 14 │ const COUNTRY = gql`
129
+     │       ^^^^^^^
130
+   15 │   ${STATE_FRAGMENT}
131
+   16 │   query e4Country($id: String!) {
132
+  
133
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
134
+  
135
+  ℹ Unsafe fix: If this is intentional, prepend COUNTRY with an underscore.
136
+  
137
+   12 12 │   `;
138
+   13 13 │   
139
+   14    │ - const·COUNTRY·=·gql`
140
+      14 │ + const·_COUNTRY·=·gql`
141
+   15 15 │     ${STATE_FRAGMENT}
142
+   16 16 │     query e4Country($id: String!) {
143
+  
144
+ 
145
+ documents/Address/create.ts:5:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
146
+
147
+  ⚠ This variable ADDRESS_CREATE is unused.
148
+  
149
+   3 │ import { ADDRESS_FRAGMENT } from "./fragments";
150
+   4 │ 
151
+  > 5 │ const ADDRESS_CREATE = gql`
152
+    │       ^^^^^^^^^^^^^^
153
+   6 │   ${ADDRESS_FRAGMENT}
154
+   7 │   mutation e4AddressCreate($address: AddressInput!) {
155
+  
156
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
157
+  
158
+  ℹ Unsafe fix: If this is intentional, prepend ADDRESS_CREATE with an underscore.
159
+  
160
+    3  3 │   import { ADDRESS_FRAGMENT } from "./fragments";
161
+    4  4 │   
162
+    5    │ - const·ADDRESS_CREATE·=·gql`
163
+       5 │ + const·_ADDRESS_CREATE·=·gql`
164
+    6  6 │     ${ADDRESS_FRAGMENT}
165
+    7  7 │     mutation e4AddressCreate($address: AddressInput!) {
166
+  
167
+ 
168
+ documents/Address/update.ts:5:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
169
+
170
+  ⚠ This variable ADDRESS_UPDATE is unused.
171
+  
172
+   3 │ import { ADDRESS_FRAGMENT } from "./fragments";
173
+   4 │ 
174
+  > 5 │ const ADDRESS_UPDATE = gql`
175
+    │       ^^^^^^^^^^^^^^
176
+   6 │   ${ADDRESS_FRAGMENT}
177
+   7 │   mutation e4AddressUpdate($address: AddressInput!) {
178
+  
179
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
180
+  
181
+  ℹ Unsafe fix: If this is intentional, prepend ADDRESS_UPDATE with an underscore.
182
+  
183
+    3  3 │   import { ADDRESS_FRAGMENT } from "./fragments";
184
+    4  4 │   
185
+    5    │ - const·ADDRESS_UPDATE·=·gql`
186
+       5 │ + const·_ADDRESS_UPDATE·=·gql`
187
+    6  6 │     ${ADDRESS_FRAGMENT}
188
+    7  7 │     mutation e4AddressUpdate($address: AddressInput!) {
189
+  
190
+ 
191
+ documents/Cart/add.ts:10:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
192
+
193
+  ⚠ This variable ADD_TO_CART_XS is unused.
194
+  
195
+    8 │ } from "./fragments";
196
+    9 │ 
197
+  > 10 │ const ADD_TO_CART_XS = gql`
198
+     │       ^^^^^^^^^^^^^^
199
+   11 │   ${CART_FRAGMENT_XS}
200
+   12 │   mutation e4AddToCartXS($productId: ID!, $quantity: Int) {
201
+  
202
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
203
+  
204
+  ℹ Unsafe fix: If this is intentional, prepend ADD_TO_CART_XS with an underscore.
205
+  
206
+    8  8 │   } from "./fragments";
207
+    9  9 │   
208
+   10    │ - const·ADD_TO_CART_XS·=·gql`
209
+      10 │ + const·_ADD_TO_CART_XS·=·gql`
210
+   11 11 │     ${CART_FRAGMENT_XS}
211
+   12 12 │     mutation e4AddToCartXS($productId: ID!, $quantity: Int) {
212
+  
213
+ 
214
+ documents/Cart/add.ts:24:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
215
+
216
+  ⚠ This variable ADD_TO_CART_SM is unused.
217
+  
218
+   22 │ `;
219
+   23 │ 
220
+  > 24 │ const ADD_TO_CART_SM = gql`
221
+     │       ^^^^^^^^^^^^^^
222
+   25 │   ${CART_FRAGMENT_SM}
223
+   26 │   mutation e4AddToCartSM($productId: ID!, $quantity: Int) {
224
+  
225
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
226
+  
227
+  ℹ Unsafe fix: If this is intentional, prepend ADD_TO_CART_SM with an underscore.
228
+  
229
+   22 22 │   `;
230
+   23 23 │   
231
+   24    │ - const·ADD_TO_CART_SM·=·gql`
232
+      24 │ + const·_ADD_TO_CART_SM·=·gql`
233
+   25 25 │     ${CART_FRAGMENT_SM}
234
+   26 26 │     mutation e4AddToCartSM($productId: ID!, $quantity: Int) {
235
+  
236
+ 
237
+ documents/Cart/add.ts:38:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
238
+
239
+  ⚠ This variable ADD_TO_CART_MD is unused.
240
+  
241
+   36 │ `;
242
+   37 │ 
243
+  > 38 │ const ADD_TO_CART_MD = gql`
244
+     │       ^^^^^^^^^^^^^^
245
+   39 │   ${CART_FRAGMENT_MD}
246
+   40 │   mutation e4AddToCartMD($productId: ID!, $quantity: Int) {
247
+  
248
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
249
+  
250
+  ℹ Unsafe fix: If this is intentional, prepend ADD_TO_CART_MD with an underscore.
251
+  
252
+   36 36 │   `;
253
+   37 37 │   
254
+   38    │ - const·ADD_TO_CART_MD·=·gql`
255
+      38 │ + const·_ADD_TO_CART_MD·=·gql`
256
+   39 39 │     ${CART_FRAGMENT_MD}
257
+   40 40 │     mutation e4AddToCartMD($productId: ID!, $quantity: Int) {
258
+  
259
+ 
260
+ documents/Cart/add.ts:52:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
261
+
262
+  ⚠ This variable ADD_TO_CART_LG is unused.
263
+  
264
+   50 │ `;
265
+   51 │ 
266
+  > 52 │ const ADD_TO_CART_LG = gql`
267
+     │       ^^^^^^^^^^^^^^
268
+   53 │   ${CART_FRAGMENT_LG}
269
+   54 │   mutation e4AddToCartLG($productId: ID!, $quantity: Int) {
270
+  
271
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
272
+  
273
+  ℹ Unsafe fix: If this is intentional, prepend ADD_TO_CART_LG with an underscore.
274
+  
275
+   50 50 │   `;
276
+   51 51 │   
277
+   52    │ - const·ADD_TO_CART_LG·=·gql`
278
+      52 │ + const·_ADD_TO_CART_LG·=·gql`
279
+   53 53 │     ${CART_FRAGMENT_LG}
280
+   54 54 │     mutation e4AddToCartLG($productId: ID!, $quantity: Int) {
281
+  
282
+ 
283
+ documents/Cart/checkoutSubmit.ts:3:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
284
+
285
+  ⚠ This variable CART_CHECKOUT_SUBMIT is unused.
286
+  
287
+   1 │ import { gql } from "graphql-request";
288
+   2 │ 
289
+  > 3 │ const CART_CHECKOUT_SUBMIT = gql`
290
+    │       ^^^^^^^^^^^^^^^^^^^^
291
+   4 │   mutation e4CartCheckoutSubmit($input: CompleteCartInput) {
292
+   5 │     completeCart(input: $input) {
293
+  
294
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
295
+  
296
+  ℹ Unsafe fix: If this is intentional, prepend CART_CHECKOUT_SUBMIT with an underscore.
297
+  
298
+    1  1 │   import { gql } from "graphql-request";
299
+    2  2 │   
300
+    3    │ - const·CART_CHECKOUT_SUBMIT·=·gql`
301
+       3 │ + const·_CART_CHECKOUT_SUBMIT·=·gql`
302
+    4  4 │     mutation e4CartCheckoutSubmit($input: CompleteCartInput) {
303
+    5  5 │       completeCart(input: $input) {
304
+  
305
+ 
306
+ documents/Cart/read.ts:10:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
307
+
308
+  ⚠ This variable CART_READ_XS is unused.
309
+  
310
+    8 │ } from "./fragments";
311
+    9 │ 
312
+  > 10 │ const CART_READ_XS = gql`
313
+     │       ^^^^^^^^^^^^
314
+   11 │   ${CART_FRAGMENT_XS}
315
+   12 │   query e4CartReadXS {
316
+  
317
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
318
+  
319
+  ℹ Unsafe fix: If this is intentional, prepend CART_READ_XS with an underscore.
320
+  
321
+    8  8 │   } from "./fragments";
322
+    9  9 │   
323
+   10    │ - const·CART_READ_XS·=·gql`
324
+      10 │ + const·_CART_READ_XS·=·gql`
325
+   11 11 │     ${CART_FRAGMENT_XS}
326
+   12 12 │     query e4CartReadXS {
327
+  
328
+ 
329
+ documents/Cart/read.ts:19:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
330
+
331
+  ⚠ This variable CART_READ_SM is unused.
332
+  
333
+   17 │ `;
334
+   18 │ 
335
+  > 19 │ const CART_READ_SM = gql`
336
+     │       ^^^^^^^^^^^^
337
+   20 │   ${CART_FRAGMENT_SM}
338
+   21 │   query e4CartReadSM {
339
+  
340
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
341
+  
342
+  ℹ Unsafe fix: If this is intentional, prepend CART_READ_SM with an underscore.
343
+  
344
+   17 17 │   `;
345
+   18 18 │   
346
+   19    │ - const·CART_READ_SM·=·gql`
347
+      19 │ + const·_CART_READ_SM·=·gql`
348
+   20 20 │     ${CART_FRAGMENT_SM}
349
+   21 21 │     query e4CartReadSM {
350
+  
351
+ 
352
+ documents/Cart/read.ts:28:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
353
+
354
+  ⚠ This variable CART_READ_MD is unused.
355
+  
356
+   26 │ `;
357
+   27 │ 
358
+  > 28 │ const CART_READ_MD = gql`
359
+     │       ^^^^^^^^^^^^
360
+   29 │   ${CART_FRAGMENT_MD}
361
+   30 │   query e4CartReadMD {
362
+  
363
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
364
+  
365
+  ℹ Unsafe fix: If this is intentional, prepend CART_READ_MD with an underscore.
366
+  
367
+   26 26 │   `;
368
+   27 27 │   
369
+   28    │ - const·CART_READ_MD·=·gql`
370
+      28 │ + const·_CART_READ_MD·=·gql`
371
+   29 29 │     ${CART_FRAGMENT_MD}
372
+   30 30 │     query e4CartReadMD {
373
+  
374
+ 
375
+ documents/Cart/read.ts:37:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
376
+
377
+  ⚠ This variable CART_READ_LG is unused.
378
+  
379
+   35 │ `;
380
+   36 │ 
381
+  > 37 │ const CART_READ_LG = gql`
382
+     │       ^^^^^^^^^^^^
383
+   38 │   ${CART_FRAGMENT_LG}
384
+   39 │   query e4CartReadLG {
385
+  
386
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
387
+  
388
+  ℹ Unsafe fix: If this is intentional, prepend CART_READ_LG with an underscore.
389
+  
390
+   35 35 │   `;
391
+   36 36 │   
392
+   37    │ - const·CART_READ_LG·=·gql`
393
+      37 │ + const·_CART_READ_LG·=·gql`
394
+   38 38 │     ${CART_FRAGMENT_LG}
395
+   39 39 │     query e4CartReadLG {
396
+  
397
+ 
398
+ documents/Cart/setOrderEmail.ts:3:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
399
+
400
+  ⚠ This variable ORDER_EMAIL_SET is unused.
401
+  
402
+   1 │ import { gql } from "graphql-request";
403
+   2 │ 
404
+  > 3 │ const ORDER_EMAIL_SET = gql`
405
+    │       ^^^^^^^^^^^^^^^
406
+   4 │   mutation e4OrderEmailSet($email: String!) {
407
+   5 │     setOrderEmail(email: $email) {
408
+  
409
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
410
+  
411
+  ℹ Unsafe fix: If this is intentional, prepend ORDER_EMAIL_SET with an underscore.
412
+  
413
+    1  1 │   import { gql } from "graphql-request";
414
+    2  2 │   
415
+    3    │ - const·ORDER_EMAIL_SET·=·gql`
416
+       3 │ + const·_ORDER_EMAIL_SET·=·gql`
417
+    4  4 │     mutation e4OrderEmailSet($email: String!) {
418
+    5  5 │       setOrderEmail(email: $email) {
419
+  
420
+ 
421
+ documents/Cart/submit.ts:3:7 ]8;;https://biomejs.dev/linter/rules/no-unused-variables\lint/correctness/noUnusedVariables]8;;\  FIXABLE  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
422
+
423
+  ⚠ This variable CART_SUBMIT is unused.
424
+  
425
+   1 │ import { gql } from "graphql-request";
426
+   2 │ 
427
+  > 3 │ const CART_SUBMIT = gql`
428
+    │       ^^^^^^^^^^^
429
+   4 │   mutation CompleteCart($input: CompleteCartInput) {
430
+   5 │     completeCart(input: $input) {
431
+  
432
+  ℹ Unused variables are often the result of typos, incomplete refactors, or other sources of bugs.
433
+  
434
+  ℹ Unsafe fix: If this is intentional, prepend CART_SUBMIT with an underscore.
435
+  
436
+    1  1 │   import { gql } from "graphql-request";
437
+    2  2 │   
438
+    3    │ - const·CART_SUBMIT·=·gql`
439
+       3 │ + const·_CART_SUBMIT·=·gql`
440
+    4  4 │     mutation CompleteCart($input: CompleteCartInput) {
441
+    5  5 │       completeCart(input: $input) {
442
+  
443
+ 
444
+ documents/messages/messages.ts:4:7 ]8;;https://biomejs.dev/linter/rules/no-explicit-any\lint/suspicious/noExplicitAny]8;;\ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
445
+
446
+  ⚠ Unexpected any. Specify a different type.
447
+  
448
+   2 │  id: number;
449
+   3 │  name: string;
450
+  > 4 │  img: any[];
451
+    │       ^^^
452
+   5 │  quantity: number;
453
+   6 │  attributes: AttentionMessageVariant[];
454
+  
455
+  ℹ any disables many type checking rules. Its use should be avoided.
456
+  
457
+ 
458
+ Skipped 198 suggested fixes.
459
+ If you wish to apply the suggested (unsafe) fixes, use the command biome check --write --unsafe
460
+ 
461
+ The number of diagnostics exceeds the limit allowed. Use --max-diagnostics to increase it.
462
+ Diagnostics not shown: 227.
463
+ Checked 137 files in 248ms. No fixes applied.
464
+ Found 247 warnings.
package/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # @evenicanpm/storefront-graphql-codegen
2
+
3
+ ## 2.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: republish with resolved workspace dependencies
8
+
9
+ ## 2.4.0
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@evenicanpm/storefront-graphql-codegen",
3
- "version": "2.0.0",
3
+ "version": "2.4.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "",
7
7
  "license": "ISC",
8
- "gitHead": "7552c1e700a0027b8a65506c77cb10dae092fdfb",
8
+ "gitHead": "2a4307173bbfb888c935e45b3aca3c6227861368",
9
9
  "scripts": {
10
10
  "test": "echo \"Error: no test specified\" && exit 1",
11
11
  "codegen:insecure": "NODE_TLS_REJECT_UNAUTHORIZED=0 npm run codegen",