@ikas/api-client 1.0.40-alpha.3 → 1.0.40-alpha.31
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/api/admin/generated/default-gqls.d.ts +18 -0
- package/dist/api/admin/generated/default-gqls.js +50 -32
- package/dist/api/admin/generated/default-gqls.js.map +1 -1
- package/dist/api/admin/generated/index.d.ts +1114 -33
- package/dist/api/admin/generated/index.js +241 -6
- package/dist/api/admin/generated/index.js.map +1 -1
- package/dist/api/admin/generated/mutation.d.ts +11 -1
- package/dist/api/admin/generated/mutation.js +70 -0
- package/dist/api/admin/generated/mutation.js.map +1 -1
- package/dist/api/admin/generated/query.d.ts +9 -1
- package/dist/api/admin/generated/query.js +56 -0
- package/dist/api/admin/generated/query.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export declare const QueryDefaultGQLs: {
|
|
2
2
|
getAuthorizedApp: string;
|
|
3
3
|
getGlobalTaxSettings: string;
|
|
4
|
+
getIkasWalletWithBalance: string;
|
|
4
5
|
getImageUploadUrl: string;
|
|
5
6
|
getImportJobData: string;
|
|
7
|
+
getImportJobDataList: string;
|
|
6
8
|
getLastImportJobData: string;
|
|
7
9
|
getMerchant: string;
|
|
8
10
|
getMerchantLicence: string;
|
|
@@ -19,13 +21,18 @@ export declare const QueryDefaultGQLs: {
|
|
|
19
21
|
listCoupon: string;
|
|
20
22
|
listCustomer: string;
|
|
21
23
|
listCustomerAttribute: string;
|
|
24
|
+
listCustomerGroup: string;
|
|
22
25
|
listDistrict: string;
|
|
23
26
|
listGlobalTaxSettings: string;
|
|
27
|
+
listIkasWallet: string;
|
|
28
|
+
listIkasWalletTransaction: string;
|
|
24
29
|
listLanguage: string;
|
|
25
30
|
listMerchantAppPayment: string;
|
|
31
|
+
listMerchantSettings: string;
|
|
26
32
|
listOrder: string;
|
|
27
33
|
listOrderTag: string;
|
|
28
34
|
listOrderTransactions: string;
|
|
35
|
+
listPaymentGateway: string;
|
|
29
36
|
listPriceList: string;
|
|
30
37
|
listProduct: string;
|
|
31
38
|
listProductAttribute: string;
|
|
@@ -42,6 +49,7 @@ export declare const QueryDefaultGQLs: {
|
|
|
42
49
|
listStockLocation: string;
|
|
43
50
|
listStorefront: string;
|
|
44
51
|
listStorefrontJSScript: string;
|
|
52
|
+
listStorefrontPolicy: string;
|
|
45
53
|
listTaxSettings: string;
|
|
46
54
|
listTerminal: string;
|
|
47
55
|
listTown: string;
|
|
@@ -60,12 +68,16 @@ export declare const MutationDefaultGQLs: {
|
|
|
60
68
|
campaignAddCoupons: string;
|
|
61
69
|
cancelFulfillment: string;
|
|
62
70
|
cancelOrderLine: string;
|
|
71
|
+
changeStockLocation: string;
|
|
63
72
|
createMerchantAppPayment: string;
|
|
64
73
|
createMerchantAppPaymentWithSubscription: string;
|
|
65
74
|
createOrderWithTransactions: string;
|
|
75
|
+
createWalletTransaction: string;
|
|
66
76
|
deleteCampaignList: string;
|
|
67
77
|
deleteCategoryList: string;
|
|
68
78
|
deleteCouponList: string;
|
|
79
|
+
deleteCustomerGroupList: string;
|
|
80
|
+
deleteCustomerList: string;
|
|
69
81
|
deleteGlobalTaxSettingsList: string;
|
|
70
82
|
deleteOrderTagList: string;
|
|
71
83
|
deleteProductAttributeList: string;
|
|
@@ -76,17 +88,21 @@ export declare const MutationDefaultGQLs: {
|
|
|
76
88
|
deleteProductUnitList: string;
|
|
77
89
|
deleteProductVolumeDiscountList: string;
|
|
78
90
|
deleteStorefrontJSScript: string;
|
|
91
|
+
deleteStorefrontPolicyList: string;
|
|
79
92
|
deleteTaxSettingsList: string;
|
|
80
93
|
deleteVariantTypeList: string;
|
|
81
94
|
deleteVendorList: string;
|
|
82
95
|
deleteWebhook: string;
|
|
83
96
|
fulfillOrder: string;
|
|
97
|
+
generateOrderPaymentLink: string;
|
|
84
98
|
getAppDemoDay: string;
|
|
85
99
|
getOrderInvoicePdfUrl: string;
|
|
86
100
|
refundOrderLine: string;
|
|
87
101
|
removeOrderTag: string;
|
|
88
102
|
saveCampaign: string;
|
|
89
103
|
saveCategory: string;
|
|
104
|
+
saveCustomer: string;
|
|
105
|
+
saveCustomerGroup: string;
|
|
90
106
|
saveGlobalTaxSettings: string;
|
|
91
107
|
saveOrderTag: string;
|
|
92
108
|
saveProduct: string;
|
|
@@ -99,11 +115,13 @@ export declare const MutationDefaultGQLs: {
|
|
|
99
115
|
saveProductVolumeDiscount: string;
|
|
100
116
|
saveSalesChannel: string;
|
|
101
117
|
saveStorefrontJSScript: string;
|
|
118
|
+
saveStorefrontPolicy: string;
|
|
102
119
|
saveTaxSettings: string;
|
|
103
120
|
saveVariantPrices: string;
|
|
104
121
|
saveVariantType: string;
|
|
105
122
|
saveVendor: string;
|
|
106
123
|
saveWebhook: string;
|
|
124
|
+
updateCustomerB2BStatus: string;
|
|
107
125
|
updateOrderAddresses: string;
|
|
108
126
|
updateOrderLine: string;
|
|
109
127
|
updateOrderPackageStatus: string;
|