@deenruv/replicate-plugin 1.0.17-dev.20 → 1.0.17-dev.24
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/graphql/generated-admin-types.d.ts +411 -61
- package/dist/plugin-server/graphql/generated-admin-types.js +29 -11
- package/dist/plugin-server/zeus/const.js +802 -634
- package/dist/plugin-server/zeus/index.d.ts +5727 -3479
- package/dist/plugin-server/zeus/index.js +123 -82
- package/dist/plugin-server/zeus/typedDocumentNode.d.ts +2 -2
- package/dist/plugin-ui/graphql/queries.d.ts +2 -2
- package/dist/plugin-ui/graphql/selectors.d.ts +3 -2
- package/dist/plugin-ui/zeus/const.js +802 -634
- package/dist/plugin-ui/zeus/index.d.ts +5727 -3479
- package/dist/plugin-ui/zeus/index.js +123 -82
- package/dist/plugin-ui/zeus/typedDocumentNode.d.ts +2 -2
- package/dist/plugin-ui/zeus/typedDocumentNode.js +2 -2
- package/package.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StockMovementType = exports.SortOrder = exports.PredictionType = exports.PredictionStatus = exports.Permission = exports.OrderType = exports.
|
|
3
|
+
exports.StockMovementType = exports.SortOrder = exports.PredictionType = exports.PredictionStatus = exports.Permission = exports.OrderType = exports.MetricRangeType = exports.MetricIntervalType = exports.LogicalOperator = exports.LanguageCode = exports.JobState = exports.HistoryEntryType = exports.GlobalFlag = exports.ErrorCode = exports.DeletionResult = exports.CurrencyCode = exports.ChartMetricType = exports.AssetType = exports.AdjustmentType = void 0;
|
|
4
4
|
var AdjustmentType;
|
|
5
5
|
(function (AdjustmentType) {
|
|
6
6
|
AdjustmentType["DISTRIBUTED_ORDER_PROMOTION"] = "DISTRIBUTED_ORDER_PROMOTION";
|
|
@@ -13,6 +13,13 @@ var AssetType;
|
|
|
13
13
|
AssetType["IMAGE"] = "IMAGE";
|
|
14
14
|
AssetType["VIDEO"] = "VIDEO";
|
|
15
15
|
})(AssetType || (exports.AssetType = AssetType = {}));
|
|
16
|
+
var ChartMetricType;
|
|
17
|
+
(function (ChartMetricType) {
|
|
18
|
+
ChartMetricType["AverageOrderValue"] = "AverageOrderValue";
|
|
19
|
+
ChartMetricType["OrderCount"] = "OrderCount";
|
|
20
|
+
ChartMetricType["OrderTotal"] = "OrderTotal";
|
|
21
|
+
ChartMetricType["OrderTotalProductsCount"] = "OrderTotalProductsCount";
|
|
22
|
+
})(ChartMetricType || (exports.ChartMetricType = ChartMetricType = {}));
|
|
16
23
|
/**
|
|
17
24
|
* @description
|
|
18
25
|
* ISO 4217 currency code
|
|
@@ -772,16 +779,27 @@ var LogicalOperator;
|
|
|
772
779
|
LogicalOperator["AND"] = "AND";
|
|
773
780
|
LogicalOperator["OR"] = "OR";
|
|
774
781
|
})(LogicalOperator || (exports.LogicalOperator = LogicalOperator = {}));
|
|
775
|
-
var
|
|
776
|
-
(function (
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
782
|
+
var MetricIntervalType;
|
|
783
|
+
(function (MetricIntervalType) {
|
|
784
|
+
MetricIntervalType["Day"] = "Day";
|
|
785
|
+
MetricIntervalType["Hour"] = "Hour";
|
|
786
|
+
})(MetricIntervalType || (exports.MetricIntervalType = MetricIntervalType = {}));
|
|
787
|
+
var MetricRangeType;
|
|
788
|
+
(function (MetricRangeType) {
|
|
789
|
+
MetricRangeType["Custom"] = "Custom";
|
|
790
|
+
MetricRangeType["FirstQuarter"] = "FirstQuarter";
|
|
791
|
+
MetricRangeType["FourthQuarter"] = "FourthQuarter";
|
|
792
|
+
MetricRangeType["LastMonth"] = "LastMonth";
|
|
793
|
+
MetricRangeType["LastWeek"] = "LastWeek";
|
|
794
|
+
MetricRangeType["LastYear"] = "LastYear";
|
|
795
|
+
MetricRangeType["SecondQuarter"] = "SecondQuarter";
|
|
796
|
+
MetricRangeType["ThirdQuarter"] = "ThirdQuarter";
|
|
797
|
+
MetricRangeType["ThisMonth"] = "ThisMonth";
|
|
798
|
+
MetricRangeType["ThisWeek"] = "ThisWeek";
|
|
799
|
+
MetricRangeType["ThisYear"] = "ThisYear";
|
|
800
|
+
MetricRangeType["Today"] = "Today";
|
|
801
|
+
MetricRangeType["Yesterday"] = "Yesterday";
|
|
802
|
+
})(MetricRangeType || (exports.MetricRangeType = MetricRangeType = {}));
|
|
785
803
|
var OrderType;
|
|
786
804
|
(function (OrderType) {
|
|
787
805
|
OrderType["Aggregate"] = "Aggregate";
|