oneentry 1.0.83 → 1.0.85
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/README.md +476 -442
- package/dist/auth-provider/authProvidersInterfaces.d.ts +1 -1
- package/dist/base/syncModules.js +20 -8
- package/dist/blocks/blocksApi.d.ts +4 -5
- package/dist/blocks/blocksApi.js +14 -14
- package/dist/blocks/blocksInterfaces.d.ts +7 -36
- package/dist/events/eventsApi.d.ts +4 -4
- package/dist/events/eventsApi.js +6 -6
- package/dist/events/eventsInterfaces.d.ts +2 -2
- package/dist/formsData/formsDataApi.d.ts +4 -4
- package/dist/formsData/formsDataApi.js +2 -2
- package/dist/formsData/formsDataInterfaces.d.ts +16 -5
- package/dist/orders/ordersApi.d.ts +4 -4
- package/dist/orders/ordersApi.js +2 -2
- package/dist/orders/ordersInterfaces.d.ts +17 -6
- package/dist/pages/pagesApi.js +21 -8
- package/dist/payments/paymentsApi.d.ts +2 -2
- package/dist/payments/paymentsApi.js +1 -1
- package/dist/payments/paymentsInterfaces.d.ts +9 -5
- package/dist/products/productsApi.d.ts +8 -8
- package/dist/products/productsApi.js +6 -6
- package/dist/products/productsInterfaces.d.ts +21 -17
- package/dist/users/usersApi.d.ts +1 -1
- package/dist/users/usersApi.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -468,7 +468,7 @@ Example return:
|
|
|
468
468
|
],
|
|
469
469
|
"notificationData": {
|
|
470
470
|
"email": "test@test.com",
|
|
471
|
-
"phonePush": "",
|
|
471
|
+
"phonePush": ["+999999999"],
|
|
472
472
|
"phoneSMS": "+9999999999"
|
|
473
473
|
},
|
|
474
474
|
"systemCode": {
|
|
@@ -850,27 +850,33 @@ const value = await Blocks.getBlocks('forTextBlock')
|
|
|
850
850
|
Example return:
|
|
851
851
|
|
|
852
852
|
```json
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
"
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
853
|
+
{
|
|
854
|
+
"total": 100,
|
|
855
|
+
"items": [
|
|
856
|
+
{
|
|
857
|
+
"id": 1,
|
|
858
|
+
"localizeInfos": {
|
|
859
|
+
"title": "Block"
|
|
860
|
+
},
|
|
861
|
+
"version": 0,
|
|
862
|
+
"position": 1,
|
|
863
|
+
"identifier": "block",
|
|
864
|
+
"type": "forTextBlock",
|
|
865
|
+
"templateIdentifier": null,
|
|
866
|
+
"isVisible": true,
|
|
867
|
+
"attributeValues": {}
|
|
868
|
+
}
|
|
869
|
+
]
|
|
870
|
+
}
|
|
869
871
|
```
|
|
870
872
|
|
|
871
873
|
<details>
|
|
872
874
|
<summary>Schema</summary>
|
|
873
875
|
|
|
876
|
+
**total:** number <br>
|
|
877
|
+
*total number of found records* <br>
|
|
878
|
+
example: 100 <br>
|
|
879
|
+
|
|
874
880
|
**id:** number <br>
|
|
875
881
|
*object identifier*
|
|
876
882
|
example: 1764 <br>
|
|
@@ -918,7 +924,7 @@ example: null <br>
|
|
|
918
924
|
---
|
|
919
925
|
|
|
920
926
|
|
|
921
|
-
### Blocks.getBlockByMarker(marker, langCode)
|
|
927
|
+
### Blocks.getBlockByMarker(marker, langCode, offset, limit)
|
|
922
928
|
|
|
923
929
|
```js
|
|
924
930
|
const value = await Blocks.getBlockByMarker('my-marker')
|
|
@@ -930,24 +936,87 @@ Example return:
|
|
|
930
936
|
|
|
931
937
|
```json
|
|
932
938
|
{
|
|
933
|
-
"
|
|
934
|
-
"
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
939
|
+
"total": 1,
|
|
940
|
+
"items": [
|
|
941
|
+
{
|
|
942
|
+
"id": 5,
|
|
943
|
+
"localizeInfos": {
|
|
944
|
+
"title": "Similar"
|
|
945
|
+
},
|
|
946
|
+
"version": 0,
|
|
947
|
+
"position": 1,
|
|
948
|
+
"identifier": "similar",
|
|
949
|
+
"type": "forSimilarProductBlock",
|
|
950
|
+
"templateIdentifier": "block-template",
|
|
951
|
+
"isVisible": true,
|
|
952
|
+
"attributeValues": {
|
|
953
|
+
"block-text": {
|
|
954
|
+
"type": "string",
|
|
955
|
+
"value": "",
|
|
956
|
+
"position": 0,
|
|
957
|
+
"isProductPreview": false
|
|
958
|
+
}
|
|
959
|
+
},
|
|
960
|
+
"countElementsPerRow": "1",
|
|
961
|
+
"quantity": "2",
|
|
962
|
+
"similarProducts": [
|
|
963
|
+
{
|
|
964
|
+
"id": 2,
|
|
965
|
+
"localizeInfos": {
|
|
966
|
+
"title": "Box"
|
|
967
|
+
},
|
|
968
|
+
"statusIdentifier": "sold",
|
|
969
|
+
"statusLocalizeInfos": {
|
|
970
|
+
"title": "Sold"
|
|
971
|
+
},
|
|
972
|
+
"attributeSetIdentifier": "products",
|
|
973
|
+
"position": 2,
|
|
974
|
+
"templateIdentifier": null,
|
|
975
|
+
"shortDescTemplateIdentifier": null,
|
|
976
|
+
"price": 148,
|
|
977
|
+
"additional": {
|
|
978
|
+
"prices": {
|
|
979
|
+
"min": 120,
|
|
980
|
+
"max": 150
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"sku": null,
|
|
984
|
+
"isSync": true,
|
|
985
|
+
"attributeValues": {
|
|
986
|
+
"price": {
|
|
987
|
+
"type": "integer",
|
|
988
|
+
"value": 148,
|
|
989
|
+
"position": 1,
|
|
990
|
+
"isProductPreview": false
|
|
991
|
+
},
|
|
992
|
+
"product-name": {
|
|
993
|
+
"type": "string",
|
|
994
|
+
"value": "Box text",
|
|
995
|
+
"position": 0,
|
|
996
|
+
"isProductPreview": false
|
|
997
|
+
},
|
|
998
|
+
"currency_products": {
|
|
999
|
+
"type": "string",
|
|
1000
|
+
"value": "$",
|
|
1001
|
+
"position": 2,
|
|
1002
|
+
"isProductPreview": false
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
"isVisible": true
|
|
1006
|
+
}
|
|
1007
|
+
]
|
|
1008
|
+
}
|
|
1009
|
+
]
|
|
945
1010
|
}
|
|
946
1011
|
```
|
|
947
1012
|
|
|
948
1013
|
<details>
|
|
949
1014
|
<summary>Schema</summary>
|
|
950
1015
|
|
|
1016
|
+
**total:** number <br>
|
|
1017
|
+
*total number of found records* <br>
|
|
1018
|
+
example: 100 <br>
|
|
1019
|
+
|
|
951
1020
|
**id:** number <br>
|
|
952
1021
|
*object identifier*
|
|
953
1022
|
example: 1764 <br>
|
|
@@ -994,125 +1063,6 @@ example: null <br>
|
|
|
994
1063
|
</details>
|
|
995
1064
|
---
|
|
996
1065
|
|
|
997
|
-
### Blocks.getSimilarProducts(marker, langCode, offset, limit)
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
```js
|
|
1001
|
-
const value = await Blocks.getSimilarProducts('my-marker', 'en_US')
|
|
1002
|
-
```
|
|
1003
|
-
|
|
1004
|
-
> This method return array of similar products from block by block marker.
|
|
1005
|
-
|
|
1006
|
-
Example return:
|
|
1007
|
-
|
|
1008
|
-
```json
|
|
1009
|
-
[
|
|
1010
|
-
{
|
|
1011
|
-
"id": 2,
|
|
1012
|
-
"localizeInfos": {
|
|
1013
|
-
"title": "Box"
|
|
1014
|
-
},
|
|
1015
|
-
"statusIdentifier": "sold",
|
|
1016
|
-
"statusLocalizeInfos": {
|
|
1017
|
-
"title": "Sold"
|
|
1018
|
-
},
|
|
1019
|
-
"attributeSetIdentifier": "products",
|
|
1020
|
-
"position": 1,
|
|
1021
|
-
"templateIdentifier": null,
|
|
1022
|
-
"shortDescTemplateIdentifier": null,
|
|
1023
|
-
"price": 148,
|
|
1024
|
-
"additional": {
|
|
1025
|
-
"prices": {
|
|
1026
|
-
"min": 120,
|
|
1027
|
-
"max": 150
|
|
1028
|
-
}
|
|
1029
|
-
},
|
|
1030
|
-
"sku": null,
|
|
1031
|
-
"isSync": true,
|
|
1032
|
-
"attributeValues": {
|
|
1033
|
-
"price": {
|
|
1034
|
-
"type": "integer",
|
|
1035
|
-
"value": "148",
|
|
1036
|
-
"position": 1,
|
|
1037
|
-
"isProductPreview": false
|
|
1038
|
-
},
|
|
1039
|
-
"product-name": {
|
|
1040
|
-
"type": "string",
|
|
1041
|
-
"value": "Box text",
|
|
1042
|
-
"position": 0,
|
|
1043
|
-
"isProductPreview": false
|
|
1044
|
-
},
|
|
1045
|
-
"currency_products": {
|
|
1046
|
-
"type": "string",
|
|
1047
|
-
"value": "$",
|
|
1048
|
-
"position": 2,
|
|
1049
|
-
"isProductPreview": false
|
|
1050
|
-
}
|
|
1051
|
-
},
|
|
1052
|
-
"isVisible": true
|
|
1053
|
-
}
|
|
1054
|
-
]
|
|
1055
|
-
```
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
### Blocks.getProductsByBlockMarker(marker, langCode, offset, limit)
|
|
1060
|
-
|
|
1061
|
-
```js
|
|
1062
|
-
const value = await Blocks.getProductsByBlockMarker('my-marker', 'en_US')
|
|
1063
|
-
```
|
|
1064
|
-
|
|
1065
|
-
> This method return array of products from block by block marker.
|
|
1066
|
-
|
|
1067
|
-
Example return:
|
|
1068
|
-
|
|
1069
|
-
```json
|
|
1070
|
-
[
|
|
1071
|
-
{
|
|
1072
|
-
"id": 3,
|
|
1073
|
-
"localizeInfos": {
|
|
1074
|
-
"title": "Product"
|
|
1075
|
-
},
|
|
1076
|
-
"statusIdentifier": null,
|
|
1077
|
-
"statusLocalizeInfos": {},
|
|
1078
|
-
"attributeSetIdentifier": "products",
|
|
1079
|
-
"position": 1,
|
|
1080
|
-
"templateIdentifier": null,
|
|
1081
|
-
"shortDescTemplateIdentifier": null,
|
|
1082
|
-
"price": 120,
|
|
1083
|
-
"additional": {
|
|
1084
|
-
"prices": {
|
|
1085
|
-
"min": 120,
|
|
1086
|
-
"max": 150
|
|
1087
|
-
}
|
|
1088
|
-
},
|
|
1089
|
-
"sku": null,
|
|
1090
|
-
"isSync": true,
|
|
1091
|
-
"attributeValues": {
|
|
1092
|
-
"price": {
|
|
1093
|
-
"type": "integer",
|
|
1094
|
-
"value": "120",
|
|
1095
|
-
"position": 1,
|
|
1096
|
-
"isProductPreview": false
|
|
1097
|
-
},
|
|
1098
|
-
"product-name": {
|
|
1099
|
-
"type": "string",
|
|
1100
|
-
"value": "Prod",
|
|
1101
|
-
"position": 0,
|
|
1102
|
-
"isProductPreview": false
|
|
1103
|
-
},
|
|
1104
|
-
"currency_products": {
|
|
1105
|
-
"type": "string",
|
|
1106
|
-
"value": "$",
|
|
1107
|
-
"position": 2,
|
|
1108
|
-
"isProductPreview": false
|
|
1109
|
-
}
|
|
1110
|
-
},
|
|
1111
|
-
"isVisible": true
|
|
1112
|
-
}
|
|
1113
|
-
]
|
|
1114
|
-
```
|
|
1115
|
-
|
|
1116
1066
|
### Blocks.searchBlock(name, langCode)
|
|
1117
1067
|
|
|
1118
1068
|
```js
|
|
@@ -1679,15 +1629,20 @@ Example return:
|
|
|
1679
1629
|
|
|
1680
1630
|
```json
|
|
1681
1631
|
{
|
|
1682
|
-
"
|
|
1683
|
-
"
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1632
|
+
"total": 1,
|
|
1633
|
+
"items": [
|
|
1634
|
+
{
|
|
1635
|
+
"id": 1764,
|
|
1636
|
+
"formIdentifier": "my-form",
|
|
1637
|
+
"time": "2023-02-12 10:56",
|
|
1638
|
+
"formData": {
|
|
1639
|
+
"marker": "name_1",
|
|
1640
|
+
"value": "Name",
|
|
1641
|
+
"type": "string"
|
|
1642
|
+
},
|
|
1643
|
+
"attributeSetIdentifier": "test-form"
|
|
1644
|
+
}
|
|
1645
|
+
]
|
|
1691
1646
|
}
|
|
1692
1647
|
```
|
|
1693
1648
|
---
|
|
@@ -1695,6 +1650,10 @@ Example return:
|
|
|
1695
1650
|
<details>
|
|
1696
1651
|
<summary>Schema</summary>
|
|
1697
1652
|
|
|
1653
|
+
**total:** number <br>
|
|
1654
|
+
*total number of found records* <br>
|
|
1655
|
+
example: 100 <br>
|
|
1656
|
+
|
|
1698
1657
|
**id:** number <br>
|
|
1699
1658
|
*object identifier* <br>
|
|
1700
1659
|
example: 1764 <br>
|
|
@@ -1730,21 +1689,31 @@ Example return:
|
|
|
1730
1689
|
|
|
1731
1690
|
```json
|
|
1732
1691
|
{
|
|
1733
|
-
"
|
|
1734
|
-
"
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1692
|
+
"total": 1,
|
|
1693
|
+
"items": [
|
|
1694
|
+
{
|
|
1695
|
+
"id": 1764,
|
|
1696
|
+
"formIdentifier": "my-form",
|
|
1697
|
+
"time": "2023-02-12 10:56",
|
|
1698
|
+
"formData": {
|
|
1699
|
+
"marker": "name_1",
|
|
1700
|
+
"value": "Name",
|
|
1701
|
+
"type": "string"
|
|
1702
|
+
},
|
|
1703
|
+
"attributeSetIdentifier": "test-form"
|
|
1704
|
+
}
|
|
1705
|
+
]
|
|
1742
1706
|
}
|
|
1743
1707
|
```
|
|
1744
1708
|
|
|
1745
1709
|
<details>
|
|
1746
1710
|
<summary>Schema</summary>
|
|
1747
1711
|
|
|
1712
|
+
|
|
1713
|
+
**total:** number <br>
|
|
1714
|
+
*total number of found records* <br>
|
|
1715
|
+
example: 100 <br>
|
|
1716
|
+
|
|
1748
1717
|
**id:** number <br>
|
|
1749
1718
|
*object identifier* <br>
|
|
1750
1719
|
example: 1764 <br>
|
|
@@ -2264,10 +2233,10 @@ example: [{ "identifier": "p1" }] <br>
|
|
|
2264
2233
|
|
|
2265
2234
|
</details>
|
|
2266
2235
|
|
|
2267
|
-
### Orders.
|
|
2236
|
+
### Orders.getAllOrdersStorage(langCode, limit, offset)
|
|
2268
2237
|
|
|
2269
2238
|
```js
|
|
2270
|
-
const value = await Orders.
|
|
2239
|
+
const value = await Orders.getAllOrdersStorage()
|
|
2271
2240
|
```
|
|
2272
2241
|
|
|
2273
2242
|
> This method getting all the order storage objects. The method will add the default language to the request body. If you want to change the language, just pass it with the second argument
|
|
@@ -2332,48 +2301,56 @@ const value = await Orders.getAllOrdersByMarker('my-order')
|
|
|
2332
2301
|
Example return:
|
|
2333
2302
|
|
|
2334
2303
|
```json
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2304
|
+
{
|
|
2305
|
+
"total": 100,
|
|
2306
|
+
"items": [
|
|
2307
|
+
{
|
|
2308
|
+
"id": 1764,
|
|
2309
|
+
"statusIdentifier": "inprogress",
|
|
2310
|
+
"formIdentifier": "order-form",
|
|
2311
|
+
"formData": [
|
|
2312
|
+
{
|
|
2313
|
+
"marker": "name_1",
|
|
2314
|
+
"type": "string",
|
|
2315
|
+
"value": "Name"
|
|
2316
|
+
}
|
|
2317
|
+
],
|
|
2318
|
+
"products": [
|
|
2319
|
+
{
|
|
2320
|
+
"id": 1,
|
|
2321
|
+
"title": "Laminate Floorwood Maxima, 9811 Oak Mistral",
|
|
2322
|
+
"sku": null,
|
|
2323
|
+
"price": "1.00",
|
|
2324
|
+
"quantity": 10,
|
|
2325
|
+
"previewImage": [
|
|
2326
|
+
{
|
|
2327
|
+
"filename": "files/project/page/36/image/20240322_77c83b02-4c82-4bea-80eb-3763c469b00e.jpg",
|
|
2328
|
+
"downloadLink": "http://my-site.zone/files/project/page/36/image/20240322_77c83b02-4c82-4bea-80eb-3763c469b00e.jpg",
|
|
2329
|
+
"size": 296391,
|
|
2330
|
+
"previewLink": ""
|
|
2331
|
+
}
|
|
2332
|
+
]
|
|
2333
|
+
}
|
|
2334
|
+
],
|
|
2335
|
+
"totalSum": "12.00",
|
|
2336
|
+
"currency": "USD",
|
|
2337
|
+
"createdDate": "2023-01-01 12:12",
|
|
2338
|
+
"paymentAccountIdentifier": "payment-1",
|
|
2339
|
+
"paymentAccountLocalizeInfos": {"title": "Account 1"
|
|
2340
|
+
},
|
|
2341
|
+
"isHistory": true
|
|
2342
|
+
}
|
|
2343
|
+
]
|
|
2344
|
+
|
|
2345
|
+
}
|
|
2373
2346
|
```
|
|
2374
2347
|
<details>
|
|
2375
2348
|
<summary>Schema</summary>
|
|
2376
2349
|
|
|
2350
|
+
**total:** number <br>
|
|
2351
|
+
*total number of found records* <br>
|
|
2352
|
+
example: 100 <br>
|
|
2353
|
+
|
|
2377
2354
|
**statusIdentifier:** string <br>
|
|
2378
2355
|
*text identifier of the order status* <br>
|
|
2379
2356
|
example: inprogress <br>
|
|
@@ -3255,18 +3232,21 @@ const value = await Payments.getSessions()
|
|
|
3255
3232
|
Example return:
|
|
3256
3233
|
|
|
3257
3234
|
```json
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3235
|
+
{
|
|
3236
|
+
"total": 100,
|
|
3237
|
+
"items": [
|
|
3238
|
+
{
|
|
3239
|
+
"id": 1764,
|
|
3240
|
+
"updatedDate": "2024-06-21T09:51:57.785Z",
|
|
3241
|
+
"type": "session",
|
|
3242
|
+
"status": "completed",
|
|
3243
|
+
"orderId": 1,
|
|
3244
|
+
"paymentAccountId": 1,
|
|
3245
|
+
"paymentUrl": "https://checkout.stripe.com/c/pay/cs_test_a1iOHnSWAmeN3SN5IgYtPv8Fzv48vGUmKxFuhxD0FOjkOaTAlgiwNY9OYW#fid2BXKsdWBEZmZqcGtxJz8nZGZmcVo0VTZjazFUb2Z8YEBRYkxHJyknZHVsTmB8Jz8ndW5acWB2cVowNEpKcW43TVVBa1NSMU5ST3JfY3VcRGlRSUR8cVx0XFxOXG9Cbn1oM1V0QUExR0RRRnJwV0FCYlNcXUtGdGtzcndgcmJxQVNkQnxvcDBTY0ZpUjZCd319UTU1ME5rXDJIVjYnKSdjd2poVmB3c2B3Jz9xd3BgKSdpZHxqcHFRfHVgJz8ndmxrYmlgWmxxYGgnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl",
|
|
3246
|
+
"clientSecret": "pi_3MtwBwLkdIwHu7ix28a3tqPa_secret_YrKJUKribcBjcG8HVhfZluoGH"
|
|
3247
|
+
}
|
|
3248
|
+
]
|
|
3249
|
+
}
|
|
3270
3250
|
```
|
|
3271
3251
|
<details>
|
|
3272
3252
|
<summary>Schema</summary>
|
|
@@ -3738,54 +3718,62 @@ const value = await Products.getProducts(body)
|
|
|
3738
3718
|
Example return:
|
|
3739
3719
|
|
|
3740
3720
|
```json
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
"
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
"statusLocalizeInfos": {},
|
|
3749
|
-
"attributeSetIdentifier": "products",
|
|
3750
|
-
"position": 1,
|
|
3751
|
-
"templateIdentifier": null,
|
|
3752
|
-
"shortDescTemplateIdentifier": null,
|
|
3753
|
-
"price": 150,
|
|
3754
|
-
"additional": {
|
|
3755
|
-
"prices": {
|
|
3756
|
-
"min": 120,
|
|
3757
|
-
"max": 150
|
|
3758
|
-
}
|
|
3759
|
-
},
|
|
3760
|
-
"sku": null,
|
|
3761
|
-
"isSync": true,
|
|
3762
|
-
"attributeValues": {
|
|
3763
|
-
"price": {
|
|
3764
|
-
"type": "integer",
|
|
3765
|
-
"value": "150",
|
|
3766
|
-
"position": 1,
|
|
3767
|
-
"isProductPreview": false
|
|
3721
|
+
{
|
|
3722
|
+
"total": 100,
|
|
3723
|
+
"items": [
|
|
3724
|
+
{
|
|
3725
|
+
"id": 4,
|
|
3726
|
+
"localizeInfos": {
|
|
3727
|
+
"title": "Cosmo"
|
|
3768
3728
|
},
|
|
3769
|
-
"
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3729
|
+
"statusIdentifier": null,
|
|
3730
|
+
"statusLocalizeInfos": {},
|
|
3731
|
+
"attributeSetIdentifier": "products",
|
|
3732
|
+
"position": 1,
|
|
3733
|
+
"templateIdentifier": null,
|
|
3734
|
+
"isPositionLocked": false,
|
|
3735
|
+
"shortDescTemplateIdentifier": null,
|
|
3736
|
+
"price": 150,
|
|
3737
|
+
"additional": {
|
|
3738
|
+
"prices": {
|
|
3739
|
+
"min": 120,
|
|
3740
|
+
"max": 150
|
|
3741
|
+
}
|
|
3774
3742
|
},
|
|
3775
|
-
"
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
"
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3743
|
+
"sku": null,
|
|
3744
|
+
"isSync": true,
|
|
3745
|
+
"attributeValues": {
|
|
3746
|
+
"price": {
|
|
3747
|
+
"type": "integer",
|
|
3748
|
+
"value": 150,
|
|
3749
|
+
"position": 1,
|
|
3750
|
+
"isProductPreview": false
|
|
3751
|
+
},
|
|
3752
|
+
"product-name": {
|
|
3753
|
+
"type": "string",
|
|
3754
|
+
"value": "Cosmo",
|
|
3755
|
+
"position": 0,
|
|
3756
|
+
"isProductPreview": false
|
|
3757
|
+
},
|
|
3758
|
+
"currency_products": {
|
|
3759
|
+
"type": "string",
|
|
3760
|
+
"value": "",
|
|
3761
|
+
"position": 2,
|
|
3762
|
+
"isProductPreview": false
|
|
3763
|
+
}
|
|
3764
|
+
},
|
|
3765
|
+
"isVisible": true
|
|
3766
|
+
}
|
|
3767
|
+
]
|
|
3768
|
+
}
|
|
3785
3769
|
```
|
|
3786
3770
|
<details>
|
|
3787
3771
|
<summary>Schema</summary>
|
|
3788
3772
|
|
|
3773
|
+
**total:** number <br>
|
|
3774
|
+
*total number of found records* <br>
|
|
3775
|
+
example: 100 <br>
|
|
3776
|
+
|
|
3789
3777
|
**id:** number <br>
|
|
3790
3778
|
*object identifier* <br>
|
|
3791
3779
|
example: 1764 <br>
|
|
@@ -3868,54 +3856,64 @@ const value = await Products.getProductsEmptyPage('en_US', userQuery)
|
|
|
3868
3856
|
Example return:
|
|
3869
3857
|
|
|
3870
3858
|
```json
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
"
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
"statusLocalizeInfos": {},
|
|
3879
|
-
"attributeSetIdentifier": "products",
|
|
3880
|
-
"position": 1,
|
|
3881
|
-
"templateIdentifier": null,
|
|
3882
|
-
"shortDescTemplateIdentifier": null,
|
|
3883
|
-
"price": 150,
|
|
3884
|
-
"additional": {
|
|
3885
|
-
"prices": {
|
|
3886
|
-
"min": 120,
|
|
3887
|
-
"max": 150
|
|
3888
|
-
}
|
|
3889
|
-
},
|
|
3890
|
-
"sku": null,
|
|
3891
|
-
"isSync": true,
|
|
3892
|
-
"attributeValues": {
|
|
3893
|
-
"price": {
|
|
3894
|
-
"type": "integer",
|
|
3895
|
-
"value": "150",
|
|
3896
|
-
"position": 1,
|
|
3897
|
-
"isProductPreview": false
|
|
3859
|
+
{
|
|
3860
|
+
"total": 100,
|
|
3861
|
+
"itema": [
|
|
3862
|
+
{
|
|
3863
|
+
"id": 4,
|
|
3864
|
+
"localizeInfos": {
|
|
3865
|
+
"title": "Cosmo"
|
|
3898
3866
|
},
|
|
3899
|
-
"
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3867
|
+
"statusIdentifier": null,
|
|
3868
|
+
"statusLocalizeInfos": {},
|
|
3869
|
+
"attributeSetIdentifier": "products",
|
|
3870
|
+
"position": 1,
|
|
3871
|
+
"templateIdentifier": null,
|
|
3872
|
+
"isPositionLocked": false,
|
|
3873
|
+
"shortDescTemplateIdentifier": null,
|
|
3874
|
+
"price": 150,
|
|
3875
|
+
"additional": {
|
|
3876
|
+
"prices": {
|
|
3877
|
+
"min": 120,
|
|
3878
|
+
"max": 150
|
|
3879
|
+
}
|
|
3904
3880
|
},
|
|
3905
|
-
"
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
"
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3881
|
+
"sku": null,
|
|
3882
|
+
"isSync": true,
|
|
3883
|
+
"attributeValues": {
|
|
3884
|
+
"price": {
|
|
3885
|
+
"type": "integer",
|
|
3886
|
+
"value": 150,
|
|
3887
|
+
"position": 1,
|
|
3888
|
+
"isProductPreview": false
|
|
3889
|
+
},
|
|
3890
|
+
"product-name": {
|
|
3891
|
+
"type": "string",
|
|
3892
|
+
"value": "Cosmo",
|
|
3893
|
+
"position": 0,
|
|
3894
|
+
"isProductPreview": false
|
|
3895
|
+
},
|
|
3896
|
+
"currency_products": {
|
|
3897
|
+
"type": "string",
|
|
3898
|
+
"value": "",
|
|
3899
|
+
"position": 2,
|
|
3900
|
+
"isProductPreview": false
|
|
3901
|
+
}
|
|
3902
|
+
},
|
|
3903
|
+
"isVisible": true
|
|
3904
|
+
}
|
|
3905
|
+
]
|
|
3906
|
+
|
|
3907
|
+
}
|
|
3915
3908
|
```
|
|
3909
|
+
|
|
3916
3910
|
<details>
|
|
3917
3911
|
<summary>Schema</summary>
|
|
3918
3912
|
|
|
3913
|
+
**total:** number <br>
|
|
3914
|
+
*total number of found records* <br>
|
|
3915
|
+
example: 100 <br>
|
|
3916
|
+
|
|
3919
3917
|
**id:** number <br>
|
|
3920
3918
|
*object identifier* <br>
|
|
3921
3919
|
example: 1764 <br>
|
|
@@ -4018,57 +4016,66 @@ const value = await Products.getProductsByPageId(1764, body)
|
|
|
4018
4016
|
Example return:
|
|
4019
4017
|
|
|
4020
4018
|
```json
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
"
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
"statusLocalizeInfos": {
|
|
4029
|
-
"title": "Sold"
|
|
4030
|
-
},
|
|
4031
|
-
"attributeSetIdentifier": "products",
|
|
4032
|
-
"position": 3,
|
|
4033
|
-
"templateIdentifier": null,
|
|
4034
|
-
"shortDescTemplateIdentifier": null,
|
|
4035
|
-
"price": 148,
|
|
4036
|
-
"additional": {
|
|
4037
|
-
"prices": {
|
|
4038
|
-
"min": 120,
|
|
4039
|
-
"max": 150
|
|
4040
|
-
}
|
|
4041
|
-
},
|
|
4042
|
-
"sku": null,
|
|
4043
|
-
"isSync": true,
|
|
4044
|
-
"attributeValues": {
|
|
4045
|
-
"price": {
|
|
4046
|
-
"type": "integer",
|
|
4047
|
-
"value": "148",
|
|
4048
|
-
"position": 1,
|
|
4049
|
-
"isProductPreview": false
|
|
4019
|
+
{
|
|
4020
|
+
"total": 100,
|
|
4021
|
+
"items": [
|
|
4022
|
+
{
|
|
4023
|
+
"id": 2,
|
|
4024
|
+
"localizeInfos": {
|
|
4025
|
+
"title": "Box"
|
|
4050
4026
|
},
|
|
4051
|
-
"
|
|
4052
|
-
|
|
4053
|
-
"
|
|
4054
|
-
"position": 0,
|
|
4055
|
-
"isProductPreview": false
|
|
4027
|
+
"statusIdentifier": "sold",
|
|
4028
|
+
"statusLocalizeInfos": {
|
|
4029
|
+
"title": "Sold"
|
|
4056
4030
|
},
|
|
4057
|
-
"
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4031
|
+
"attributeSetIdentifier": "products",
|
|
4032
|
+
"position": 3,
|
|
4033
|
+
"templateIdentifier": null,
|
|
4034
|
+
"isPositionLocked": false,
|
|
4035
|
+
"shortDescTemplateIdentifier": null,
|
|
4036
|
+
"price": 148,
|
|
4037
|
+
"additional": {
|
|
4038
|
+
"prices": {
|
|
4039
|
+
"min": 120,
|
|
4040
|
+
"max": 150
|
|
4041
|
+
}
|
|
4042
|
+
},
|
|
4043
|
+
"sku": null,
|
|
4044
|
+
"isSync": true,
|
|
4045
|
+
"attributeValues": {
|
|
4046
|
+
"price": {
|
|
4047
|
+
"type": "integer",
|
|
4048
|
+
"value": 148,
|
|
4049
|
+
"position": 1,
|
|
4050
|
+
"isProductPreview": false
|
|
4051
|
+
},
|
|
4052
|
+
"product-name": {
|
|
4053
|
+
"type": "string",
|
|
4054
|
+
"value": "Box text",
|
|
4055
|
+
"position": 0,
|
|
4056
|
+
"isProductPreview": false
|
|
4057
|
+
},
|
|
4058
|
+
"currency_products": {
|
|
4059
|
+
"type": "string",
|
|
4060
|
+
"value": "$",
|
|
4061
|
+
"position": 2,
|
|
4062
|
+
"isProductPreview": false
|
|
4063
|
+
}
|
|
4064
|
+
},
|
|
4065
|
+
"isVisible": true,
|
|
4066
|
+
"isPositionLocked": false
|
|
4067
|
+
}
|
|
4068
|
+
]
|
|
4069
|
+
|
|
4070
|
+
}
|
|
4068
4071
|
```
|
|
4069
4072
|
<details>
|
|
4070
4073
|
<summary>Schema</summary>
|
|
4071
4074
|
|
|
4075
|
+
**total:** number <br>
|
|
4076
|
+
*total number of found records* <br>
|
|
4077
|
+
example: 100 <br>
|
|
4078
|
+
|
|
4072
4079
|
**id:** number <br>
|
|
4073
4080
|
*object identifier* <br>
|
|
4074
4081
|
example: 1764 <br>
|
|
@@ -4151,16 +4158,23 @@ const value = await Products.getProductsPriceByPageUrl('catalog')
|
|
|
4151
4158
|
Example return:
|
|
4152
4159
|
|
|
4153
4160
|
```json
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4161
|
+
{
|
|
4162
|
+
"total": 100,
|
|
4163
|
+
"items": [
|
|
4164
|
+
{
|
|
4165
|
+
"id": 1764,
|
|
4166
|
+
"price": 0
|
|
4167
|
+
}
|
|
4168
|
+
]
|
|
4169
|
+
}
|
|
4160
4170
|
```
|
|
4161
4171
|
<details>
|
|
4162
4172
|
<summary>Schema</summary>
|
|
4163
4173
|
|
|
4174
|
+
**total:** number <br>
|
|
4175
|
+
*total number of found records* <br>
|
|
4176
|
+
example: 100 <br>
|
|
4177
|
+
|
|
4164
4178
|
**id:** number <br>
|
|
4165
4179
|
*object identifier* <br>
|
|
4166
4180
|
example: 1764 <br>
|
|
@@ -4203,57 +4217,65 @@ const value = await Products.getProductsByPageUrl('catalog', body)
|
|
|
4203
4217
|
Example return:
|
|
4204
4218
|
|
|
4205
4219
|
```json
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
"
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
"statusLocalizeInfos": {
|
|
4214
|
-
"title": "Sold"
|
|
4215
|
-
},
|
|
4216
|
-
"attributeSetIdentifier": "products",
|
|
4217
|
-
"position": 3,
|
|
4218
|
-
"templateIdentifier": null,
|
|
4219
|
-
"shortDescTemplateIdentifier": null,
|
|
4220
|
-
"price": 148,
|
|
4221
|
-
"additional": {
|
|
4222
|
-
"prices": {
|
|
4223
|
-
"min": 120,
|
|
4224
|
-
"max": 150
|
|
4225
|
-
}
|
|
4226
|
-
},
|
|
4227
|
-
"sku": null,
|
|
4228
|
-
"isSync": true,
|
|
4229
|
-
"attributeValues": {
|
|
4230
|
-
"price": {
|
|
4231
|
-
"type": "integer",
|
|
4232
|
-
"value": "148",
|
|
4233
|
-
"position": 1,
|
|
4234
|
-
"isProductPreview": false
|
|
4220
|
+
{
|
|
4221
|
+
"total": 100,
|
|
4222
|
+
"items": [
|
|
4223
|
+
{
|
|
4224
|
+
"id": 2,
|
|
4225
|
+
"localizeInfos": {
|
|
4226
|
+
"title": "Box"
|
|
4235
4227
|
},
|
|
4236
|
-
"
|
|
4237
|
-
|
|
4238
|
-
"
|
|
4239
|
-
"position": 0,
|
|
4240
|
-
"isProductPreview": false
|
|
4228
|
+
"statusIdentifier": "sold",
|
|
4229
|
+
"statusLocalizeInfos": {
|
|
4230
|
+
"title": "Sold"
|
|
4241
4231
|
},
|
|
4242
|
-
"
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4250
|
-
|
|
4251
|
-
|
|
4252
|
-
|
|
4232
|
+
"attributeSetIdentifier": "products",
|
|
4233
|
+
"position": 3,
|
|
4234
|
+
"templateIdentifier": null,
|
|
4235
|
+
"shortDescTemplateIdentifier": null,
|
|
4236
|
+
"price": 148,
|
|
4237
|
+
"additional": {
|
|
4238
|
+
"prices": {
|
|
4239
|
+
"min": 120,
|
|
4240
|
+
"max": 150
|
|
4241
|
+
}
|
|
4242
|
+
},
|
|
4243
|
+
"sku": null,
|
|
4244
|
+
"isSync": true,
|
|
4245
|
+
"attributeValues": {
|
|
4246
|
+
"price": {
|
|
4247
|
+
"type": "integer",
|
|
4248
|
+
"value": 148,
|
|
4249
|
+
"position": 1,
|
|
4250
|
+
"isProductPreview": false
|
|
4251
|
+
},
|
|
4252
|
+
"product-name": {
|
|
4253
|
+
"type": "string",
|
|
4254
|
+
"value": "Box text",
|
|
4255
|
+
"position": 0,
|
|
4256
|
+
"isProductPreview": false
|
|
4257
|
+
},
|
|
4258
|
+
"currency_products": {
|
|
4259
|
+
"type": "string",
|
|
4260
|
+
"value": "$",
|
|
4261
|
+
"position": 2,
|
|
4262
|
+
"isProductPreview": false
|
|
4263
|
+
}
|
|
4264
|
+
},
|
|
4265
|
+
"isVisible": true,
|
|
4266
|
+
"isPositionLocked": false
|
|
4267
|
+
}
|
|
4268
|
+
]
|
|
4269
|
+
|
|
4270
|
+
}
|
|
4253
4271
|
```
|
|
4254
4272
|
<details>
|
|
4255
4273
|
<summary>Schema</summary>
|
|
4256
4274
|
|
|
4275
|
+
**total:** number <br>
|
|
4276
|
+
*total number of found records* <br>
|
|
4277
|
+
example: 100 <br>
|
|
4278
|
+
|
|
4257
4279
|
**id:** number <br>
|
|
4258
4280
|
*object identifier* <br>
|
|
4259
4281
|
example: 1764 <br>
|
|
@@ -4337,54 +4359,65 @@ Example return:
|
|
|
4337
4359
|
|
|
4338
4360
|
```json
|
|
4339
4361
|
{
|
|
4340
|
-
"
|
|
4341
|
-
"
|
|
4342
|
-
|
|
4343
|
-
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4347
|
-
|
|
4348
|
-
|
|
4349
|
-
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
"
|
|
4356
|
-
"
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4362
|
-
|
|
4363
|
-
"
|
|
4364
|
-
"
|
|
4365
|
-
"
|
|
4366
|
-
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4370
|
-
|
|
4371
|
-
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
|
|
4362
|
+
"total": 100,
|
|
4363
|
+
"items": [
|
|
4364
|
+
{
|
|
4365
|
+
"id": 2,
|
|
4366
|
+
"localizeInfos": {
|
|
4367
|
+
"title": "Box"
|
|
4368
|
+
},
|
|
4369
|
+
"statusIdentifier": "sold",
|
|
4370
|
+
"statusLocalizeInfos": {
|
|
4371
|
+
"title": "Sold"
|
|
4372
|
+
},
|
|
4373
|
+
"attributeSetIdentifier": "products",
|
|
4374
|
+
"position": 3,
|
|
4375
|
+
"templateIdentifier": null,
|
|
4376
|
+
"isPositionLocked": false,
|
|
4377
|
+
"shortDescTemplateIdentifier": null,
|
|
4378
|
+
"price": 148,
|
|
4379
|
+
"additional": {
|
|
4380
|
+
"prices": {
|
|
4381
|
+
"min": 120,
|
|
4382
|
+
"max": 150
|
|
4383
|
+
}
|
|
4384
|
+
},
|
|
4385
|
+
"sku": null,
|
|
4386
|
+
"isSync": true,
|
|
4387
|
+
"attributeValues": {
|
|
4388
|
+
"price": {
|
|
4389
|
+
"type": "integer",
|
|
4390
|
+
"value": 148,
|
|
4391
|
+
"position": 1,
|
|
4392
|
+
"isProductPreview": false
|
|
4393
|
+
},
|
|
4394
|
+
"product-name": {
|
|
4395
|
+
"type": "string",
|
|
4396
|
+
"value": "Box text",
|
|
4397
|
+
"position": 0,
|
|
4398
|
+
"isProductPreview": false
|
|
4399
|
+
},
|
|
4400
|
+
"currency_products": {
|
|
4401
|
+
"type": "string",
|
|
4402
|
+
"value": "$",
|
|
4403
|
+
"position": 2,
|
|
4404
|
+
"isProductPreview": false
|
|
4405
|
+
}
|
|
4406
|
+
},
|
|
4407
|
+
"isVisible": true,
|
|
4408
|
+
"isPositionLocked": false
|
|
4379
4409
|
}
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
"isPositionLocked": false
|
|
4410
|
+
|
|
4411
|
+
]
|
|
4383
4412
|
}
|
|
4384
4413
|
```
|
|
4385
4414
|
<details>
|
|
4386
4415
|
<summary>Schema</summary>
|
|
4387
4416
|
|
|
4417
|
+
**total:** number <br>
|
|
4418
|
+
*total number of found records* <br>
|
|
4419
|
+
example: 100 <br>
|
|
4420
|
+
|
|
4388
4421
|
**id:** number <br>
|
|
4389
4422
|
*object identifier* <br>
|
|
4390
4423
|
example: 1764 <br>
|
|
@@ -4709,6 +4742,7 @@ Example return:
|
|
|
4709
4742
|
"attributeSetIdentifier": "products",
|
|
4710
4743
|
"position": 1,
|
|
4711
4744
|
"templateIdentifier": null,
|
|
4745
|
+
"isPositionLocked": false,
|
|
4712
4746
|
"shortDescTemplateIdentifier": null,
|
|
4713
4747
|
"price": 150,
|
|
4714
4748
|
"additional": {
|
|
@@ -5485,7 +5519,7 @@ const data = {
|
|
|
5485
5519
|
],
|
|
5486
5520
|
"notificationData": {
|
|
5487
5521
|
"email": "example@oneentry.cloud",
|
|
5488
|
-
"phonePush": "",
|
|
5522
|
+
"phonePush": ["+99999999999"],
|
|
5489
5523
|
"phoneSMS": "+99999999999"
|
|
5490
5524
|
}
|
|
5491
5525
|
}
|