@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.
@@ -117,6 +117,15 @@ exports.AllTypesProps = {
117
117
  options: "ZoneListOptions"
118
118
  },
119
119
  zone: {},
120
+ getMerchantPlatformSettings: {},
121
+ getMerchantPlatformInfo: {},
122
+ getMerchantSyncHistory: {},
123
+ chartMetric: {
124
+ input: "ChartMetricInput"
125
+ },
126
+ orderSummaryMetric: {
127
+ input: "OrderSummaryMetricInput"
128
+ },
120
129
  getInpostOrganizations: {
121
130
  input: "GetInpostOrganizationsInput"
122
131
  },
@@ -478,6 +487,11 @@ exports.AllTypesProps = {
478
487
  deleteZones: {},
479
488
  addMembersToZone: {},
480
489
  removeMembersFromZone: {},
490
+ sendAllProductsToMerchantPlatform: {},
491
+ saveMerchantPlatformSettings: {
492
+ input: "SaveMerchantPlatformSettingInput"
493
+ },
494
+ removeOrphanItems: {},
481
495
  setInpostShippingMethodConfig: {
482
496
  input: "SetInpostShippingMethodConfigInput"
483
497
  }
@@ -892,7 +906,8 @@ exports.AllTypesProps = {
892
906
  priceWithTax: "NumberOperators",
893
907
  stockLevel: "StringOperators",
894
908
  _and: "ProductVariantFilterParameter",
895
- _or: "ProductVariantFilterParameter"
909
+ _or: "ProductVariantFilterParameter",
910
+ communicateID: "StringOperators"
896
911
  },
897
912
  ProductTranslationInput: {
898
913
  languageCode: "LanguageCode",
@@ -1169,6 +1184,25 @@ exports.AllTypesProps = {
1169
1184
  },
1170
1185
  LanguageCode: "enum",
1171
1186
  OrderType: "enum",
1187
+ MerchantPlatformSettingInput: {},
1188
+ SaveMerchantPlatformSettingInput: {
1189
+ entries: "MerchantPlatformSettingInput"
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
+ },
1172
1206
  SetInpostShippingMethodConfigInput: {},
1173
1207
  GetInpostOrganizationsInput: {},
1174
1208
  MetricInterval: "enum",
@@ -1282,7 +1316,8 @@ exports.AllTypesProps = {
1282
1316
  name: "SortOrder",
1283
1317
  price: "SortOrder",
1284
1318
  priceWithTax: "SortOrder",
1285
- stockLevel: "SortOrder"
1319
+ stockLevel: "SortOrder",
1320
+ communicateID: "SortOrder"
1286
1321
  },
1287
1322
  CountryFilterParameter: {
1288
1323
  id: "IDOperators",
@@ -1687,6 +1722,12 @@ exports.ReturnTypes = {
1687
1722
  taxRate: "TaxRate",
1688
1723
  zones: "ZoneList",
1689
1724
  zone: "Zone",
1725
+ getMerchantPlatformSettings: "MerchantPlatformSettingsEntity",
1726
+ getMerchantPlatformInfo: "MerchantPlatformInfo",
1727
+ getMerchantSyncHistory: "MerchantSyncRun",
1728
+ additionalOrderStates: "AdditionalOrderState",
1729
+ chartMetric: "ChartMetrics",
1730
+ orderSummaryMetric: "OrderSummaryMetrics",
1690
1731
  getInpostConfig: "InpostConfig",
1691
1732
  getInpostOrganizations: "InpostOrganizationResponse",
1692
1733
  metricSummary: "MetricSummary"
@@ -1855,6 +1896,9 @@ exports.ReturnTypes = {
1855
1896
  deleteZones: "DeletionResponse",
1856
1897
  addMembersToZone: "Zone",
1857
1898
  removeMembersFromZone: "Zone",
1899
+ sendAllProductsToMerchantPlatform: "Boolean",
1900
+ saveMerchantPlatformSettings: "MerchantPlatformSettingsEntity",
1901
+ removeOrphanItems: "Boolean",
1858
1902
  setInpostShippingMethodConfig: "Boolean"
1859
1903
  },
1860
1904
  Administrator: {
@@ -2410,7 +2454,7 @@ exports.ReturnTypes = {
2410
2454
  options: "ProductOption",
2411
2455
  facetValues: "FacetValue",
2412
2456
  translations: "ProductVariantTranslation",
2413
- customFields: "JSON"
2457
+ customFields: "ProductVariantCustomFields"
2414
2458
  },
2415
2459
  SearchResult: {
2416
2460
  enabled: "Boolean",
@@ -2812,6 +2856,7 @@ exports.ReturnTypes = {
2812
2856
  "...on User": "User",
2813
2857
  "...on AuthenticationMethod": "AuthenticationMethod",
2814
2858
  "...on Zone": "Zone",
2859
+ "...on MerchantPlatformSettingsEntity": "MerchantPlatformSettingsEntity",
2815
2860
  id: "ID"
2816
2861
  },
2817
2862
  ErrorResult: {
@@ -3580,6 +3625,96 @@ exports.ReturnTypes = {
3580
3625
  members: "Region",
3581
3626
  customFields: "JSON"
3582
3627
  },
3628
+ MerchantPlatformSetting: {
3629
+ key: "String",
3630
+ value: "String"
3631
+ },
3632
+ MerchantPlatformSettingsEntity: {
3633
+ id: "ID",
3634
+ platform: "String",
3635
+ entries: "MerchantPlatformSetting"
3636
+ },
3637
+ MerchantPlatformInfo: {
3638
+ isValidConnection: "Boolean",
3639
+ productsCount: "Int",
3640
+ connectionStatus: "String",
3641
+ dataSourceVerified: "Boolean",
3642
+ checkedAt: "DateTime",
3643
+ latencyMs: "Int",
3644
+ disapprovedProductsCount: "Int",
3645
+ issuesCount: "Int",
3646
+ lastError: "MerchantPlatformError",
3647
+ issues: "MerchantProductIssue"
3648
+ },
3649
+ MerchantPlatformError: {
3650
+ code: "String",
3651
+ message: "String",
3652
+ retryable: "Boolean"
3653
+ },
3654
+ MerchantProductIssue: {
3655
+ offerId: "String",
3656
+ code: "String",
3657
+ description: "String",
3658
+ severity: "String"
3659
+ },
3660
+ MerchantSyncItem: {
3661
+ id: "ID",
3662
+ offerId: "String",
3663
+ operation: "String",
3664
+ status: "String",
3665
+ errorCode: "String",
3666
+ errorMessage: "String",
3667
+ attempts: "Int"
3668
+ },
3669
+ MerchantSyncRun: {
3670
+ id: "ID",
3671
+ createdAt: "DateTime",
3672
+ platform: "String",
3673
+ trigger: "String",
3674
+ status: "String",
3675
+ jobId: "String",
3676
+ total: "Int",
3677
+ succeeded: "Int",
3678
+ failed: "Int",
3679
+ errorSummary: "String",
3680
+ startedAt: "DateTime",
3681
+ finishedAt: "DateTime",
3682
+ items: "MerchantSyncItem"
3683
+ },
3684
+ AdditionalOrderState: {
3685
+ state: "String",
3686
+ selectedByDefault: "Boolean"
3687
+ },
3688
+ ChartDataType: {
3689
+ type: "ChartMetricType",
3690
+ title: "String",
3691
+ entries: "ChartEntry"
3692
+ },
3693
+ ChartMetrics: {
3694
+ data: "ChartDataType"
3695
+ },
3696
+ OrderSummaryMetrics: {
3697
+ data: "OrderSummaryDataMetric"
3698
+ },
3699
+ OrderSummaryDataMetric: {
3700
+ currencyCode: "CurrencyCode",
3701
+ total: "Float",
3702
+ totalWithTax: "Float",
3703
+ orderCount: "Float",
3704
+ averageOrderValue: "Float",
3705
+ averageOrderValueWithTax: "Float",
3706
+ productCount: "Float"
3707
+ },
3708
+ ChartEntryAdditionalData: {
3709
+ id: "String",
3710
+ name: "String",
3711
+ quantity: "Float"
3712
+ },
3713
+ ChartEntry: {
3714
+ intervalTick: "Int",
3715
+ value: "Float",
3716
+ additionalData: "ChartEntryAdditionalData"
3717
+ },
3583
3718
  InpostConfig: {
3584
3719
  shippingMethodId: "ID",
3585
3720
  host: "String",
@@ -3612,6 +3747,9 @@ exports.ReturnTypes = {
3612
3747
  OrderCustomFields: {
3613
3748
  pickupPointId: "String"
3614
3749
  },
3750
+ ProductVariantCustomFields: {
3751
+ communicateID: "String"
3752
+ },
3615
3753
  CustomFields: {
3616
3754
  Address: "CustomFieldConfig",
3617
3755
  Administrator: "CustomFieldConfig",