@ikas/api-client 0.0.1-canary.3
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/Jenkinsfile +92 -0
- package/README.md +2 -0
- package/codegen/admin.yml +9 -0
- package/dist/api/admin/admin-client.d.ts +8 -0
- package/dist/api/admin/admin-client.js +33 -0
- package/dist/api/admin/admin-client.js.map +1 -0
- package/dist/api/admin/common-gql.d.ts +4 -0
- package/dist/api/admin/common-gql.js +14 -0
- package/dist/api/admin/common-gql.js.map +1 -0
- package/dist/api/admin/generated/index.d.ts +2105 -0
- package/dist/api/admin/generated/index.js +340 -0
- package/dist/api/admin/generated/index.js.map +1 -0
- package/dist/api/admin/index.d.ts +4 -0
- package/dist/api/admin/index.js +17 -0
- package/dist/api/admin/index.js.map +1 -0
- package/dist/api/admin/mutation-gql.d.ts +6 -0
- package/dist/api/admin/mutation-gql.js +40 -0
- package/dist/api/admin/mutation-gql.js.map +1 -0
- package/dist/api/admin/mutation.d.ts +41 -0
- package/dist/api/admin/mutation.js +268 -0
- package/dist/api/admin/mutation.js.map +1 -0
- package/dist/api/admin/query-gql.d.ts +6 -0
- package/dist/api/admin/query-gql.js +34 -0
- package/dist/api/admin/query-gql.js.map +1 -0
- package/dist/api/admin/query.d.ts +33 -0
- package/dist/api/admin/query.js +205 -0
- package/dist/api/admin/query.js.map +1 -0
- package/dist/api/base.d.ts +44 -0
- package/dist/api/base.js +181 -0
- package/dist/api/base.js.map +1 -0
- package/dist/api/index.d.ts +2 -0
- package/dist/api/index.js +15 -0
- package/dist/api/index.js.map +1 -0
- package/dist/api/oauth/index.d.ts +11 -0
- package/dist/api/oauth/index.js +100 -0
- package/dist/api/oauth/index.js.map +1 -0
- package/dist/api/oauth/models.d.ts +35 -0
- package/dist/api/oauth/models.js +23 -0
- package/dist/api/oauth/models.js.map +1 -0
- package/dist/globals/constants.d.ts +13 -0
- package/dist/globals/constants.js +15 -0
- package/dist/globals/constants.js.map +1 -0
- package/dist/globals/index.d.ts +1 -0
- package/dist/globals/index.js +14 -0
- package/dist/globals/index.js.map +1 -0
- package/dist/helpers/index.d.ts +1 -0
- package/dist/helpers/index.js +14 -0
- package/dist/helpers/index.js.map +1 -0
- package/dist/helpers/webhook-validate.d.ts +1 -0
- package/dist/helpers/webhook-validate.js +67 -0
- package/dist/helpers/webhook-validate.js.map +1 -0
- package/dist/index.d.ts +21 -0
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -0
- package/dist/models/base.d.ts +7 -0
- package/dist/models/base.js +3 -0
- package/dist/models/base.js.map +1 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +14 -0
- package/dist/models/index.js.map +1 -0
- package/dist/models/webhook/index.d.ts +1 -0
- package/dist/models/webhook/index.js +14 -0
- package/dist/models/webhook/index.js.map +1 -0
- package/dist/models/webhook/models.d.ts +68 -0
- package/dist/models/webhook/models.js +19 -0
- package/dist/models/webhook/models.js.map +1 -0
- package/dist/models/webhook/product.d.ts +19 -0
- package/dist/models/webhook/product.js +3 -0
- package/dist/models/webhook/product.js.map +1 -0
- package/package.json +51 -0
- package/src/api/admin/admin-client.ts +15 -0
- package/src/api/admin/common-gql.ts +425 -0
- package/src/api/admin/generated/index.ts +2373 -0
- package/src/api/admin/index.ts +4 -0
- package/src/api/admin/mutation-gql.ts +255 -0
- package/src/api/admin/mutation.ts +195 -0
- package/src/api/admin/query-gql.ts +434 -0
- package/src/api/admin/query.ts +119 -0
- package/src/api/base.ts +133 -0
- package/src/api/index.ts +2 -0
- package/src/api/oauth/index.ts +47 -0
- package/src/api/oauth/models.ts +37 -0
- package/src/globals/constants.ts +19 -0
- package/src/globals/index.ts +1 -0
- package/src/helpers/index.ts +1 -0
- package/src/helpers/webhook-validate.ts +17 -0
- package/src/index.ts +34 -0
- package/src/models/base.ts +7 -0
- package/src/models/index.ts +1 -0
- package/src/models/webhook/index.ts +1 -0
- package/src/models/webhook/models.ts +90 -0
- package/tsconfig.json +25 -0
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
14
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
15
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
16
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
17
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
19
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
25
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
26
|
+
function step(op) {
|
|
27
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
28
|
+
while (_) try {
|
|
29
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
30
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
31
|
+
switch (op[0]) {
|
|
32
|
+
case 0: case 1: t = op; break;
|
|
33
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
34
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
35
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
36
|
+
default:
|
|
37
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
38
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
39
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
40
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
41
|
+
if (t[2]) _.ops.pop();
|
|
42
|
+
_.trys.pop(); continue;
|
|
43
|
+
}
|
|
44
|
+
op = body.call(thisArg, _);
|
|
45
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
46
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50
|
+
exports.AdminMutation = void 0;
|
|
51
|
+
var AdminMutation = /** @class */ (function () {
|
|
52
|
+
function AdminMutation(client) {
|
|
53
|
+
this.client = client;
|
|
54
|
+
}
|
|
55
|
+
AdminMutation.prototype.addCustomTimelineEntry = function (options) {
|
|
56
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
57
|
+
return __generator(this, function (_a) {
|
|
58
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'addCustomTimelineEntry' }))];
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
};
|
|
62
|
+
AdminMutation.prototype.addOrderInvoice = function (options) {
|
|
63
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
64
|
+
return __generator(this, function (_a) {
|
|
65
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'addOrderInvoice' }))];
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
AdminMutation.prototype.bulkUpdateProducts = function (options) {
|
|
70
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
71
|
+
return __generator(this, function (_a) {
|
|
72
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'bulkUpdateProducts' }))];
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
};
|
|
76
|
+
AdminMutation.prototype.cancelFulfillment = function (options) {
|
|
77
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
78
|
+
return __generator(this, function (_a) {
|
|
79
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'cancelFulfillment' }))];
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
};
|
|
83
|
+
AdminMutation.prototype.createMerchantAppPayment = function (options) {
|
|
84
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
85
|
+
return __generator(this, function (_a) {
|
|
86
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'createMerchantAppPayment' }))];
|
|
87
|
+
});
|
|
88
|
+
});
|
|
89
|
+
};
|
|
90
|
+
AdminMutation.prototype.createOrderWithTransactions = function (options) {
|
|
91
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
92
|
+
return __generator(this, function (_a) {
|
|
93
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'createOrderWithTransactions' }))];
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
};
|
|
97
|
+
AdminMutation.prototype.deleteCategoryList = function (options) {
|
|
98
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
99
|
+
return __generator(this, function (_a) {
|
|
100
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteCategoryList' }))];
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
};
|
|
104
|
+
AdminMutation.prototype.deleteProductAttributeList = function (options) {
|
|
105
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
106
|
+
return __generator(this, function (_a) {
|
|
107
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteProductAttributeList' }))];
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
};
|
|
111
|
+
AdminMutation.prototype.deleteProductBrandList = function (options) {
|
|
112
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
113
|
+
return __generator(this, function (_a) {
|
|
114
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteProductBrandList' }))];
|
|
115
|
+
});
|
|
116
|
+
});
|
|
117
|
+
};
|
|
118
|
+
AdminMutation.prototype.deleteProductList = function (options) {
|
|
119
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
120
|
+
return __generator(this, function (_a) {
|
|
121
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteProductList' }))];
|
|
122
|
+
});
|
|
123
|
+
});
|
|
124
|
+
};
|
|
125
|
+
AdminMutation.prototype.deleteProductTagList = function (options) {
|
|
126
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
127
|
+
return __generator(this, function (_a) {
|
|
128
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteProductTagList' }))];
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
};
|
|
132
|
+
AdminMutation.prototype.deleteStorefrontJSScript = function (options) {
|
|
133
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
134
|
+
return __generator(this, function (_a) {
|
|
135
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteStorefrontJSScript' }))];
|
|
136
|
+
});
|
|
137
|
+
});
|
|
138
|
+
};
|
|
139
|
+
AdminMutation.prototype.deleteVariantTypeList = function (options) {
|
|
140
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
141
|
+
return __generator(this, function (_a) {
|
|
142
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteVariantTypeList' }))];
|
|
143
|
+
});
|
|
144
|
+
});
|
|
145
|
+
};
|
|
146
|
+
AdminMutation.prototype.deleteWebhook = function (options) {
|
|
147
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
148
|
+
return __generator(this, function (_a) {
|
|
149
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'deleteWebhook' }))];
|
|
150
|
+
});
|
|
151
|
+
});
|
|
152
|
+
};
|
|
153
|
+
AdminMutation.prototype.fulfillOrder = function (options) {
|
|
154
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
155
|
+
return __generator(this, function (_a) {
|
|
156
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'fulfillOrder' }))];
|
|
157
|
+
});
|
|
158
|
+
});
|
|
159
|
+
};
|
|
160
|
+
AdminMutation.prototype.refundOrderLine = function (options) {
|
|
161
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
162
|
+
return __generator(this, function (_a) {
|
|
163
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'refundOrderLine' }))];
|
|
164
|
+
});
|
|
165
|
+
});
|
|
166
|
+
};
|
|
167
|
+
AdminMutation.prototype.saveCategory = function (options) {
|
|
168
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
169
|
+
return __generator(this, function (_a) {
|
|
170
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveCategory' }))];
|
|
171
|
+
});
|
|
172
|
+
});
|
|
173
|
+
};
|
|
174
|
+
AdminMutation.prototype.saveProduct = function (options) {
|
|
175
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
176
|
+
return __generator(this, function (_a) {
|
|
177
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveProduct' }))];
|
|
178
|
+
});
|
|
179
|
+
});
|
|
180
|
+
};
|
|
181
|
+
AdminMutation.prototype.saveProductAttribute = function (options) {
|
|
182
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
183
|
+
return __generator(this, function (_a) {
|
|
184
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveProductAttribute' }))];
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
};
|
|
188
|
+
AdminMutation.prototype.saveProductBrand = function (options) {
|
|
189
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
190
|
+
return __generator(this, function (_a) {
|
|
191
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveProductBrand' }))];
|
|
192
|
+
});
|
|
193
|
+
});
|
|
194
|
+
};
|
|
195
|
+
AdminMutation.prototype.saveProductStockLocations = function (options) {
|
|
196
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
197
|
+
return __generator(this, function (_a) {
|
|
198
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveProductStockLocations' }))];
|
|
199
|
+
});
|
|
200
|
+
});
|
|
201
|
+
};
|
|
202
|
+
AdminMutation.prototype.saveProductTag = function (options) {
|
|
203
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
204
|
+
return __generator(this, function (_a) {
|
|
205
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveProductTag' }))];
|
|
206
|
+
});
|
|
207
|
+
});
|
|
208
|
+
};
|
|
209
|
+
AdminMutation.prototype.saveSalesChannel = function (options) {
|
|
210
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
211
|
+
return __generator(this, function (_a) {
|
|
212
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveSalesChannel' }))];
|
|
213
|
+
});
|
|
214
|
+
});
|
|
215
|
+
};
|
|
216
|
+
AdminMutation.prototype.saveStorefrontJSScript = function (options) {
|
|
217
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
218
|
+
return __generator(this, function (_a) {
|
|
219
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveStorefrontJSScript' }))];
|
|
220
|
+
});
|
|
221
|
+
});
|
|
222
|
+
};
|
|
223
|
+
AdminMutation.prototype.saveVariantType = function (options) {
|
|
224
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
225
|
+
return __generator(this, function (_a) {
|
|
226
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveVariantType' }))];
|
|
227
|
+
});
|
|
228
|
+
});
|
|
229
|
+
};
|
|
230
|
+
AdminMutation.prototype.saveWebhook = function (options) {
|
|
231
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
232
|
+
return __generator(this, function (_a) {
|
|
233
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'saveWebhook' }))];
|
|
234
|
+
});
|
|
235
|
+
});
|
|
236
|
+
};
|
|
237
|
+
AdminMutation.prototype.updateOrderAddresses = function (options) {
|
|
238
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
239
|
+
return __generator(this, function (_a) {
|
|
240
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'updateOrderAddresses' }))];
|
|
241
|
+
});
|
|
242
|
+
});
|
|
243
|
+
};
|
|
244
|
+
AdminMutation.prototype.updateOrderLine = function (options) {
|
|
245
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
246
|
+
return __generator(this, function (_a) {
|
|
247
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'updateOrderLine' }))];
|
|
248
|
+
});
|
|
249
|
+
});
|
|
250
|
+
};
|
|
251
|
+
AdminMutation.prototype.updateOrderPackageStatus = function (options) {
|
|
252
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
253
|
+
return __generator(this, function (_a) {
|
|
254
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'updateOrderPackageStatus' }))];
|
|
255
|
+
});
|
|
256
|
+
});
|
|
257
|
+
};
|
|
258
|
+
AdminMutation.prototype.updateProductSalesChannelStatus = function (options) {
|
|
259
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
260
|
+
return __generator(this, function (_a) {
|
|
261
|
+
return [2 /*return*/, this.client.mutate(__assign(__assign({}, options), { operationName: 'updateProductSalesChannelStatus' }))];
|
|
262
|
+
});
|
|
263
|
+
});
|
|
264
|
+
};
|
|
265
|
+
return AdminMutation;
|
|
266
|
+
}());
|
|
267
|
+
exports.AdminMutation = AdminMutation;
|
|
268
|
+
//# sourceMappingURL=mutation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mutation.js","sourceRoot":"","sources":["../../../src/api/admin/mutation.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwCA;IAGE,uBAAY,MAAsC;QAChD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAEK,8CAAsB,GAA5B,UACE,OAA4D;;;gBAE5D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAmD,OAAO,KAAE,aAAa,EAAE,wBAAwB,IAAG,EAAC;;;KACjI;IAEK,uCAAe,GAArB,UAAsB,OAAqD;;;gBACzE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA4C,OAAO,KAAE,aAAa,EAAE,iBAAiB,IAAG,EAAC;;;KACnH;IAEK,0CAAkB,GAAxB,UAAyB,OAAwD;;;gBAC/E,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA+C,OAAO,KAAE,aAAa,EAAE,oBAAoB,IAAG,EAAC;;;KACzH;IAEK,yCAAiB,GAAvB,UAAwB,OAAuD;;;gBAC7E,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA8C,OAAO,KAAE,aAAa,EAAE,mBAAmB,IAAG,EAAC;;;KACvH;IAEK,gDAAwB,GAA9B,UACE,OAA8D;;;gBAE9D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAqD,OAAO,KAAE,aAAa,EAAE,0BAA0B,IAAG,EAAC;;;KACrI;IAEK,mDAA2B,GAAjC,UACE,OAAiE;;;gBAEjE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAwD,OAAO,KAAE,aAAa,EAAE,6BAA6B,IAAG,EAAC;;;KAC3I;IAEK,0CAAkB,GAAxB,UAAyB,OAAwD;;;gBAC/E,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA+C,OAAO,KAAE,aAAa,EAAE,oBAAoB,IAAG,EAAC;;;KACzH;IAEK,kDAA0B,GAAhC,UACE,OAAgE;;;gBAEhE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAuD,OAAO,KAAE,aAAa,EAAE,4BAA4B,IAAG,EAAC;;;KACzI;IAEK,8CAAsB,GAA5B,UACE,OAA4D;;;gBAE5D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAmD,OAAO,KAAE,aAAa,EAAE,wBAAwB,IAAG,EAAC;;;KACjI;IAEK,yCAAiB,GAAvB,UAAwB,OAAuD;;;gBAC7E,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA8C,OAAO,KAAE,aAAa,EAAE,mBAAmB,IAAG,EAAC;;;KACvH;IAEK,4CAAoB,GAA1B,UACE,OAA0D;;;gBAE1D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAiD,OAAO,KAAE,aAAa,EAAE,sBAAsB,IAAG,EAAC;;;KAC7H;IAEK,gDAAwB,GAA9B,UACE,OAA8D;;;gBAE9D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAqD,OAAO,KAAE,aAAa,EAAE,0BAA0B,IAAG,EAAC;;;KACrI;IAEK,6CAAqB,GAA3B,UACE,OAA2D;;;gBAE3D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAkD,OAAO,KAAE,aAAa,EAAE,uBAAuB,IAAG,EAAC;;;KAC/H;IAEK,qCAAa,GAAnB,UAAoB,OAAmD;;;gBACrE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA0C,OAAO,KAAE,aAAa,EAAE,eAAe,IAAG,EAAC;;;KAC/G;IAEK,oCAAY,GAAlB,UAAmB,OAAkD;;;gBACnE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAyC,OAAO,KAAE,aAAa,EAAE,cAAc,IAAG,EAAC;;;KAC7G;IAEK,uCAAe,GAArB,UAAsB,OAAqD;;;gBACzE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA4C,OAAO,KAAE,aAAa,EAAE,iBAAiB,IAAG,EAAC;;;KACnH;IAEK,oCAAY,GAAlB,UAAmB,OAAkD;;;gBACnE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAyC,OAAO,KAAE,aAAa,EAAE,cAAc,IAAG,EAAC;;;KAC7G;IAEK,mCAAW,GAAjB,UAAkB,OAAiD;;;gBACjE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAwC,OAAO,KAAE,aAAa,EAAE,aAAa,IAAG,EAAC;;;KAC3G;IAEK,4CAAoB,GAA1B,UACE,OAA0D;;;gBAE1D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAiD,OAAO,KAAE,aAAa,EAAE,sBAAsB,IAAG,EAAC;;;KAC7H;IAEK,wCAAgB,GAAtB,UAAuB,OAAsD;;;gBAC3E,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA6C,OAAO,KAAE,aAAa,EAAE,kBAAkB,IAAG,EAAC;;;KACrH;IAEK,iDAAyB,GAA/B,UACE,OAA+D;;;gBAE/D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAsD,OAAO,KAAE,aAAa,EAAE,2BAA2B,IAAG,EAAC;;;KACvI;IAEK,sCAAc,GAApB,UAAqB,OAAoD;;;gBACvE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA2C,OAAO,KAAE,aAAa,EAAE,gBAAgB,IAAG,EAAC;;;KACjH;IAEK,wCAAgB,GAAtB,UAAuB,OAAsD;;;gBAC3E,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA6C,OAAO,KAAE,aAAa,EAAE,kBAAkB,IAAG,EAAC;;;KACrH;IAEK,8CAAsB,GAA5B,UACE,OAA4D;;;gBAE5D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAmD,OAAO,KAAE,aAAa,EAAE,wBAAwB,IAAG,EAAC;;;KACjI;IAEK,uCAAe,GAArB,UAAsB,OAAqD;;;gBACzE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA4C,OAAO,KAAE,aAAa,EAAE,iBAAiB,IAAG,EAAC;;;KACnH;IAEK,mCAAW,GAAjB,UAAkB,OAAiD;;;gBACjE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAwC,OAAO,KAAE,aAAa,EAAE,aAAa,IAAG,EAAC;;;KAC3G;IAEK,4CAAoB,GAA1B,UACE,OAA0D;;;gBAE1D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAiD,OAAO,KAAE,aAAa,EAAE,sBAAsB,IAAG,EAAC;;;KAC7H;IAEK,uCAAe,GAArB,UAAsB,OAAqD;;;gBACzE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA4C,OAAO,KAAE,aAAa,EAAE,iBAAiB,IAAG,EAAC;;;KACnH;IAEK,gDAAwB,GAA9B,UACE,OAA8D;;;gBAE9D,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAAqD,OAAO,KAAE,aAAa,EAAE,0BAA0B,IAAG,EAAC;;;KACrI;IAEK,uDAA+B,GAArC,UACE,OAAqE;;;gBAErE,sBAAO,IAAI,CAAC,MAAM,CAAC,MAAM,uBAA4D,OAAO,KAAE,aAAa,EAAE,iCAAiC,IAAG,EAAC;;;KACnJ;IACH,oBAAC;AAAD,CAAC,AA1JD,IA0JC;AA1JY,sCAAa"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
3
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
4
|
+
return cooked;
|
|
5
|
+
};
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.DefaultQueries = void 0;
|
|
8
|
+
var graphql_request_1 = require("graphql-request");
|
|
9
|
+
var common_gql_1 = require("./common-gql");
|
|
10
|
+
exports.DefaultQueries = {
|
|
11
|
+
getAuthorizedApp: (0, graphql_request_1.gql)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n query GetAuthorizedApp {\n getAuthorizedApp {\n id\n storeAppId\n scope\n addedDate\n partnerId\n salesChannelId\n }\n }\n "], ["\n query GetAuthorizedApp {\n getAuthorizedApp {\n id\n storeAppId\n scope\n addedDate\n partnerId\n salesChannelId\n }\n }\n "]))),
|
|
12
|
+
getMerchantLicence: (0, graphql_request_1.gql)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n query GetMerchantLicence {\n getMerchantLicence {\n activeSubscriptionCode\n activeSubscriptionId\n appSubscriptions {\n addedDate\n appPaymentKey\n authorizedAppId\n createdAt\n currency\n deleted\n id\n lastPaymentDate\n lastPaymentPeriod\n lastPaymentPrice\n lastPaymentPriceWithTax\n merchantAppPaymentId\n name\n status\n storeAppId\n updatedAt\n }\n createdAt\n deleted\n fromDate\n id\n licenceActivationDate\n limits {\n code\n value\n }\n period\n region\n status\n statusUpdatedAt\n subscriptions {\n code\n createdAt\n currency\n deleted\n id\n lastPaymentDate\n lastPaymentPeriod\n lastPaymentPrice\n lastPaymentPriceWithTax\n status\n subscriptionId\n updatedAt\n }\n toDate\n updatedAt\n }\n }\n "], ["\n query GetMerchantLicence {\n getMerchantLicence {\n activeSubscriptionCode\n activeSubscriptionId\n appSubscriptions {\n addedDate\n appPaymentKey\n authorizedAppId\n createdAt\n currency\n deleted\n id\n lastPaymentDate\n lastPaymentPeriod\n lastPaymentPrice\n lastPaymentPriceWithTax\n merchantAppPaymentId\n name\n status\n storeAppId\n updatedAt\n }\n createdAt\n deleted\n fromDate\n id\n licenceActivationDate\n limits {\n code\n value\n }\n period\n region\n status\n statusUpdatedAt\n subscriptions {\n code\n createdAt\n currency\n deleted\n id\n lastPaymentDate\n lastPaymentPeriod\n lastPaymentPrice\n lastPaymentPriceWithTax\n status\n subscriptionId\n updatedAt\n }\n toDate\n updatedAt\n }\n }\n "]))),
|
|
13
|
+
getMerchant: (0, graphql_request_1.gql)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n query GetMerchant {\n getMerchant {\n id\n storeName\n merchantSequence\n merchantName\n firstName\n lastName\n email\n phoneNumber\n address {\n addressLine1\n addressLine2\n country {\n id\n name\n code\n }\n state {\n id\n name\n code\n }\n city {\n id\n name\n code\n }\n district {\n id\n name\n code\n }\n postalCode\n }\n }\n }\n "], ["\n query GetMerchant {\n getMerchant {\n id\n storeName\n merchantSequence\n merchantName\n firstName\n lastName\n email\n phoneNumber\n address {\n addressLine1\n addressLine2\n country {\n id\n name\n code\n }\n state {\n id\n name\n code\n }\n city {\n id\n name\n code\n }\n district {\n id\n name\n code\n }\n postalCode\n }\n }\n }\n "]))),
|
|
14
|
+
getSalesChannel: (0, graphql_request_1.gql)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n query GetSalesChannel {\n getSalesChannel {\n id\n createdAt\n updatedAt\n deleted\n name\n paymentGateways {\n id\n order\n }\n priceListId\n stockLocations {\n id\n order\n }\n type\n }\n }\n "], ["\n query GetSalesChannel {\n getSalesChannel {\n id\n createdAt\n updatedAt\n deleted\n name\n paymentGateways {\n id\n order\n }\n priceListId\n stockLocations {\n id\n order\n }\n type\n }\n }\n "]))),
|
|
15
|
+
listCategory: (0, graphql_request_1.gql)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n query ListCategories(\n $categoryPath: CategoryPathFilterInput\n $id: StringFilterInput\n $includeDeleted: Boolean\n $name: StringFilterInput\n $search: String\n $updatedAt: DateFilterInput\n ) {\n listCategory(categoryPath: $categoryPath, id: $id, includeDeleted: $includeDeleted, name: $name, search: $search, updatedAt: $updatedAt) ", "\n } \n "], ["\n query ListCategories(\n $categoryPath: CategoryPathFilterInput\n $id: StringFilterInput\n $includeDeleted: Boolean\n $name: StringFilterInput\n $search: String\n $updatedAt: DateFilterInput\n ) {\n listCategory(categoryPath: $categoryPath, id: $id, includeDeleted: $includeDeleted, name: $name, search: $search, updatedAt: $updatedAt) ", "\n } \n "])), common_gql_1.CATEGORY_GQL),
|
|
16
|
+
listCustomer: (0, graphql_request_1.gql)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n query ListCustomer($pagination: PaginationInput, $id: StringFilterInput, $sort: String) {\n listCustomer(pagination: $pagination, id: $id, sort: $sort) {\n data ", "\n count\n hasNext\n limit\n page\n }\n }\n "], ["\n query ListCustomer($pagination: PaginationInput, $id: StringFilterInput, $sort: String) {\n listCustomer(pagination: $pagination, id: $id, sort: $sort) {\n data ", "\n count\n hasNext\n limit\n page\n }\n }\n "])), common_gql_1.CUSTOMER_GQL),
|
|
17
|
+
listMerchantAppPayment: (0, graphql_request_1.gql)(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n query ListMerchantAppPayment($id: StringFilterInput, $pagination: PaginationInput) {\n listMerchantAppPayment(id: $id, pagination: $pagination) {\n count\n data {\n appPaymentKey\n createdAt\n deleted\n id\n merchantPaymentUrl\n name\n paymentDate\n prices {\n period\n price\n }\n status\n storeAppId\n type\n updatedAt\n }\n hasNext\n limit\n page\n }\n }\n "], ["\n query ListMerchantAppPayment($id: StringFilterInput, $pagination: PaginationInput) {\n listMerchantAppPayment(id: $id, pagination: $pagination) {\n count\n data {\n appPaymentKey\n createdAt\n deleted\n id\n merchantPaymentUrl\n name\n paymentDate\n prices {\n period\n price\n }\n status\n storeAppId\n type\n updatedAt\n }\n hasNext\n limit\n page\n }\n }\n "]))),
|
|
18
|
+
listOrder: (0, graphql_request_1.gql)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n query ListOrder($pagination: PaginationInput, $id: StringFilterInput) {\n listOrder(pagination: $pagination, id: $id) {\n count\n data ", "\n hasNext\n limit\n page\n }\n }\n "], ["\n query ListOrder($pagination: PaginationInput, $id: StringFilterInput) {\n listOrder(pagination: $pagination, id: $id) {\n count\n data ", "\n hasNext\n limit\n page\n }\n }\n "])), common_gql_1.ORDER_GQL),
|
|
19
|
+
listPriceList: (0, graphql_request_1.gql)(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n query ListPriceList($id: StringFilterInput) {\n listPriceList(id: $id) {\n id\n createdAt\n updatedAt\n deleted\n currency\n name\n }\n }\n "], ["\n query ListPriceList($id: StringFilterInput) {\n listPriceList(id: $id) {\n id\n createdAt\n updatedAt\n deleted\n currency\n name\n }\n }\n "]))),
|
|
20
|
+
listProduct: (0, graphql_request_1.gql)(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n query ListProduct($pagination: PaginationInput, $id: StringFilterInput, $sku: StringFilterInput, $barcodeList: StringFilterInput) {\n listProduct(pagination: $pagination, id: $id, sku: $sku, barcodeList: $barcodeList) {\n count\n hasNext\n limit\n page\n data ", "\n }\n }\n "], ["\n query ListProduct($pagination: PaginationInput, $id: StringFilterInput, $sku: StringFilterInput, $barcodeList: StringFilterInput) {\n listProduct(pagination: $pagination, id: $id, sku: $sku, barcodeList: $barcodeList) {\n count\n hasNext\n limit\n page\n data ", "\n }\n }\n "])), common_gql_1.PRODUCT_GQL),
|
|
21
|
+
listProductAttribute: (0, graphql_request_1.gql)(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n query ListProductAttributes($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput) {\n listProductAttribute(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name) {\n id\n createdAt\n updatedAt\n name\n deleted\n type\n description\n tableTemplate {\n rows {\n id\n name\n }\n columns {\n id\n name\n }\n }\n options {\n createdAt\n id\n name\n updatedAt\n }\n }\n }\n "], ["\n query ListProductAttributes($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput) {\n listProductAttribute(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name) {\n id\n createdAt\n updatedAt\n name\n deleted\n type\n description\n tableTemplate {\n rows {\n id\n name\n }\n columns {\n id\n name\n }\n }\n options {\n createdAt\n id\n name\n updatedAt\n }\n }\n }\n "]))),
|
|
22
|
+
listProductBrand: (0, graphql_request_1.gql)(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n query ListProductBrand($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $search: String, $updatedAt: DateFilterInput) {\n listProductBrand(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name, search: $search) {\n id\n createdAt\n updatedAt\n name\n imageId\n salesChannelIds\n orderType\n deleted\n metaData {\n id\n createdAt\n updatedAt\n slug\n pageTitle\n description\n targetType\n targetId\n redirectTo\n }\n }\n }\n "], ["\n query ListProductBrand($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $search: String, $updatedAt: DateFilterInput) {\n listProductBrand(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name, search: $search) {\n id\n createdAt\n updatedAt\n name\n imageId\n salesChannelIds\n orderType\n deleted\n metaData {\n id\n createdAt\n updatedAt\n slug\n pageTitle\n description\n targetType\n targetId\n redirectTo\n }\n }\n }\n "]))),
|
|
23
|
+
listProductStockLocation: (0, graphql_request_1.gql)(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n query ListProductStockLocation($variantId: StringFilterInput, $productId: StringFilterInput, $pagination: PaginationInput) {\n listProductStockLocation(variantId: $variantId, productId: $productId, pagination: $pagination) {\n count\n data {\n createdAt\n deleted\n id\n productId\n stockCount\n stockLocationId\n updatedAt\n variantId\n }\n hasNext\n limit\n page\n }\n }\n "], ["\n query ListProductStockLocation($variantId: StringFilterInput, $productId: StringFilterInput, $pagination: PaginationInput) {\n listProductStockLocation(variantId: $variantId, productId: $productId, pagination: $pagination) {\n count\n data {\n createdAt\n deleted\n id\n productId\n stockCount\n stockLocationId\n updatedAt\n variantId\n }\n hasNext\n limit\n page\n }\n }\n "]))),
|
|
24
|
+
listProductTag: (0, graphql_request_1.gql)(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n query ListProductTag($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput) {\n listProductTag(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name) {\n id\n createdAt\n updatedAt\n name\n deleted\n }\n }\n "], ["\n query ListProductTag($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput) {\n listProductTag(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name) {\n id\n createdAt\n updatedAt\n name\n deleted\n }\n }\n "]))),
|
|
25
|
+
listSalesChannel: (0, graphql_request_1.gql)(templateObject_15 || (templateObject_15 = __makeTemplateObject(["\n query ListSalesChannel($id: StringFilterInput) {\n listSalesChannel(id: $id) {\n id\n createdAt\n updatedAt\n deleted\n name\n paymentGateways {\n id\n order\n }\n priceListId\n stockLocations {\n id\n order\n }\n type\n }\n }\n "], ["\n query ListSalesChannel($id: StringFilterInput) {\n listSalesChannel(id: $id) {\n id\n createdAt\n updatedAt\n deleted\n name\n paymentGateways {\n id\n order\n }\n priceListId\n stockLocations {\n id\n order\n }\n type\n }\n }\n "]))),
|
|
26
|
+
listStockLocation: (0, graphql_request_1.gql)(templateObject_16 || (templateObject_16 = __makeTemplateObject(["\n query ListStockLocation($id: StringFilterInput) {\n listStockLocation(id: $id) {\n id\n createdAt\n updatedAt\n deleted\n name\n type\n address {\n address\n country {\n id\n name\n code\n }\n state {\n id\n name\n code\n }\n city {\n id\n name\n code\n }\n district {\n id\n name\n code\n }\n postalCode\n phone\n }\n }\n }\n "], ["\n query ListStockLocation($id: StringFilterInput) {\n listStockLocation(id: $id) {\n id\n createdAt\n updatedAt\n deleted\n name\n type\n address {\n address\n country {\n id\n name\n code\n }\n state {\n id\n name\n code\n }\n city {\n id\n name\n code\n }\n district {\n id\n name\n code\n }\n postalCode\n phone\n }\n }\n }\n "]))),
|
|
27
|
+
listStorefront: (0, graphql_request_1.gql)(templateObject_17 || (templateObject_17 = __makeTemplateObject(["\n query ListStorefront($id: StringFilterInput) {\n listStorefront(id: $id) {\n id\n name\n createdAt\n updatedAt\n deleted\n }\n }\n "], ["\n query ListStorefront($id: StringFilterInput) {\n listStorefront(id: $id) {\n id\n name\n createdAt\n updatedAt\n deleted\n }\n }\n "]))),
|
|
28
|
+
listStorefrontJSScript: (0, graphql_request_1.gql)(templateObject_18 || (templateObject_18 = __makeTemplateObject(["\n query ListStorefrontJSScript($id: StringFilterInput) {\n listStorefrontJSScript(id: $id) {\n authorizedAppId\n createdAt\n deleted\n id\n isActive\n name\n scriptContent\n storeAppId\n storefrontId\n updatedAt\n }\n }\n "], ["\n query ListStorefrontJSScript($id: StringFilterInput) {\n listStorefrontJSScript(id: $id) {\n authorizedAppId\n createdAt\n deleted\n id\n isActive\n name\n scriptContent\n storeAppId\n storefrontId\n updatedAt\n }\n }\n "]))),
|
|
29
|
+
listVariantType: (0, graphql_request_1.gql)(templateObject_19 || (templateObject_19 = __makeTemplateObject(["\n query ListVariantTypes($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput) {\n listVariantType(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name) {\n id\n deleted\n createdAt\n updatedAt\n name\n selectionType\n values {\n colorCode\n createdAt\n id\n name\n thumbnailImageId\n updatedAt\n }\n }\n }\n "], ["\n query ListVariantTypes($id: StringFilterInput, $includeDeleted: Boolean, $name: StringFilterInput, $updatedAt: DateFilterInput) {\n listVariantType(updatedAt: $updatedAt, includeDeleted: $includeDeleted, id: $id, name: $name) {\n id\n deleted\n createdAt\n updatedAt\n name\n selectionType\n values {\n colorCode\n createdAt\n id\n name\n thumbnailImageId\n updatedAt\n }\n }\n }\n "]))),
|
|
30
|
+
listWebhook: (0, graphql_request_1.gql)(templateObject_20 || (templateObject_20 = __makeTemplateObject(["\n query ListWebhook {\n listWebhook {\n id\n createdAt\n updatedAt\n deleted\n scope\n endpoint\n }\n }\n "], ["\n query ListWebhook {\n listWebhook {\n id\n createdAt\n updatedAt\n deleted\n scope\n endpoint\n }\n }\n "]))),
|
|
31
|
+
searchProducts: (0, graphql_request_1.gql)(templateObject_21 || (templateObject_21 = __makeTemplateObject(["\n query SearchProducts($input: SearchInput!) {\n searchProducts(input: $input) {\n data\n count\n totalCount\n page\n limit\n }\n }\n "], ["\n query SearchProducts($input: SearchInput!) {\n searchProducts(input: $input) {\n data\n count\n totalCount\n page\n limit\n }\n }\n "]))),
|
|
32
|
+
};
|
|
33
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21;
|
|
34
|
+
//# sourceMappingURL=query-gql.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query-gql.js","sourceRoot":"","sources":["../../../src/api/admin/query-gql.ts"],"names":[],"mappings":";;;;;;;AACA,mDAAsC;AACtC,2CAAkF;AAMrE,QAAA,cAAc,GAAY;IACrC,gBAAgB,MAAE,qBAAG,+PAAA,2LAWpB,IAAA;IACD,kBAAkB,MAAE,qBAAG,mrCAAA,+mCAsDtB,IAAA;IACD,WAAW,MAAE,qBAAG,wtBAAA,opBAsCf,IAAA;IACD,eAAe,MAAE,qBAAG,6YAAA,yUAoBnB,IAAA;IACD,YAAY,MAAE,qBAAG,idAAA,6XAS8H,EAAY,cAE1J,KAF8I,yBAAY,CAE1J;IACD,YAAY,MAAE,qBAAG,8UAAA,qLAGJ,EAAY,mFAOxB,KAPY,yBAAY,CAOxB;IACD,sBAAsB,MAAE,qBAAG,unBAAA,mjBA0B1B,IAAA;IACD,SAAS,MAAE,qBAAG,4SAAA,kKAID,EAAS,oEAMrB,KANY,sBAAS,CAMrB;IACD,aAAa,MAAE,qBAAG,gRAAA,4MAWjB,IAAA;IACD,WAAW,MAAE,qBAAG,kZAAA,oTAOH,EAAW,sBAGvB,KAHY,wBAAW,CAGvB;IACD,oBAAoB,MAAE,qBAAG,utBAAA,ipBA4BxB,IAAA;IACD,gBAAgB,MAAE,qBAAG,8sBAAA,woBAwBpB,IAAA;IACD,wBAAwB,MAAE,qBAAG,qkBAAA,+fAmB5B,IAAA;IACD,cAAc,MAAE,qBAAG,wZAAA,kVAUlB,IAAA;IACD,gBAAgB,MAAE,qBAAG,kbAAA,4WAoBpB,IAAA;IACD,iBAAiB,MAAE,qBAAG,ksBAAA,4nBAoCrB,IAAA;IACD,cAAc,MAAE,qBAAG,kQAAA,4LAUlB,IAAA;IACD,sBAAsB,MAAE,qBAAG,8XAAA,wTAe1B,IAAA;IACD,eAAe,MAAE,qBAAG,wkBAAA,kgBAmBnB,IAAA;IACD,WAAW,MAAE,qBAAG,8OAAA,wKAWf,IAAA;IACD,cAAc,MAAE,qBAAG,mQAAA,6LAUlB,IAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ikasAdminGraphQLAPIClient } from './admin-client';
|
|
2
|
+
import { Query, QuerylistCategoryArgs, QuerylistCustomerArgs, QuerylistMerchantAppPaymentArgs, QuerylistOrderArgs, QuerylistPriceListArgs, QuerylistProductArgs, QuerylistProductAttributeArgs, QuerylistProductBrandArgs, QuerylistProductStockLocationArgs, QuerylistProductTagArgs, QuerylistSalesChannelArgs, QuerylistStockLocationArgs, QuerylistStorefrontArgs, QuerylistStorefrontJSScriptArgs, QuerylistVariantTypeArgs, QuerysearchProductsArgs } from './generated';
|
|
3
|
+
import { APIResult, QueryOptions } from '../base';
|
|
4
|
+
declare type Result<T> = APIResult<Partial<T>>;
|
|
5
|
+
declare type Queries = {
|
|
6
|
+
[p in keyof Omit<Query, '__typename' | 'getImageUploadUrl'>]: (options: QueryOptions<any>) => Promise<Result<Query[p]>>;
|
|
7
|
+
};
|
|
8
|
+
export declare class AdminQuery implements Queries {
|
|
9
|
+
client: ikasAdminGraphQLAPIClient<any>;
|
|
10
|
+
constructor(client: ikasAdminGraphQLAPIClient<any>);
|
|
11
|
+
getAuthorizedApp(options: QueryOptions<undefined>): Promise<Result<Query['getAuthorizedApp']>>;
|
|
12
|
+
getMerchant(options: QueryOptions<undefined>): Promise<Result<Query['getMerchant']>>;
|
|
13
|
+
getMerchantLicence(options: QueryOptions<undefined>): Promise<Result<Query['getMerchantLicence']>>;
|
|
14
|
+
getSalesChannel(options: QueryOptions<undefined>): Promise<Result<Query['getSalesChannel']>>;
|
|
15
|
+
listCategory(options: QueryOptions<QuerylistCategoryArgs>): Promise<Result<Query['listCategory']>>;
|
|
16
|
+
listCustomer(options: QueryOptions<QuerylistCustomerArgs>): Promise<Result<Query['listCustomer']>>;
|
|
17
|
+
listMerchantAppPayment(options: QueryOptions<QuerylistMerchantAppPaymentArgs>): Promise<Result<Query['listMerchantAppPayment']>>;
|
|
18
|
+
listOrder(options: QueryOptions<QuerylistOrderArgs>): Promise<Result<Query['listOrder']>>;
|
|
19
|
+
listPriceList(options: QueryOptions<QuerylistPriceListArgs>): Promise<Result<Query['listPriceList']>>;
|
|
20
|
+
listProduct(options: QueryOptions<QuerylistProductArgs>): Promise<Result<Query['listProduct']>>;
|
|
21
|
+
listProductAttribute(options: QueryOptions<QuerylistProductAttributeArgs>): Promise<Result<Query['listProductAttribute']>>;
|
|
22
|
+
listProductBrand(options: QueryOptions<QuerylistProductBrandArgs>): Promise<Result<Query['listProductBrand']>>;
|
|
23
|
+
listProductStockLocation(options: QueryOptions<QuerylistProductStockLocationArgs>): Promise<Result<Query['listProductStockLocation']>>;
|
|
24
|
+
listProductTag(options: QueryOptions<QuerylistProductTagArgs>): Promise<Result<Query['listProductTag']>>;
|
|
25
|
+
listSalesChannel(options: QueryOptions<QuerylistSalesChannelArgs>): Promise<Result<Query['listSalesChannel']>>;
|
|
26
|
+
listStockLocation(options: QueryOptions<QuerylistStockLocationArgs>): Promise<Result<Query['listStockLocation']>>;
|
|
27
|
+
listStorefront(options: QueryOptions<QuerylistStorefrontArgs>): Promise<Result<Query['listStorefront']>>;
|
|
28
|
+
listStorefrontJSScript(options: QueryOptions<QuerylistStorefrontJSScriptArgs>): Promise<Result<Query['listStorefrontJSScript']>>;
|
|
29
|
+
listVariantType(options: QueryOptions<QuerylistVariantTypeArgs>): Promise<Result<Query['listVariantType']>>;
|
|
30
|
+
listWebhook(options: QueryOptions<undefined>): Promise<Result<Query['listWebhook']>>;
|
|
31
|
+
searchProducts(options: QueryOptions<QuerysearchProductsArgs>): Promise<Result<Query['searchProducts']>>;
|
|
32
|
+
}
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
14
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
15
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
16
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
17
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
18
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
19
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
20
|
+
});
|
|
21
|
+
};
|
|
22
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
23
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
24
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
25
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
26
|
+
function step(op) {
|
|
27
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
28
|
+
while (_) try {
|
|
29
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
30
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
31
|
+
switch (op[0]) {
|
|
32
|
+
case 0: case 1: t = op; break;
|
|
33
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
34
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
35
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
36
|
+
default:
|
|
37
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
38
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
39
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
40
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
41
|
+
if (t[2]) _.ops.pop();
|
|
42
|
+
_.trys.pop(); continue;
|
|
43
|
+
}
|
|
44
|
+
op = body.call(thisArg, _);
|
|
45
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
46
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
47
|
+
}
|
|
48
|
+
};
|
|
49
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
50
|
+
exports.AdminQuery = void 0;
|
|
51
|
+
var AdminQuery = /** @class */ (function () {
|
|
52
|
+
function AdminQuery(client) {
|
|
53
|
+
this.client = client;
|
|
54
|
+
}
|
|
55
|
+
AdminQuery.prototype.getAuthorizedApp = function (options) {
|
|
56
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
57
|
+
return __generator(this, function (_a) {
|
|
58
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'getAuthorizedApp' }))];
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
};
|
|
62
|
+
AdminQuery.prototype.getMerchant = function (options) {
|
|
63
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
64
|
+
return __generator(this, function (_a) {
|
|
65
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'getMerchant' }))];
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
};
|
|
69
|
+
AdminQuery.prototype.getMerchantLicence = function (options) {
|
|
70
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
71
|
+
return __generator(this, function (_a) {
|
|
72
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'getMerchantLicence' }))];
|
|
73
|
+
});
|
|
74
|
+
});
|
|
75
|
+
};
|
|
76
|
+
AdminQuery.prototype.getSalesChannel = function (options) {
|
|
77
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
78
|
+
return __generator(this, function (_a) {
|
|
79
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'getSalesChannel' }))];
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
};
|
|
83
|
+
AdminQuery.prototype.listCategory = function (options) {
|
|
84
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
85
|
+
return __generator(this, function (_a) {
|
|
86
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listCategory' }))];
|
|
87
|
+
});
|
|
88
|
+
});
|
|
89
|
+
};
|
|
90
|
+
AdminQuery.prototype.listCustomer = function (options) {
|
|
91
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
92
|
+
return __generator(this, function (_a) {
|
|
93
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listCustomer' }))];
|
|
94
|
+
});
|
|
95
|
+
});
|
|
96
|
+
};
|
|
97
|
+
AdminQuery.prototype.listMerchantAppPayment = function (options) {
|
|
98
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
99
|
+
return __generator(this, function (_a) {
|
|
100
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listMerchantAppPayment' }))];
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
};
|
|
104
|
+
AdminQuery.prototype.listOrder = function (options) {
|
|
105
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
106
|
+
return __generator(this, function (_a) {
|
|
107
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listOrder' }))];
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
};
|
|
111
|
+
AdminQuery.prototype.listPriceList = function (options) {
|
|
112
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
113
|
+
return __generator(this, function (_a) {
|
|
114
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listPriceList' }))];
|
|
115
|
+
});
|
|
116
|
+
});
|
|
117
|
+
};
|
|
118
|
+
AdminQuery.prototype.listProduct = function (options) {
|
|
119
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
120
|
+
return __generator(this, function (_a) {
|
|
121
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listProduct' }))];
|
|
122
|
+
});
|
|
123
|
+
});
|
|
124
|
+
};
|
|
125
|
+
AdminQuery.prototype.listProductAttribute = function (options) {
|
|
126
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
127
|
+
return __generator(this, function (_a) {
|
|
128
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listProductAttribute' }))];
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
};
|
|
132
|
+
AdminQuery.prototype.listProductBrand = function (options) {
|
|
133
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
134
|
+
return __generator(this, function (_a) {
|
|
135
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listProductBrand' }))];
|
|
136
|
+
});
|
|
137
|
+
});
|
|
138
|
+
};
|
|
139
|
+
AdminQuery.prototype.listProductStockLocation = function (options) {
|
|
140
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
141
|
+
return __generator(this, function (_a) {
|
|
142
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listProductStockLocation' }))];
|
|
143
|
+
});
|
|
144
|
+
});
|
|
145
|
+
};
|
|
146
|
+
AdminQuery.prototype.listProductTag = function (options) {
|
|
147
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
148
|
+
return __generator(this, function (_a) {
|
|
149
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listProductTag' }))];
|
|
150
|
+
});
|
|
151
|
+
});
|
|
152
|
+
};
|
|
153
|
+
AdminQuery.prototype.listSalesChannel = function (options) {
|
|
154
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
155
|
+
return __generator(this, function (_a) {
|
|
156
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listSalesChannel' }))];
|
|
157
|
+
});
|
|
158
|
+
});
|
|
159
|
+
};
|
|
160
|
+
AdminQuery.prototype.listStockLocation = function (options) {
|
|
161
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
162
|
+
return __generator(this, function (_a) {
|
|
163
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listStockLocation' }))];
|
|
164
|
+
});
|
|
165
|
+
});
|
|
166
|
+
};
|
|
167
|
+
AdminQuery.prototype.listStorefront = function (options) {
|
|
168
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
169
|
+
return __generator(this, function (_a) {
|
|
170
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listStorefront' }))];
|
|
171
|
+
});
|
|
172
|
+
});
|
|
173
|
+
};
|
|
174
|
+
AdminQuery.prototype.listStorefrontJSScript = function (options) {
|
|
175
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
176
|
+
return __generator(this, function (_a) {
|
|
177
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listStorefrontJSScript' }))];
|
|
178
|
+
});
|
|
179
|
+
});
|
|
180
|
+
};
|
|
181
|
+
AdminQuery.prototype.listVariantType = function (options) {
|
|
182
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
183
|
+
return __generator(this, function (_a) {
|
|
184
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listVariantType' }))];
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
};
|
|
188
|
+
AdminQuery.prototype.listWebhook = function (options) {
|
|
189
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
190
|
+
return __generator(this, function (_a) {
|
|
191
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'listWebhook' }))];
|
|
192
|
+
});
|
|
193
|
+
});
|
|
194
|
+
};
|
|
195
|
+
AdminQuery.prototype.searchProducts = function (options) {
|
|
196
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
197
|
+
return __generator(this, function (_a) {
|
|
198
|
+
return [2 /*return*/, this.client.query(__assign(__assign({}, options), { operationName: 'searchProducts' }))];
|
|
199
|
+
});
|
|
200
|
+
});
|
|
201
|
+
};
|
|
202
|
+
return AdminQuery;
|
|
203
|
+
}());
|
|
204
|
+
exports.AdminQuery = AdminQuery;
|
|
205
|
+
//# sourceMappingURL=query.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query.js","sourceRoot":"","sources":["../../../src/api/admin/query.ts"],"names":[],"mappings":"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"}
|