@dokamerce/web-sdk 0.13.9 → 0.15.9
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.
- package/dist/graphql/__generated__/gateway.d.ts +1579 -0
- package/dist/graphql/__generated__/gateway.js +1085 -5
- package/dist/graphql/__generated__/gateway.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web-sdk/src/index.d.ts +1 -0
- package/dist/web-sdk/src/index.js +16 -0
- package/dist/web-sdk/src/index.js.map +1 -1
- package/dist/web-sdk/src/services/custom-fields.d.ts +9 -0
- package/dist/web-sdk/src/services/custom-fields.js +30 -0
- package/dist/web-sdk/src/services/custom-fields.js.map +1 -0
- package/dist/web-sdk/src/services/customers.d.ts +2 -1
- package/dist/web-sdk/src/services/customers.js +6 -1
- package/dist/web-sdk/src/services/customers.js.map +1 -1
- package/dist/web-sdk/src/services/index.d.ts +1 -0
- package/dist/web-sdk/src/services/index.js +1 -0
- package/dist/web-sdk/src/services/index.js.map +1 -1
- package/dist/web-sdk/src/services/sellers.d.ts +2 -1
- package/dist/web-sdk/src/services/sellers.js +6 -1
- package/dist/web-sdk/src/services/sellers.js.map +1 -1
- package/dist/web-sdk/src/typings/sdk.typing.d.ts +2 -1
- package/package.json +1 -1
|
@@ -40,10 +40,18 @@ export type Scalars = {
|
|
|
40
40
|
input: number;
|
|
41
41
|
output: number;
|
|
42
42
|
};
|
|
43
|
+
CoordinatesScalar: {
|
|
44
|
+
input: any;
|
|
45
|
+
output: any;
|
|
46
|
+
};
|
|
43
47
|
DateTime: {
|
|
44
48
|
input: any;
|
|
45
49
|
output: any;
|
|
46
50
|
};
|
|
51
|
+
LocalizedString: {
|
|
52
|
+
input: any;
|
|
53
|
+
output: any;
|
|
54
|
+
};
|
|
47
55
|
};
|
|
48
56
|
export type Attribute = {
|
|
49
57
|
__typename?: 'Attribute';
|
|
@@ -165,8 +173,300 @@ export type CompleteFileUploadInput = {
|
|
|
165
173
|
parts?: InputMaybe<Array<FileUploadPartInput>>;
|
|
166
174
|
status: StatusEnum;
|
|
167
175
|
};
|
|
176
|
+
export type Country = {
|
|
177
|
+
__typename?: 'Country';
|
|
178
|
+
code: CountryCodeEnum;
|
|
179
|
+
names: Scalars['LocalizedString']['output'];
|
|
180
|
+
};
|
|
181
|
+
export declare enum CountryCodeEnum {
|
|
182
|
+
Ad = "AD",
|
|
183
|
+
Ae = "AE",
|
|
184
|
+
Af = "AF",
|
|
185
|
+
Ag = "AG",
|
|
186
|
+
Ai = "AI",
|
|
187
|
+
Al = "AL",
|
|
188
|
+
Am = "AM",
|
|
189
|
+
Ao = "AO",
|
|
190
|
+
Aq = "AQ",
|
|
191
|
+
Ar = "AR",
|
|
192
|
+
As = "AS",
|
|
193
|
+
At = "AT",
|
|
194
|
+
Au = "AU",
|
|
195
|
+
Aw = "AW",
|
|
196
|
+
Ax = "AX",
|
|
197
|
+
Az = "AZ",
|
|
198
|
+
Ba = "BA",
|
|
199
|
+
Bb = "BB",
|
|
200
|
+
Bd = "BD",
|
|
201
|
+
Be = "BE",
|
|
202
|
+
Bf = "BF",
|
|
203
|
+
Bg = "BG",
|
|
204
|
+
Bh = "BH",
|
|
205
|
+
Bi = "BI",
|
|
206
|
+
Bj = "BJ",
|
|
207
|
+
Bl = "BL",
|
|
208
|
+
Bm = "BM",
|
|
209
|
+
Bn = "BN",
|
|
210
|
+
Bo = "BO",
|
|
211
|
+
Bq = "BQ",
|
|
212
|
+
Br = "BR",
|
|
213
|
+
Bs = "BS",
|
|
214
|
+
Bt = "BT",
|
|
215
|
+
Bv = "BV",
|
|
216
|
+
Bw = "BW",
|
|
217
|
+
By = "BY",
|
|
218
|
+
Bz = "BZ",
|
|
219
|
+
Ca = "CA",
|
|
220
|
+
Cc = "CC",
|
|
221
|
+
Cd = "CD",
|
|
222
|
+
Cf = "CF",
|
|
223
|
+
Cg = "CG",
|
|
224
|
+
Ch = "CH",
|
|
225
|
+
Ci = "CI",
|
|
226
|
+
Ck = "CK",
|
|
227
|
+
Cl = "CL",
|
|
228
|
+
Cm = "CM",
|
|
229
|
+
Cn = "CN",
|
|
230
|
+
Co = "CO",
|
|
231
|
+
Cr = "CR",
|
|
232
|
+
Cu = "CU",
|
|
233
|
+
Cv = "CV",
|
|
234
|
+
Cw = "CW",
|
|
235
|
+
Cx = "CX",
|
|
236
|
+
Cy = "CY",
|
|
237
|
+
Cz = "CZ",
|
|
238
|
+
De = "DE",
|
|
239
|
+
Dj = "DJ",
|
|
240
|
+
Dk = "DK",
|
|
241
|
+
Dm = "DM",
|
|
242
|
+
Do = "DO",
|
|
243
|
+
Dz = "DZ",
|
|
244
|
+
Ec = "EC",
|
|
245
|
+
Ee = "EE",
|
|
246
|
+
Eg = "EG",
|
|
247
|
+
Eh = "EH",
|
|
248
|
+
Er = "ER",
|
|
249
|
+
Es = "ES",
|
|
250
|
+
Et = "ET",
|
|
251
|
+
Fi = "FI",
|
|
252
|
+
Fj = "FJ",
|
|
253
|
+
Fk = "FK",
|
|
254
|
+
Fm = "FM",
|
|
255
|
+
Fo = "FO",
|
|
256
|
+
Fr = "FR",
|
|
257
|
+
Ga = "GA",
|
|
258
|
+
Gb = "GB",
|
|
259
|
+
Gd = "GD",
|
|
260
|
+
Ge = "GE",
|
|
261
|
+
Gf = "GF",
|
|
262
|
+
Gg = "GG",
|
|
263
|
+
Gh = "GH",
|
|
264
|
+
Gi = "GI",
|
|
265
|
+
Gl = "GL",
|
|
266
|
+
Gm = "GM",
|
|
267
|
+
Gn = "GN",
|
|
268
|
+
Gp = "GP",
|
|
269
|
+
Gq = "GQ",
|
|
270
|
+
Gr = "GR",
|
|
271
|
+
Gs = "GS",
|
|
272
|
+
Gt = "GT",
|
|
273
|
+
Gu = "GU",
|
|
274
|
+
Gw = "GW",
|
|
275
|
+
Gy = "GY",
|
|
276
|
+
Hk = "HK",
|
|
277
|
+
Hm = "HM",
|
|
278
|
+
Hn = "HN",
|
|
279
|
+
Hr = "HR",
|
|
280
|
+
Ht = "HT",
|
|
281
|
+
Hu = "HU",
|
|
282
|
+
Id = "ID",
|
|
283
|
+
Ie = "IE",
|
|
284
|
+
Il = "IL",
|
|
285
|
+
Im = "IM",
|
|
286
|
+
In = "IN",
|
|
287
|
+
Io = "IO",
|
|
288
|
+
Iq = "IQ",
|
|
289
|
+
Ir = "IR",
|
|
290
|
+
Is = "IS",
|
|
291
|
+
It = "IT",
|
|
292
|
+
Je = "JE",
|
|
293
|
+
Jm = "JM",
|
|
294
|
+
Jo = "JO",
|
|
295
|
+
Jp = "JP",
|
|
296
|
+
Ke = "KE",
|
|
297
|
+
Kg = "KG",
|
|
298
|
+
Kh = "KH",
|
|
299
|
+
Ki = "KI",
|
|
300
|
+
Km = "KM",
|
|
301
|
+
Kn = "KN",
|
|
302
|
+
Kp = "KP",
|
|
303
|
+
Kr = "KR",
|
|
304
|
+
Kw = "KW",
|
|
305
|
+
Ky = "KY",
|
|
306
|
+
Kz = "KZ",
|
|
307
|
+
La = "LA",
|
|
308
|
+
Lb = "LB",
|
|
309
|
+
Lc = "LC",
|
|
310
|
+
Li = "LI",
|
|
311
|
+
Lk = "LK",
|
|
312
|
+
Lr = "LR",
|
|
313
|
+
Ls = "LS",
|
|
314
|
+
Lt = "LT",
|
|
315
|
+
Lu = "LU",
|
|
316
|
+
Lv = "LV",
|
|
317
|
+
Ly = "LY",
|
|
318
|
+
Ma = "MA",
|
|
319
|
+
Mc = "MC",
|
|
320
|
+
Md = "MD",
|
|
321
|
+
Me = "ME",
|
|
322
|
+
Mf = "MF",
|
|
323
|
+
Mg = "MG",
|
|
324
|
+
Mh = "MH",
|
|
325
|
+
Mk = "MK",
|
|
326
|
+
Ml = "ML",
|
|
327
|
+
Mm = "MM",
|
|
328
|
+
Mn = "MN",
|
|
329
|
+
Mo = "MO",
|
|
330
|
+
Mp = "MP",
|
|
331
|
+
Mq = "MQ",
|
|
332
|
+
Mr = "MR",
|
|
333
|
+
Ms = "MS",
|
|
334
|
+
Mt = "MT",
|
|
335
|
+
Mu = "MU",
|
|
336
|
+
Mv = "MV",
|
|
337
|
+
Mw = "MW",
|
|
338
|
+
Mx = "MX",
|
|
339
|
+
My = "MY",
|
|
340
|
+
Mz = "MZ",
|
|
341
|
+
Na = "NA",
|
|
342
|
+
Nc = "NC",
|
|
343
|
+
Ne = "NE",
|
|
344
|
+
Nf = "NF",
|
|
345
|
+
Ng = "NG",
|
|
346
|
+
Ni = "NI",
|
|
347
|
+
Nl = "NL",
|
|
348
|
+
No = "NO",
|
|
349
|
+
Np = "NP",
|
|
350
|
+
Nr = "NR",
|
|
351
|
+
Nu = "NU",
|
|
352
|
+
Nz = "NZ",
|
|
353
|
+
Om = "OM",
|
|
354
|
+
Pa = "PA",
|
|
355
|
+
Pe = "PE",
|
|
356
|
+
Pf = "PF",
|
|
357
|
+
Pg = "PG",
|
|
358
|
+
Ph = "PH",
|
|
359
|
+
Pk = "PK",
|
|
360
|
+
Pl = "PL",
|
|
361
|
+
Pm = "PM",
|
|
362
|
+
Pn = "PN",
|
|
363
|
+
Pr = "PR",
|
|
364
|
+
Ps = "PS",
|
|
365
|
+
Pt = "PT",
|
|
366
|
+
Pw = "PW",
|
|
367
|
+
Py = "PY",
|
|
368
|
+
Qa = "QA",
|
|
369
|
+
Re = "RE",
|
|
370
|
+
Ro = "RO",
|
|
371
|
+
Rs = "RS",
|
|
372
|
+
Ru = "RU",
|
|
373
|
+
Rw = "RW",
|
|
374
|
+
Sa = "SA",
|
|
375
|
+
Sb = "SB",
|
|
376
|
+
Sc = "SC",
|
|
377
|
+
Sd = "SD",
|
|
378
|
+
Se = "SE",
|
|
379
|
+
Sg = "SG",
|
|
380
|
+
Sh = "SH",
|
|
381
|
+
Si = "SI",
|
|
382
|
+
Sj = "SJ",
|
|
383
|
+
Sk = "SK",
|
|
384
|
+
Sl = "SL",
|
|
385
|
+
Sm = "SM",
|
|
386
|
+
Sn = "SN",
|
|
387
|
+
So = "SO",
|
|
388
|
+
Sr = "SR",
|
|
389
|
+
Ss = "SS",
|
|
390
|
+
St = "ST",
|
|
391
|
+
Sv = "SV",
|
|
392
|
+
Sx = "SX",
|
|
393
|
+
Sy = "SY",
|
|
394
|
+
Sz = "SZ",
|
|
395
|
+
Tc = "TC",
|
|
396
|
+
Td = "TD",
|
|
397
|
+
Tf = "TF",
|
|
398
|
+
Tg = "TG",
|
|
399
|
+
Th = "TH",
|
|
400
|
+
Tj = "TJ",
|
|
401
|
+
Tk = "TK",
|
|
402
|
+
Tl = "TL",
|
|
403
|
+
Tm = "TM",
|
|
404
|
+
Tn = "TN",
|
|
405
|
+
To = "TO",
|
|
406
|
+
Tr = "TR",
|
|
407
|
+
Tt = "TT",
|
|
408
|
+
Tv = "TV",
|
|
409
|
+
Tw = "TW",
|
|
410
|
+
Tz = "TZ",
|
|
411
|
+
Ua = "UA",
|
|
412
|
+
Ug = "UG",
|
|
413
|
+
Uk = "UK",
|
|
414
|
+
Um = "UM",
|
|
415
|
+
Us = "US",
|
|
416
|
+
Uy = "UY",
|
|
417
|
+
Uz = "UZ",
|
|
418
|
+
Va = "VA",
|
|
419
|
+
Vc = "VC",
|
|
420
|
+
Ve = "VE",
|
|
421
|
+
Vg = "VG",
|
|
422
|
+
Vi = "VI",
|
|
423
|
+
Vn = "VN",
|
|
424
|
+
Vu = "VU",
|
|
425
|
+
Wf = "WF",
|
|
426
|
+
Ws = "WS",
|
|
427
|
+
Ye = "YE",
|
|
428
|
+
Yt = "YT",
|
|
429
|
+
Za = "ZA",
|
|
430
|
+
Zm = "ZM",
|
|
431
|
+
Zw = "ZW"
|
|
432
|
+
}
|
|
433
|
+
export type CountryCodeEnumFilter = {
|
|
434
|
+
equals?: InputMaybe<CountryCodeEnum>;
|
|
435
|
+
in?: InputMaybe<Array<CountryCodeEnum>>;
|
|
436
|
+
not?: InputMaybe<CountryCodeEnum>;
|
|
437
|
+
notIn?: InputMaybe<Array<CountryCodeEnum>>;
|
|
438
|
+
};
|
|
439
|
+
export type CountryCodeEnumListFilter = {
|
|
440
|
+
equals?: InputMaybe<Array<CountryCodeEnum>>;
|
|
441
|
+
has?: InputMaybe<CountryCodeEnum>;
|
|
442
|
+
hasEvery?: InputMaybe<Array<CountryCodeEnum>>;
|
|
443
|
+
hasSome?: InputMaybe<Array<CountryCodeEnum>>;
|
|
444
|
+
isEmpty?: InputMaybe<Scalars['Boolean']['input']>;
|
|
445
|
+
};
|
|
446
|
+
export type CreateCustomerAddressInput = {
|
|
447
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
448
|
+
address2?: InputMaybe<Scalars['String']['input']>;
|
|
449
|
+
city?: InputMaybe<Scalars['String']['input']>;
|
|
450
|
+
countryCode?: InputMaybe<CountryCodeEnum>;
|
|
451
|
+
default?: Scalars['Boolean']['input'];
|
|
452
|
+
geometry?: InputMaybe<GeometryInput>;
|
|
453
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
454
|
+
postalCode?: InputMaybe<Scalars['String']['input']>;
|
|
455
|
+
regionCode?: InputMaybe<RegionCodeEnum>;
|
|
456
|
+
regionName?: InputMaybe<Scalars['String']['input']>;
|
|
457
|
+
};
|
|
168
458
|
export type CreateCustomerInput = {
|
|
459
|
+
addresses?: InputMaybe<Array<CreateCustomerAddressInput>>;
|
|
460
|
+
customFields?: InputMaybe<Scalars['ID']['input']>;
|
|
169
461
|
fullName: Scalars['String']['input'];
|
|
462
|
+
imageId?: InputMaybe<Scalars['ID']['input']>;
|
|
463
|
+
tags?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
464
|
+
telephoneNumbers?: InputMaybe<Array<CreateCustomerTelephoneNumberInput>>;
|
|
465
|
+
username: Scalars['String']['input'];
|
|
466
|
+
};
|
|
467
|
+
export type CreateCustomerTelephoneNumberInput = {
|
|
468
|
+
targets?: InputMaybe<Array<TelephoneNumberTarget>>;
|
|
469
|
+
value: Scalars['String']['input'];
|
|
170
470
|
};
|
|
171
471
|
export type CreateOrderInput = {
|
|
172
472
|
total: Scalars['Float']['input'];
|
|
@@ -209,12 +509,102 @@ export type CreateSellerInput = {
|
|
|
209
509
|
slug: Scalars['String']['input'];
|
|
210
510
|
verified: Scalars['Boolean']['input'];
|
|
211
511
|
};
|
|
512
|
+
export type CustomField = {
|
|
513
|
+
__typename?: 'CustomField';
|
|
514
|
+
createdAt: Scalars['DateTime']['output'];
|
|
515
|
+
enabled: Scalars['Boolean']['output'];
|
|
516
|
+
exportName?: Maybe<Scalars['String']['output']>;
|
|
517
|
+
id: Scalars['ID']['output'];
|
|
518
|
+
name: Scalars['String']['output'];
|
|
519
|
+
required: Scalars['Boolean']['output'];
|
|
520
|
+
target: CustomFieldTarget;
|
|
521
|
+
type: CustomFieldType;
|
|
522
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
523
|
+
values: Array<Scalars['String']['output']>;
|
|
524
|
+
};
|
|
525
|
+
export declare enum CustomFieldFieldsEnum {
|
|
526
|
+
CreatedAt = "createdAt",
|
|
527
|
+
Enabled = "enabled",
|
|
528
|
+
ExportName = "exportName",
|
|
529
|
+
Id = "id",
|
|
530
|
+
Name = "name",
|
|
531
|
+
Required = "required",
|
|
532
|
+
Target = "target",
|
|
533
|
+
Type = "type",
|
|
534
|
+
UpdatedAt = "updatedAt",
|
|
535
|
+
Values = "values"
|
|
536
|
+
}
|
|
537
|
+
export type CustomFieldFilter = {
|
|
538
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
539
|
+
name?: InputMaybe<StringArrayFilter>;
|
|
540
|
+
};
|
|
541
|
+
export type CustomFieldSort = {
|
|
542
|
+
field: CustomFieldFieldsEnum;
|
|
543
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
544
|
+
};
|
|
545
|
+
export declare enum CustomFieldTarget {
|
|
546
|
+
Customer = "CUSTOMER",
|
|
547
|
+
Order = "ORDER",
|
|
548
|
+
Product = "PRODUCT"
|
|
549
|
+
}
|
|
550
|
+
export declare enum CustomFieldType {
|
|
551
|
+
Boolean = "BOOLEAN",
|
|
552
|
+
Date = "DATE",
|
|
553
|
+
Enum = "ENUM",
|
|
554
|
+
Longtext = "LONGTEXT",
|
|
555
|
+
Number = "NUMBER",
|
|
556
|
+
Shorttext = "SHORTTEXT"
|
|
557
|
+
}
|
|
212
558
|
export type Customer = {
|
|
213
559
|
__typename?: 'Customer';
|
|
560
|
+
active: Scalars['Boolean']['output'];
|
|
561
|
+
addresses?: Maybe<Array<CustomerAddress>>;
|
|
214
562
|
createdAt: Scalars['DateTime']['output'];
|
|
215
563
|
fullName: Scalars['String']['output'];
|
|
216
564
|
id: Scalars['ID']['output'];
|
|
565
|
+
image?: Maybe<File>;
|
|
566
|
+
tags?: Maybe<Array<Tag>>;
|
|
567
|
+
telephoneNumbers?: Maybe<Array<CustomerTelephoneNumber>>;
|
|
217
568
|
updatedAt: Scalars['DateTime']['output'];
|
|
569
|
+
username: Scalars['String']['output'];
|
|
570
|
+
};
|
|
571
|
+
export type CustomerAddress = {
|
|
572
|
+
__typename?: 'CustomerAddress';
|
|
573
|
+
address?: Maybe<Scalars['String']['output']>;
|
|
574
|
+
address2?: Maybe<Scalars['String']['output']>;
|
|
575
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
576
|
+
countryCode?: Maybe<CountryCodeEnum>;
|
|
577
|
+
createdAt: Scalars['DateTime']['output'];
|
|
578
|
+
default: Scalars['Boolean']['output'];
|
|
579
|
+
geometry?: Maybe<Geometry>;
|
|
580
|
+
id: Scalars['ID']['output'];
|
|
581
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
582
|
+
postalCode?: Maybe<Scalars['String']['output']>;
|
|
583
|
+
regionCode?: Maybe<RegionCodeEnum>;
|
|
584
|
+
regionName?: Maybe<Scalars['String']['output']>;
|
|
585
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
586
|
+
};
|
|
587
|
+
export declare enum CustomerAddressFieldsEnum {
|
|
588
|
+
Address = "address",
|
|
589
|
+
Address2 = "address2",
|
|
590
|
+
City = "city",
|
|
591
|
+
CountryCode = "countryCode",
|
|
592
|
+
Default = "default",
|
|
593
|
+
Geometry = "geometry",
|
|
594
|
+
Id = "id",
|
|
595
|
+
Name = "name",
|
|
596
|
+
PostalCode = "postalCode",
|
|
597
|
+
RegionCode = "regionCode",
|
|
598
|
+
RegionName = "regionName"
|
|
599
|
+
}
|
|
600
|
+
export type CustomerAddressFilter = {
|
|
601
|
+
address?: InputMaybe<StringArrayFilter>;
|
|
602
|
+
address2?: InputMaybe<StringArrayFilter>;
|
|
603
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
604
|
+
};
|
|
605
|
+
export type CustomerAddressSort = {
|
|
606
|
+
field: CustomerAddressFieldsEnum;
|
|
607
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
218
608
|
};
|
|
219
609
|
export declare enum CustomerFieldsEnum {
|
|
220
610
|
CreatedAt = "createdAt",
|
|
@@ -223,13 +613,47 @@ export declare enum CustomerFieldsEnum {
|
|
|
223
613
|
UpdatedAt = "updatedAt"
|
|
224
614
|
}
|
|
225
615
|
export type CustomerFilter = {
|
|
616
|
+
active?: InputMaybe<StringArrayFilter>;
|
|
226
617
|
id?: InputMaybe<IdArrayFilter>;
|
|
227
618
|
name?: InputMaybe<StringArrayFilter>;
|
|
619
|
+
username?: InputMaybe<StringArrayFilter>;
|
|
228
620
|
};
|
|
229
621
|
export type CustomerSort = {
|
|
230
622
|
field: CustomerFieldsEnum;
|
|
231
623
|
order?: InputMaybe<SortOrderEnum>;
|
|
232
624
|
};
|
|
625
|
+
export type CustomerTelephoneNumber = {
|
|
626
|
+
__typename?: 'CustomerTelephoneNumber';
|
|
627
|
+
createdAt: Scalars['DateTime']['output'];
|
|
628
|
+
id: Scalars['ID']['output'];
|
|
629
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
630
|
+
targets?: Maybe<Array<TelephoneNumberTarget>>;
|
|
631
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
632
|
+
};
|
|
633
|
+
export declare enum CustomerTelephoneNumberFieldsEnum {
|
|
634
|
+
CreatedAt = "createdAt",
|
|
635
|
+
Id = "id",
|
|
636
|
+
Number = "number",
|
|
637
|
+
Targets = "targets",
|
|
638
|
+
UpdatedAt = "updatedAt"
|
|
639
|
+
}
|
|
640
|
+
export type CustomerTelephoneNumberFilter = {
|
|
641
|
+
createdAt?: InputMaybe<DateTimeArrayFilter>;
|
|
642
|
+
customType?: InputMaybe<StringArrayFilter>;
|
|
643
|
+
id?: InputMaybe<IdArrayFilter>;
|
|
644
|
+
targets?: InputMaybe<TelephoneNumbersTypeEnumArrayFilter>;
|
|
645
|
+
updatedAt?: InputMaybe<DateTimeArrayFilter>;
|
|
646
|
+
value?: InputMaybe<StringArrayFilter>;
|
|
647
|
+
};
|
|
648
|
+
export type CustomerTelephoneNumberSort = {
|
|
649
|
+
field: CustomerTelephoneNumberFieldsEnum;
|
|
650
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
651
|
+
};
|
|
652
|
+
export type DateTimeArrayFilter = {
|
|
653
|
+
every?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
654
|
+
none?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
655
|
+
some?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
656
|
+
};
|
|
233
657
|
export type DateTimeFilter = {
|
|
234
658
|
equals?: InputMaybe<Scalars['DateTime']['input']>;
|
|
235
659
|
greaterThan?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -278,6 +702,15 @@ export type FileUploadUrl = {
|
|
|
278
702
|
order: Scalars['Int']['output'];
|
|
279
703
|
url: Scalars['String']['output'];
|
|
280
704
|
};
|
|
705
|
+
export type Geometry = {
|
|
706
|
+
__typename?: 'Geometry';
|
|
707
|
+
coordinates: Scalars['CoordinatesScalar']['output'];
|
|
708
|
+
type: Scalars['String']['output'];
|
|
709
|
+
};
|
|
710
|
+
export type GeometryInput = {
|
|
711
|
+
coordinates: Scalars['CoordinatesScalar']['input'];
|
|
712
|
+
type: Scalars['String']['input'];
|
|
713
|
+
};
|
|
281
714
|
export type IdArrayFilter = {
|
|
282
715
|
every?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
283
716
|
none?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -323,11 +756,41 @@ export type InfiniteColorsConnection = {
|
|
|
323
756
|
edges: Array<InfiniteColorEdge>;
|
|
324
757
|
pageInfo: InfinitePageInfo;
|
|
325
758
|
};
|
|
759
|
+
export type InfiniteCustomFieldEdge = {
|
|
760
|
+
__typename?: 'InfiniteCustomFieldEdge';
|
|
761
|
+
cursor: Scalars['String']['output'];
|
|
762
|
+
node: CustomField;
|
|
763
|
+
};
|
|
764
|
+
export type InfiniteCustomFieldsConnection = {
|
|
765
|
+
__typename?: 'InfiniteCustomFieldsConnection';
|
|
766
|
+
edges: Array<InfiniteCustomFieldEdge>;
|
|
767
|
+
pageInfo: InfinitePageInfo;
|
|
768
|
+
};
|
|
769
|
+
export type InfiniteCustomerAddressEdge = {
|
|
770
|
+
__typename?: 'InfiniteCustomerAddressEdge';
|
|
771
|
+
cursor: Scalars['String']['output'];
|
|
772
|
+
node: CustomerAddress;
|
|
773
|
+
};
|
|
774
|
+
export type InfiniteCustomerAddressesConnection = {
|
|
775
|
+
__typename?: 'InfiniteCustomerAddressesConnection';
|
|
776
|
+
edges: Array<InfiniteCustomerAddressEdge>;
|
|
777
|
+
pageInfo: InfinitePageInfo;
|
|
778
|
+
};
|
|
326
779
|
export type InfiniteCustomerEdge = {
|
|
327
780
|
__typename?: 'InfiniteCustomerEdge';
|
|
328
781
|
cursor: Scalars['String']['output'];
|
|
329
782
|
node: Customer;
|
|
330
783
|
};
|
|
784
|
+
export type InfiniteCustomerTelephoneNumberEdge = {
|
|
785
|
+
__typename?: 'InfiniteCustomerTelephoneNumberEdge';
|
|
786
|
+
cursor: Scalars['String']['output'];
|
|
787
|
+
node: CustomerTelephoneNumber;
|
|
788
|
+
};
|
|
789
|
+
export type InfiniteCustomerTelephoneNumbersConnection = {
|
|
790
|
+
__typename?: 'InfiniteCustomerTelephoneNumbersConnection';
|
|
791
|
+
edges: Array<InfiniteCustomerTelephoneNumberEdge>;
|
|
792
|
+
pageInfo: InfinitePageInfo;
|
|
793
|
+
};
|
|
331
794
|
export type InfiniteCustomersConnection = {
|
|
332
795
|
__typename?: 'InfiniteCustomersConnection';
|
|
333
796
|
edges: Array<InfiniteCustomerEdge>;
|
|
@@ -442,13 +905,19 @@ export type Mutation = {
|
|
|
442
905
|
__typename?: 'Mutation';
|
|
443
906
|
completeFileUpload: File;
|
|
444
907
|
createCustomer: Customer;
|
|
908
|
+
createCustomerAddress: CustomerAddress;
|
|
909
|
+
createCustomerTelephoneNumber: CustomerTelephoneNumber;
|
|
445
910
|
createOrder: Order;
|
|
446
911
|
createProduct: Product;
|
|
447
912
|
createSeller: Seller;
|
|
913
|
+
deleteCustomerAddress: Status;
|
|
914
|
+
deleteCustomerTelephoneNumber: Status;
|
|
448
915
|
deleteProduct: Status;
|
|
449
916
|
deleteSeller: Status;
|
|
450
917
|
initiateFileUpload: FileUpload;
|
|
451
918
|
updateCustomer: Customer;
|
|
919
|
+
updateCustomerAddress: CustomerAddress;
|
|
920
|
+
updateCustomerTelephoneNumber: CustomerTelephoneNumber;
|
|
452
921
|
updateOrder: Order;
|
|
453
922
|
updateProduct: Product;
|
|
454
923
|
updateSeller: Seller;
|
|
@@ -460,6 +929,12 @@ export type MutationCompleteFileUploadArgs = {
|
|
|
460
929
|
export type MutationCreateCustomerArgs = {
|
|
461
930
|
data: CreateCustomerInput;
|
|
462
931
|
};
|
|
932
|
+
export type MutationCreateCustomerAddressArgs = {
|
|
933
|
+
data: CreateCustomerAddressInput;
|
|
934
|
+
};
|
|
935
|
+
export type MutationCreateCustomerTelephoneNumberArgs = {
|
|
936
|
+
data: CreateCustomerTelephoneNumberInput;
|
|
937
|
+
};
|
|
463
938
|
export type MutationCreateOrderArgs = {
|
|
464
939
|
data: CreateOrderInput;
|
|
465
940
|
};
|
|
@@ -469,6 +944,12 @@ export type MutationCreateProductArgs = {
|
|
|
469
944
|
export type MutationCreateSellerArgs = {
|
|
470
945
|
data: CreateSellerInput;
|
|
471
946
|
};
|
|
947
|
+
export type MutationDeleteCustomerAddressArgs = {
|
|
948
|
+
id: Scalars['ID']['input'];
|
|
949
|
+
};
|
|
950
|
+
export type MutationDeleteCustomerTelephoneNumberArgs = {
|
|
951
|
+
id: Scalars['ID']['input'];
|
|
952
|
+
};
|
|
472
953
|
export type MutationDeleteProductArgs = {
|
|
473
954
|
id: Scalars['ID']['input'];
|
|
474
955
|
};
|
|
@@ -482,6 +963,14 @@ export type MutationUpdateCustomerArgs = {
|
|
|
482
963
|
data: UpdateCustomerInput;
|
|
483
964
|
id: Scalars['ID']['input'];
|
|
484
965
|
};
|
|
966
|
+
export type MutationUpdateCustomerAddressArgs = {
|
|
967
|
+
data: UpdateCustomerAddressInput;
|
|
968
|
+
id: Scalars['ID']['input'];
|
|
969
|
+
};
|
|
970
|
+
export type MutationUpdateCustomerTelephoneNumberArgs = {
|
|
971
|
+
data: UpdateCustomerTelephoneNumberInput;
|
|
972
|
+
id: Scalars['ID']['input'];
|
|
973
|
+
};
|
|
485
974
|
export type MutationUpdateOrderArgs = {
|
|
486
975
|
data: UpdateOrderInput;
|
|
487
976
|
id: Scalars['ID']['input'];
|
|
@@ -566,11 +1055,41 @@ export type PaginatedColorsConnection = {
|
|
|
566
1055
|
edges: Array<PaginatedColorEdge>;
|
|
567
1056
|
pageInfo: PaginatedPageInfo;
|
|
568
1057
|
};
|
|
1058
|
+
export type PaginatedCustomFieldEdge = {
|
|
1059
|
+
__typename?: 'PaginatedCustomFieldEdge';
|
|
1060
|
+
cursor: Scalars['String']['output'];
|
|
1061
|
+
node: CustomField;
|
|
1062
|
+
};
|
|
1063
|
+
export type PaginatedCustomFieldsConnection = {
|
|
1064
|
+
__typename?: 'PaginatedCustomFieldsConnection';
|
|
1065
|
+
edges: Array<PaginatedCustomFieldEdge>;
|
|
1066
|
+
pageInfo: PaginatedPageInfo;
|
|
1067
|
+
};
|
|
1068
|
+
export type PaginatedCustomerAddressEdge = {
|
|
1069
|
+
__typename?: 'PaginatedCustomerAddressEdge';
|
|
1070
|
+
cursor: Scalars['String']['output'];
|
|
1071
|
+
node: CustomerAddress;
|
|
1072
|
+
};
|
|
1073
|
+
export type PaginatedCustomerAddressesConnection = {
|
|
1074
|
+
__typename?: 'PaginatedCustomerAddressesConnection';
|
|
1075
|
+
edges: Array<PaginatedCustomerAddressEdge>;
|
|
1076
|
+
pageInfo: PaginatedPageInfo;
|
|
1077
|
+
};
|
|
569
1078
|
export type PaginatedCustomerEdge = {
|
|
570
1079
|
__typename?: 'PaginatedCustomerEdge';
|
|
571
1080
|
cursor: Scalars['String']['output'];
|
|
572
1081
|
node: Customer;
|
|
573
1082
|
};
|
|
1083
|
+
export type PaginatedCustomerTelephoneNumberEdge = {
|
|
1084
|
+
__typename?: 'PaginatedCustomerTelephoneNumberEdge';
|
|
1085
|
+
cursor: Scalars['String']['output'];
|
|
1086
|
+
node: CustomerTelephoneNumber;
|
|
1087
|
+
};
|
|
1088
|
+
export type PaginatedCustomerTelephoneNumbersConnection = {
|
|
1089
|
+
__typename?: 'PaginatedCustomerTelephoneNumbersConnection';
|
|
1090
|
+
edges: Array<PaginatedCustomerTelephoneNumberEdge>;
|
|
1091
|
+
pageInfo: PaginatedPageInfo;
|
|
1092
|
+
};
|
|
574
1093
|
export type PaginatedCustomersConnection = {
|
|
575
1094
|
__typename?: 'PaginatedCustomersConnection';
|
|
576
1095
|
edges: Array<PaginatedCustomerEdge>;
|
|
@@ -826,14 +1345,23 @@ export type ProductVariantStock = {
|
|
|
826
1345
|
};
|
|
827
1346
|
export type Query = {
|
|
828
1347
|
__typename?: 'Query';
|
|
1348
|
+
allCountries: Array<Country>;
|
|
1349
|
+
allRegions: Array<Region>;
|
|
1350
|
+
allTimeZones: Array<TimeZone>;
|
|
829
1351
|
attribute?: Maybe<Array<Attribute>>;
|
|
830
1352
|
brand?: Maybe<Array<Brand>>;
|
|
1353
|
+
customField?: Maybe<Array<CustomField>>;
|
|
831
1354
|
customer?: Maybe<Array<Customer>>;
|
|
1355
|
+
customerCustomerAddress?: Maybe<CustomerAddress>;
|
|
1356
|
+
customerTelephoneNumber?: Maybe<CustomerTelephoneNumber>;
|
|
832
1357
|
file: File;
|
|
833
1358
|
infiniteAttributes: InfiniteAttributesConnection;
|
|
834
1359
|
infiniteBrands: InfiniteBrandsConnection;
|
|
835
1360
|
infiniteCategories: InfiniteCategoriesConnection;
|
|
836
1361
|
infiniteColors: InfiniteColorsConnection;
|
|
1362
|
+
infiniteCustomFields: InfiniteCustomFieldsConnection;
|
|
1363
|
+
infiniteCustomerAddress: InfiniteCustomerAddressesConnection;
|
|
1364
|
+
infiniteCustomerTelephoneNumbers: InfiniteCustomerTelephoneNumbersConnection;
|
|
837
1365
|
infiniteCustomers: InfiniteCustomersConnection;
|
|
838
1366
|
infiniteMetrics: InfiniteMetricsConnection;
|
|
839
1367
|
infiniteOrders: InfiniteOrdersConnection;
|
|
@@ -847,6 +1375,9 @@ export type Query = {
|
|
|
847
1375
|
paginatedBrands?: Maybe<PaginatedBrandsConnection>;
|
|
848
1376
|
paginatedCategories?: Maybe<PaginatedCategoriesConnection>;
|
|
849
1377
|
paginatedColors?: Maybe<PaginatedColorsConnection>;
|
|
1378
|
+
paginatedCustomFields?: Maybe<PaginatedCustomFieldsConnection>;
|
|
1379
|
+
paginatedCustomerAddress: PaginatedCustomerAddressesConnection;
|
|
1380
|
+
paginatedCustomerTelephoneNumbers: PaginatedCustomerTelephoneNumbersConnection;
|
|
850
1381
|
paginatedCustomers?: Maybe<PaginatedCustomersConnection>;
|
|
851
1382
|
paginatedMetrics?: Maybe<PaginatedMetricsConnection>;
|
|
852
1383
|
paginatedOrders?: Maybe<PaginatedOrdersConnection>;
|
|
@@ -859,15 +1390,32 @@ export type Query = {
|
|
|
859
1390
|
size?: Maybe<Array<SizeGroup>>;
|
|
860
1391
|
tag?: Maybe<Array<Tag>>;
|
|
861
1392
|
};
|
|
1393
|
+
export type QueryAllRegionsArgs = {
|
|
1394
|
+
filter?: InputMaybe<RegionFilter>;
|
|
1395
|
+
sort?: InputMaybe<Array<RegionSort>>;
|
|
1396
|
+
};
|
|
1397
|
+
export type QueryAllTimeZonesArgs = {
|
|
1398
|
+
filter?: InputMaybe<TimeZoneFilter>;
|
|
1399
|
+
sort?: InputMaybe<Array<TimeZoneSort>>;
|
|
1400
|
+
};
|
|
862
1401
|
export type QueryAttributeArgs = {
|
|
863
1402
|
id: Scalars['ID']['input'];
|
|
864
1403
|
};
|
|
865
1404
|
export type QueryBrandArgs = {
|
|
866
1405
|
id: Scalars['ID']['input'];
|
|
867
1406
|
};
|
|
1407
|
+
export type QueryCustomFieldArgs = {
|
|
1408
|
+
id: Scalars['ID']['input'];
|
|
1409
|
+
};
|
|
868
1410
|
export type QueryCustomerArgs = {
|
|
869
1411
|
id: Scalars['ID']['input'];
|
|
870
1412
|
};
|
|
1413
|
+
export type QueryCustomerCustomerAddressArgs = {
|
|
1414
|
+
id: Scalars['ID']['input'];
|
|
1415
|
+
};
|
|
1416
|
+
export type QueryCustomerTelephoneNumberArgs = {
|
|
1417
|
+
id: Scalars['ID']['input'];
|
|
1418
|
+
};
|
|
871
1419
|
export type QueryFileArgs = {
|
|
872
1420
|
id: Scalars['ID']['input'];
|
|
873
1421
|
};
|
|
@@ -903,6 +1451,30 @@ export type QueryInfiniteColorsArgs = {
|
|
|
903
1451
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
904
1452
|
sort?: InputMaybe<Array<ColorSort>>;
|
|
905
1453
|
};
|
|
1454
|
+
export type QueryInfiniteCustomFieldsArgs = {
|
|
1455
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1456
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1457
|
+
filter?: InputMaybe<CustomFieldFilter>;
|
|
1458
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1459
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1460
|
+
sort?: InputMaybe<Array<CustomFieldSort>>;
|
|
1461
|
+
};
|
|
1462
|
+
export type QueryInfiniteCustomerAddressArgs = {
|
|
1463
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1464
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1465
|
+
filter?: InputMaybe<CustomerAddressFilter>;
|
|
1466
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1467
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1468
|
+
sort?: InputMaybe<Array<CustomerAddressSort>>;
|
|
1469
|
+
};
|
|
1470
|
+
export type QueryInfiniteCustomerTelephoneNumbersArgs = {
|
|
1471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
1472
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
1473
|
+
filter?: InputMaybe<CustomerTelephoneNumberFilter>;
|
|
1474
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1475
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1476
|
+
sort?: InputMaybe<Array<CustomerTelephoneNumberSort>>;
|
|
1477
|
+
};
|
|
906
1478
|
export type QueryInfiniteCustomersArgs = {
|
|
907
1479
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
908
1480
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -989,6 +1561,24 @@ export type QueryPaginatedColorsArgs = {
|
|
|
989
1561
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
990
1562
|
sort?: InputMaybe<Array<ColorSort>>;
|
|
991
1563
|
};
|
|
1564
|
+
export type QueryPaginatedCustomFieldsArgs = {
|
|
1565
|
+
filter?: InputMaybe<CustomFieldFilter>;
|
|
1566
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1567
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1568
|
+
sort?: InputMaybe<Array<CustomFieldSort>>;
|
|
1569
|
+
};
|
|
1570
|
+
export type QueryPaginatedCustomerAddressArgs = {
|
|
1571
|
+
filter?: InputMaybe<CustomerAddressFilter>;
|
|
1572
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1573
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1574
|
+
sort?: InputMaybe<Array<CustomerAddressSort>>;
|
|
1575
|
+
};
|
|
1576
|
+
export type QueryPaginatedCustomerTelephoneNumbersArgs = {
|
|
1577
|
+
filter?: InputMaybe<CustomerTelephoneNumberFilter>;
|
|
1578
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1579
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1580
|
+
sort?: InputMaybe<Array<CustomerTelephoneNumberSort>>;
|
|
1581
|
+
};
|
|
992
1582
|
export type QueryPaginatedCustomersArgs = {
|
|
993
1583
|
filter?: InputMaybe<CustomerFilter>;
|
|
994
1584
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -1043,6 +1633,59 @@ export type QuerySizeArgs = {
|
|
|
1043
1633
|
export type QueryTagArgs = {
|
|
1044
1634
|
id: Scalars['ID']['input'];
|
|
1045
1635
|
};
|
|
1636
|
+
export type Region = {
|
|
1637
|
+
__typename?: 'Region';
|
|
1638
|
+
code: RegionCodeEnum;
|
|
1639
|
+
names: Scalars['LocalizedString']['output'];
|
|
1640
|
+
};
|
|
1641
|
+
export declare enum RegionCodeEnum {
|
|
1642
|
+
IrAlb = "IR_ALB",
|
|
1643
|
+
IrAr = "IR_AR",
|
|
1644
|
+
IrArb = "IR_ARB",
|
|
1645
|
+
IrAz = "IR_AZ",
|
|
1646
|
+
IrBus = "IR_BUS",
|
|
1647
|
+
IrChb = "IR_CHB",
|
|
1648
|
+
IrEsf = "IR_ESF",
|
|
1649
|
+
IrFrs = "IR_FRS",
|
|
1650
|
+
IrGln = "IR_GLN",
|
|
1651
|
+
IrGln2 = "IR_GLN2",
|
|
1652
|
+
IrHmd = "IR_HMD",
|
|
1653
|
+
IrHrm = "IR_HRM",
|
|
1654
|
+
IrKhj = "IR_KHJ",
|
|
1655
|
+
IrKhn = "IR_KHN",
|
|
1656
|
+
IrKhr = "IR_KHR",
|
|
1657
|
+
IrKhz = "IR_KHZ",
|
|
1658
|
+
IrKrd = "IR_KRD",
|
|
1659
|
+
IrKrm = "IR_KRM",
|
|
1660
|
+
IrKsh = "IR_KSH",
|
|
1661
|
+
IrKyb = "IR_KYB",
|
|
1662
|
+
IrLrs = "IR_LRS",
|
|
1663
|
+
IrMrk = "IR_MRK",
|
|
1664
|
+
IrMzn = "IR_MZN",
|
|
1665
|
+
IrQom = "IR_QOM",
|
|
1666
|
+
IrQzv = "IR_QZV",
|
|
1667
|
+
IrSbl = "IR_SBL",
|
|
1668
|
+
IrSmn = "IR_SMN",
|
|
1669
|
+
IrYzd = "IR_YZD",
|
|
1670
|
+
IrZnj = "IR_ZNJ"
|
|
1671
|
+
}
|
|
1672
|
+
export type RegionCodeEnumFilter = {
|
|
1673
|
+
equals?: InputMaybe<RegionCodeEnum>;
|
|
1674
|
+
in?: InputMaybe<Array<RegionCodeEnum>>;
|
|
1675
|
+
not?: InputMaybe<RegionCodeEnum>;
|
|
1676
|
+
notIn?: InputMaybe<Array<RegionCodeEnum>>;
|
|
1677
|
+
};
|
|
1678
|
+
export declare enum RegionFieldsEnum {
|
|
1679
|
+
Code = "code"
|
|
1680
|
+
}
|
|
1681
|
+
export type RegionFilter = {
|
|
1682
|
+
code?: InputMaybe<RegionCodeEnumFilter>;
|
|
1683
|
+
countryCode?: InputMaybe<CountryCodeEnumFilter>;
|
|
1684
|
+
};
|
|
1685
|
+
export type RegionSort = {
|
|
1686
|
+
field: RegionFieldsEnum;
|
|
1687
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
1688
|
+
};
|
|
1046
1689
|
export type Seller = {
|
|
1047
1690
|
__typename?: 'Seller';
|
|
1048
1691
|
active: Scalars['Boolean']['output'];
|
|
@@ -1130,6 +1773,19 @@ export type StringArrayFilter = {
|
|
|
1130
1773
|
none?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1131
1774
|
some?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1132
1775
|
};
|
|
1776
|
+
export type StringFilter = {
|
|
1777
|
+
contains?: InputMaybe<Scalars['String']['input']>;
|
|
1778
|
+
endsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1779
|
+
equals?: InputMaybe<Scalars['String']['input']>;
|
|
1780
|
+
greaterThan?: InputMaybe<Scalars['String']['input']>;
|
|
1781
|
+
greaterThanOrEquals?: InputMaybe<Scalars['String']['input']>;
|
|
1782
|
+
in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1783
|
+
lessThan?: InputMaybe<Scalars['String']['input']>;
|
|
1784
|
+
lessThanOrEquals?: InputMaybe<Scalars['String']['input']>;
|
|
1785
|
+
not?: InputMaybe<Scalars['String']['input']>;
|
|
1786
|
+
notIn?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1787
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
1788
|
+
};
|
|
1133
1789
|
export type Subscription = {
|
|
1134
1790
|
__typename?: 'Subscription';
|
|
1135
1791
|
subscribeFileUpload: File;
|
|
@@ -1159,14 +1815,695 @@ export type TagSort = {
|
|
|
1159
1815
|
field: TagFieldsEnum;
|
|
1160
1816
|
order?: InputMaybe<SortOrderEnum>;
|
|
1161
1817
|
};
|
|
1818
|
+
export declare enum TelephoneNumberTarget {
|
|
1819
|
+
Customer = "CUSTOMER",
|
|
1820
|
+
Owner = "OWNER",
|
|
1821
|
+
Seller = "SELLER",
|
|
1822
|
+
Shop = "SHOP",
|
|
1823
|
+
Support = "SUPPORT"
|
|
1824
|
+
}
|
|
1825
|
+
export type TelephoneNumbersTypeEnumArrayFilter = {
|
|
1826
|
+
every?: InputMaybe<Array<TelephoneNumberTarget>>;
|
|
1827
|
+
none?: InputMaybe<Array<TelephoneNumberTarget>>;
|
|
1828
|
+
some?: InputMaybe<Array<TelephoneNumberTarget>>;
|
|
1829
|
+
};
|
|
1830
|
+
export type TimeZone = {
|
|
1831
|
+
__typename?: 'TimeZone';
|
|
1832
|
+
abbreviationDts: Scalars['String']['output'];
|
|
1833
|
+
abbreviationStd: Scalars['String']['output'];
|
|
1834
|
+
countries: Array<CountryCodeEnum>;
|
|
1835
|
+
link?: Maybe<TimeZoneEnum>;
|
|
1836
|
+
name: Scalars['String']['output'];
|
|
1837
|
+
timeZone: TimeZoneEnum;
|
|
1838
|
+
type: TimeZoneTypeEnum;
|
|
1839
|
+
utcOffsetDst: Scalars['String']['output'];
|
|
1840
|
+
utcOffsetStd: Scalars['String']['output'];
|
|
1841
|
+
};
|
|
1842
|
+
export declare enum TimeZoneEnum {
|
|
1843
|
+
AfricaAbidjan = "AFRICA___ABIDJAN",
|
|
1844
|
+
AfricaAccra = "AFRICA___ACCRA",
|
|
1845
|
+
AfricaAddisAbaba = "AFRICA___ADDIS_ABABA",
|
|
1846
|
+
AfricaAlgiers = "AFRICA___ALGIERS",
|
|
1847
|
+
AfricaAsmara = "AFRICA___ASMARA",
|
|
1848
|
+
AfricaAsmera = "AFRICA___ASMERA",
|
|
1849
|
+
AfricaBamako = "AFRICA___BAMAKO",
|
|
1850
|
+
AfricaBangui = "AFRICA___BANGUI",
|
|
1851
|
+
AfricaBanjul = "AFRICA___BANJUL",
|
|
1852
|
+
AfricaBissau = "AFRICA___BISSAU",
|
|
1853
|
+
AfricaBlantyre = "AFRICA___BLANTYRE",
|
|
1854
|
+
AfricaBrazzaville = "AFRICA___BRAZZAVILLE",
|
|
1855
|
+
AfricaBujumbura = "AFRICA___BUJUMBURA",
|
|
1856
|
+
AfricaCairo = "AFRICA___CAIRO",
|
|
1857
|
+
AfricaCasablanca = "AFRICA___CASABLANCA",
|
|
1858
|
+
AfricaCeuta = "AFRICA___CEUTA",
|
|
1859
|
+
AfricaConakry = "AFRICA___CONAKRY",
|
|
1860
|
+
AfricaDakar = "AFRICA___DAKAR",
|
|
1861
|
+
AfricaDarEsSalaam = "AFRICA___DAR_ES_SALAAM",
|
|
1862
|
+
AfricaDjibouti = "AFRICA___DJIBOUTI",
|
|
1863
|
+
AfricaDouala = "AFRICA___DOUALA",
|
|
1864
|
+
AfricaElAaiun = "AFRICA___EL_AAIUN",
|
|
1865
|
+
AfricaFreetown = "AFRICA___FREETOWN",
|
|
1866
|
+
AfricaGaborone = "AFRICA___GABORONE",
|
|
1867
|
+
AfricaHarare = "AFRICA___HARARE",
|
|
1868
|
+
AfricaJohannesburg = "AFRICA___JOHANNESBURG",
|
|
1869
|
+
AfricaJuba = "AFRICA___JUBA",
|
|
1870
|
+
AfricaKampala = "AFRICA___KAMPALA",
|
|
1871
|
+
AfricaKhartoum = "AFRICA___KHARTOUM",
|
|
1872
|
+
AfricaKigali = "AFRICA___KIGALI",
|
|
1873
|
+
AfricaKinshasa = "AFRICA___KINSHASA",
|
|
1874
|
+
AfricaLagos = "AFRICA___LAGOS",
|
|
1875
|
+
AfricaLibreville = "AFRICA___LIBREVILLE",
|
|
1876
|
+
AfricaLome = "AFRICA___LOME",
|
|
1877
|
+
AfricaLuanda = "AFRICA___LUANDA",
|
|
1878
|
+
AfricaLubumbashi = "AFRICA___LUBUMBASHI",
|
|
1879
|
+
AfricaLusaka = "AFRICA___LUSAKA",
|
|
1880
|
+
AfricaMalabo = "AFRICA___MALABO",
|
|
1881
|
+
AfricaMaputo = "AFRICA___MAPUTO",
|
|
1882
|
+
AfricaMaseru = "AFRICA___MASERU",
|
|
1883
|
+
AfricaMbabane = "AFRICA___MBABANE",
|
|
1884
|
+
AfricaMogadishu = "AFRICA___MOGADISHU",
|
|
1885
|
+
AfricaMonrovia = "AFRICA___MONROVIA",
|
|
1886
|
+
AfricaNairobi = "AFRICA___NAIROBI",
|
|
1887
|
+
AfricaNdjamena = "AFRICA___NDJAMENA",
|
|
1888
|
+
AfricaNiamey = "AFRICA___NIAMEY",
|
|
1889
|
+
AfricaNouakchott = "AFRICA___NOUAKCHOTT",
|
|
1890
|
+
AfricaOuagadougou = "AFRICA___OUAGADOUGOU",
|
|
1891
|
+
AfricaPortoNovo = "AFRICA___PORTO_NOVO",
|
|
1892
|
+
AfricaSaoTome = "AFRICA___SAO_TOME",
|
|
1893
|
+
AfricaTimbuktu = "AFRICA___TIMBUKTU",
|
|
1894
|
+
AfricaTripoli = "AFRICA___TRIPOLI",
|
|
1895
|
+
AfricaTunis = "AFRICA___TUNIS",
|
|
1896
|
+
AfricaWindhoek = "AFRICA___WINDHOEK",
|
|
1897
|
+
AmericaAdak = "AMERICA___ADAK",
|
|
1898
|
+
AmericaAnchorage = "AMERICA___ANCHORAGE",
|
|
1899
|
+
AmericaAnguilla = "AMERICA___ANGUILLA",
|
|
1900
|
+
AmericaAntigua = "AMERICA___ANTIGUA",
|
|
1901
|
+
AmericaAraguaina = "AMERICA___ARAGUAINA",
|
|
1902
|
+
AmericaArgentinaBuenosAires = "AMERICA___ARGENTINA___BUENOS_AIRES",
|
|
1903
|
+
AmericaArgentinaCatamarca = "AMERICA___ARGENTINA___CATAMARCA",
|
|
1904
|
+
AmericaArgentinaComodrivadavia = "AMERICA___ARGENTINA___COMODRIVADAVIA",
|
|
1905
|
+
AmericaArgentinaCordoba = "AMERICA___ARGENTINA___CORDOBA",
|
|
1906
|
+
AmericaArgentinaJujuy = "AMERICA___ARGENTINA___JUJUY",
|
|
1907
|
+
AmericaArgentinaLaRioja = "AMERICA___ARGENTINA___LA_RIOJA",
|
|
1908
|
+
AmericaArgentinaMendoza = "AMERICA___ARGENTINA___MENDOZA",
|
|
1909
|
+
AmericaArgentinaRioGallegos = "AMERICA___ARGENTINA___RIO_GALLEGOS",
|
|
1910
|
+
AmericaArgentinaSalta = "AMERICA___ARGENTINA___SALTA",
|
|
1911
|
+
AmericaArgentinaSanJuan = "AMERICA___ARGENTINA___SAN_JUAN",
|
|
1912
|
+
AmericaArgentinaSanLuis = "AMERICA___ARGENTINA___SAN_LUIS",
|
|
1913
|
+
AmericaArgentinaTucuman = "AMERICA___ARGENTINA___TUCUMAN",
|
|
1914
|
+
AmericaArgentinaUshuaia = "AMERICA___ARGENTINA___USHUAIA",
|
|
1915
|
+
AmericaAruba = "AMERICA___ARUBA",
|
|
1916
|
+
AmericaAsuncion = "AMERICA___ASUNCION",
|
|
1917
|
+
AmericaAtikokan = "AMERICA___ATIKOKAN",
|
|
1918
|
+
AmericaAtka = "AMERICA___ATKA",
|
|
1919
|
+
AmericaBahia = "AMERICA___BAHIA",
|
|
1920
|
+
AmericaBahiaBanderas = "AMERICA___BAHIA_BANDERAS",
|
|
1921
|
+
AmericaBarbados = "AMERICA___BARBADOS",
|
|
1922
|
+
AmericaBelem = "AMERICA___BELEM",
|
|
1923
|
+
AmericaBelize = "AMERICA___BELIZE",
|
|
1924
|
+
AmericaBlancSablon = "AMERICA___BLANC_SABLON",
|
|
1925
|
+
AmericaBoaVista = "AMERICA___BOA_VISTA",
|
|
1926
|
+
AmericaBogota = "AMERICA___BOGOTA",
|
|
1927
|
+
AmericaBoise = "AMERICA___BOISE",
|
|
1928
|
+
AmericaBuenosAires = "AMERICA___BUENOS_AIRES",
|
|
1929
|
+
AmericaCambridgeBay = "AMERICA___CAMBRIDGE_BAY",
|
|
1930
|
+
AmericaCampoGrande = "AMERICA___CAMPO_GRANDE",
|
|
1931
|
+
AmericaCancun = "AMERICA___CANCUN",
|
|
1932
|
+
AmericaCaracas = "AMERICA___CARACAS",
|
|
1933
|
+
AmericaCatamarca = "AMERICA___CATAMARCA",
|
|
1934
|
+
AmericaCayenne = "AMERICA___CAYENNE",
|
|
1935
|
+
AmericaCayman = "AMERICA___CAYMAN",
|
|
1936
|
+
AmericaChicago = "AMERICA___CHICAGO",
|
|
1937
|
+
AmericaChihuahua = "AMERICA___CHIHUAHUA",
|
|
1938
|
+
AmericaCoralHarbour = "AMERICA___CORAL_HARBOUR",
|
|
1939
|
+
AmericaCordoba = "AMERICA___CORDOBA",
|
|
1940
|
+
AmericaCostaRica = "AMERICA___COSTA_RICA",
|
|
1941
|
+
AmericaCreston = "AMERICA___CRESTON",
|
|
1942
|
+
AmericaCuiaba = "AMERICA___CUIABA",
|
|
1943
|
+
AmericaCuracao = "AMERICA___CURACAO",
|
|
1944
|
+
AmericaDanmarkshavn = "AMERICA___DANMARKSHAVN",
|
|
1945
|
+
AmericaDawson = "AMERICA___DAWSON",
|
|
1946
|
+
AmericaDawsonCreek = "AMERICA___DAWSON_CREEK",
|
|
1947
|
+
AmericaDenver = "AMERICA___DENVER",
|
|
1948
|
+
AmericaDetroit = "AMERICA___DETROIT",
|
|
1949
|
+
AmericaDominica = "AMERICA___DOMINICA",
|
|
1950
|
+
AmericaEdmonton = "AMERICA___EDMONTON",
|
|
1951
|
+
AmericaEirunepe = "AMERICA___EIRUNEPE",
|
|
1952
|
+
AmericaElSalvador = "AMERICA___EL_SALVADOR",
|
|
1953
|
+
AmericaEnsenada = "AMERICA___ENSENADA",
|
|
1954
|
+
AmericaFortaleza = "AMERICA___FORTALEZA",
|
|
1955
|
+
AmericaFortNelson = "AMERICA___FORT_NELSON",
|
|
1956
|
+
AmericaFortWayne = "AMERICA___FORT_WAYNE",
|
|
1957
|
+
AmericaGlaceBay = "AMERICA___GLACE_BAY",
|
|
1958
|
+
AmericaGodthab = "AMERICA___GODTHAB",
|
|
1959
|
+
AmericaGooseBay = "AMERICA___GOOSE_BAY",
|
|
1960
|
+
AmericaGrandTurk = "AMERICA___GRAND_TURK",
|
|
1961
|
+
AmericaGrenada = "AMERICA___GRENADA",
|
|
1962
|
+
AmericaGuadeloupe = "AMERICA___GUADELOUPE",
|
|
1963
|
+
AmericaGuatemala = "AMERICA___GUATEMALA",
|
|
1964
|
+
AmericaGuayaquil = "AMERICA___GUAYAQUIL",
|
|
1965
|
+
AmericaGuyana = "AMERICA___GUYANA",
|
|
1966
|
+
AmericaHalifax = "AMERICA___HALIFAX",
|
|
1967
|
+
AmericaHavana = "AMERICA___HAVANA",
|
|
1968
|
+
AmericaHermosillo = "AMERICA___HERMOSILLO",
|
|
1969
|
+
AmericaIndianapolis = "AMERICA___INDIANAPOLIS",
|
|
1970
|
+
AmericaIndianaIndianapolis = "AMERICA___INDIANA___INDIANAPOLIS",
|
|
1971
|
+
AmericaIndianaKnox = "AMERICA___INDIANA___KNOX",
|
|
1972
|
+
AmericaIndianaMarengo = "AMERICA___INDIANA___MARENGO",
|
|
1973
|
+
AmericaIndianaPetersburg = "AMERICA___INDIANA___PETERSBURG",
|
|
1974
|
+
AmericaIndianaTellCity = "AMERICA___INDIANA___TELL_CITY",
|
|
1975
|
+
AmericaIndianaVevay = "AMERICA___INDIANA___VEVAY",
|
|
1976
|
+
AmericaIndianaVincennes = "AMERICA___INDIANA___VINCENNES",
|
|
1977
|
+
AmericaIndianaWinamac = "AMERICA___INDIANA___WINAMAC",
|
|
1978
|
+
AmericaInuvik = "AMERICA___INUVIK",
|
|
1979
|
+
AmericaIqaluit = "AMERICA___IQALUIT",
|
|
1980
|
+
AmericaJamaica = "AMERICA___JAMAICA",
|
|
1981
|
+
AmericaJujuy = "AMERICA___JUJUY",
|
|
1982
|
+
AmericaJuneau = "AMERICA___JUNEAU",
|
|
1983
|
+
AmericaKentuckyLouisville = "AMERICA___KENTUCKY___LOUISVILLE",
|
|
1984
|
+
AmericaKentuckyMonticello = "AMERICA___KENTUCKY___MONTICELLO",
|
|
1985
|
+
AmericaKnoxIn = "AMERICA___KNOX_IN",
|
|
1986
|
+
AmericaKralendijk = "AMERICA___KRALENDIJK",
|
|
1987
|
+
AmericaLaPaz = "AMERICA___LA_PAZ",
|
|
1988
|
+
AmericaLima = "AMERICA___LIMA",
|
|
1989
|
+
AmericaLosAngeles = "AMERICA___LOS_ANGELES",
|
|
1990
|
+
AmericaLouisville = "AMERICA___LOUISVILLE",
|
|
1991
|
+
AmericaLowerPrinces = "AMERICA___LOWER_PRINCES",
|
|
1992
|
+
AmericaMaceio = "AMERICA___MACEIO",
|
|
1993
|
+
AmericaManagua = "AMERICA___MANAGUA",
|
|
1994
|
+
AmericaManaus = "AMERICA___MANAUS",
|
|
1995
|
+
AmericaMarigot = "AMERICA___MARIGOT",
|
|
1996
|
+
AmericaMartinique = "AMERICA___MARTINIQUE",
|
|
1997
|
+
AmericaMatamoros = "AMERICA___MATAMOROS",
|
|
1998
|
+
AmericaMazatlan = "AMERICA___MAZATLAN",
|
|
1999
|
+
AmericaMendoza = "AMERICA___MENDOZA",
|
|
2000
|
+
AmericaMenominee = "AMERICA___MENOMINEE",
|
|
2001
|
+
AmericaMerida = "AMERICA___MERIDA",
|
|
2002
|
+
AmericaMetlakatla = "AMERICA___METLAKATLA",
|
|
2003
|
+
AmericaMexicoCity = "AMERICA___MEXICO_CITY",
|
|
2004
|
+
AmericaMiquelon = "AMERICA___MIQUELON",
|
|
2005
|
+
AmericaMoncton = "AMERICA___MONCTON",
|
|
2006
|
+
AmericaMonterrey = "AMERICA___MONTERREY",
|
|
2007
|
+
AmericaMontevideo = "AMERICA___MONTEVIDEO",
|
|
2008
|
+
AmericaMontreal = "AMERICA___MONTREAL",
|
|
2009
|
+
AmericaMontserrat = "AMERICA___MONTSERRAT",
|
|
2010
|
+
AmericaNassau = "AMERICA___NASSAU",
|
|
2011
|
+
AmericaNewYork = "AMERICA___NEW_YORK",
|
|
2012
|
+
AmericaNipigon = "AMERICA___NIPIGON",
|
|
2013
|
+
AmericaNome = "AMERICA___NOME",
|
|
2014
|
+
AmericaNoronha = "AMERICA___NORONHA",
|
|
2015
|
+
AmericaNorthDakotaBeulah = "AMERICA___NORTH_DAKOTA___BEULAH",
|
|
2016
|
+
AmericaNorthDakotaCenter = "AMERICA___NORTH_DAKOTA___CENTER",
|
|
2017
|
+
AmericaNorthDakotaNewSalem = "AMERICA___NORTH_DAKOTA___NEW_SALEM",
|
|
2018
|
+
AmericaNuuk = "AMERICA___NUUK",
|
|
2019
|
+
AmericaOjinaga = "AMERICA___OJINAGA",
|
|
2020
|
+
AmericaPanama = "AMERICA___PANAMA",
|
|
2021
|
+
AmericaPangnirtung = "AMERICA___PANGNIRTUNG",
|
|
2022
|
+
AmericaParamaribo = "AMERICA___PARAMARIBO",
|
|
2023
|
+
AmericaPhoenix = "AMERICA___PHOENIX",
|
|
2024
|
+
AmericaPortoAcre = "AMERICA___PORTO_ACRE",
|
|
2025
|
+
AmericaPortoVelho = "AMERICA___PORTO_VELHO",
|
|
2026
|
+
AmericaPortAuPrince = "AMERICA___PORT_AU_PRINCE",
|
|
2027
|
+
AmericaPortOfSpain = "AMERICA___PORT_OF_SPAIN",
|
|
2028
|
+
AmericaPuertoRico = "AMERICA___PUERTO_RICO",
|
|
2029
|
+
AmericaPuntaArenas = "AMERICA___PUNTA_ARENAS",
|
|
2030
|
+
AmericaRainyRiver = "AMERICA___RAINY_RIVER",
|
|
2031
|
+
AmericaRankinInlet = "AMERICA___RANKIN_INLET",
|
|
2032
|
+
AmericaRecife = "AMERICA___RECIFE",
|
|
2033
|
+
AmericaRegina = "AMERICA___REGINA",
|
|
2034
|
+
AmericaResolute = "AMERICA___RESOLUTE",
|
|
2035
|
+
AmericaRioBranco = "AMERICA___RIO_BRANCO",
|
|
2036
|
+
AmericaRosario = "AMERICA___ROSARIO",
|
|
2037
|
+
AmericaSantarem = "AMERICA___SANTAREM",
|
|
2038
|
+
AmericaSantaIsabel = "AMERICA___SANTA_ISABEL",
|
|
2039
|
+
AmericaSantiago = "AMERICA___SANTIAGO",
|
|
2040
|
+
AmericaSantoDomingo = "AMERICA___SANTO_DOMINGO",
|
|
2041
|
+
AmericaSaoPaulo = "AMERICA___SAO_PAULO",
|
|
2042
|
+
AmericaScoresbysund = "AMERICA___SCORESBYSUND",
|
|
2043
|
+
AmericaShiprock = "AMERICA___SHIPROCK",
|
|
2044
|
+
AmericaSitka = "AMERICA___SITKA",
|
|
2045
|
+
AmericaStBarthelemy = "AMERICA___ST_BARTHELEMY",
|
|
2046
|
+
AmericaStJohns = "AMERICA___ST_JOHNS",
|
|
2047
|
+
AmericaStKitts = "AMERICA___ST_KITTS",
|
|
2048
|
+
AmericaStLucia = "AMERICA___ST_LUCIA",
|
|
2049
|
+
AmericaStThomas = "AMERICA___ST_THOMAS",
|
|
2050
|
+
AmericaStVincent = "AMERICA___ST_VINCENT",
|
|
2051
|
+
AmericaSwiftCurrent = "AMERICA___SWIFT_CURRENT",
|
|
2052
|
+
AmericaTegucigalpa = "AMERICA___TEGUCIGALPA",
|
|
2053
|
+
AmericaThule = "AMERICA___THULE",
|
|
2054
|
+
AmericaThunderBay = "AMERICA___THUNDER_BAY",
|
|
2055
|
+
AmericaTijuana = "AMERICA___TIJUANA",
|
|
2056
|
+
AmericaToronto = "AMERICA___TORONTO",
|
|
2057
|
+
AmericaTortola = "AMERICA___TORTOLA",
|
|
2058
|
+
AmericaVancouver = "AMERICA___VANCOUVER",
|
|
2059
|
+
AmericaVirgin = "AMERICA___VIRGIN",
|
|
2060
|
+
AmericaWhitehorse = "AMERICA___WHITEHORSE",
|
|
2061
|
+
AmericaWinnipeg = "AMERICA___WINNIPEG",
|
|
2062
|
+
AmericaYakutat = "AMERICA___YAKUTAT",
|
|
2063
|
+
AmericaYellowknife = "AMERICA___YELLOWKNIFE",
|
|
2064
|
+
AntarcticaCasey = "ANTARCTICA___CASEY",
|
|
2065
|
+
AntarcticaDavis = "ANTARCTICA___DAVIS",
|
|
2066
|
+
AntarcticaDumontdurville = "ANTARCTICA___DUMONTDURVILLE",
|
|
2067
|
+
AntarcticaMacquarie = "ANTARCTICA___MACQUARIE",
|
|
2068
|
+
AntarcticaMawson = "ANTARCTICA___MAWSON",
|
|
2069
|
+
AntarcticaMcmurdo = "ANTARCTICA___MCMURDO",
|
|
2070
|
+
AntarcticaPalmer = "ANTARCTICA___PALMER",
|
|
2071
|
+
AntarcticaRothera = "ANTARCTICA___ROTHERA",
|
|
2072
|
+
AntarcticaSouthPole = "ANTARCTICA___SOUTH_POLE",
|
|
2073
|
+
AntarcticaSyowa = "ANTARCTICA___SYOWA",
|
|
2074
|
+
AntarcticaTroll = "ANTARCTICA___TROLL",
|
|
2075
|
+
AntarcticaVostok = "ANTARCTICA___VOSTOK",
|
|
2076
|
+
ArcticLongyearbyen = "ARCTIC___LONGYEARBYEN",
|
|
2077
|
+
AsiaAden = "ASIA___ADEN",
|
|
2078
|
+
AsiaAlmaty = "ASIA___ALMATY",
|
|
2079
|
+
AsiaAmman = "ASIA___AMMAN",
|
|
2080
|
+
AsiaAnadyr = "ASIA___ANADYR",
|
|
2081
|
+
AsiaAqtau = "ASIA___AQTAU",
|
|
2082
|
+
AsiaAqtobe = "ASIA___AQTOBE",
|
|
2083
|
+
AsiaAshgabat = "ASIA___ASHGABAT",
|
|
2084
|
+
AsiaAshkhabad = "ASIA___ASHKHABAD",
|
|
2085
|
+
AsiaAtyrau = "ASIA___ATYRAU",
|
|
2086
|
+
AsiaBaghdad = "ASIA___BAGHDAD",
|
|
2087
|
+
AsiaBahrain = "ASIA___BAHRAIN",
|
|
2088
|
+
AsiaBaku = "ASIA___BAKU",
|
|
2089
|
+
AsiaBangkok = "ASIA___BANGKOK",
|
|
2090
|
+
AsiaBarnaul = "ASIA___BARNAUL",
|
|
2091
|
+
AsiaBeirut = "ASIA___BEIRUT",
|
|
2092
|
+
AsiaBishkek = "ASIA___BISHKEK",
|
|
2093
|
+
AsiaBrunei = "ASIA___BRUNEI",
|
|
2094
|
+
AsiaCalcutta = "ASIA___CALCUTTA",
|
|
2095
|
+
AsiaChita = "ASIA___CHITA",
|
|
2096
|
+
AsiaChoibalsan = "ASIA___CHOIBALSAN",
|
|
2097
|
+
AsiaChongqing = "ASIA___CHONGQING",
|
|
2098
|
+
AsiaChungking = "ASIA___CHUNGKING",
|
|
2099
|
+
AsiaColombo = "ASIA___COLOMBO",
|
|
2100
|
+
AsiaDacca = "ASIA___DACCA",
|
|
2101
|
+
AsiaDamascus = "ASIA___DAMASCUS",
|
|
2102
|
+
AsiaDhaka = "ASIA___DHAKA",
|
|
2103
|
+
AsiaDili = "ASIA___DILI",
|
|
2104
|
+
AsiaDubai = "ASIA___DUBAI",
|
|
2105
|
+
AsiaDushanbe = "ASIA___DUSHANBE",
|
|
2106
|
+
AsiaFamagusta = "ASIA___FAMAGUSTA",
|
|
2107
|
+
AsiaGaza = "ASIA___GAZA",
|
|
2108
|
+
AsiaHarbin = "ASIA___HARBIN",
|
|
2109
|
+
AsiaHebron = "ASIA___HEBRON",
|
|
2110
|
+
AsiaHongKong = "ASIA___HONG_KONG",
|
|
2111
|
+
AsiaHovd = "ASIA___HOVD",
|
|
2112
|
+
AsiaHoChiMinh = "ASIA___HO_CHI_MINH",
|
|
2113
|
+
AsiaIrkutsk = "ASIA___IRKUTSK",
|
|
2114
|
+
AsiaIstanbul = "ASIA___ISTANBUL",
|
|
2115
|
+
AsiaJakarta = "ASIA___JAKARTA",
|
|
2116
|
+
AsiaJayapura = "ASIA___JAYAPURA",
|
|
2117
|
+
AsiaJerusalem = "ASIA___JERUSALEM",
|
|
2118
|
+
AsiaKabul = "ASIA___KABUL",
|
|
2119
|
+
AsiaKamchatka = "ASIA___KAMCHATKA",
|
|
2120
|
+
AsiaKarachi = "ASIA___KARACHI",
|
|
2121
|
+
AsiaKashgar = "ASIA___KASHGAR",
|
|
2122
|
+
AsiaKathmandu = "ASIA___KATHMANDU",
|
|
2123
|
+
AsiaKatmandu = "ASIA___KATMANDU",
|
|
2124
|
+
AsiaKhandyga = "ASIA___KHANDYGA",
|
|
2125
|
+
AsiaKolkata = "ASIA___KOLKATA",
|
|
2126
|
+
AsiaKrasnoyarsk = "ASIA___KRASNOYARSK",
|
|
2127
|
+
AsiaKualaLumpur = "ASIA___KUALA_LUMPUR",
|
|
2128
|
+
AsiaKuching = "ASIA___KUCHING",
|
|
2129
|
+
AsiaKuwait = "ASIA___KUWAIT",
|
|
2130
|
+
AsiaMacao = "ASIA___MACAO",
|
|
2131
|
+
AsiaMacau = "ASIA___MACAU",
|
|
2132
|
+
AsiaMagadan = "ASIA___MAGADAN",
|
|
2133
|
+
AsiaMakassar = "ASIA___MAKASSAR",
|
|
2134
|
+
AsiaManila = "ASIA___MANILA",
|
|
2135
|
+
AsiaMuscat = "ASIA___MUSCAT",
|
|
2136
|
+
AsiaNicosia = "ASIA___NICOSIA",
|
|
2137
|
+
AsiaNovokuznetsk = "ASIA___NOVOKUZNETSK",
|
|
2138
|
+
AsiaNovosibirsk = "ASIA___NOVOSIBIRSK",
|
|
2139
|
+
AsiaOmsk = "ASIA___OMSK",
|
|
2140
|
+
AsiaOral = "ASIA___ORAL",
|
|
2141
|
+
AsiaPhnomPenh = "ASIA___PHNOM_PENH",
|
|
2142
|
+
AsiaPontianak = "ASIA___PONTIANAK",
|
|
2143
|
+
AsiaPyongyang = "ASIA___PYONGYANG",
|
|
2144
|
+
AsiaQatar = "ASIA___QATAR",
|
|
2145
|
+
AsiaQostanay = "ASIA___QOSTANAY",
|
|
2146
|
+
AsiaQyzylorda = "ASIA___QYZYLORDA",
|
|
2147
|
+
AsiaRangoon = "ASIA___RANGOON",
|
|
2148
|
+
AsiaRiyadh = "ASIA___RIYADH",
|
|
2149
|
+
AsiaSaigon = "ASIA___SAIGON",
|
|
2150
|
+
AsiaSakhalin = "ASIA___SAKHALIN",
|
|
2151
|
+
AsiaSamarkand = "ASIA___SAMARKAND",
|
|
2152
|
+
AsiaSeoul = "ASIA___SEOUL",
|
|
2153
|
+
AsiaShanghai = "ASIA___SHANGHAI",
|
|
2154
|
+
AsiaSingapore = "ASIA___SINGAPORE",
|
|
2155
|
+
AsiaSrednekolymsk = "ASIA___SREDNEKOLYMSK",
|
|
2156
|
+
AsiaTaipei = "ASIA___TAIPEI",
|
|
2157
|
+
AsiaTashkent = "ASIA___TASHKENT",
|
|
2158
|
+
AsiaTbilisi = "ASIA___TBILISI",
|
|
2159
|
+
AsiaTehran = "ASIA___TEHRAN",
|
|
2160
|
+
AsiaTelAviv = "ASIA___TEL_AVIV",
|
|
2161
|
+
AsiaThimbu = "ASIA___THIMBU",
|
|
2162
|
+
AsiaThimphu = "ASIA___THIMPHU",
|
|
2163
|
+
AsiaTokyo = "ASIA___TOKYO",
|
|
2164
|
+
AsiaTomsk = "ASIA___TOMSK",
|
|
2165
|
+
AsiaUjungPandang = "ASIA___UJUNG_PANDANG",
|
|
2166
|
+
AsiaUlaanbaatar = "ASIA___ULAANBAATAR",
|
|
2167
|
+
AsiaUlanBator = "ASIA___ULAN_BATOR",
|
|
2168
|
+
AsiaUrumqi = "ASIA___URUMQI",
|
|
2169
|
+
AsiaUstNera = "ASIA___UST_NERA",
|
|
2170
|
+
AsiaVientiane = "ASIA___VIENTIANE",
|
|
2171
|
+
AsiaVladivostok = "ASIA___VLADIVOSTOK",
|
|
2172
|
+
AsiaYakutsk = "ASIA___YAKUTSK",
|
|
2173
|
+
AsiaYangon = "ASIA___YANGON",
|
|
2174
|
+
AsiaYekaterinburg = "ASIA___YEKATERINBURG",
|
|
2175
|
+
AsiaYerevan = "ASIA___YEREVAN",
|
|
2176
|
+
AtlanticAzores = "ATLANTIC___AZORES",
|
|
2177
|
+
AtlanticBermuda = "ATLANTIC___BERMUDA",
|
|
2178
|
+
AtlanticCanary = "ATLANTIC___CANARY",
|
|
2179
|
+
AtlanticCapeVerde = "ATLANTIC___CAPE_VERDE",
|
|
2180
|
+
AtlanticFaeroe = "ATLANTIC___FAEROE",
|
|
2181
|
+
AtlanticFaroe = "ATLANTIC___FAROE",
|
|
2182
|
+
AtlanticJanMayen = "ATLANTIC___JAN_MAYEN",
|
|
2183
|
+
AtlanticMadeira = "ATLANTIC___MADEIRA",
|
|
2184
|
+
AtlanticReykjavik = "ATLANTIC___REYKJAVIK",
|
|
2185
|
+
AtlanticSouthGeorgia = "ATLANTIC___SOUTH_GEORGIA",
|
|
2186
|
+
AtlanticStanley = "ATLANTIC___STANLEY",
|
|
2187
|
+
AtlanticStHelena = "ATLANTIC___ST_HELENA",
|
|
2188
|
+
AustraliaAct = "AUSTRALIA___ACT",
|
|
2189
|
+
AustraliaAdelaide = "AUSTRALIA___ADELAIDE",
|
|
2190
|
+
AustraliaBrisbane = "AUSTRALIA___BRISBANE",
|
|
2191
|
+
AustraliaBrokenHill = "AUSTRALIA___BROKEN_HILL",
|
|
2192
|
+
AustraliaCanberra = "AUSTRALIA___CANBERRA",
|
|
2193
|
+
AustraliaCurrie = "AUSTRALIA___CURRIE",
|
|
2194
|
+
AustraliaDarwin = "AUSTRALIA___DARWIN",
|
|
2195
|
+
AustraliaEucla = "AUSTRALIA___EUCLA",
|
|
2196
|
+
AustraliaHobart = "AUSTRALIA___HOBART",
|
|
2197
|
+
AustraliaLhi = "AUSTRALIA___LHI",
|
|
2198
|
+
AustraliaLindeman = "AUSTRALIA___LINDEMAN",
|
|
2199
|
+
AustraliaLordHowe = "AUSTRALIA___LORD_HOWE",
|
|
2200
|
+
AustraliaMelbourne = "AUSTRALIA___MELBOURNE",
|
|
2201
|
+
AustraliaNorth = "AUSTRALIA___NORTH",
|
|
2202
|
+
AustraliaNsw = "AUSTRALIA___NSW",
|
|
2203
|
+
AustraliaPerth = "AUSTRALIA___PERTH",
|
|
2204
|
+
AustraliaQueensland = "AUSTRALIA___QUEENSLAND",
|
|
2205
|
+
AustraliaSouth = "AUSTRALIA___SOUTH",
|
|
2206
|
+
AustraliaSydney = "AUSTRALIA___SYDNEY",
|
|
2207
|
+
AustraliaTasmania = "AUSTRALIA___TASMANIA",
|
|
2208
|
+
AustraliaVictoria = "AUSTRALIA___VICTORIA",
|
|
2209
|
+
AustraliaWest = "AUSTRALIA___WEST",
|
|
2210
|
+
AustraliaYancowinna = "AUSTRALIA___YANCOWINNA",
|
|
2211
|
+
BrazilAcre = "BRAZIL___ACRE",
|
|
2212
|
+
BrazilDenoronha = "BRAZIL___DENORONHA",
|
|
2213
|
+
BrazilEast = "BRAZIL___EAST",
|
|
2214
|
+
BrazilWest = "BRAZIL___WEST",
|
|
2215
|
+
CanadaAtlantic = "CANADA___ATLANTIC",
|
|
2216
|
+
CanadaCentral = "CANADA___CENTRAL",
|
|
2217
|
+
CanadaEastern = "CANADA___EASTERN",
|
|
2218
|
+
CanadaMountain = "CANADA___MOUNTAIN",
|
|
2219
|
+
CanadaNewfoundland = "CANADA___NEWFOUNDLAND",
|
|
2220
|
+
CanadaPacific = "CANADA___PACIFIC",
|
|
2221
|
+
CanadaSaskatchewan = "CANADA___SASKATCHEWAN",
|
|
2222
|
+
CanadaYukon = "CANADA___YUKON",
|
|
2223
|
+
Cet = "CET",
|
|
2224
|
+
ChileContinental = "CHILE___CONTINENTAL",
|
|
2225
|
+
ChileEasterisland = "CHILE___EASTERISLAND",
|
|
2226
|
+
Cst6Cdt = "CST6CDT",
|
|
2227
|
+
Cuba = "CUBA",
|
|
2228
|
+
Eet = "EET",
|
|
2229
|
+
Egypt = "EGYPT",
|
|
2230
|
+
Eire = "EIRE",
|
|
2231
|
+
Est = "EST",
|
|
2232
|
+
Est5Edt = "EST5EDT",
|
|
2233
|
+
EtcGmt = "ETC___GMT",
|
|
2234
|
+
EtcGmt0 = "ETC___GMT0",
|
|
2235
|
+
EtcGmt1 = "ETC___GMT1",
|
|
2236
|
+
EtcGmt2 = "ETC___GMT2",
|
|
2237
|
+
EtcGmt3 = "ETC___GMT3",
|
|
2238
|
+
EtcGmt4 = "ETC___GMT4",
|
|
2239
|
+
EtcGmt5 = "ETC___GMT5",
|
|
2240
|
+
EtcGmt6 = "ETC___GMT6",
|
|
2241
|
+
EtcGmt7 = "ETC___GMT7",
|
|
2242
|
+
EtcGmt8 = "ETC___GMT8",
|
|
2243
|
+
EtcGmt9 = "ETC___GMT9",
|
|
2244
|
+
EtcGmt10 = "ETC___GMT10",
|
|
2245
|
+
EtcGmt11 = "ETC___GMT11",
|
|
2246
|
+
EtcGmt12 = "ETC___GMT12",
|
|
2247
|
+
EtcGmt_0 = "ETC___GMT_0",
|
|
2248
|
+
EtcGmt_1 = "ETC___GMT_1",
|
|
2249
|
+
EtcGmt_2 = "ETC___GMT_2",
|
|
2250
|
+
EtcGmt_3 = "ETC___GMT_3",
|
|
2251
|
+
EtcGmt_4 = "ETC___GMT_4",
|
|
2252
|
+
EtcGmt_5 = "ETC___GMT_5",
|
|
2253
|
+
EtcGmt_6 = "ETC___GMT_6",
|
|
2254
|
+
EtcGmt_7 = "ETC___GMT_7",
|
|
2255
|
+
EtcGmt_8 = "ETC___GMT_8",
|
|
2256
|
+
EtcGmt_9 = "ETC___GMT_9",
|
|
2257
|
+
EtcGmt_10 = "ETC___GMT_10",
|
|
2258
|
+
EtcGmt_11 = "ETC___GMT_11",
|
|
2259
|
+
EtcGmt_12 = "ETC___GMT_12",
|
|
2260
|
+
EtcGmt_13 = "ETC___GMT_13",
|
|
2261
|
+
EtcGmt_14 = "ETC___GMT_14",
|
|
2262
|
+
EtcGreenwich = "ETC___GREENWICH",
|
|
2263
|
+
EtcUct = "ETC___UCT",
|
|
2264
|
+
EtcUniversal = "ETC___UNIVERSAL",
|
|
2265
|
+
EtcUtc = "ETC___UTC",
|
|
2266
|
+
EtcZulu = "ETC___ZULU",
|
|
2267
|
+
EuropeAmsterdam = "EUROPE___AMSTERDAM",
|
|
2268
|
+
EuropeAndorra = "EUROPE___ANDORRA",
|
|
2269
|
+
EuropeAstrakhan = "EUROPE___ASTRAKHAN",
|
|
2270
|
+
EuropeAthens = "EUROPE___ATHENS",
|
|
2271
|
+
EuropeBelfast = "EUROPE___BELFAST",
|
|
2272
|
+
EuropeBelgrade = "EUROPE___BELGRADE",
|
|
2273
|
+
EuropeBerlin = "EUROPE___BERLIN",
|
|
2274
|
+
EuropeBratislava = "EUROPE___BRATISLAVA",
|
|
2275
|
+
EuropeBrussels = "EUROPE___BRUSSELS",
|
|
2276
|
+
EuropeBucharest = "EUROPE___BUCHAREST",
|
|
2277
|
+
EuropeBudapest = "EUROPE___BUDAPEST",
|
|
2278
|
+
EuropeBusingen = "EUROPE___BUSINGEN",
|
|
2279
|
+
EuropeChisinau = "EUROPE___CHISINAU",
|
|
2280
|
+
EuropeCopenhagen = "EUROPE___COPENHAGEN",
|
|
2281
|
+
EuropeDublin = "EUROPE___DUBLIN",
|
|
2282
|
+
EuropeGibraltar = "EUROPE___GIBRALTAR",
|
|
2283
|
+
EuropeGuernsey = "EUROPE___GUERNSEY",
|
|
2284
|
+
EuropeHelsinki = "EUROPE___HELSINKI",
|
|
2285
|
+
EuropeIsleOfMan = "EUROPE___ISLE_OF_MAN",
|
|
2286
|
+
EuropeIstanbul = "EUROPE___ISTANBUL",
|
|
2287
|
+
EuropeJersey = "EUROPE___JERSEY",
|
|
2288
|
+
EuropeKaliningrad = "EUROPE___KALININGRAD",
|
|
2289
|
+
EuropeKiev = "EUROPE___KIEV",
|
|
2290
|
+
EuropeKirov = "EUROPE___KIROV",
|
|
2291
|
+
EuropeLisbon = "EUROPE___LISBON",
|
|
2292
|
+
EuropeLjubljana = "EUROPE___LJUBLJANA",
|
|
2293
|
+
EuropeLondon = "EUROPE___LONDON",
|
|
2294
|
+
EuropeLuxembourg = "EUROPE___LUXEMBOURG",
|
|
2295
|
+
EuropeMadrid = "EUROPE___MADRID",
|
|
2296
|
+
EuropeMalta = "EUROPE___MALTA",
|
|
2297
|
+
EuropeMariehamn = "EUROPE___MARIEHAMN",
|
|
2298
|
+
EuropeMinsk = "EUROPE___MINSK",
|
|
2299
|
+
EuropeMonaco = "EUROPE___MONACO",
|
|
2300
|
+
EuropeMoscow = "EUROPE___MOSCOW",
|
|
2301
|
+
EuropeNicosia = "EUROPE___NICOSIA",
|
|
2302
|
+
EuropeOslo = "EUROPE___OSLO",
|
|
2303
|
+
EuropeParis = "EUROPE___PARIS",
|
|
2304
|
+
EuropePodgorica = "EUROPE___PODGORICA",
|
|
2305
|
+
EuropePrague = "EUROPE___PRAGUE",
|
|
2306
|
+
EuropeRiga = "EUROPE___RIGA",
|
|
2307
|
+
EuropeRome = "EUROPE___ROME",
|
|
2308
|
+
EuropeSamara = "EUROPE___SAMARA",
|
|
2309
|
+
EuropeSanMarino = "EUROPE___SAN_MARINO",
|
|
2310
|
+
EuropeSarajevo = "EUROPE___SARAJEVO",
|
|
2311
|
+
EuropeSaratov = "EUROPE___SARATOV",
|
|
2312
|
+
EuropeSimferopol = "EUROPE___SIMFEROPOL",
|
|
2313
|
+
EuropeSkopje = "EUROPE___SKOPJE",
|
|
2314
|
+
EuropeSofia = "EUROPE___SOFIA",
|
|
2315
|
+
EuropeStockholm = "EUROPE___STOCKHOLM",
|
|
2316
|
+
EuropeTallinn = "EUROPE___TALLINN",
|
|
2317
|
+
EuropeTirane = "EUROPE___TIRANE",
|
|
2318
|
+
EuropeTiraspol = "EUROPE___TIRASPOL",
|
|
2319
|
+
EuropeUlyanovsk = "EUROPE___ULYANOVSK",
|
|
2320
|
+
EuropeUzhgorod = "EUROPE___UZHGOROD",
|
|
2321
|
+
EuropeVaduz = "EUROPE___VADUZ",
|
|
2322
|
+
EuropeVatican = "EUROPE___VATICAN",
|
|
2323
|
+
EuropeVienna = "EUROPE___VIENNA",
|
|
2324
|
+
EuropeVilnius = "EUROPE___VILNIUS",
|
|
2325
|
+
EuropeVolgograd = "EUROPE___VOLGOGRAD",
|
|
2326
|
+
EuropeWarsaw = "EUROPE___WARSAW",
|
|
2327
|
+
EuropeZagreb = "EUROPE___ZAGREB",
|
|
2328
|
+
EuropeZaporozhye = "EUROPE___ZAPOROZHYE",
|
|
2329
|
+
EuropeZurich = "EUROPE___ZURICH",
|
|
2330
|
+
Factory = "FACTORY",
|
|
2331
|
+
Gb = "GB",
|
|
2332
|
+
GbEire = "GB_EIRE",
|
|
2333
|
+
Gmt = "GMT",
|
|
2334
|
+
Gmt0 = "GMT0",
|
|
2335
|
+
Gmt_0 = "GMT_0",
|
|
2336
|
+
Greenwich = "GREENWICH",
|
|
2337
|
+
Hongkong = "HONGKONG",
|
|
2338
|
+
Hst = "HST",
|
|
2339
|
+
Iceland = "ICELAND",
|
|
2340
|
+
IndianAntananarivo = "INDIAN___ANTANANARIVO",
|
|
2341
|
+
IndianChagos = "INDIAN___CHAGOS",
|
|
2342
|
+
IndianChristmas = "INDIAN___CHRISTMAS",
|
|
2343
|
+
IndianCocos = "INDIAN___COCOS",
|
|
2344
|
+
IndianComoro = "INDIAN___COMORO",
|
|
2345
|
+
IndianKerguelen = "INDIAN___KERGUELEN",
|
|
2346
|
+
IndianMahe = "INDIAN___MAHE",
|
|
2347
|
+
IndianMaldives = "INDIAN___MALDIVES",
|
|
2348
|
+
IndianMauritius = "INDIAN___MAURITIUS",
|
|
2349
|
+
IndianMayotte = "INDIAN___MAYOTTE",
|
|
2350
|
+
IndianReunion = "INDIAN___REUNION",
|
|
2351
|
+
Iran = "IRAN",
|
|
2352
|
+
Israel = "ISRAEL",
|
|
2353
|
+
Jamaica = "JAMAICA",
|
|
2354
|
+
Japan = "JAPAN",
|
|
2355
|
+
Kwajalein = "KWAJALEIN",
|
|
2356
|
+
Libya = "LIBYA",
|
|
2357
|
+
Met = "MET",
|
|
2358
|
+
MexicoBajanorte = "MEXICO___BAJANORTE",
|
|
2359
|
+
MexicoBajasur = "MEXICO___BAJASUR",
|
|
2360
|
+
MexicoGeneral = "MEXICO___GENERAL",
|
|
2361
|
+
Mst = "MST",
|
|
2362
|
+
Mst7Mdt = "MST7MDT",
|
|
2363
|
+
Navajo = "NAVAJO",
|
|
2364
|
+
Nz = "NZ",
|
|
2365
|
+
NzChat = "NZ_CHAT",
|
|
2366
|
+
PacificApia = "PACIFIC___APIA",
|
|
2367
|
+
PacificAuckland = "PACIFIC___AUCKLAND",
|
|
2368
|
+
PacificBougainville = "PACIFIC___BOUGAINVILLE",
|
|
2369
|
+
PacificChatham = "PACIFIC___CHATHAM",
|
|
2370
|
+
PacificChuuk = "PACIFIC___CHUUK",
|
|
2371
|
+
PacificEaster = "PACIFIC___EASTER",
|
|
2372
|
+
PacificEfate = "PACIFIC___EFATE",
|
|
2373
|
+
PacificEnderbury = "PACIFIC___ENDERBURY",
|
|
2374
|
+
PacificFakaofo = "PACIFIC___FAKAOFO",
|
|
2375
|
+
PacificFiji = "PACIFIC___FIJI",
|
|
2376
|
+
PacificFunafuti = "PACIFIC___FUNAFUTI",
|
|
2377
|
+
PacificGalapagos = "PACIFIC___GALAPAGOS",
|
|
2378
|
+
PacificGambier = "PACIFIC___GAMBIER",
|
|
2379
|
+
PacificGuadalcanal = "PACIFIC___GUADALCANAL",
|
|
2380
|
+
PacificGuam = "PACIFIC___GUAM",
|
|
2381
|
+
PacificHonolulu = "PACIFIC___HONOLULU",
|
|
2382
|
+
PacificJohnston = "PACIFIC___JOHNSTON",
|
|
2383
|
+
PacificKanton = "PACIFIC___KANTON",
|
|
2384
|
+
PacificKiritimati = "PACIFIC___KIRITIMATI",
|
|
2385
|
+
PacificKosrae = "PACIFIC___KOSRAE",
|
|
2386
|
+
PacificKwajalein = "PACIFIC___KWAJALEIN",
|
|
2387
|
+
PacificMajuro = "PACIFIC___MAJURO",
|
|
2388
|
+
PacificMarquesas = "PACIFIC___MARQUESAS",
|
|
2389
|
+
PacificMidway = "PACIFIC___MIDWAY",
|
|
2390
|
+
PacificNauru = "PACIFIC___NAURU",
|
|
2391
|
+
PacificNiue = "PACIFIC___NIUE",
|
|
2392
|
+
PacificNorfolk = "PACIFIC___NORFOLK",
|
|
2393
|
+
PacificNoumea = "PACIFIC___NOUMEA",
|
|
2394
|
+
PacificPagoPago = "PACIFIC___PAGO_PAGO",
|
|
2395
|
+
PacificPalau = "PACIFIC___PALAU",
|
|
2396
|
+
PacificPitcairn = "PACIFIC___PITCAIRN",
|
|
2397
|
+
PacificPohnpei = "PACIFIC___POHNPEI",
|
|
2398
|
+
PacificPonape = "PACIFIC___PONAPE",
|
|
2399
|
+
PacificPortMoresby = "PACIFIC___PORT_MORESBY",
|
|
2400
|
+
PacificRarotonga = "PACIFIC___RAROTONGA",
|
|
2401
|
+
PacificSaipan = "PACIFIC___SAIPAN",
|
|
2402
|
+
PacificSamoa = "PACIFIC___SAMOA",
|
|
2403
|
+
PacificTahiti = "PACIFIC___TAHITI",
|
|
2404
|
+
PacificTarawa = "PACIFIC___TARAWA",
|
|
2405
|
+
PacificTongatapu = "PACIFIC___TONGATAPU",
|
|
2406
|
+
PacificTruk = "PACIFIC___TRUK",
|
|
2407
|
+
PacificWake = "PACIFIC___WAKE",
|
|
2408
|
+
PacificWallis = "PACIFIC___WALLIS",
|
|
2409
|
+
PacificYap = "PACIFIC___YAP",
|
|
2410
|
+
Poland = "POLAND",
|
|
2411
|
+
Portugal = "PORTUGAL",
|
|
2412
|
+
Prc = "PRC",
|
|
2413
|
+
Pst8Pdt = "PST8PDT",
|
|
2414
|
+
Roc = "ROC",
|
|
2415
|
+
Rok = "ROK",
|
|
2416
|
+
Singapore = "SINGAPORE",
|
|
2417
|
+
Turkey = "TURKEY",
|
|
2418
|
+
Uct = "UCT",
|
|
2419
|
+
Universal = "UNIVERSAL",
|
|
2420
|
+
UsAlaska = "US___ALASKA",
|
|
2421
|
+
UsAleutian = "US___ALEUTIAN",
|
|
2422
|
+
UsArizona = "US___ARIZONA",
|
|
2423
|
+
UsCentral = "US___CENTRAL",
|
|
2424
|
+
UsEastern = "US___EASTERN",
|
|
2425
|
+
UsEastIndiana = "US___EAST_INDIANA",
|
|
2426
|
+
UsHawaii = "US___HAWAII",
|
|
2427
|
+
UsIndianaStarke = "US___INDIANA_STARKE",
|
|
2428
|
+
UsMichigan = "US___MICHIGAN",
|
|
2429
|
+
UsMountain = "US___MOUNTAIN",
|
|
2430
|
+
UsPacific = "US___PACIFIC",
|
|
2431
|
+
UsSamoa = "US___SAMOA",
|
|
2432
|
+
Utc = "UTC",
|
|
2433
|
+
Wet = "WET",
|
|
2434
|
+
WSu = "W_SU",
|
|
2435
|
+
Zulu = "ZULU"
|
|
2436
|
+
}
|
|
2437
|
+
export type TimeZoneEnumFilter = {
|
|
2438
|
+
equals?: InputMaybe<TimeZoneEnum>;
|
|
2439
|
+
in?: InputMaybe<Array<TimeZoneEnum>>;
|
|
2440
|
+
not?: InputMaybe<TimeZoneEnum>;
|
|
2441
|
+
notIn?: InputMaybe<Array<TimeZoneEnum>>;
|
|
2442
|
+
};
|
|
2443
|
+
export declare enum TimeZoneFieldsEnum {
|
|
2444
|
+
AbbreviationDts = "abbreviationDts",
|
|
2445
|
+
AbbreviationStd = "abbreviationStd",
|
|
2446
|
+
Link = "link",
|
|
2447
|
+
Name = "name",
|
|
2448
|
+
Type = "type",
|
|
2449
|
+
UtcOffsetDst = "utcOffsetDst",
|
|
2450
|
+
UtcOffsetStd = "utcOffsetStd"
|
|
2451
|
+
}
|
|
2452
|
+
export type TimeZoneFilter = {
|
|
2453
|
+
abbreviationDts?: InputMaybe<StringFilter>;
|
|
2454
|
+
abbreviationStd?: InputMaybe<StringFilter>;
|
|
2455
|
+
countries?: InputMaybe<CountryCodeEnumListFilter>;
|
|
2456
|
+
link?: InputMaybe<TimeZoneEnumFilter>;
|
|
2457
|
+
name?: InputMaybe<StringFilter>;
|
|
2458
|
+
timeZone?: InputMaybe<TimeZoneEnumFilter>;
|
|
2459
|
+
type?: InputMaybe<TimeZoneTypeEnumFilter>;
|
|
2460
|
+
utcOffsetDst?: InputMaybe<StringFilter>;
|
|
2461
|
+
utcOffsetStd?: InputMaybe<StringFilter>;
|
|
2462
|
+
};
|
|
2463
|
+
export type TimeZoneSort = {
|
|
2464
|
+
field: TimeZoneFieldsEnum;
|
|
2465
|
+
order?: InputMaybe<SortOrderEnum>;
|
|
2466
|
+
};
|
|
2467
|
+
export declare enum TimeZoneTypeEnum {
|
|
2468
|
+
Canonical = "CANONICAL",
|
|
2469
|
+
Link = "LINK"
|
|
2470
|
+
}
|
|
2471
|
+
export type TimeZoneTypeEnumFilter = {
|
|
2472
|
+
equals?: InputMaybe<TimeZoneTypeEnum>;
|
|
2473
|
+
in?: InputMaybe<Array<TimeZoneTypeEnum>>;
|
|
2474
|
+
not?: InputMaybe<TimeZoneTypeEnum>;
|
|
2475
|
+
notIn?: InputMaybe<Array<TimeZoneTypeEnum>>;
|
|
2476
|
+
};
|
|
1162
2477
|
export declare enum UnitType {
|
|
1163
2478
|
Count = "COUNT",
|
|
1164
2479
|
Length = "LENGTH",
|
|
1165
2480
|
Volume = "VOLUME",
|
|
1166
2481
|
Weight = "WEIGHT"
|
|
1167
2482
|
}
|
|
2483
|
+
export type UpdateCustomerAddressInput = {
|
|
2484
|
+
address?: InputMaybe<Scalars['String']['input']>;
|
|
2485
|
+
address2?: InputMaybe<Scalars['String']['input']>;
|
|
2486
|
+
city?: InputMaybe<Scalars['String']['input']>;
|
|
2487
|
+
countryCode?: InputMaybe<CountryCodeEnum>;
|
|
2488
|
+
default?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2489
|
+
geometry?: InputMaybe<GeometryInput>;
|
|
2490
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
2491
|
+
postalCode?: InputMaybe<Scalars['String']['input']>;
|
|
2492
|
+
regionCode?: InputMaybe<RegionCodeEnum>;
|
|
2493
|
+
regionName?: InputMaybe<Scalars['String']['input']>;
|
|
2494
|
+
};
|
|
1168
2495
|
export type UpdateCustomerInput = {
|
|
2496
|
+
addresses?: InputMaybe<Array<CreateCustomerAddressInput>>;
|
|
2497
|
+
customFields?: InputMaybe<Scalars['ID']['input']>;
|
|
1169
2498
|
fullName?: InputMaybe<Scalars['String']['input']>;
|
|
2499
|
+
imageId?: InputMaybe<Scalars['ID']['input']>;
|
|
2500
|
+
tags?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2501
|
+
telephoneNumbers?: InputMaybe<Array<CreateCustomerTelephoneNumberInput>>;
|
|
2502
|
+
username?: InputMaybe<Scalars['String']['input']>;
|
|
2503
|
+
};
|
|
2504
|
+
export type UpdateCustomerTelephoneNumberInput = {
|
|
2505
|
+
targets?: InputMaybe<Array<TelephoneNumberTarget>>;
|
|
2506
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
1170
2507
|
};
|
|
1171
2508
|
export type UpdateOrderInput = {
|
|
1172
2509
|
total?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -1651,10 +2988,132 @@ export type PaginatedColorsQuery = {
|
|
|
1651
2988
|
};
|
|
1652
2989
|
} | null;
|
|
1653
2990
|
};
|
|
2991
|
+
export type CustomFieldFragmentFragment = {
|
|
2992
|
+
__typename?: 'CustomField';
|
|
2993
|
+
id: string;
|
|
2994
|
+
enabled: boolean;
|
|
2995
|
+
exportName?: string | null;
|
|
2996
|
+
name: string;
|
|
2997
|
+
required: boolean;
|
|
2998
|
+
target: CustomFieldTarget;
|
|
2999
|
+
type: CustomFieldType;
|
|
3000
|
+
createdAt: any;
|
|
3001
|
+
updatedAt: any;
|
|
3002
|
+
};
|
|
3003
|
+
export type InfiniteCustomFieldsQueryVariables = Exact<{
|
|
3004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3005
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
3006
|
+
filter?: InputMaybe<CustomFieldFilter>;
|
|
3007
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3008
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3009
|
+
sort?: InputMaybe<Array<CustomFieldSort> | CustomFieldSort>;
|
|
3010
|
+
}>;
|
|
3011
|
+
export type InfiniteCustomFieldsQuery = {
|
|
3012
|
+
__typename?: 'Query';
|
|
3013
|
+
infiniteCustomFields: {
|
|
3014
|
+
__typename?: 'InfiniteCustomFieldsConnection';
|
|
3015
|
+
edges: Array<{
|
|
3016
|
+
__typename?: 'InfiniteCustomFieldEdge';
|
|
3017
|
+
cursor: string;
|
|
3018
|
+
node: {
|
|
3019
|
+
__typename?: 'CustomField';
|
|
3020
|
+
id: string;
|
|
3021
|
+
enabled: boolean;
|
|
3022
|
+
exportName?: string | null;
|
|
3023
|
+
name: string;
|
|
3024
|
+
required: boolean;
|
|
3025
|
+
target: CustomFieldTarget;
|
|
3026
|
+
type: CustomFieldType;
|
|
3027
|
+
createdAt: any;
|
|
3028
|
+
updatedAt: any;
|
|
3029
|
+
};
|
|
3030
|
+
}>;
|
|
3031
|
+
pageInfo: {
|
|
3032
|
+
__typename?: 'InfinitePageInfo';
|
|
3033
|
+
endCursor?: string | null;
|
|
3034
|
+
hasNextPage: boolean;
|
|
3035
|
+
hasPreviousPage: boolean;
|
|
3036
|
+
startCursor?: string | null;
|
|
3037
|
+
};
|
|
3038
|
+
};
|
|
3039
|
+
};
|
|
3040
|
+
export type PaginatedCustomFieldsQueryVariables = Exact<{
|
|
3041
|
+
filter?: InputMaybe<CustomFieldFilter>;
|
|
3042
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3043
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3044
|
+
sort?: InputMaybe<Array<CustomFieldSort> | CustomFieldSort>;
|
|
3045
|
+
withTelephoneNumbers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3046
|
+
}>;
|
|
3047
|
+
export type PaginatedCustomFieldsQuery = {
|
|
3048
|
+
__typename?: 'Query';
|
|
3049
|
+
paginatedCustomFields?: {
|
|
3050
|
+
__typename?: 'PaginatedCustomFieldsConnection';
|
|
3051
|
+
edges: Array<{
|
|
3052
|
+
__typename?: 'PaginatedCustomFieldEdge';
|
|
3053
|
+
cursor: string;
|
|
3054
|
+
node: {
|
|
3055
|
+
__typename?: 'CustomField';
|
|
3056
|
+
id: string;
|
|
3057
|
+
enabled: boolean;
|
|
3058
|
+
exportName?: string | null;
|
|
3059
|
+
name: string;
|
|
3060
|
+
required: boolean;
|
|
3061
|
+
target: CustomFieldTarget;
|
|
3062
|
+
type: CustomFieldType;
|
|
3063
|
+
createdAt: any;
|
|
3064
|
+
updatedAt: any;
|
|
3065
|
+
};
|
|
3066
|
+
}>;
|
|
3067
|
+
pageInfo: {
|
|
3068
|
+
__typename?: 'PaginatedPageInfo';
|
|
3069
|
+
currentPage: number;
|
|
3070
|
+
hasNextPage: boolean;
|
|
3071
|
+
hasPreviousPage: boolean;
|
|
3072
|
+
totalEdges: number;
|
|
3073
|
+
totalPages: number;
|
|
3074
|
+
};
|
|
3075
|
+
} | null;
|
|
3076
|
+
};
|
|
3077
|
+
export type CustomFieldQueryVariables = Exact<{
|
|
3078
|
+
id: Scalars['ID']['input'];
|
|
3079
|
+
}>;
|
|
3080
|
+
export type CustomFieldQuery = {
|
|
3081
|
+
__typename?: 'Query';
|
|
3082
|
+
customField?: Array<{
|
|
3083
|
+
__typename?: 'CustomField';
|
|
3084
|
+
id: string;
|
|
3085
|
+
enabled: boolean;
|
|
3086
|
+
exportName?: string | null;
|
|
3087
|
+
name: string;
|
|
3088
|
+
required: boolean;
|
|
3089
|
+
target: CustomFieldTarget;
|
|
3090
|
+
type: CustomFieldType;
|
|
3091
|
+
createdAt: any;
|
|
3092
|
+
updatedAt: any;
|
|
3093
|
+
}> | null;
|
|
3094
|
+
};
|
|
1654
3095
|
export type CustomerFragmentFragment = {
|
|
1655
3096
|
__typename?: 'Customer';
|
|
1656
3097
|
id: string;
|
|
1657
3098
|
fullName: string;
|
|
3099
|
+
username: string;
|
|
3100
|
+
active: boolean;
|
|
3101
|
+
createdAt: any;
|
|
3102
|
+
updatedAt: any;
|
|
3103
|
+
};
|
|
3104
|
+
export type CustomerAddressFragmentFragment = {
|
|
3105
|
+
__typename?: 'CustomerAddress';
|
|
3106
|
+
id: string;
|
|
3107
|
+
address?: string | null;
|
|
3108
|
+
address2?: string | null;
|
|
3109
|
+
createdAt: any;
|
|
3110
|
+
updatedAt: any;
|
|
3111
|
+
};
|
|
3112
|
+
export type CustomerTelephoneNumberFragmentFragment = {
|
|
3113
|
+
__typename?: 'CustomerTelephoneNumber';
|
|
3114
|
+
id: string;
|
|
3115
|
+
number?: string | null;
|
|
3116
|
+
targets?: Array<TelephoneNumberTarget> | null;
|
|
1658
3117
|
createdAt: any;
|
|
1659
3118
|
updatedAt: any;
|
|
1660
3119
|
};
|
|
@@ -1667,6 +3126,8 @@ export type CreateCustomerMutation = {
|
|
|
1667
3126
|
__typename?: 'Customer';
|
|
1668
3127
|
id: string;
|
|
1669
3128
|
fullName: string;
|
|
3129
|
+
username: string;
|
|
3130
|
+
active: boolean;
|
|
1670
3131
|
createdAt: any;
|
|
1671
3132
|
updatedAt: any;
|
|
1672
3133
|
};
|
|
@@ -1681,6 +3142,8 @@ export type UpdateCustomerMutation = {
|
|
|
1681
3142
|
__typename?: 'Customer';
|
|
1682
3143
|
id: string;
|
|
1683
3144
|
fullName: string;
|
|
3145
|
+
username: string;
|
|
3146
|
+
active: boolean;
|
|
1684
3147
|
createdAt: any;
|
|
1685
3148
|
updatedAt: any;
|
|
1686
3149
|
};
|
|
@@ -1692,6 +3155,9 @@ export type InfiniteCustomersQueryVariables = Exact<{
|
|
|
1692
3155
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
1693
3156
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
1694
3157
|
sort?: InputMaybe<Array<CustomerSort> | CustomerSort>;
|
|
3158
|
+
withTelephoneNumbers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3159
|
+
withAddresses?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3160
|
+
withImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1695
3161
|
}>;
|
|
1696
3162
|
export type InfiniteCustomersQuery = {
|
|
1697
3163
|
__typename?: 'Query';
|
|
@@ -1704,8 +3170,42 @@ export type InfiniteCustomersQuery = {
|
|
|
1704
3170
|
__typename?: 'Customer';
|
|
1705
3171
|
id: string;
|
|
1706
3172
|
fullName: string;
|
|
3173
|
+
username: string;
|
|
3174
|
+
active: boolean;
|
|
1707
3175
|
createdAt: any;
|
|
1708
3176
|
updatedAt: any;
|
|
3177
|
+
addresses?: Array<{
|
|
3178
|
+
__typename?: 'CustomerAddress';
|
|
3179
|
+
id: string;
|
|
3180
|
+
address?: string | null;
|
|
3181
|
+
address2?: string | null;
|
|
3182
|
+
createdAt: any;
|
|
3183
|
+
updatedAt: any;
|
|
3184
|
+
}> | null;
|
|
3185
|
+
telephoneNumbers?: Array<{
|
|
3186
|
+
__typename?: 'CustomerTelephoneNumber';
|
|
3187
|
+
id: string;
|
|
3188
|
+
number?: string | null;
|
|
3189
|
+
targets?: Array<TelephoneNumberTarget> | null;
|
|
3190
|
+
createdAt: any;
|
|
3191
|
+
updatedAt: any;
|
|
3192
|
+
}> | null;
|
|
3193
|
+
image?: {
|
|
3194
|
+
__typename?: 'File';
|
|
3195
|
+
createdAt: any;
|
|
3196
|
+
id: string;
|
|
3197
|
+
name: string;
|
|
3198
|
+
size?: number | null;
|
|
3199
|
+
status: FileStatusEnum;
|
|
3200
|
+
type?: string | null;
|
|
3201
|
+
updatedAt: any;
|
|
3202
|
+
url?: string | null;
|
|
3203
|
+
thumbnails: {
|
|
3204
|
+
__typename?: 'FileThumbnails';
|
|
3205
|
+
thumbnail450Url?: string | null;
|
|
3206
|
+
thumbnail900Url?: string | null;
|
|
3207
|
+
};
|
|
3208
|
+
} | null;
|
|
1709
3209
|
};
|
|
1710
3210
|
}>;
|
|
1711
3211
|
pageInfo: {
|
|
@@ -1722,6 +3222,9 @@ export type PaginatedCustomersQueryVariables = Exact<{
|
|
|
1722
3222
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
1723
3223
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
1724
3224
|
sort?: InputMaybe<Array<CustomerSort> | CustomerSort>;
|
|
3225
|
+
withTelephoneNumbers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3226
|
+
withAddresses?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3227
|
+
withImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1725
3228
|
}>;
|
|
1726
3229
|
export type PaginatedCustomersQuery = {
|
|
1727
3230
|
__typename?: 'Query';
|
|
@@ -1734,8 +3237,42 @@ export type PaginatedCustomersQuery = {
|
|
|
1734
3237
|
__typename?: 'Customer';
|
|
1735
3238
|
id: string;
|
|
1736
3239
|
fullName: string;
|
|
3240
|
+
username: string;
|
|
3241
|
+
active: boolean;
|
|
1737
3242
|
createdAt: any;
|
|
1738
3243
|
updatedAt: any;
|
|
3244
|
+
addresses?: Array<{
|
|
3245
|
+
__typename?: 'CustomerAddress';
|
|
3246
|
+
id: string;
|
|
3247
|
+
address?: string | null;
|
|
3248
|
+
address2?: string | null;
|
|
3249
|
+
createdAt: any;
|
|
3250
|
+
updatedAt: any;
|
|
3251
|
+
}> | null;
|
|
3252
|
+
telephoneNumbers?: Array<{
|
|
3253
|
+
__typename?: 'CustomerTelephoneNumber';
|
|
3254
|
+
id: string;
|
|
3255
|
+
number?: string | null;
|
|
3256
|
+
targets?: Array<TelephoneNumberTarget> | null;
|
|
3257
|
+
createdAt: any;
|
|
3258
|
+
updatedAt: any;
|
|
3259
|
+
}> | null;
|
|
3260
|
+
image?: {
|
|
3261
|
+
__typename?: 'File';
|
|
3262
|
+
createdAt: any;
|
|
3263
|
+
id: string;
|
|
3264
|
+
name: string;
|
|
3265
|
+
size?: number | null;
|
|
3266
|
+
status: FileStatusEnum;
|
|
3267
|
+
type?: string | null;
|
|
3268
|
+
updatedAt: any;
|
|
3269
|
+
url?: string | null;
|
|
3270
|
+
thumbnails: {
|
|
3271
|
+
__typename?: 'FileThumbnails';
|
|
3272
|
+
thumbnail450Url?: string | null;
|
|
3273
|
+
thumbnail900Url?: string | null;
|
|
3274
|
+
};
|
|
3275
|
+
} | null;
|
|
1739
3276
|
};
|
|
1740
3277
|
}>;
|
|
1741
3278
|
pageInfo: {
|
|
@@ -1748,6 +3285,21 @@ export type PaginatedCustomersQuery = {
|
|
|
1748
3285
|
};
|
|
1749
3286
|
} | null;
|
|
1750
3287
|
};
|
|
3288
|
+
export type CustomerQueryVariables = Exact<{
|
|
3289
|
+
id: Scalars['ID']['input'];
|
|
3290
|
+
}>;
|
|
3291
|
+
export type CustomerQuery = {
|
|
3292
|
+
__typename?: 'Query';
|
|
3293
|
+
customer?: Array<{
|
|
3294
|
+
__typename?: 'Customer';
|
|
3295
|
+
id: string;
|
|
3296
|
+
fullName: string;
|
|
3297
|
+
username: string;
|
|
3298
|
+
active: boolean;
|
|
3299
|
+
createdAt: any;
|
|
3300
|
+
updatedAt: any;
|
|
3301
|
+
}> | null;
|
|
3302
|
+
};
|
|
1751
3303
|
export type FileThumbnailsFieldsFragment = {
|
|
1752
3304
|
__typename?: 'FileThumbnails';
|
|
1753
3305
|
thumbnail450Url?: string | null;
|
|
@@ -2810,11 +4362,33 @@ export type PaginatedSellersQuery = {
|
|
|
2810
4362
|
};
|
|
2811
4363
|
} | null;
|
|
2812
4364
|
};
|
|
4365
|
+
export type SellerQueryVariables = Exact<{
|
|
4366
|
+
id: Scalars['ID']['input'];
|
|
4367
|
+
}>;
|
|
4368
|
+
export type SellerQuery = {
|
|
4369
|
+
__typename?: 'Query';
|
|
4370
|
+
seller?: {
|
|
4371
|
+
__typename?: 'Seller';
|
|
4372
|
+
id: string;
|
|
4373
|
+
name: string;
|
|
4374
|
+
description?: string | null;
|
|
4375
|
+
active: boolean;
|
|
4376
|
+
orderNumber: number;
|
|
4377
|
+
slug: string;
|
|
4378
|
+
rating?: number | null;
|
|
4379
|
+
verified: boolean;
|
|
4380
|
+
createdAt: any;
|
|
4381
|
+
updatedAt: any;
|
|
4382
|
+
} | null;
|
|
4383
|
+
};
|
|
2813
4384
|
export declare const AttributeFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2814
4385
|
export declare const BrandFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2815
4386
|
export declare const CategoryFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2816
4387
|
export declare const ColorFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
4388
|
+
export declare const CustomFieldFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2817
4389
|
export declare const CustomerFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
4390
|
+
export declare const CustomerAddressFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
4391
|
+
export declare const CustomerTelephoneNumberFragmentFragmentDoc: import("graphql").DocumentNode;
|
|
2818
4392
|
export declare const FileThumbnailsFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
2819
4393
|
export declare const FileFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
2820
4394
|
export declare const FileUploadUrlFieldsFragmentDoc: import("graphql").DocumentNode;
|
|
@@ -2834,10 +4408,14 @@ export declare const InfiniteCategoriesDocument: import("graphql").DocumentNode;
|
|
|
2834
4408
|
export declare const PaginatedCategoriesDocument: import("graphql").DocumentNode;
|
|
2835
4409
|
export declare const InfiniteColorsDocument: import("graphql").DocumentNode;
|
|
2836
4410
|
export declare const PaginatedColorsDocument: import("graphql").DocumentNode;
|
|
4411
|
+
export declare const InfiniteCustomFieldsDocument: import("graphql").DocumentNode;
|
|
4412
|
+
export declare const PaginatedCustomFieldsDocument: import("graphql").DocumentNode;
|
|
4413
|
+
export declare const CustomFieldDocument: import("graphql").DocumentNode;
|
|
2837
4414
|
export declare const CreateCustomerDocument: import("graphql").DocumentNode;
|
|
2838
4415
|
export declare const UpdateCustomerDocument: import("graphql").DocumentNode;
|
|
2839
4416
|
export declare const InfiniteCustomersDocument: import("graphql").DocumentNode;
|
|
2840
4417
|
export declare const PaginatedCustomersDocument: import("graphql").DocumentNode;
|
|
4418
|
+
export declare const CustomerDocument: import("graphql").DocumentNode;
|
|
2841
4419
|
export declare const InitiateFileUploadDocument: import("graphql").DocumentNode;
|
|
2842
4420
|
export declare const CompleteFileUploadDocument: import("graphql").DocumentNode;
|
|
2843
4421
|
export declare const FileDocument: import("graphql").DocumentNode;
|
|
@@ -2856,3 +4434,4 @@ export declare const CreateSellerDocument: import("graphql").DocumentNode;
|
|
|
2856
4434
|
export declare const UpdateSellerDocument: import("graphql").DocumentNode;
|
|
2857
4435
|
export declare const InfiniteSellersDocument: import("graphql").DocumentNode;
|
|
2858
4436
|
export declare const PaginatedSellersDocument: import("graphql").DocumentNode;
|
|
4437
|
+
export declare const SellerDocument: import("graphql").DocumentNode;
|