@deenruv/inpost-plugin 1.0.17-dev.20 → 1.0.17-dev.23
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/plugin-server/zeus/const.js +141 -3
- package/dist/plugin-server/zeus/index.d.ts +653 -6
- package/dist/plugin-server/zeus/index.js +29 -1
- package/dist/plugin-ui/zeus/const.js +141 -3
- package/dist/plugin-ui/zeus/index.d.ts +653 -6
- package/dist/plugin-ui/zeus/index.js +28 -0
- package/package.json +8 -8
|
@@ -442,6 +442,23 @@ export type ValueTypes = {
|
|
|
442
442
|
zone?: [{
|
|
443
443
|
id: ValueTypes["ID"] | Variable<any, string>;
|
|
444
444
|
}, ValueTypes["Zone"]];
|
|
445
|
+
getMerchantPlatformSettings?: [{
|
|
446
|
+
platform: string | Variable<any, string>;
|
|
447
|
+
}, ValueTypes["MerchantPlatformSettingsEntity"]];
|
|
448
|
+
getMerchantPlatformInfo?: [{
|
|
449
|
+
platform: string | Variable<any, string>;
|
|
450
|
+
}, ValueTypes["MerchantPlatformInfo"]];
|
|
451
|
+
getMerchantSyncHistory?: [{
|
|
452
|
+
platform: string | Variable<any, string>;
|
|
453
|
+
take?: number | undefined | null | Variable<any, string>;
|
|
454
|
+
}, ValueTypes["MerchantSyncRun"]];
|
|
455
|
+
additionalOrderStates?: ValueTypes["AdditionalOrderState"];
|
|
456
|
+
chartMetric?: [{
|
|
457
|
+
input: ValueTypes["ChartMetricInput"] | Variable<any, string>;
|
|
458
|
+
}, ValueTypes["ChartMetrics"]];
|
|
459
|
+
orderSummaryMetric?: [{
|
|
460
|
+
input: ValueTypes["OrderSummaryMetricInput"] | Variable<any, string>;
|
|
461
|
+
}, ValueTypes["OrderSummaryMetrics"]];
|
|
445
462
|
getInpostConfig?: ValueTypes["InpostConfig"];
|
|
446
463
|
getInpostOrganizations?: [{
|
|
447
464
|
input?: ValueTypes["GetInpostOrganizationsInput"] | undefined | null | Variable<any, string>;
|
|
@@ -968,6 +985,15 @@ export type ValueTypes = {
|
|
|
968
985
|
zoneId: ValueTypes["ID"] | Variable<any, string>;
|
|
969
986
|
memberIds: Array<ValueTypes["ID"]> | Variable<any, string>;
|
|
970
987
|
}, ValueTypes["Zone"]];
|
|
988
|
+
sendAllProductsToMerchantPlatform?: [{
|
|
989
|
+
platform: string | Variable<any, string>;
|
|
990
|
+
}, boolean | `@${string}`];
|
|
991
|
+
saveMerchantPlatformSettings?: [{
|
|
992
|
+
input: ValueTypes["SaveMerchantPlatformSettingInput"] | Variable<any, string>;
|
|
993
|
+
}, ValueTypes["MerchantPlatformSettingsEntity"]];
|
|
994
|
+
removeOrphanItems?: [{
|
|
995
|
+
platform: string | Variable<any, string>;
|
|
996
|
+
}, boolean | `@${string}`];
|
|
971
997
|
setInpostShippingMethodConfig?: [{
|
|
972
998
|
input: ValueTypes["SetInpostShippingMethodConfigInput"] | Variable<any, string>;
|
|
973
999
|
}, boolean | `@${string}`];
|
|
@@ -2272,7 +2298,7 @@ is not in the required state. */
|
|
|
2272
2298
|
options?: ValueTypes["ProductOption"];
|
|
2273
2299
|
facetValues?: ValueTypes["FacetValue"];
|
|
2274
2300
|
translations?: ValueTypes["ProductVariantTranslation"];
|
|
2275
|
-
customFields?:
|
|
2301
|
+
customFields?: ValueTypes["ProductVariantCustomFields"];
|
|
2276
2302
|
__typename?: boolean | `@${string}`;
|
|
2277
2303
|
}>;
|
|
2278
2304
|
["ProductOptionGroupTranslationInput"]: {
|
|
@@ -2345,6 +2371,7 @@ is not in the required state. */
|
|
|
2345
2371
|
take?: number | undefined | null | Variable<any, string>;
|
|
2346
2372
|
};
|
|
2347
2373
|
["ProductListOptions"]: {
|
|
2374
|
+
searchTerm?: string | undefined | null | Variable<any, string>;
|
|
2348
2375
|
/** Skips the first n results, for use in pagination */
|
|
2349
2376
|
skip?: number | undefined | null | Variable<any, string>;
|
|
2350
2377
|
/** Takes n results, for use in pagination */
|
|
@@ -2371,6 +2398,7 @@ is not in the required state. */
|
|
|
2371
2398
|
_or?: Array<ValueTypes["ProductFilterParameter"]> | undefined | null | Variable<any, string>;
|
|
2372
2399
|
};
|
|
2373
2400
|
["ProductVariantListOptions"]: {
|
|
2401
|
+
searchTerm?: string | undefined | null | Variable<any, string>;
|
|
2374
2402
|
/** Skips the first n results, for use in pagination */
|
|
2375
2403
|
skip?: number | undefined | null | Variable<any, string>;
|
|
2376
2404
|
/** Takes n results, for use in pagination */
|
|
@@ -2403,6 +2431,7 @@ is not in the required state. */
|
|
|
2403
2431
|
stockLevel?: ValueTypes["StringOperators"] | undefined | null | Variable<any, string>;
|
|
2404
2432
|
_and?: Array<ValueTypes["ProductVariantFilterParameter"]> | undefined | null | Variable<any, string>;
|
|
2405
2433
|
_or?: Array<ValueTypes["ProductVariantFilterParameter"]> | undefined | null | Variable<any, string>;
|
|
2434
|
+
communicateID?: ValueTypes["StringOperators"] | undefined | null | Variable<any, string>;
|
|
2406
2435
|
};
|
|
2407
2436
|
["ProductTranslationInput"]: {
|
|
2408
2437
|
id?: ValueTypes["ID"] | undefined | null | Variable<any, string>;
|
|
@@ -3315,6 +3344,7 @@ current session. */
|
|
|
3315
3344
|
['...on User']?: Omit<ValueTypes["User"], keyof ValueTypes["Node"]>;
|
|
3316
3345
|
['...on AuthenticationMethod']?: Omit<ValueTypes["AuthenticationMethod"], keyof ValueTypes["Node"]>;
|
|
3317
3346
|
['...on Zone']?: Omit<ValueTypes["Zone"], keyof ValueTypes["Node"]>;
|
|
3347
|
+
['...on MerchantPlatformSettingsEntity']?: Omit<ValueTypes["MerchantPlatformSettingsEntity"], keyof ValueTypes["Node"]>;
|
|
3318
3348
|
__typename?: boolean | `@${string}`;
|
|
3319
3349
|
}>;
|
|
3320
3350
|
["ErrorResult"]: AliasType<{
|
|
@@ -4408,6 +4438,137 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
4408
4438
|
customFields?: boolean | `@${string}`;
|
|
4409
4439
|
__typename?: boolean | `@${string}`;
|
|
4410
4440
|
}>;
|
|
4441
|
+
["MerchantPlatformSetting"]: AliasType<{
|
|
4442
|
+
key?: boolean | `@${string}`;
|
|
4443
|
+
value?: boolean | `@${string}`;
|
|
4444
|
+
__typename?: boolean | `@${string}`;
|
|
4445
|
+
}>;
|
|
4446
|
+
["MerchantPlatformSettingsEntity"]: AliasType<{
|
|
4447
|
+
id?: boolean | `@${string}`;
|
|
4448
|
+
platform?: boolean | `@${string}`;
|
|
4449
|
+
entries?: ValueTypes["MerchantPlatformSetting"];
|
|
4450
|
+
__typename?: boolean | `@${string}`;
|
|
4451
|
+
}>;
|
|
4452
|
+
["MerchantPlatformInfo"]: AliasType<{
|
|
4453
|
+
isValidConnection?: boolean | `@${string}`;
|
|
4454
|
+
productsCount?: boolean | `@${string}`;
|
|
4455
|
+
connectionStatus?: boolean | `@${string}`;
|
|
4456
|
+
dataSourceVerified?: boolean | `@${string}`;
|
|
4457
|
+
checkedAt?: boolean | `@${string}`;
|
|
4458
|
+
latencyMs?: boolean | `@${string}`;
|
|
4459
|
+
disapprovedProductsCount?: boolean | `@${string}`;
|
|
4460
|
+
issuesCount?: boolean | `@${string}`;
|
|
4461
|
+
lastError?: ValueTypes["MerchantPlatformError"];
|
|
4462
|
+
issues?: ValueTypes["MerchantProductIssue"];
|
|
4463
|
+
__typename?: boolean | `@${string}`;
|
|
4464
|
+
}>;
|
|
4465
|
+
["MerchantPlatformError"]: AliasType<{
|
|
4466
|
+
code?: boolean | `@${string}`;
|
|
4467
|
+
message?: boolean | `@${string}`;
|
|
4468
|
+
retryable?: boolean | `@${string}`;
|
|
4469
|
+
__typename?: boolean | `@${string}`;
|
|
4470
|
+
}>;
|
|
4471
|
+
["MerchantProductIssue"]: AliasType<{
|
|
4472
|
+
offerId?: boolean | `@${string}`;
|
|
4473
|
+
code?: boolean | `@${string}`;
|
|
4474
|
+
description?: boolean | `@${string}`;
|
|
4475
|
+
severity?: boolean | `@${string}`;
|
|
4476
|
+
__typename?: boolean | `@${string}`;
|
|
4477
|
+
}>;
|
|
4478
|
+
["MerchantSyncItem"]: AliasType<{
|
|
4479
|
+
id?: boolean | `@${string}`;
|
|
4480
|
+
offerId?: boolean | `@${string}`;
|
|
4481
|
+
operation?: boolean | `@${string}`;
|
|
4482
|
+
status?: boolean | `@${string}`;
|
|
4483
|
+
errorCode?: boolean | `@${string}`;
|
|
4484
|
+
errorMessage?: boolean | `@${string}`;
|
|
4485
|
+
attempts?: boolean | `@${string}`;
|
|
4486
|
+
__typename?: boolean | `@${string}`;
|
|
4487
|
+
}>;
|
|
4488
|
+
["MerchantSyncRun"]: AliasType<{
|
|
4489
|
+
id?: boolean | `@${string}`;
|
|
4490
|
+
createdAt?: boolean | `@${string}`;
|
|
4491
|
+
platform?: boolean | `@${string}`;
|
|
4492
|
+
trigger?: boolean | `@${string}`;
|
|
4493
|
+
status?: boolean | `@${string}`;
|
|
4494
|
+
jobId?: boolean | `@${string}`;
|
|
4495
|
+
total?: boolean | `@${string}`;
|
|
4496
|
+
succeeded?: boolean | `@${string}`;
|
|
4497
|
+
failed?: boolean | `@${string}`;
|
|
4498
|
+
errorSummary?: boolean | `@${string}`;
|
|
4499
|
+
startedAt?: boolean | `@${string}`;
|
|
4500
|
+
finishedAt?: boolean | `@${string}`;
|
|
4501
|
+
items?: ValueTypes["MerchantSyncItem"];
|
|
4502
|
+
__typename?: boolean | `@${string}`;
|
|
4503
|
+
}>;
|
|
4504
|
+
["MerchantPlatformSettingInput"]: {
|
|
4505
|
+
key: string | Variable<any, string>;
|
|
4506
|
+
value: string | Variable<any, string>;
|
|
4507
|
+
};
|
|
4508
|
+
["SaveMerchantPlatformSettingInput"]: {
|
|
4509
|
+
platform: string | Variable<any, string>;
|
|
4510
|
+
entries: Array<ValueTypes["MerchantPlatformSettingInput"]> | Variable<any, string>;
|
|
4511
|
+
};
|
|
4512
|
+
["AdditionalOrderState"]: AliasType<{
|
|
4513
|
+
state?: boolean | `@${string}`;
|
|
4514
|
+
selectedByDefault?: boolean | `@${string}`;
|
|
4515
|
+
__typename?: boolean | `@${string}`;
|
|
4516
|
+
}>;
|
|
4517
|
+
["ChartDataType"]: AliasType<{
|
|
4518
|
+
type?: boolean | `@${string}`;
|
|
4519
|
+
title?: boolean | `@${string}`;
|
|
4520
|
+
entries?: ValueTypes["ChartEntry"];
|
|
4521
|
+
__typename?: boolean | `@${string}`;
|
|
4522
|
+
}>;
|
|
4523
|
+
["ChartMetrics"]: AliasType<{
|
|
4524
|
+
data?: ValueTypes["ChartDataType"];
|
|
4525
|
+
__typename?: boolean | `@${string}`;
|
|
4526
|
+
}>;
|
|
4527
|
+
["OrderSummaryMetrics"]: AliasType<{
|
|
4528
|
+
data?: ValueTypes["OrderSummaryDataMetric"];
|
|
4529
|
+
__typename?: boolean | `@${string}`;
|
|
4530
|
+
}>;
|
|
4531
|
+
["OrderSummaryDataMetric"]: AliasType<{
|
|
4532
|
+
currencyCode?: boolean | `@${string}`;
|
|
4533
|
+
total?: boolean | `@${string}`;
|
|
4534
|
+
totalWithTax?: boolean | `@${string}`;
|
|
4535
|
+
orderCount?: boolean | `@${string}`;
|
|
4536
|
+
averageOrderValue?: boolean | `@${string}`;
|
|
4537
|
+
averageOrderValueWithTax?: boolean | `@${string}`;
|
|
4538
|
+
productCount?: boolean | `@${string}`;
|
|
4539
|
+
__typename?: boolean | `@${string}`;
|
|
4540
|
+
}>;
|
|
4541
|
+
["MetricRangeType"]: MetricRangeType;
|
|
4542
|
+
["MetricIntervalType"]: MetricIntervalType;
|
|
4543
|
+
["ChartMetricType"]: ChartMetricType;
|
|
4544
|
+
["ChartEntryAdditionalData"]: AliasType<{
|
|
4545
|
+
id?: boolean | `@${string}`;
|
|
4546
|
+
name?: boolean | `@${string}`;
|
|
4547
|
+
quantity?: boolean | `@${string}`;
|
|
4548
|
+
__typename?: boolean | `@${string}`;
|
|
4549
|
+
}>;
|
|
4550
|
+
["ChartEntry"]: AliasType<{
|
|
4551
|
+
intervalTick?: boolean | `@${string}`;
|
|
4552
|
+
value?: boolean | `@${string}`;
|
|
4553
|
+
additionalData?: ValueTypes["ChartEntryAdditionalData"];
|
|
4554
|
+
__typename?: boolean | `@${string}`;
|
|
4555
|
+
}>;
|
|
4556
|
+
["BetterMetricRangeInput"]: {
|
|
4557
|
+
start: ValueTypes["DateTime"] | Variable<any, string>;
|
|
4558
|
+
end?: ValueTypes["DateTime"] | undefined | null | Variable<any, string>;
|
|
4559
|
+
};
|
|
4560
|
+
["OrderSummaryMetricInput"]: {
|
|
4561
|
+
range: ValueTypes["BetterMetricRangeInput"] | Variable<any, string>;
|
|
4562
|
+
orderStates: Array<string> | Variable<any, string>;
|
|
4563
|
+
};
|
|
4564
|
+
["ChartMetricInput"]: {
|
|
4565
|
+
range: ValueTypes["BetterMetricRangeInput"] | Variable<any, string>;
|
|
4566
|
+
interval: ValueTypes["MetricIntervalType"] | Variable<any, string>;
|
|
4567
|
+
types: Array<ValueTypes["ChartMetricType"]> | Variable<any, string>;
|
|
4568
|
+
orderStates: Array<string> | Variable<any, string>;
|
|
4569
|
+
productIDs?: Array<string> | undefined | null | Variable<any, string>;
|
|
4570
|
+
net?: boolean | undefined | null | Variable<any, string>;
|
|
4571
|
+
};
|
|
4411
4572
|
["SetInpostShippingMethodConfigInput"]: {
|
|
4412
4573
|
shippingMethodId: ValueTypes["ID"] | Variable<any, string>;
|
|
4413
4574
|
host: string | Variable<any, string>;
|
|
@@ -4564,6 +4725,7 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
4564
4725
|
price?: ValueTypes["SortOrder"] | undefined | null | Variable<any, string>;
|
|
4565
4726
|
priceWithTax?: ValueTypes["SortOrder"] | undefined | null | Variable<any, string>;
|
|
4566
4727
|
stockLevel?: ValueTypes["SortOrder"] | undefined | null | Variable<any, string>;
|
|
4728
|
+
communicateID?: ValueTypes["SortOrder"] | undefined | null | Variable<any, string>;
|
|
4567
4729
|
};
|
|
4568
4730
|
["CountryFilterParameter"]: {
|
|
4569
4731
|
id?: ValueTypes["IDOperators"] | undefined | null | Variable<any, string>;
|
|
@@ -4902,6 +5064,10 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
4902
5064
|
["UpdateOrderCustomFieldsInput"]: {
|
|
4903
5065
|
pickupPointId?: string | undefined | null | Variable<any, string>;
|
|
4904
5066
|
};
|
|
5067
|
+
["ProductVariantCustomFields"]: AliasType<{
|
|
5068
|
+
communicateID?: boolean | `@${string}`;
|
|
5069
|
+
__typename?: boolean | `@${string}`;
|
|
5070
|
+
}>;
|
|
4905
5071
|
["NativeAuthInput"]: {
|
|
4906
5072
|
username: string | Variable<any, string>;
|
|
4907
5073
|
password: string | Variable<any, string>;
|
|
@@ -5136,6 +5302,23 @@ export type ResolverInputTypes = {
|
|
|
5136
5302
|
zone?: [{
|
|
5137
5303
|
id: ResolverInputTypes["ID"];
|
|
5138
5304
|
}, ResolverInputTypes["Zone"]];
|
|
5305
|
+
getMerchantPlatformSettings?: [{
|
|
5306
|
+
platform: string;
|
|
5307
|
+
}, ResolverInputTypes["MerchantPlatformSettingsEntity"]];
|
|
5308
|
+
getMerchantPlatformInfo?: [{
|
|
5309
|
+
platform: string;
|
|
5310
|
+
}, ResolverInputTypes["MerchantPlatformInfo"]];
|
|
5311
|
+
getMerchantSyncHistory?: [{
|
|
5312
|
+
platform: string;
|
|
5313
|
+
take?: number | undefined | null;
|
|
5314
|
+
}, ResolverInputTypes["MerchantSyncRun"]];
|
|
5315
|
+
additionalOrderStates?: ResolverInputTypes["AdditionalOrderState"];
|
|
5316
|
+
chartMetric?: [{
|
|
5317
|
+
input: ResolverInputTypes["ChartMetricInput"];
|
|
5318
|
+
}, ResolverInputTypes["ChartMetrics"]];
|
|
5319
|
+
orderSummaryMetric?: [{
|
|
5320
|
+
input: ResolverInputTypes["OrderSummaryMetricInput"];
|
|
5321
|
+
}, ResolverInputTypes["OrderSummaryMetrics"]];
|
|
5139
5322
|
getInpostConfig?: ResolverInputTypes["InpostConfig"];
|
|
5140
5323
|
getInpostOrganizations?: [{
|
|
5141
5324
|
input?: ResolverInputTypes["GetInpostOrganizationsInput"] | undefined | null;
|
|
@@ -5662,6 +5845,15 @@ export type ResolverInputTypes = {
|
|
|
5662
5845
|
zoneId: ResolverInputTypes["ID"];
|
|
5663
5846
|
memberIds: Array<ResolverInputTypes["ID"]>;
|
|
5664
5847
|
}, ResolverInputTypes["Zone"]];
|
|
5848
|
+
sendAllProductsToMerchantPlatform?: [{
|
|
5849
|
+
platform: string;
|
|
5850
|
+
}, boolean | `@${string}`];
|
|
5851
|
+
saveMerchantPlatformSettings?: [{
|
|
5852
|
+
input: ResolverInputTypes["SaveMerchantPlatformSettingInput"];
|
|
5853
|
+
}, ResolverInputTypes["MerchantPlatformSettingsEntity"]];
|
|
5854
|
+
removeOrphanItems?: [{
|
|
5855
|
+
platform: string;
|
|
5856
|
+
}, boolean | `@${string}`];
|
|
5665
5857
|
setInpostShippingMethodConfig?: [{
|
|
5666
5858
|
input: ResolverInputTypes["SetInpostShippingMethodConfigInput"];
|
|
5667
5859
|
}, boolean | `@${string}`];
|
|
@@ -6966,7 +7158,7 @@ is not in the required state. */
|
|
|
6966
7158
|
options?: ResolverInputTypes["ProductOption"];
|
|
6967
7159
|
facetValues?: ResolverInputTypes["FacetValue"];
|
|
6968
7160
|
translations?: ResolverInputTypes["ProductVariantTranslation"];
|
|
6969
|
-
customFields?:
|
|
7161
|
+
customFields?: ResolverInputTypes["ProductVariantCustomFields"];
|
|
6970
7162
|
__typename?: boolean | `@${string}`;
|
|
6971
7163
|
}>;
|
|
6972
7164
|
["ProductOptionGroupTranslationInput"]: {
|
|
@@ -7039,6 +7231,7 @@ is not in the required state. */
|
|
|
7039
7231
|
take?: number | undefined | null;
|
|
7040
7232
|
};
|
|
7041
7233
|
["ProductListOptions"]: {
|
|
7234
|
+
searchTerm?: string | undefined | null;
|
|
7042
7235
|
/** Skips the first n results, for use in pagination */
|
|
7043
7236
|
skip?: number | undefined | null;
|
|
7044
7237
|
/** Takes n results, for use in pagination */
|
|
@@ -7065,6 +7258,7 @@ is not in the required state. */
|
|
|
7065
7258
|
_or?: Array<ResolverInputTypes["ProductFilterParameter"]> | undefined | null;
|
|
7066
7259
|
};
|
|
7067
7260
|
["ProductVariantListOptions"]: {
|
|
7261
|
+
searchTerm?: string | undefined | null;
|
|
7068
7262
|
/** Skips the first n results, for use in pagination */
|
|
7069
7263
|
skip?: number | undefined | null;
|
|
7070
7264
|
/** Takes n results, for use in pagination */
|
|
@@ -7097,6 +7291,7 @@ is not in the required state. */
|
|
|
7097
7291
|
stockLevel?: ResolverInputTypes["StringOperators"] | undefined | null;
|
|
7098
7292
|
_and?: Array<ResolverInputTypes["ProductVariantFilterParameter"]> | undefined | null;
|
|
7099
7293
|
_or?: Array<ResolverInputTypes["ProductVariantFilterParameter"]> | undefined | null;
|
|
7294
|
+
communicateID?: ResolverInputTypes["StringOperators"] | undefined | null;
|
|
7100
7295
|
};
|
|
7101
7296
|
["ProductTranslationInput"]: {
|
|
7102
7297
|
id?: ResolverInputTypes["ID"] | undefined | null;
|
|
@@ -8009,6 +8204,7 @@ current session. */
|
|
|
8009
8204
|
['...on User']?: Omit<ResolverInputTypes["User"], keyof ResolverInputTypes["Node"]>;
|
|
8010
8205
|
['...on AuthenticationMethod']?: Omit<ResolverInputTypes["AuthenticationMethod"], keyof ResolverInputTypes["Node"]>;
|
|
8011
8206
|
['...on Zone']?: Omit<ResolverInputTypes["Zone"], keyof ResolverInputTypes["Node"]>;
|
|
8207
|
+
['...on MerchantPlatformSettingsEntity']?: Omit<ResolverInputTypes["MerchantPlatformSettingsEntity"], keyof ResolverInputTypes["Node"]>;
|
|
8012
8208
|
__typename?: boolean | `@${string}`;
|
|
8013
8209
|
}>;
|
|
8014
8210
|
["ErrorResult"]: AliasType<{
|
|
@@ -9102,6 +9298,137 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
9102
9298
|
customFields?: boolean | `@${string}`;
|
|
9103
9299
|
__typename?: boolean | `@${string}`;
|
|
9104
9300
|
}>;
|
|
9301
|
+
["MerchantPlatformSetting"]: AliasType<{
|
|
9302
|
+
key?: boolean | `@${string}`;
|
|
9303
|
+
value?: boolean | `@${string}`;
|
|
9304
|
+
__typename?: boolean | `@${string}`;
|
|
9305
|
+
}>;
|
|
9306
|
+
["MerchantPlatformSettingsEntity"]: AliasType<{
|
|
9307
|
+
id?: boolean | `@${string}`;
|
|
9308
|
+
platform?: boolean | `@${string}`;
|
|
9309
|
+
entries?: ResolverInputTypes["MerchantPlatformSetting"];
|
|
9310
|
+
__typename?: boolean | `@${string}`;
|
|
9311
|
+
}>;
|
|
9312
|
+
["MerchantPlatformInfo"]: AliasType<{
|
|
9313
|
+
isValidConnection?: boolean | `@${string}`;
|
|
9314
|
+
productsCount?: boolean | `@${string}`;
|
|
9315
|
+
connectionStatus?: boolean | `@${string}`;
|
|
9316
|
+
dataSourceVerified?: boolean | `@${string}`;
|
|
9317
|
+
checkedAt?: boolean | `@${string}`;
|
|
9318
|
+
latencyMs?: boolean | `@${string}`;
|
|
9319
|
+
disapprovedProductsCount?: boolean | `@${string}`;
|
|
9320
|
+
issuesCount?: boolean | `@${string}`;
|
|
9321
|
+
lastError?: ResolverInputTypes["MerchantPlatformError"];
|
|
9322
|
+
issues?: ResolverInputTypes["MerchantProductIssue"];
|
|
9323
|
+
__typename?: boolean | `@${string}`;
|
|
9324
|
+
}>;
|
|
9325
|
+
["MerchantPlatformError"]: AliasType<{
|
|
9326
|
+
code?: boolean | `@${string}`;
|
|
9327
|
+
message?: boolean | `@${string}`;
|
|
9328
|
+
retryable?: boolean | `@${string}`;
|
|
9329
|
+
__typename?: boolean | `@${string}`;
|
|
9330
|
+
}>;
|
|
9331
|
+
["MerchantProductIssue"]: AliasType<{
|
|
9332
|
+
offerId?: boolean | `@${string}`;
|
|
9333
|
+
code?: boolean | `@${string}`;
|
|
9334
|
+
description?: boolean | `@${string}`;
|
|
9335
|
+
severity?: boolean | `@${string}`;
|
|
9336
|
+
__typename?: boolean | `@${string}`;
|
|
9337
|
+
}>;
|
|
9338
|
+
["MerchantSyncItem"]: AliasType<{
|
|
9339
|
+
id?: boolean | `@${string}`;
|
|
9340
|
+
offerId?: boolean | `@${string}`;
|
|
9341
|
+
operation?: boolean | `@${string}`;
|
|
9342
|
+
status?: boolean | `@${string}`;
|
|
9343
|
+
errorCode?: boolean | `@${string}`;
|
|
9344
|
+
errorMessage?: boolean | `@${string}`;
|
|
9345
|
+
attempts?: boolean | `@${string}`;
|
|
9346
|
+
__typename?: boolean | `@${string}`;
|
|
9347
|
+
}>;
|
|
9348
|
+
["MerchantSyncRun"]: AliasType<{
|
|
9349
|
+
id?: boolean | `@${string}`;
|
|
9350
|
+
createdAt?: boolean | `@${string}`;
|
|
9351
|
+
platform?: boolean | `@${string}`;
|
|
9352
|
+
trigger?: boolean | `@${string}`;
|
|
9353
|
+
status?: boolean | `@${string}`;
|
|
9354
|
+
jobId?: boolean | `@${string}`;
|
|
9355
|
+
total?: boolean | `@${string}`;
|
|
9356
|
+
succeeded?: boolean | `@${string}`;
|
|
9357
|
+
failed?: boolean | `@${string}`;
|
|
9358
|
+
errorSummary?: boolean | `@${string}`;
|
|
9359
|
+
startedAt?: boolean | `@${string}`;
|
|
9360
|
+
finishedAt?: boolean | `@${string}`;
|
|
9361
|
+
items?: ResolverInputTypes["MerchantSyncItem"];
|
|
9362
|
+
__typename?: boolean | `@${string}`;
|
|
9363
|
+
}>;
|
|
9364
|
+
["MerchantPlatformSettingInput"]: {
|
|
9365
|
+
key: string;
|
|
9366
|
+
value: string;
|
|
9367
|
+
};
|
|
9368
|
+
["SaveMerchantPlatformSettingInput"]: {
|
|
9369
|
+
platform: string;
|
|
9370
|
+
entries: Array<ResolverInputTypes["MerchantPlatformSettingInput"]>;
|
|
9371
|
+
};
|
|
9372
|
+
["AdditionalOrderState"]: AliasType<{
|
|
9373
|
+
state?: boolean | `@${string}`;
|
|
9374
|
+
selectedByDefault?: boolean | `@${string}`;
|
|
9375
|
+
__typename?: boolean | `@${string}`;
|
|
9376
|
+
}>;
|
|
9377
|
+
["ChartDataType"]: AliasType<{
|
|
9378
|
+
type?: boolean | `@${string}`;
|
|
9379
|
+
title?: boolean | `@${string}`;
|
|
9380
|
+
entries?: ResolverInputTypes["ChartEntry"];
|
|
9381
|
+
__typename?: boolean | `@${string}`;
|
|
9382
|
+
}>;
|
|
9383
|
+
["ChartMetrics"]: AliasType<{
|
|
9384
|
+
data?: ResolverInputTypes["ChartDataType"];
|
|
9385
|
+
__typename?: boolean | `@${string}`;
|
|
9386
|
+
}>;
|
|
9387
|
+
["OrderSummaryMetrics"]: AliasType<{
|
|
9388
|
+
data?: ResolverInputTypes["OrderSummaryDataMetric"];
|
|
9389
|
+
__typename?: boolean | `@${string}`;
|
|
9390
|
+
}>;
|
|
9391
|
+
["OrderSummaryDataMetric"]: AliasType<{
|
|
9392
|
+
currencyCode?: boolean | `@${string}`;
|
|
9393
|
+
total?: boolean | `@${string}`;
|
|
9394
|
+
totalWithTax?: boolean | `@${string}`;
|
|
9395
|
+
orderCount?: boolean | `@${string}`;
|
|
9396
|
+
averageOrderValue?: boolean | `@${string}`;
|
|
9397
|
+
averageOrderValueWithTax?: boolean | `@${string}`;
|
|
9398
|
+
productCount?: boolean | `@${string}`;
|
|
9399
|
+
__typename?: boolean | `@${string}`;
|
|
9400
|
+
}>;
|
|
9401
|
+
["MetricRangeType"]: MetricRangeType;
|
|
9402
|
+
["MetricIntervalType"]: MetricIntervalType;
|
|
9403
|
+
["ChartMetricType"]: ChartMetricType;
|
|
9404
|
+
["ChartEntryAdditionalData"]: AliasType<{
|
|
9405
|
+
id?: boolean | `@${string}`;
|
|
9406
|
+
name?: boolean | `@${string}`;
|
|
9407
|
+
quantity?: boolean | `@${string}`;
|
|
9408
|
+
__typename?: boolean | `@${string}`;
|
|
9409
|
+
}>;
|
|
9410
|
+
["ChartEntry"]: AliasType<{
|
|
9411
|
+
intervalTick?: boolean | `@${string}`;
|
|
9412
|
+
value?: boolean | `@${string}`;
|
|
9413
|
+
additionalData?: ResolverInputTypes["ChartEntryAdditionalData"];
|
|
9414
|
+
__typename?: boolean | `@${string}`;
|
|
9415
|
+
}>;
|
|
9416
|
+
["BetterMetricRangeInput"]: {
|
|
9417
|
+
start: ResolverInputTypes["DateTime"];
|
|
9418
|
+
end?: ResolverInputTypes["DateTime"] | undefined | null;
|
|
9419
|
+
};
|
|
9420
|
+
["OrderSummaryMetricInput"]: {
|
|
9421
|
+
range: ResolverInputTypes["BetterMetricRangeInput"];
|
|
9422
|
+
orderStates: Array<string>;
|
|
9423
|
+
};
|
|
9424
|
+
["ChartMetricInput"]: {
|
|
9425
|
+
range: ResolverInputTypes["BetterMetricRangeInput"];
|
|
9426
|
+
interval: ResolverInputTypes["MetricIntervalType"];
|
|
9427
|
+
types: Array<ResolverInputTypes["ChartMetricType"]>;
|
|
9428
|
+
orderStates: Array<string>;
|
|
9429
|
+
productIDs?: Array<string> | undefined | null;
|
|
9430
|
+
net?: boolean | undefined | null;
|
|
9431
|
+
};
|
|
9105
9432
|
["SetInpostShippingMethodConfigInput"]: {
|
|
9106
9433
|
shippingMethodId: ResolverInputTypes["ID"];
|
|
9107
9434
|
host: string;
|
|
@@ -9258,6 +9585,7 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
9258
9585
|
price?: ResolverInputTypes["SortOrder"] | undefined | null;
|
|
9259
9586
|
priceWithTax?: ResolverInputTypes["SortOrder"] | undefined | null;
|
|
9260
9587
|
stockLevel?: ResolverInputTypes["SortOrder"] | undefined | null;
|
|
9588
|
+
communicateID?: ResolverInputTypes["SortOrder"] | undefined | null;
|
|
9261
9589
|
};
|
|
9262
9590
|
["CountryFilterParameter"]: {
|
|
9263
9591
|
id?: ResolverInputTypes["IDOperators"] | undefined | null;
|
|
@@ -9596,6 +9924,10 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
9596
9924
|
["UpdateOrderCustomFieldsInput"]: {
|
|
9597
9925
|
pickupPointId?: string | undefined | null;
|
|
9598
9926
|
};
|
|
9927
|
+
["ProductVariantCustomFields"]: AliasType<{
|
|
9928
|
+
communicateID?: boolean | `@${string}`;
|
|
9929
|
+
__typename?: boolean | `@${string}`;
|
|
9930
|
+
}>;
|
|
9599
9931
|
["NativeAuthInput"]: {
|
|
9600
9932
|
username: string;
|
|
9601
9933
|
password: string;
|
|
@@ -9728,6 +10060,12 @@ export type ModelTypes = {
|
|
|
9728
10060
|
taxRate?: ModelTypes["TaxRate"] | undefined | null;
|
|
9729
10061
|
zones: ModelTypes["ZoneList"];
|
|
9730
10062
|
zone?: ModelTypes["Zone"] | undefined | null;
|
|
10063
|
+
getMerchantPlatformSettings?: ModelTypes["MerchantPlatformSettingsEntity"] | undefined | null;
|
|
10064
|
+
getMerchantPlatformInfo?: Array<ModelTypes["MerchantPlatformInfo"]> | undefined | null;
|
|
10065
|
+
getMerchantSyncHistory: Array<ModelTypes["MerchantSyncRun"]>;
|
|
10066
|
+
additionalOrderStates: Array<ModelTypes["AdditionalOrderState"]>;
|
|
10067
|
+
chartMetric: ModelTypes["ChartMetrics"];
|
|
10068
|
+
orderSummaryMetric: ModelTypes["OrderSummaryMetrics"];
|
|
9731
10069
|
getInpostConfig?: ModelTypes["InpostConfig"] | undefined | null;
|
|
9732
10070
|
getInpostOrganizations: ModelTypes["InpostOrganizationResponse"];
|
|
9733
10071
|
/** Get metrics for the given interval and metric types. */
|
|
@@ -10042,6 +10380,9 @@ export type ModelTypes = {
|
|
|
10042
10380
|
addMembersToZone: ModelTypes["Zone"];
|
|
10043
10381
|
/** Remove members from a Zone */
|
|
10044
10382
|
removeMembersFromZone: ModelTypes["Zone"];
|
|
10383
|
+
sendAllProductsToMerchantPlatform?: boolean | undefined | null;
|
|
10384
|
+
saveMerchantPlatformSettings: ModelTypes["MerchantPlatformSettingsEntity"];
|
|
10385
|
+
removeOrphanItems?: boolean | undefined | null;
|
|
10045
10386
|
setInpostShippingMethodConfig: boolean;
|
|
10046
10387
|
};
|
|
10047
10388
|
["AdministratorListOptions"]: {
|
|
@@ -11153,7 +11494,7 @@ is not in the required state. */
|
|
|
11153
11494
|
options: Array<ModelTypes["ProductOption"]>;
|
|
11154
11495
|
facetValues: Array<ModelTypes["FacetValue"]>;
|
|
11155
11496
|
translations: Array<ModelTypes["ProductVariantTranslation"]>;
|
|
11156
|
-
customFields?: ModelTypes["
|
|
11497
|
+
customFields?: ModelTypes["ProductVariantCustomFields"] | undefined | null;
|
|
11157
11498
|
};
|
|
11158
11499
|
["ProductOptionGroupTranslationInput"]: {
|
|
11159
11500
|
id?: ModelTypes["ID"] | undefined | null;
|
|
@@ -11224,6 +11565,7 @@ is not in the required state. */
|
|
|
11224
11565
|
take?: number | undefined | null;
|
|
11225
11566
|
};
|
|
11226
11567
|
["ProductListOptions"]: {
|
|
11568
|
+
searchTerm?: string | undefined | null;
|
|
11227
11569
|
/** Skips the first n results, for use in pagination */
|
|
11228
11570
|
skip?: number | undefined | null;
|
|
11229
11571
|
/** Takes n results, for use in pagination */
|
|
@@ -11250,6 +11592,7 @@ is not in the required state. */
|
|
|
11250
11592
|
_or?: Array<ModelTypes["ProductFilterParameter"]> | undefined | null;
|
|
11251
11593
|
};
|
|
11252
11594
|
["ProductVariantListOptions"]: {
|
|
11595
|
+
searchTerm?: string | undefined | null;
|
|
11253
11596
|
/** Skips the first n results, for use in pagination */
|
|
11254
11597
|
skip?: number | undefined | null;
|
|
11255
11598
|
/** Takes n results, for use in pagination */
|
|
@@ -11282,6 +11625,7 @@ is not in the required state. */
|
|
|
11282
11625
|
stockLevel?: ModelTypes["StringOperators"] | undefined | null;
|
|
11283
11626
|
_and?: Array<ModelTypes["ProductVariantFilterParameter"]> | undefined | null;
|
|
11284
11627
|
_or?: Array<ModelTypes["ProductVariantFilterParameter"]> | undefined | null;
|
|
11628
|
+
communicateID?: ModelTypes["StringOperators"] | undefined | null;
|
|
11285
11629
|
};
|
|
11286
11630
|
["ProductTranslationInput"]: {
|
|
11287
11631
|
id?: ModelTypes["ID"] | undefined | null;
|
|
@@ -12013,7 +12357,7 @@ current session. */
|
|
|
12013
12357
|
/** The `Money` scalar type represents monetary values and supports signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). */
|
|
12014
12358
|
["Money"]: any;
|
|
12015
12359
|
["PaginatedList"]: ModelTypes["AdministratorList"] | ModelTypes["ChannelList"] | ModelTypes["CustomerGroupList"] | ModelTypes["JobList"] | ModelTypes["PaymentMethodList"] | ModelTypes["SellerList"] | ModelTypes["StockLocationList"] | ModelTypes["TaxCategoryList"] | ModelTypes["ZoneList"] | ModelTypes["AssetList"] | ModelTypes["CollectionList"] | ModelTypes["CustomerList"] | ModelTypes["FacetList"] | ModelTypes["FacetValueList"] | ModelTypes["HistoryEntryList"] | ModelTypes["OrderList"] | ModelTypes["ProductList"] | ModelTypes["ProductVariantList"] | ModelTypes["PromotionList"] | ModelTypes["CountryList"] | ModelTypes["ProvinceList"] | ModelTypes["RoleList"] | ModelTypes["ShippingMethodList"] | ModelTypes["TagList"] | ModelTypes["TaxRateList"];
|
|
12016
|
-
["Node"]: ModelTypes["Administrator"] | ModelTypes["Collection"] | ModelTypes["Customer"] | ModelTypes["Facet"] | ModelTypes["HistoryEntry"] | ModelTypes["Job"] | ModelTypes["Order"] | ModelTypes["Fulfillment"] | ModelTypes["Payment"] | ModelTypes["OrderModification"] | ModelTypes["Product"] | ModelTypes["ProductVariant"] | ModelTypes["StockLevel"] | ModelTypes["StockLocation"] | ModelTypes["StockAdjustment"] | ModelTypes["Allocation"] | ModelTypes["Sale"] | ModelTypes["Cancellation"] | ModelTypes["Return"] | ModelTypes["Release"] | ModelTypes["Address"] | ModelTypes["Asset"] | ModelTypes["Channel"] | ModelTypes["CustomerGroup"] | ModelTypes["FacetValue"] | ModelTypes["OrderLine"] | ModelTypes["Refund"] | ModelTypes["Surcharge"] | ModelTypes["PaymentMethod"] | ModelTypes["ProductOptionGroup"] | ModelTypes["ProductOption"] | ModelTypes["Promotion"] | ModelTypes["Region"] | ModelTypes["Country"] | ModelTypes["Province"] | ModelTypes["Role"] | ModelTypes["Seller"] | ModelTypes["ShippingMethod"] | ModelTypes["Tag"] | ModelTypes["TaxCategory"] | ModelTypes["TaxRate"] | ModelTypes["User"] | ModelTypes["AuthenticationMethod"] | ModelTypes["Zone"];
|
|
12360
|
+
["Node"]: ModelTypes["Administrator"] | ModelTypes["Collection"] | ModelTypes["Customer"] | ModelTypes["Facet"] | ModelTypes["HistoryEntry"] | ModelTypes["Job"] | ModelTypes["Order"] | ModelTypes["Fulfillment"] | ModelTypes["Payment"] | ModelTypes["OrderModification"] | ModelTypes["Product"] | ModelTypes["ProductVariant"] | ModelTypes["StockLevel"] | ModelTypes["StockLocation"] | ModelTypes["StockAdjustment"] | ModelTypes["Allocation"] | ModelTypes["Sale"] | ModelTypes["Cancellation"] | ModelTypes["Return"] | ModelTypes["Release"] | ModelTypes["Address"] | ModelTypes["Asset"] | ModelTypes["Channel"] | ModelTypes["CustomerGroup"] | ModelTypes["FacetValue"] | ModelTypes["OrderLine"] | ModelTypes["Refund"] | ModelTypes["Surcharge"] | ModelTypes["PaymentMethod"] | ModelTypes["ProductOptionGroup"] | ModelTypes["ProductOption"] | ModelTypes["Promotion"] | ModelTypes["Region"] | ModelTypes["Country"] | ModelTypes["Province"] | ModelTypes["Role"] | ModelTypes["Seller"] | ModelTypes["ShippingMethod"] | ModelTypes["Tag"] | ModelTypes["TaxCategory"] | ModelTypes["TaxRate"] | ModelTypes["User"] | ModelTypes["AuthenticationMethod"] | ModelTypes["Zone"] | ModelTypes["MerchantPlatformSettingsEntity"];
|
|
12017
12361
|
["ErrorResult"]: ModelTypes["MimeTypeError"] | ModelTypes["LanguageNotAvailableError"] | ModelTypes["DuplicateEntityError"] | ModelTypes["FacetInUseError"] | ModelTypes["ChannelDefaultLanguageError"] | ModelTypes["SettlePaymentError"] | ModelTypes["CancelPaymentError"] | ModelTypes["EmptyOrderLineSelectionError"] | ModelTypes["ItemsAlreadyFulfilledError"] | ModelTypes["InvalidFulfillmentHandlerError"] | ModelTypes["CreateFulfillmentError"] | ModelTypes["InsufficientStockOnHandError"] | ModelTypes["MultipleOrderError"] | ModelTypes["CancelActiveOrderError"] | ModelTypes["PaymentOrderMismatchError"] | ModelTypes["RefundOrderStateError"] | ModelTypes["NothingToRefundError"] | ModelTypes["AlreadyRefundedError"] | ModelTypes["QuantityTooGreatError"] | ModelTypes["RefundAmountError"] | ModelTypes["RefundStateTransitionError"] | ModelTypes["PaymentStateTransitionError"] | ModelTypes["FulfillmentStateTransitionError"] | ModelTypes["OrderModificationStateError"] | ModelTypes["NoChangesSpecifiedError"] | ModelTypes["PaymentMethodMissingError"] | ModelTypes["RefundPaymentIdMissingError"] | ModelTypes["ManualPaymentStateError"] | ModelTypes["ProductOptionInUseError"] | ModelTypes["MissingConditionsError"] | ModelTypes["NativeAuthStrategyError"] | ModelTypes["InvalidCredentialsError"] | ModelTypes["OrderStateTransitionError"] | ModelTypes["EmailAddressConflictError"] | ModelTypes["GuestCheckoutError"] | ModelTypes["OrderLimitError"] | ModelTypes["NegativeQuantityError"] | ModelTypes["InsufficientStockError"] | ModelTypes["CouponCodeInvalidError"] | ModelTypes["CouponCodeExpiredError"] | ModelTypes["CouponCodeLimitError"] | ModelTypes["OrderModificationError"] | ModelTypes["IneligibleShippingMethodError"] | ModelTypes["NoActiveOrderError"] | ModelTypes["OrderMiddlewareError"];
|
|
12018
12362
|
["Adjustment"]: {
|
|
12019
12363
|
adjustmentSource: string;
|
|
@@ -12888,6 +13232,123 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
12888
13232
|
members: Array<ModelTypes["Region"]>;
|
|
12889
13233
|
customFields?: ModelTypes["JSON"] | undefined | null;
|
|
12890
13234
|
};
|
|
13235
|
+
["MerchantPlatformSetting"]: {
|
|
13236
|
+
key: string;
|
|
13237
|
+
value: string;
|
|
13238
|
+
};
|
|
13239
|
+
["MerchantPlatformSettingsEntity"]: {
|
|
13240
|
+
id: ModelTypes["ID"];
|
|
13241
|
+
platform: string;
|
|
13242
|
+
entries: Array<ModelTypes["MerchantPlatformSetting"]>;
|
|
13243
|
+
};
|
|
13244
|
+
["MerchantPlatformInfo"]: {
|
|
13245
|
+
isValidConnection: boolean;
|
|
13246
|
+
productsCount: number;
|
|
13247
|
+
connectionStatus?: string | undefined | null;
|
|
13248
|
+
dataSourceVerified?: boolean | undefined | null;
|
|
13249
|
+
checkedAt?: ModelTypes["DateTime"] | undefined | null;
|
|
13250
|
+
latencyMs?: number | undefined | null;
|
|
13251
|
+
disapprovedProductsCount?: number | undefined | null;
|
|
13252
|
+
issuesCount?: number | undefined | null;
|
|
13253
|
+
lastError?: ModelTypes["MerchantPlatformError"] | undefined | null;
|
|
13254
|
+
issues?: Array<ModelTypes["MerchantProductIssue"]> | undefined | null;
|
|
13255
|
+
};
|
|
13256
|
+
["MerchantPlatformError"]: {
|
|
13257
|
+
code: string;
|
|
13258
|
+
message: string;
|
|
13259
|
+
retryable: boolean;
|
|
13260
|
+
};
|
|
13261
|
+
["MerchantProductIssue"]: {
|
|
13262
|
+
offerId: string;
|
|
13263
|
+
code: string;
|
|
13264
|
+
description: string;
|
|
13265
|
+
severity: string;
|
|
13266
|
+
};
|
|
13267
|
+
["MerchantSyncItem"]: {
|
|
13268
|
+
id: ModelTypes["ID"];
|
|
13269
|
+
offerId: string;
|
|
13270
|
+
operation: string;
|
|
13271
|
+
status: string;
|
|
13272
|
+
errorCode?: string | undefined | null;
|
|
13273
|
+
errorMessage?: string | undefined | null;
|
|
13274
|
+
attempts: number;
|
|
13275
|
+
};
|
|
13276
|
+
["MerchantSyncRun"]: {
|
|
13277
|
+
id: ModelTypes["ID"];
|
|
13278
|
+
createdAt: ModelTypes["DateTime"];
|
|
13279
|
+
platform: string;
|
|
13280
|
+
trigger: string;
|
|
13281
|
+
status: string;
|
|
13282
|
+
jobId?: string | undefined | null;
|
|
13283
|
+
total: number;
|
|
13284
|
+
succeeded: number;
|
|
13285
|
+
failed: number;
|
|
13286
|
+
errorSummary?: string | undefined | null;
|
|
13287
|
+
startedAt?: ModelTypes["DateTime"] | undefined | null;
|
|
13288
|
+
finishedAt?: ModelTypes["DateTime"] | undefined | null;
|
|
13289
|
+
items: Array<ModelTypes["MerchantSyncItem"]>;
|
|
13290
|
+
};
|
|
13291
|
+
["MerchantPlatformSettingInput"]: {
|
|
13292
|
+
key: string;
|
|
13293
|
+
value: string;
|
|
13294
|
+
};
|
|
13295
|
+
["SaveMerchantPlatformSettingInput"]: {
|
|
13296
|
+
platform: string;
|
|
13297
|
+
entries: Array<ModelTypes["MerchantPlatformSettingInput"]>;
|
|
13298
|
+
};
|
|
13299
|
+
["AdditionalOrderState"]: {
|
|
13300
|
+
state: string;
|
|
13301
|
+
selectedByDefault: boolean;
|
|
13302
|
+
};
|
|
13303
|
+
["ChartDataType"]: {
|
|
13304
|
+
type: ModelTypes["ChartMetricType"];
|
|
13305
|
+
title: string;
|
|
13306
|
+
entries: Array<ModelTypes["ChartEntry"]>;
|
|
13307
|
+
};
|
|
13308
|
+
["ChartMetrics"]: {
|
|
13309
|
+
data: Array<ModelTypes["ChartDataType"]>;
|
|
13310
|
+
};
|
|
13311
|
+
["OrderSummaryMetrics"]: {
|
|
13312
|
+
data: ModelTypes["OrderSummaryDataMetric"];
|
|
13313
|
+
};
|
|
13314
|
+
["OrderSummaryDataMetric"]: {
|
|
13315
|
+
currencyCode: ModelTypes["CurrencyCode"];
|
|
13316
|
+
total: number;
|
|
13317
|
+
totalWithTax: number;
|
|
13318
|
+
orderCount: number;
|
|
13319
|
+
averageOrderValue: number;
|
|
13320
|
+
averageOrderValueWithTax: number;
|
|
13321
|
+
productCount: number;
|
|
13322
|
+
};
|
|
13323
|
+
["MetricRangeType"]: MetricRangeType;
|
|
13324
|
+
["MetricIntervalType"]: MetricIntervalType;
|
|
13325
|
+
["ChartMetricType"]: ChartMetricType;
|
|
13326
|
+
["ChartEntryAdditionalData"]: {
|
|
13327
|
+
id: string;
|
|
13328
|
+
name: string;
|
|
13329
|
+
quantity: number;
|
|
13330
|
+
};
|
|
13331
|
+
["ChartEntry"]: {
|
|
13332
|
+
intervalTick: number;
|
|
13333
|
+
value: number;
|
|
13334
|
+
additionalData?: Array<ModelTypes["ChartEntryAdditionalData"]> | undefined | null;
|
|
13335
|
+
};
|
|
13336
|
+
["BetterMetricRangeInput"]: {
|
|
13337
|
+
start: ModelTypes["DateTime"];
|
|
13338
|
+
end?: ModelTypes["DateTime"] | undefined | null;
|
|
13339
|
+
};
|
|
13340
|
+
["OrderSummaryMetricInput"]: {
|
|
13341
|
+
range: ModelTypes["BetterMetricRangeInput"];
|
|
13342
|
+
orderStates: Array<string>;
|
|
13343
|
+
};
|
|
13344
|
+
["ChartMetricInput"]: {
|
|
13345
|
+
range: ModelTypes["BetterMetricRangeInput"];
|
|
13346
|
+
interval: ModelTypes["MetricIntervalType"];
|
|
13347
|
+
types: Array<ModelTypes["ChartMetricType"]>;
|
|
13348
|
+
orderStates: Array<string>;
|
|
13349
|
+
productIDs?: Array<string> | undefined | null;
|
|
13350
|
+
net?: boolean | undefined | null;
|
|
13351
|
+
};
|
|
12891
13352
|
["SetInpostShippingMethodConfigInput"]: {
|
|
12892
13353
|
shippingMethodId: ModelTypes["ID"];
|
|
12893
13354
|
host: string;
|
|
@@ -13039,6 +13500,7 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
13039
13500
|
price?: ModelTypes["SortOrder"] | undefined | null;
|
|
13040
13501
|
priceWithTax?: ModelTypes["SortOrder"] | undefined | null;
|
|
13041
13502
|
stockLevel?: ModelTypes["SortOrder"] | undefined | null;
|
|
13503
|
+
communicateID?: ModelTypes["SortOrder"] | undefined | null;
|
|
13042
13504
|
};
|
|
13043
13505
|
["CountryFilterParameter"]: {
|
|
13044
13506
|
id?: ModelTypes["IDOperators"] | undefined | null;
|
|
@@ -13375,6 +13837,9 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
13375
13837
|
["UpdateOrderCustomFieldsInput"]: {
|
|
13376
13838
|
pickupPointId?: string | undefined | null;
|
|
13377
13839
|
};
|
|
13840
|
+
["ProductVariantCustomFields"]: {
|
|
13841
|
+
communicateID?: string | undefined | null;
|
|
13842
|
+
};
|
|
13378
13843
|
["NativeAuthInput"]: {
|
|
13379
13844
|
username: string;
|
|
13380
13845
|
password: string;
|
|
@@ -13505,6 +13970,12 @@ export type GraphQLTypes = {
|
|
|
13505
13970
|
taxRate?: GraphQLTypes["TaxRate"] | undefined | null;
|
|
13506
13971
|
zones: GraphQLTypes["ZoneList"];
|
|
13507
13972
|
zone?: GraphQLTypes["Zone"] | undefined | null;
|
|
13973
|
+
getMerchantPlatformSettings?: GraphQLTypes["MerchantPlatformSettingsEntity"] | undefined | null;
|
|
13974
|
+
getMerchantPlatformInfo?: Array<GraphQLTypes["MerchantPlatformInfo"]> | undefined | null;
|
|
13975
|
+
getMerchantSyncHistory: Array<GraphQLTypes["MerchantSyncRun"]>;
|
|
13976
|
+
additionalOrderStates: Array<GraphQLTypes["AdditionalOrderState"]>;
|
|
13977
|
+
chartMetric: GraphQLTypes["ChartMetrics"];
|
|
13978
|
+
orderSummaryMetric: GraphQLTypes["OrderSummaryMetrics"];
|
|
13508
13979
|
getInpostConfig?: GraphQLTypes["InpostConfig"] | undefined | null;
|
|
13509
13980
|
getInpostOrganizations: GraphQLTypes["InpostOrganizationResponse"];
|
|
13510
13981
|
/** Get metrics for the given interval and metric types. */
|
|
@@ -13820,6 +14291,9 @@ export type GraphQLTypes = {
|
|
|
13820
14291
|
addMembersToZone: GraphQLTypes["Zone"];
|
|
13821
14292
|
/** Remove members from a Zone */
|
|
13822
14293
|
removeMembersFromZone: GraphQLTypes["Zone"];
|
|
14294
|
+
sendAllProductsToMerchantPlatform?: boolean | undefined | null;
|
|
14295
|
+
saveMerchantPlatformSettings: GraphQLTypes["MerchantPlatformSettingsEntity"];
|
|
14296
|
+
removeOrphanItems?: boolean | undefined | null;
|
|
13823
14297
|
setInpostShippingMethodConfig: boolean;
|
|
13824
14298
|
};
|
|
13825
14299
|
["AdministratorListOptions"]: {
|
|
@@ -15110,7 +15584,7 @@ is not in the required state. */
|
|
|
15110
15584
|
options: Array<GraphQLTypes["ProductOption"]>;
|
|
15111
15585
|
facetValues: Array<GraphQLTypes["FacetValue"]>;
|
|
15112
15586
|
translations: Array<GraphQLTypes["ProductVariantTranslation"]>;
|
|
15113
|
-
customFields?: GraphQLTypes["
|
|
15587
|
+
customFields?: GraphQLTypes["ProductVariantCustomFields"] | undefined | null;
|
|
15114
15588
|
};
|
|
15115
15589
|
["ProductOptionGroupTranslationInput"]: {
|
|
15116
15590
|
id?: GraphQLTypes["ID"] | undefined | null;
|
|
@@ -15182,6 +15656,7 @@ is not in the required state. */
|
|
|
15182
15656
|
take?: number | undefined | null;
|
|
15183
15657
|
};
|
|
15184
15658
|
["ProductListOptions"]: {
|
|
15659
|
+
searchTerm?: string | undefined | null;
|
|
15185
15660
|
/** Skips the first n results, for use in pagination */
|
|
15186
15661
|
skip?: number | undefined | null;
|
|
15187
15662
|
/** Takes n results, for use in pagination */
|
|
@@ -15208,6 +15683,7 @@ is not in the required state. */
|
|
|
15208
15683
|
_or?: Array<GraphQLTypes["ProductFilterParameter"]> | undefined | null;
|
|
15209
15684
|
};
|
|
15210
15685
|
["ProductVariantListOptions"]: {
|
|
15686
|
+
searchTerm?: string | undefined | null;
|
|
15211
15687
|
/** Skips the first n results, for use in pagination */
|
|
15212
15688
|
skip?: number | undefined | null;
|
|
15213
15689
|
/** Takes n results, for use in pagination */
|
|
@@ -15240,6 +15716,7 @@ is not in the required state. */
|
|
|
15240
15716
|
stockLevel?: GraphQLTypes["StringOperators"] | undefined | null;
|
|
15241
15717
|
_and?: Array<GraphQLTypes["ProductVariantFilterParameter"]> | undefined | null;
|
|
15242
15718
|
_or?: Array<GraphQLTypes["ProductVariantFilterParameter"]> | undefined | null;
|
|
15719
|
+
communicateID?: GraphQLTypes["StringOperators"] | undefined | null;
|
|
15243
15720
|
};
|
|
15244
15721
|
["ProductTranslationInput"]: {
|
|
15245
15722
|
id?: GraphQLTypes["ID"] | undefined | null;
|
|
@@ -16115,7 +16592,7 @@ current session. */
|
|
|
16115
16592
|
['...on TaxRateList']: '__union' & GraphQLTypes["TaxRateList"];
|
|
16116
16593
|
};
|
|
16117
16594
|
["Node"]: {
|
|
16118
|
-
__typename: "Administrator" | "Collection" | "Customer" | "Facet" | "HistoryEntry" | "Job" | "Order" | "Fulfillment" | "Payment" | "OrderModification" | "Product" | "ProductVariant" | "StockLevel" | "StockLocation" | "StockAdjustment" | "Allocation" | "Sale" | "Cancellation" | "Return" | "Release" | "Address" | "Asset" | "Channel" | "CustomerGroup" | "FacetValue" | "OrderLine" | "Refund" | "Surcharge" | "PaymentMethod" | "ProductOptionGroup" | "ProductOption" | "Promotion" | "Region" | "Country" | "Province" | "Role" | "Seller" | "ShippingMethod" | "Tag" | "TaxCategory" | "TaxRate" | "User" | "AuthenticationMethod" | "Zone";
|
|
16595
|
+
__typename: "Administrator" | "Collection" | "Customer" | "Facet" | "HistoryEntry" | "Job" | "Order" | "Fulfillment" | "Payment" | "OrderModification" | "Product" | "ProductVariant" | "StockLevel" | "StockLocation" | "StockAdjustment" | "Allocation" | "Sale" | "Cancellation" | "Return" | "Release" | "Address" | "Asset" | "Channel" | "CustomerGroup" | "FacetValue" | "OrderLine" | "Refund" | "Surcharge" | "PaymentMethod" | "ProductOptionGroup" | "ProductOption" | "Promotion" | "Region" | "Country" | "Province" | "Role" | "Seller" | "ShippingMethod" | "Tag" | "TaxCategory" | "TaxRate" | "User" | "AuthenticationMethod" | "Zone" | "MerchantPlatformSettingsEntity";
|
|
16119
16596
|
id: GraphQLTypes["ID"];
|
|
16120
16597
|
['...on Administrator']: '__union' & GraphQLTypes["Administrator"];
|
|
16121
16598
|
['...on Collection']: '__union' & GraphQLTypes["Collection"];
|
|
@@ -16161,6 +16638,7 @@ current session. */
|
|
|
16161
16638
|
['...on User']: '__union' & GraphQLTypes["User"];
|
|
16162
16639
|
['...on AuthenticationMethod']: '__union' & GraphQLTypes["AuthenticationMethod"];
|
|
16163
16640
|
['...on Zone']: '__union' & GraphQLTypes["Zone"];
|
|
16641
|
+
['...on MerchantPlatformSettingsEntity']: '__union' & GraphQLTypes["MerchantPlatformSettingsEntity"];
|
|
16164
16642
|
};
|
|
16165
16643
|
["ErrorResult"]: {
|
|
16166
16644
|
__typename: "MimeTypeError" | "LanguageNotAvailableError" | "DuplicateEntityError" | "FacetInUseError" | "ChannelDefaultLanguageError" | "SettlePaymentError" | "CancelPaymentError" | "EmptyOrderLineSelectionError" | "ItemsAlreadyFulfilledError" | "InvalidFulfillmentHandlerError" | "CreateFulfillmentError" | "InsufficientStockOnHandError" | "MultipleOrderError" | "CancelActiveOrderError" | "PaymentOrderMismatchError" | "RefundOrderStateError" | "NothingToRefundError" | "AlreadyRefundedError" | "QuantityTooGreatError" | "RefundAmountError" | "RefundStateTransitionError" | "PaymentStateTransitionError" | "FulfillmentStateTransitionError" | "OrderModificationStateError" | "NoChangesSpecifiedError" | "PaymentMethodMissingError" | "RefundPaymentIdMissingError" | "ManualPaymentStateError" | "ProductOptionInUseError" | "MissingConditionsError" | "NativeAuthStrategyError" | "InvalidCredentialsError" | "OrderStateTransitionError" | "EmailAddressConflictError" | "GuestCheckoutError" | "OrderLimitError" | "NegativeQuantityError" | "InsufficientStockError" | "CouponCodeInvalidError" | "CouponCodeExpiredError" | "CouponCodeLimitError" | "OrderModificationError" | "IneligibleShippingMethodError" | "NoActiveOrderError" | "OrderMiddlewareError";
|
|
@@ -17251,6 +17729,137 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
17251
17729
|
members: Array<GraphQLTypes["Region"]>;
|
|
17252
17730
|
customFields?: GraphQLTypes["JSON"] | undefined | null;
|
|
17253
17731
|
};
|
|
17732
|
+
["MerchantPlatformSetting"]: {
|
|
17733
|
+
__typename: "MerchantPlatformSetting";
|
|
17734
|
+
key: string;
|
|
17735
|
+
value: string;
|
|
17736
|
+
};
|
|
17737
|
+
["MerchantPlatformSettingsEntity"]: {
|
|
17738
|
+
__typename: "MerchantPlatformSettingsEntity";
|
|
17739
|
+
id: GraphQLTypes["ID"];
|
|
17740
|
+
platform: string;
|
|
17741
|
+
entries: Array<GraphQLTypes["MerchantPlatformSetting"]>;
|
|
17742
|
+
};
|
|
17743
|
+
["MerchantPlatformInfo"]: {
|
|
17744
|
+
__typename: "MerchantPlatformInfo";
|
|
17745
|
+
isValidConnection: boolean;
|
|
17746
|
+
productsCount: number;
|
|
17747
|
+
connectionStatus?: string | undefined | null;
|
|
17748
|
+
dataSourceVerified?: boolean | undefined | null;
|
|
17749
|
+
checkedAt?: GraphQLTypes["DateTime"] | undefined | null;
|
|
17750
|
+
latencyMs?: number | undefined | null;
|
|
17751
|
+
disapprovedProductsCount?: number | undefined | null;
|
|
17752
|
+
issuesCount?: number | undefined | null;
|
|
17753
|
+
lastError?: GraphQLTypes["MerchantPlatformError"] | undefined | null;
|
|
17754
|
+
issues?: Array<GraphQLTypes["MerchantProductIssue"]> | undefined | null;
|
|
17755
|
+
};
|
|
17756
|
+
["MerchantPlatformError"]: {
|
|
17757
|
+
__typename: "MerchantPlatformError";
|
|
17758
|
+
code: string;
|
|
17759
|
+
message: string;
|
|
17760
|
+
retryable: boolean;
|
|
17761
|
+
};
|
|
17762
|
+
["MerchantProductIssue"]: {
|
|
17763
|
+
__typename: "MerchantProductIssue";
|
|
17764
|
+
offerId: string;
|
|
17765
|
+
code: string;
|
|
17766
|
+
description: string;
|
|
17767
|
+
severity: string;
|
|
17768
|
+
};
|
|
17769
|
+
["MerchantSyncItem"]: {
|
|
17770
|
+
__typename: "MerchantSyncItem";
|
|
17771
|
+
id: GraphQLTypes["ID"];
|
|
17772
|
+
offerId: string;
|
|
17773
|
+
operation: string;
|
|
17774
|
+
status: string;
|
|
17775
|
+
errorCode?: string | undefined | null;
|
|
17776
|
+
errorMessage?: string | undefined | null;
|
|
17777
|
+
attempts: number;
|
|
17778
|
+
};
|
|
17779
|
+
["MerchantSyncRun"]: {
|
|
17780
|
+
__typename: "MerchantSyncRun";
|
|
17781
|
+
id: GraphQLTypes["ID"];
|
|
17782
|
+
createdAt: GraphQLTypes["DateTime"];
|
|
17783
|
+
platform: string;
|
|
17784
|
+
trigger: string;
|
|
17785
|
+
status: string;
|
|
17786
|
+
jobId?: string | undefined | null;
|
|
17787
|
+
total: number;
|
|
17788
|
+
succeeded: number;
|
|
17789
|
+
failed: number;
|
|
17790
|
+
errorSummary?: string | undefined | null;
|
|
17791
|
+
startedAt?: GraphQLTypes["DateTime"] | undefined | null;
|
|
17792
|
+
finishedAt?: GraphQLTypes["DateTime"] | undefined | null;
|
|
17793
|
+
items: Array<GraphQLTypes["MerchantSyncItem"]>;
|
|
17794
|
+
};
|
|
17795
|
+
["MerchantPlatformSettingInput"]: {
|
|
17796
|
+
key: string;
|
|
17797
|
+
value: string;
|
|
17798
|
+
};
|
|
17799
|
+
["SaveMerchantPlatformSettingInput"]: {
|
|
17800
|
+
platform: string;
|
|
17801
|
+
entries: Array<GraphQLTypes["MerchantPlatformSettingInput"]>;
|
|
17802
|
+
};
|
|
17803
|
+
["AdditionalOrderState"]: {
|
|
17804
|
+
__typename: "AdditionalOrderState";
|
|
17805
|
+
state: string;
|
|
17806
|
+
selectedByDefault: boolean;
|
|
17807
|
+
};
|
|
17808
|
+
["ChartDataType"]: {
|
|
17809
|
+
__typename: "ChartDataType";
|
|
17810
|
+
type: GraphQLTypes["ChartMetricType"];
|
|
17811
|
+
title: string;
|
|
17812
|
+
entries: Array<GraphQLTypes["ChartEntry"]>;
|
|
17813
|
+
};
|
|
17814
|
+
["ChartMetrics"]: {
|
|
17815
|
+
__typename: "ChartMetrics";
|
|
17816
|
+
data: Array<GraphQLTypes["ChartDataType"]>;
|
|
17817
|
+
};
|
|
17818
|
+
["OrderSummaryMetrics"]: {
|
|
17819
|
+
__typename: "OrderSummaryMetrics";
|
|
17820
|
+
data: GraphQLTypes["OrderSummaryDataMetric"];
|
|
17821
|
+
};
|
|
17822
|
+
["OrderSummaryDataMetric"]: {
|
|
17823
|
+
__typename: "OrderSummaryDataMetric";
|
|
17824
|
+
currencyCode: GraphQLTypes["CurrencyCode"];
|
|
17825
|
+
total: number;
|
|
17826
|
+
totalWithTax: number;
|
|
17827
|
+
orderCount: number;
|
|
17828
|
+
averageOrderValue: number;
|
|
17829
|
+
averageOrderValueWithTax: number;
|
|
17830
|
+
productCount: number;
|
|
17831
|
+
};
|
|
17832
|
+
["MetricRangeType"]: MetricRangeType;
|
|
17833
|
+
["MetricIntervalType"]: MetricIntervalType;
|
|
17834
|
+
["ChartMetricType"]: ChartMetricType;
|
|
17835
|
+
["ChartEntryAdditionalData"]: {
|
|
17836
|
+
__typename: "ChartEntryAdditionalData";
|
|
17837
|
+
id: string;
|
|
17838
|
+
name: string;
|
|
17839
|
+
quantity: number;
|
|
17840
|
+
};
|
|
17841
|
+
["ChartEntry"]: {
|
|
17842
|
+
__typename: "ChartEntry";
|
|
17843
|
+
intervalTick: number;
|
|
17844
|
+
value: number;
|
|
17845
|
+
additionalData?: Array<GraphQLTypes["ChartEntryAdditionalData"]> | undefined | null;
|
|
17846
|
+
};
|
|
17847
|
+
["BetterMetricRangeInput"]: {
|
|
17848
|
+
start: GraphQLTypes["DateTime"];
|
|
17849
|
+
end?: GraphQLTypes["DateTime"] | undefined | null;
|
|
17850
|
+
};
|
|
17851
|
+
["OrderSummaryMetricInput"]: {
|
|
17852
|
+
range: GraphQLTypes["BetterMetricRangeInput"];
|
|
17853
|
+
orderStates: Array<string>;
|
|
17854
|
+
};
|
|
17855
|
+
["ChartMetricInput"]: {
|
|
17856
|
+
range: GraphQLTypes["BetterMetricRangeInput"];
|
|
17857
|
+
interval: GraphQLTypes["MetricIntervalType"];
|
|
17858
|
+
types: Array<GraphQLTypes["ChartMetricType"]>;
|
|
17859
|
+
orderStates: Array<string>;
|
|
17860
|
+
productIDs?: Array<string> | undefined | null;
|
|
17861
|
+
net?: boolean | undefined | null;
|
|
17862
|
+
};
|
|
17254
17863
|
["SetInpostShippingMethodConfigInput"]: {
|
|
17255
17864
|
shippingMethodId: GraphQLTypes["ID"];
|
|
17256
17865
|
host: string;
|
|
@@ -17407,6 +18016,7 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
17407
18016
|
price?: GraphQLTypes["SortOrder"] | undefined | null;
|
|
17408
18017
|
priceWithTax?: GraphQLTypes["SortOrder"] | undefined | null;
|
|
17409
18018
|
stockLevel?: GraphQLTypes["SortOrder"] | undefined | null;
|
|
18019
|
+
communicateID?: GraphQLTypes["SortOrder"] | undefined | null;
|
|
17410
18020
|
};
|
|
17411
18021
|
["CountryFilterParameter"]: {
|
|
17412
18022
|
id?: GraphQLTypes["IDOperators"] | undefined | null;
|
|
@@ -17745,6 +18355,10 @@ The `code` field is typically a 2-character ISO code such as "GB", "US", "DE" et
|
|
|
17745
18355
|
["UpdateOrderCustomFieldsInput"]: {
|
|
17746
18356
|
pickupPointId?: string | undefined | null;
|
|
17747
18357
|
};
|
|
18358
|
+
["ProductVariantCustomFields"]: {
|
|
18359
|
+
__typename: "ProductVariantCustomFields";
|
|
18360
|
+
communicateID?: string | undefined | null;
|
|
18361
|
+
};
|
|
17748
18362
|
["NativeAuthInput"]: {
|
|
17749
18363
|
username: string;
|
|
17750
18364
|
password: string;
|
|
@@ -18372,6 +18986,31 @@ export declare enum OrderType {
|
|
|
18372
18986
|
Seller = "Seller",
|
|
18373
18987
|
Aggregate = "Aggregate"
|
|
18374
18988
|
}
|
|
18989
|
+
export declare enum MetricRangeType {
|
|
18990
|
+
Today = "Today",
|
|
18991
|
+
Yesterday = "Yesterday",
|
|
18992
|
+
ThisWeek = "ThisWeek",
|
|
18993
|
+
LastWeek = "LastWeek",
|
|
18994
|
+
ThisMonth = "ThisMonth",
|
|
18995
|
+
LastMonth = "LastMonth",
|
|
18996
|
+
ThisYear = "ThisYear",
|
|
18997
|
+
LastYear = "LastYear",
|
|
18998
|
+
FirstQuarter = "FirstQuarter",
|
|
18999
|
+
SecondQuarter = "SecondQuarter",
|
|
19000
|
+
ThirdQuarter = "ThirdQuarter",
|
|
19001
|
+
FourthQuarter = "FourthQuarter",
|
|
19002
|
+
Custom = "Custom"
|
|
19003
|
+
}
|
|
19004
|
+
export declare enum MetricIntervalType {
|
|
19005
|
+
Day = "Day",
|
|
19006
|
+
Hour = "Hour"
|
|
19007
|
+
}
|
|
19008
|
+
export declare enum ChartMetricType {
|
|
19009
|
+
OrderCount = "OrderCount",
|
|
19010
|
+
OrderTotal = "OrderTotal",
|
|
19011
|
+
AverageOrderValue = "AverageOrderValue",
|
|
19012
|
+
OrderTotalProductsCount = "OrderTotalProductsCount"
|
|
19013
|
+
}
|
|
18375
19014
|
export declare enum MetricInterval {
|
|
18376
19015
|
Daily = "Daily"
|
|
18377
19016
|
}
|
|
@@ -18566,6 +19205,14 @@ type ZEUS_VARIABLES = {
|
|
|
18566
19205
|
["HistoryEntryListOptions"]: ValueTypes["HistoryEntryListOptions"];
|
|
18567
19206
|
["LanguageCode"]: ValueTypes["LanguageCode"];
|
|
18568
19207
|
["OrderType"]: ValueTypes["OrderType"];
|
|
19208
|
+
["MerchantPlatformSettingInput"]: ValueTypes["MerchantPlatformSettingInput"];
|
|
19209
|
+
["SaveMerchantPlatformSettingInput"]: ValueTypes["SaveMerchantPlatformSettingInput"];
|
|
19210
|
+
["MetricRangeType"]: ValueTypes["MetricRangeType"];
|
|
19211
|
+
["MetricIntervalType"]: ValueTypes["MetricIntervalType"];
|
|
19212
|
+
["ChartMetricType"]: ValueTypes["ChartMetricType"];
|
|
19213
|
+
["BetterMetricRangeInput"]: ValueTypes["BetterMetricRangeInput"];
|
|
19214
|
+
["OrderSummaryMetricInput"]: ValueTypes["OrderSummaryMetricInput"];
|
|
19215
|
+
["ChartMetricInput"]: ValueTypes["ChartMetricInput"];
|
|
18569
19216
|
["SetInpostShippingMethodConfigInput"]: ValueTypes["SetInpostShippingMethodConfigInput"];
|
|
18570
19217
|
["GetInpostOrganizationsInput"]: ValueTypes["GetInpostOrganizationsInput"];
|
|
18571
19218
|
["MetricInterval"]: ValueTypes["MetricInterval"];
|