@deenruv/merchant-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/ui/zeus/const.ts +106 -1
- package/dist/plugin-server/ui/zeus/index.ts +482 -10
- package/dist/plugin-server/zeus/const.js +104 -1
- package/dist/plugin-server/zeus/index.d.ts +492 -6
- package/dist/plugin-ui/graphql/mutations.d.ts +4 -4
- package/dist/plugin-ui/graphql/queries.d.ts +2 -2
- package/dist/plugin-ui/zeus/const.js +104 -1
- package/dist/plugin-ui/zeus/index.d.ts +492 -6
- package/package.json +7 -7
|
@@ -119,6 +119,13 @@ exports.AllTypesProps = {
|
|
|
119
119
|
zone: {},
|
|
120
120
|
getMerchantPlatformSettings: {},
|
|
121
121
|
getMerchantPlatformInfo: {},
|
|
122
|
+
getMerchantSyncHistory: {},
|
|
123
|
+
chartMetric: {
|
|
124
|
+
input: "ChartMetricInput"
|
|
125
|
+
},
|
|
126
|
+
orderSummaryMetric: {
|
|
127
|
+
input: "OrderSummaryMetricInput"
|
|
128
|
+
},
|
|
122
129
|
getInpostOrganizations: {
|
|
123
130
|
input: "GetInpostOrganizationsInput"
|
|
124
131
|
},
|
|
@@ -1181,6 +1188,21 @@ exports.AllTypesProps = {
|
|
|
1181
1188
|
SaveMerchantPlatformSettingInput: {
|
|
1182
1189
|
entries: "MerchantPlatformSettingInput"
|
|
1183
1190
|
},
|
|
1191
|
+
MetricRangeType: "enum",
|
|
1192
|
+
MetricIntervalType: "enum",
|
|
1193
|
+
ChartMetricType: "enum",
|
|
1194
|
+
BetterMetricRangeInput: {
|
|
1195
|
+
start: "DateTime",
|
|
1196
|
+
end: "DateTime"
|
|
1197
|
+
},
|
|
1198
|
+
OrderSummaryMetricInput: {
|
|
1199
|
+
range: "BetterMetricRangeInput"
|
|
1200
|
+
},
|
|
1201
|
+
ChartMetricInput: {
|
|
1202
|
+
range: "BetterMetricRangeInput",
|
|
1203
|
+
interval: "MetricIntervalType",
|
|
1204
|
+
types: "ChartMetricType"
|
|
1205
|
+
},
|
|
1184
1206
|
SetInpostShippingMethodConfigInput: {},
|
|
1185
1207
|
GetInpostOrganizationsInput: {},
|
|
1186
1208
|
MetricInterval: "enum",
|
|
@@ -1701,6 +1723,10 @@ exports.ReturnTypes = {
|
|
|
1701
1723
|
zone: "Zone",
|
|
1702
1724
|
getMerchantPlatformSettings: "MerchantPlatformSettingsEntity",
|
|
1703
1725
|
getMerchantPlatformInfo: "MerchantPlatformInfo",
|
|
1726
|
+
getMerchantSyncHistory: "MerchantSyncRun",
|
|
1727
|
+
additionalOrderStates: "AdditionalOrderState",
|
|
1728
|
+
chartMetric: "ChartMetrics",
|
|
1729
|
+
orderSummaryMetric: "OrderSummaryMetrics",
|
|
1704
1730
|
getInpostConfig: "InpostConfig",
|
|
1705
1731
|
getInpostOrganizations: "InpostOrganizationResponse",
|
|
1706
1732
|
metricSummary: "MetricSummary"
|
|
@@ -3609,7 +3635,84 @@ exports.ReturnTypes = {
|
|
|
3609
3635
|
},
|
|
3610
3636
|
MerchantPlatformInfo: {
|
|
3611
3637
|
isValidConnection: "Boolean",
|
|
3612
|
-
productsCount: "Int"
|
|
3638
|
+
productsCount: "Int",
|
|
3639
|
+
connectionStatus: "String",
|
|
3640
|
+
dataSourceVerified: "Boolean",
|
|
3641
|
+
checkedAt: "DateTime",
|
|
3642
|
+
latencyMs: "Int",
|
|
3643
|
+
disapprovedProductsCount: "Int",
|
|
3644
|
+
issuesCount: "Int",
|
|
3645
|
+
lastError: "MerchantPlatformError",
|
|
3646
|
+
issues: "MerchantProductIssue"
|
|
3647
|
+
},
|
|
3648
|
+
MerchantPlatformError: {
|
|
3649
|
+
code: "String",
|
|
3650
|
+
message: "String",
|
|
3651
|
+
retryable: "Boolean"
|
|
3652
|
+
},
|
|
3653
|
+
MerchantProductIssue: {
|
|
3654
|
+
offerId: "String",
|
|
3655
|
+
code: "String",
|
|
3656
|
+
description: "String",
|
|
3657
|
+
severity: "String"
|
|
3658
|
+
},
|
|
3659
|
+
MerchantSyncItem: {
|
|
3660
|
+
id: "ID",
|
|
3661
|
+
offerId: "String",
|
|
3662
|
+
operation: "String",
|
|
3663
|
+
status: "String",
|
|
3664
|
+
errorCode: "String",
|
|
3665
|
+
errorMessage: "String",
|
|
3666
|
+
attempts: "Int"
|
|
3667
|
+
},
|
|
3668
|
+
MerchantSyncRun: {
|
|
3669
|
+
id: "ID",
|
|
3670
|
+
createdAt: "DateTime",
|
|
3671
|
+
platform: "String",
|
|
3672
|
+
trigger: "String",
|
|
3673
|
+
status: "String",
|
|
3674
|
+
jobId: "String",
|
|
3675
|
+
total: "Int",
|
|
3676
|
+
succeeded: "Int",
|
|
3677
|
+
failed: "Int",
|
|
3678
|
+
errorSummary: "String",
|
|
3679
|
+
startedAt: "DateTime",
|
|
3680
|
+
finishedAt: "DateTime",
|
|
3681
|
+
items: "MerchantSyncItem"
|
|
3682
|
+
},
|
|
3683
|
+
AdditionalOrderState: {
|
|
3684
|
+
state: "String",
|
|
3685
|
+
selectedByDefault: "Boolean"
|
|
3686
|
+
},
|
|
3687
|
+
ChartDataType: {
|
|
3688
|
+
type: "ChartMetricType",
|
|
3689
|
+
title: "String",
|
|
3690
|
+
entries: "ChartEntry"
|
|
3691
|
+
},
|
|
3692
|
+
ChartMetrics: {
|
|
3693
|
+
data: "ChartDataType"
|
|
3694
|
+
},
|
|
3695
|
+
OrderSummaryMetrics: {
|
|
3696
|
+
data: "OrderSummaryDataMetric"
|
|
3697
|
+
},
|
|
3698
|
+
OrderSummaryDataMetric: {
|
|
3699
|
+
currencyCode: "CurrencyCode",
|
|
3700
|
+
total: "Float",
|
|
3701
|
+
totalWithTax: "Float",
|
|
3702
|
+
orderCount: "Float",
|
|
3703
|
+
averageOrderValue: "Float",
|
|
3704
|
+
averageOrderValueWithTax: "Float",
|
|
3705
|
+
productCount: "Float"
|
|
3706
|
+
},
|
|
3707
|
+
ChartEntryAdditionalData: {
|
|
3708
|
+
id: "String",
|
|
3709
|
+
name: "String",
|
|
3710
|
+
quantity: "Float"
|
|
3711
|
+
},
|
|
3712
|
+
ChartEntry: {
|
|
3713
|
+
intervalTick: "Int",
|
|
3714
|
+
value: "Float",
|
|
3715
|
+
additionalData: "ChartEntryAdditionalData"
|
|
3613
3716
|
},
|
|
3614
3717
|
InpostConfig: {
|
|
3615
3718
|
shippingMethodId: "ID",
|