@pvh-afl/graphql 1.0.23 → 1.0.25
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/order-tracking/order-tracking.service.d.ts +32 -10
- package/dist/order-tracking/order-tracking.service.d.ts.map +1 -1
- package/dist/order-tracking/order-tracking.service.js +267 -125
- package/dist/order-tracking/order-tracking.service.js.map +1 -1
- package/dist/order-tracking/order-tracking.types.d.ts +102 -17
- package/dist/order-tracking/order-tracking.types.d.ts.map +1 -1
- package/dist/order-tracking/order-tracking.types.js +383 -69
- package/dist/order-tracking/order-tracking.types.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,35 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.OrderTrackingResult = exports.OrderDetails = exports.TrackingTimelineEvent = exports.
|
|
3
|
+
exports.OrderTrackingResult = exports.OrderDetails = exports.CancellationInfo = exports.ReturnLineItem = exports.ReturnInfo = exports.RefundInfo = exports.TrackingTimelineEvent = exports.OrderLineItem = exports.VariantOption = exports.OrderMoney = exports.OrderAddress = exports.OrderTrackingInput = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const graphql_1 = require("@nestjs/graphql");
|
|
6
6
|
/**
|
|
7
7
|
* GraphQL Types for Order Tracking
|
|
8
8
|
*
|
|
9
|
-
*
|
|
10
|
-
* Combines data from Omuni OMS and Shopify Admin API for unified tracking.
|
|
9
|
+
* Comprehensive order tracking types fetching all data from Shopify Admin API.
|
|
11
10
|
*/
|
|
12
11
|
// ============================================================================
|
|
13
12
|
// Input Types
|
|
14
13
|
// ============================================================================
|
|
15
14
|
let OrderTrackingInput = class OrderTrackingInput {
|
|
16
15
|
orderId;
|
|
17
|
-
entityType;
|
|
18
|
-
showItemStatus;
|
|
19
16
|
};
|
|
20
17
|
exports.OrderTrackingInput = OrderTrackingInput;
|
|
21
18
|
tslib_1.__decorate([
|
|
22
19
|
(0, graphql_1.Field)({ description: 'Order ID (Shopify order name like #1001 or Shopify order ID)' }),
|
|
23
20
|
tslib_1.__metadata("design:type", String)
|
|
24
21
|
], OrderTrackingInput.prototype, "orderId", void 0);
|
|
25
|
-
tslib_1.__decorate([
|
|
26
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Entity type (e.g., SHOPIFY, MAGENTO). Defaults to SHOPIFY' }),
|
|
27
|
-
tslib_1.__metadata("design:type", String)
|
|
28
|
-
], OrderTrackingInput.prototype, "entityType", void 0);
|
|
29
|
-
tslib_1.__decorate([
|
|
30
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Whether to include item-level status. Defaults to true' }),
|
|
31
|
-
tslib_1.__metadata("design:type", Boolean)
|
|
32
|
-
], OrderTrackingInput.prototype, "showItemStatus", void 0);
|
|
33
22
|
exports.OrderTrackingInput = OrderTrackingInput = tslib_1.__decorate([
|
|
34
23
|
(0, graphql_1.InputType)()
|
|
35
24
|
], OrderTrackingInput);
|
|
@@ -37,31 +26,173 @@ exports.OrderTrackingInput = OrderTrackingInput = tslib_1.__decorate([
|
|
|
37
26
|
// Output Types
|
|
38
27
|
// ============================================================================
|
|
39
28
|
/**
|
|
40
|
-
*
|
|
29
|
+
* Address information
|
|
41
30
|
*/
|
|
42
|
-
let
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
31
|
+
let OrderAddress = class OrderAddress {
|
|
32
|
+
name;
|
|
33
|
+
firstName;
|
|
34
|
+
lastName;
|
|
35
|
+
address1;
|
|
36
|
+
address2;
|
|
37
|
+
city;
|
|
38
|
+
province;
|
|
39
|
+
provinceCode;
|
|
40
|
+
country;
|
|
41
|
+
countryCode;
|
|
42
|
+
zip;
|
|
43
|
+
phone;
|
|
46
44
|
};
|
|
47
|
-
exports.
|
|
45
|
+
exports.OrderAddress = OrderAddress;
|
|
46
|
+
tslib_1.__decorate([
|
|
47
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Full name' }),
|
|
48
|
+
tslib_1.__metadata("design:type", String)
|
|
49
|
+
], OrderAddress.prototype, "name", void 0);
|
|
50
|
+
tslib_1.__decorate([
|
|
51
|
+
(0, graphql_1.Field)({ nullable: true, description: 'First name' }),
|
|
52
|
+
tslib_1.__metadata("design:type", String)
|
|
53
|
+
], OrderAddress.prototype, "firstName", void 0);
|
|
54
|
+
tslib_1.__decorate([
|
|
55
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Last name' }),
|
|
56
|
+
tslib_1.__metadata("design:type", String)
|
|
57
|
+
], OrderAddress.prototype, "lastName", void 0);
|
|
58
|
+
tslib_1.__decorate([
|
|
59
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Address line 1' }),
|
|
60
|
+
tslib_1.__metadata("design:type", String)
|
|
61
|
+
], OrderAddress.prototype, "address1", void 0);
|
|
62
|
+
tslib_1.__decorate([
|
|
63
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Address line 2' }),
|
|
64
|
+
tslib_1.__metadata("design:type", String)
|
|
65
|
+
], OrderAddress.prototype, "address2", void 0);
|
|
66
|
+
tslib_1.__decorate([
|
|
67
|
+
(0, graphql_1.Field)({ nullable: true, description: 'City' }),
|
|
68
|
+
tslib_1.__metadata("design:type", String)
|
|
69
|
+
], OrderAddress.prototype, "city", void 0);
|
|
70
|
+
tslib_1.__decorate([
|
|
71
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Province/State' }),
|
|
72
|
+
tslib_1.__metadata("design:type", String)
|
|
73
|
+
], OrderAddress.prototype, "province", void 0);
|
|
74
|
+
tslib_1.__decorate([
|
|
75
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Province/State code' }),
|
|
76
|
+
tslib_1.__metadata("design:type", String)
|
|
77
|
+
], OrderAddress.prototype, "provinceCode", void 0);
|
|
48
78
|
tslib_1.__decorate([
|
|
49
|
-
(0, graphql_1.Field)({
|
|
79
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Country' }),
|
|
50
80
|
tslib_1.__metadata("design:type", String)
|
|
51
|
-
],
|
|
81
|
+
], OrderAddress.prototype, "country", void 0);
|
|
52
82
|
tslib_1.__decorate([
|
|
53
|
-
(0, graphql_1.Field)({ description: '
|
|
83
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Country code' }),
|
|
54
84
|
tslib_1.__metadata("design:type", String)
|
|
55
|
-
],
|
|
85
|
+
], OrderAddress.prototype, "countryCode", void 0);
|
|
56
86
|
tslib_1.__decorate([
|
|
57
|
-
(0, graphql_1.Field)({
|
|
87
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Postal/ZIP code' }),
|
|
58
88
|
tslib_1.__metadata("design:type", String)
|
|
59
|
-
],
|
|
60
|
-
|
|
89
|
+
], OrderAddress.prototype, "zip", void 0);
|
|
90
|
+
tslib_1.__decorate([
|
|
91
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Phone number' }),
|
|
92
|
+
tslib_1.__metadata("design:type", String)
|
|
93
|
+
], OrderAddress.prototype, "phone", void 0);
|
|
94
|
+
exports.OrderAddress = OrderAddress = tslib_1.__decorate([
|
|
61
95
|
(0, graphql_1.ObjectType)()
|
|
62
|
-
],
|
|
96
|
+
], OrderAddress);
|
|
97
|
+
/**
|
|
98
|
+
* Money/Price information for order tracking
|
|
99
|
+
*/
|
|
100
|
+
let OrderMoney = class OrderMoney {
|
|
101
|
+
amount;
|
|
102
|
+
currencyCode;
|
|
103
|
+
};
|
|
104
|
+
exports.OrderMoney = OrderMoney;
|
|
105
|
+
tslib_1.__decorate([
|
|
106
|
+
(0, graphql_1.Field)({ description: 'Amount' }),
|
|
107
|
+
tslib_1.__metadata("design:type", String)
|
|
108
|
+
], OrderMoney.prototype, "amount", void 0);
|
|
109
|
+
tslib_1.__decorate([
|
|
110
|
+
(0, graphql_1.Field)({ description: 'Currency code (e.g., INR, USD)' }),
|
|
111
|
+
tslib_1.__metadata("design:type", String)
|
|
112
|
+
], OrderMoney.prototype, "currencyCode", void 0);
|
|
113
|
+
exports.OrderMoney = OrderMoney = tslib_1.__decorate([
|
|
114
|
+
(0, graphql_1.ObjectType)('OrderTrackingMoney')
|
|
115
|
+
], OrderMoney);
|
|
63
116
|
/**
|
|
64
|
-
*
|
|
117
|
+
* Line item variant option (e.g., Color: Black, Size: M)
|
|
118
|
+
*/
|
|
119
|
+
let VariantOption = class VariantOption {
|
|
120
|
+
name;
|
|
121
|
+
value;
|
|
122
|
+
};
|
|
123
|
+
exports.VariantOption = VariantOption;
|
|
124
|
+
tslib_1.__decorate([
|
|
125
|
+
(0, graphql_1.Field)({ description: 'Option name (e.g., Color, Size)' }),
|
|
126
|
+
tslib_1.__metadata("design:type", String)
|
|
127
|
+
], VariantOption.prototype, "name", void 0);
|
|
128
|
+
tslib_1.__decorate([
|
|
129
|
+
(0, graphql_1.Field)({ description: 'Option value (e.g., Black, M)' }),
|
|
130
|
+
tslib_1.__metadata("design:type", String)
|
|
131
|
+
], VariantOption.prototype, "value", void 0);
|
|
132
|
+
exports.VariantOption = VariantOption = tslib_1.__decorate([
|
|
133
|
+
(0, graphql_1.ObjectType)()
|
|
134
|
+
], VariantOption);
|
|
135
|
+
/**
|
|
136
|
+
* Order line item
|
|
137
|
+
*/
|
|
138
|
+
let OrderLineItem = class OrderLineItem {
|
|
139
|
+
id;
|
|
140
|
+
name;
|
|
141
|
+
sku;
|
|
142
|
+
quantity;
|
|
143
|
+
unitPrice;
|
|
144
|
+
totalPrice;
|
|
145
|
+
imageUrl;
|
|
146
|
+
variantTitle;
|
|
147
|
+
variantOptions;
|
|
148
|
+
fulfillmentStatus;
|
|
149
|
+
};
|
|
150
|
+
exports.OrderLineItem = OrderLineItem;
|
|
151
|
+
tslib_1.__decorate([
|
|
152
|
+
(0, graphql_1.Field)({ description: 'Line item ID' }),
|
|
153
|
+
tslib_1.__metadata("design:type", String)
|
|
154
|
+
], OrderLineItem.prototype, "id", void 0);
|
|
155
|
+
tslib_1.__decorate([
|
|
156
|
+
(0, graphql_1.Field)({ description: 'Product name' }),
|
|
157
|
+
tslib_1.__metadata("design:type", String)
|
|
158
|
+
], OrderLineItem.prototype, "name", void 0);
|
|
159
|
+
tslib_1.__decorate([
|
|
160
|
+
(0, graphql_1.Field)({ nullable: true, description: 'SKU / Product number' }),
|
|
161
|
+
tslib_1.__metadata("design:type", String)
|
|
162
|
+
], OrderLineItem.prototype, "sku", void 0);
|
|
163
|
+
tslib_1.__decorate([
|
|
164
|
+
(0, graphql_1.Field)({ description: 'Quantity ordered' }),
|
|
165
|
+
tslib_1.__metadata("design:type", Number)
|
|
166
|
+
], OrderLineItem.prototype, "quantity", void 0);
|
|
167
|
+
tslib_1.__decorate([
|
|
168
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Unit price' }),
|
|
169
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
170
|
+
], OrderLineItem.prototype, "unitPrice", void 0);
|
|
171
|
+
tslib_1.__decorate([
|
|
172
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Total price for this line item' }),
|
|
173
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
174
|
+
], OrderLineItem.prototype, "totalPrice", void 0);
|
|
175
|
+
tslib_1.__decorate([
|
|
176
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Product image URL' }),
|
|
177
|
+
tslib_1.__metadata("design:type", String)
|
|
178
|
+
], OrderLineItem.prototype, "imageUrl", void 0);
|
|
179
|
+
tslib_1.__decorate([
|
|
180
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Variant title (e.g., Black / M)' }),
|
|
181
|
+
tslib_1.__metadata("design:type", String)
|
|
182
|
+
], OrderLineItem.prototype, "variantTitle", void 0);
|
|
183
|
+
tslib_1.__decorate([
|
|
184
|
+
(0, graphql_1.Field)(() => [VariantOption], { nullable: true, description: 'Variant options (Color, Size, etc.)' }),
|
|
185
|
+
tslib_1.__metadata("design:type", Array)
|
|
186
|
+
], OrderLineItem.prototype, "variantOptions", void 0);
|
|
187
|
+
tslib_1.__decorate([
|
|
188
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Fulfillment status for this item' }),
|
|
189
|
+
tslib_1.__metadata("design:type", String)
|
|
190
|
+
], OrderLineItem.prototype, "fulfillmentStatus", void 0);
|
|
191
|
+
exports.OrderLineItem = OrderLineItem = tslib_1.__decorate([
|
|
192
|
+
(0, graphql_1.ObjectType)()
|
|
193
|
+
], OrderLineItem);
|
|
194
|
+
/**
|
|
195
|
+
* Individual tracking timeline event
|
|
65
196
|
*/
|
|
66
197
|
let TrackingTimelineEvent = class TrackingTimelineEvent {
|
|
67
198
|
status;
|
|
@@ -69,6 +200,7 @@ let TrackingTimelineEvent = class TrackingTimelineEvent {
|
|
|
69
200
|
happenedAt;
|
|
70
201
|
city;
|
|
71
202
|
province;
|
|
203
|
+
message;
|
|
72
204
|
isCompleted;
|
|
73
205
|
isCurrent;
|
|
74
206
|
};
|
|
@@ -78,7 +210,7 @@ tslib_1.__decorate([
|
|
|
78
210
|
tslib_1.__metadata("design:type", String)
|
|
79
211
|
], TrackingTimelineEvent.prototype, "status", void 0);
|
|
80
212
|
tslib_1.__decorate([
|
|
81
|
-
(0, graphql_1.Field)({ description: 'Display label for the event
|
|
213
|
+
(0, graphql_1.Field)({ description: 'Display label for the event' }),
|
|
82
214
|
tslib_1.__metadata("design:type", String)
|
|
83
215
|
], TrackingTimelineEvent.prototype, "label", void 0);
|
|
84
216
|
tslib_1.__decorate([
|
|
@@ -86,13 +218,17 @@ tslib_1.__decorate([
|
|
|
86
218
|
tslib_1.__metadata("design:type", String)
|
|
87
219
|
], TrackingTimelineEvent.prototype, "happenedAt", void 0);
|
|
88
220
|
tslib_1.__decorate([
|
|
89
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Location city
|
|
221
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Location city' }),
|
|
90
222
|
tslib_1.__metadata("design:type", String)
|
|
91
223
|
], TrackingTimelineEvent.prototype, "city", void 0);
|
|
92
224
|
tslib_1.__decorate([
|
|
93
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Location province/state
|
|
225
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Location province/state' }),
|
|
94
226
|
tslib_1.__metadata("design:type", String)
|
|
95
227
|
], TrackingTimelineEvent.prototype, "province", void 0);
|
|
228
|
+
tslib_1.__decorate([
|
|
229
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Event message/description' }),
|
|
230
|
+
tslib_1.__metadata("design:type", String)
|
|
231
|
+
], TrackingTimelineEvent.prototype, "message", void 0);
|
|
96
232
|
tslib_1.__decorate([
|
|
97
233
|
(0, graphql_1.Field)({ description: 'Whether this event has been completed' }),
|
|
98
234
|
tslib_1.__metadata("design:type", Boolean)
|
|
@@ -105,108 +241,286 @@ exports.TrackingTimelineEvent = TrackingTimelineEvent = tslib_1.__decorate([
|
|
|
105
241
|
(0, graphql_1.ObjectType)()
|
|
106
242
|
], TrackingTimelineEvent);
|
|
107
243
|
/**
|
|
108
|
-
*
|
|
244
|
+
* Refund information
|
|
245
|
+
*/
|
|
246
|
+
let RefundInfo = class RefundInfo {
|
|
247
|
+
id;
|
|
248
|
+
createdAt;
|
|
249
|
+
totalRefunded;
|
|
250
|
+
note;
|
|
251
|
+
};
|
|
252
|
+
exports.RefundInfo = RefundInfo;
|
|
253
|
+
tslib_1.__decorate([
|
|
254
|
+
(0, graphql_1.Field)({ description: 'Refund ID' }),
|
|
255
|
+
tslib_1.__metadata("design:type", String)
|
|
256
|
+
], RefundInfo.prototype, "id", void 0);
|
|
257
|
+
tslib_1.__decorate([
|
|
258
|
+
(0, graphql_1.Field)({ description: 'Refund creation date' }),
|
|
259
|
+
tslib_1.__metadata("design:type", String)
|
|
260
|
+
], RefundInfo.prototype, "createdAt", void 0);
|
|
261
|
+
tslib_1.__decorate([
|
|
262
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Total refunded amount' }),
|
|
263
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
264
|
+
], RefundInfo.prototype, "totalRefunded", void 0);
|
|
265
|
+
tslib_1.__decorate([
|
|
266
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Refund note' }),
|
|
267
|
+
tslib_1.__metadata("design:type", String)
|
|
268
|
+
], RefundInfo.prototype, "note", void 0);
|
|
269
|
+
exports.RefundInfo = RefundInfo = tslib_1.__decorate([
|
|
270
|
+
(0, graphql_1.ObjectType)()
|
|
271
|
+
], RefundInfo);
|
|
272
|
+
/**
|
|
273
|
+
* Return information
|
|
274
|
+
*/
|
|
275
|
+
let ReturnInfo = class ReturnInfo {
|
|
276
|
+
id;
|
|
277
|
+
status;
|
|
278
|
+
createdAt;
|
|
279
|
+
itemCount;
|
|
280
|
+
items;
|
|
281
|
+
};
|
|
282
|
+
exports.ReturnInfo = ReturnInfo;
|
|
283
|
+
tslib_1.__decorate([
|
|
284
|
+
(0, graphql_1.Field)({ description: 'Return ID' }),
|
|
285
|
+
tslib_1.__metadata("design:type", String)
|
|
286
|
+
], ReturnInfo.prototype, "id", void 0);
|
|
287
|
+
tslib_1.__decorate([
|
|
288
|
+
(0, graphql_1.Field)({ description: 'Return status' }),
|
|
289
|
+
tslib_1.__metadata("design:type", String)
|
|
290
|
+
], ReturnInfo.prototype, "status", void 0);
|
|
291
|
+
tslib_1.__decorate([
|
|
292
|
+
(0, graphql_1.Field)({ description: 'Return creation date' }),
|
|
293
|
+
tslib_1.__metadata("design:type", String)
|
|
294
|
+
], ReturnInfo.prototype, "createdAt", void 0);
|
|
295
|
+
tslib_1.__decorate([
|
|
296
|
+
(0, graphql_1.Field)({ description: 'Number of items being returned' }),
|
|
297
|
+
tslib_1.__metadata("design:type", Number)
|
|
298
|
+
], ReturnInfo.prototype, "itemCount", void 0);
|
|
299
|
+
tslib_1.__decorate([
|
|
300
|
+
(0, graphql_1.Field)(() => [ReturnLineItem], { nullable: true, description: 'Items being returned' }),
|
|
301
|
+
tslib_1.__metadata("design:type", Array)
|
|
302
|
+
], ReturnInfo.prototype, "items", void 0);
|
|
303
|
+
exports.ReturnInfo = ReturnInfo = tslib_1.__decorate([
|
|
304
|
+
(0, graphql_1.ObjectType)()
|
|
305
|
+
], ReturnInfo);
|
|
306
|
+
/**
|
|
307
|
+
* Return line item
|
|
308
|
+
*/
|
|
309
|
+
let ReturnLineItem = class ReturnLineItem {
|
|
310
|
+
id;
|
|
311
|
+
name;
|
|
312
|
+
quantity;
|
|
313
|
+
imageUrl;
|
|
314
|
+
returnReason;
|
|
315
|
+
};
|
|
316
|
+
exports.ReturnLineItem = ReturnLineItem;
|
|
317
|
+
tslib_1.__decorate([
|
|
318
|
+
(0, graphql_1.Field)({ description: 'Line item ID' }),
|
|
319
|
+
tslib_1.__metadata("design:type", String)
|
|
320
|
+
], ReturnLineItem.prototype, "id", void 0);
|
|
321
|
+
tslib_1.__decorate([
|
|
322
|
+
(0, graphql_1.Field)({ description: 'Product name' }),
|
|
323
|
+
tslib_1.__metadata("design:type", String)
|
|
324
|
+
], ReturnLineItem.prototype, "name", void 0);
|
|
325
|
+
tslib_1.__decorate([
|
|
326
|
+
(0, graphql_1.Field)({ description: 'Quantity being returned' }),
|
|
327
|
+
tslib_1.__metadata("design:type", Number)
|
|
328
|
+
], ReturnLineItem.prototype, "quantity", void 0);
|
|
329
|
+
tslib_1.__decorate([
|
|
330
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Product image URL' }),
|
|
331
|
+
tslib_1.__metadata("design:type", String)
|
|
332
|
+
], ReturnLineItem.prototype, "imageUrl", void 0);
|
|
333
|
+
tslib_1.__decorate([
|
|
334
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Return reason' }),
|
|
335
|
+
tslib_1.__metadata("design:type", String)
|
|
336
|
+
], ReturnLineItem.prototype, "returnReason", void 0);
|
|
337
|
+
exports.ReturnLineItem = ReturnLineItem = tslib_1.__decorate([
|
|
338
|
+
(0, graphql_1.ObjectType)()
|
|
339
|
+
], ReturnLineItem);
|
|
340
|
+
/**
|
|
341
|
+
* Cancellation details
|
|
342
|
+
*/
|
|
343
|
+
let CancellationInfo = class CancellationInfo {
|
|
344
|
+
cancelledAt;
|
|
345
|
+
reason;
|
|
346
|
+
refund;
|
|
347
|
+
};
|
|
348
|
+
exports.CancellationInfo = CancellationInfo;
|
|
349
|
+
tslib_1.__decorate([
|
|
350
|
+
(0, graphql_1.Field)({ description: 'Cancellation date' }),
|
|
351
|
+
tslib_1.__metadata("design:type", String)
|
|
352
|
+
], CancellationInfo.prototype, "cancelledAt", void 0);
|
|
353
|
+
tslib_1.__decorate([
|
|
354
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Cancellation reason' }),
|
|
355
|
+
tslib_1.__metadata("design:type", String)
|
|
356
|
+
], CancellationInfo.prototype, "reason", void 0);
|
|
357
|
+
tslib_1.__decorate([
|
|
358
|
+
(0, graphql_1.Field)(() => RefundInfo, { nullable: true, description: 'Associated refund if any' }),
|
|
359
|
+
tslib_1.__metadata("design:type", RefundInfo)
|
|
360
|
+
], CancellationInfo.prototype, "refund", void 0);
|
|
361
|
+
exports.CancellationInfo = CancellationInfo = tslib_1.__decorate([
|
|
362
|
+
(0, graphql_1.ObjectType)()
|
|
363
|
+
], CancellationInfo);
|
|
364
|
+
/**
|
|
365
|
+
* Order details
|
|
109
366
|
*/
|
|
110
367
|
let OrderDetails = class OrderDetails {
|
|
111
368
|
orderId;
|
|
112
369
|
orderName;
|
|
113
370
|
orderStatus;
|
|
114
371
|
fulfillmentStatus;
|
|
372
|
+
financialStatus;
|
|
373
|
+
channelName;
|
|
115
374
|
shippingMethod;
|
|
116
375
|
paymentMethod;
|
|
117
376
|
trackingNumber;
|
|
118
377
|
carrierName;
|
|
378
|
+
trackingUrl;
|
|
119
379
|
createdAt;
|
|
120
|
-
|
|
380
|
+
estimatedDeliveryAt;
|
|
121
381
|
deliveredAt;
|
|
382
|
+
subtotal;
|
|
383
|
+
shippingCost;
|
|
384
|
+
totalTax;
|
|
385
|
+
totalAmount;
|
|
386
|
+
billingAddress;
|
|
387
|
+
shippingAddress;
|
|
388
|
+
canCancel;
|
|
389
|
+
cancellationMessage;
|
|
122
390
|
};
|
|
123
391
|
exports.OrderDetails = OrderDetails;
|
|
124
392
|
tslib_1.__decorate([
|
|
125
|
-
(0, graphql_1.Field)({ description: 'Shopify order ID (GID
|
|
393
|
+
(0, graphql_1.Field)({ description: 'Shopify order ID (GID)' }),
|
|
126
394
|
tslib_1.__metadata("design:type", String)
|
|
127
395
|
], OrderDetails.prototype, "orderId", void 0);
|
|
128
396
|
tslib_1.__decorate([
|
|
129
|
-
(0, graphql_1.Field)({ description: '
|
|
397
|
+
(0, graphql_1.Field)({ description: 'Order name (e.g., #1001)' }),
|
|
130
398
|
tslib_1.__metadata("design:type", String)
|
|
131
399
|
], OrderDetails.prototype, "orderName", void 0);
|
|
132
400
|
tslib_1.__decorate([
|
|
133
|
-
(0, graphql_1.Field)({ description: 'Order status
|
|
401
|
+
(0, graphql_1.Field)({ description: 'Order status' }),
|
|
134
402
|
tslib_1.__metadata("design:type", String)
|
|
135
403
|
], OrderDetails.prototype, "orderStatus", void 0);
|
|
136
404
|
tslib_1.__decorate([
|
|
137
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Fulfillment status
|
|
405
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Fulfillment status' }),
|
|
138
406
|
tslib_1.__metadata("design:type", String)
|
|
139
407
|
], OrderDetails.prototype, "fulfillmentStatus", void 0);
|
|
140
408
|
tslib_1.__decorate([
|
|
141
|
-
(0, graphql_1.Field)({ nullable: true, description: '
|
|
409
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Financial/Payment status' }),
|
|
410
|
+
tslib_1.__metadata("design:type", String)
|
|
411
|
+
], OrderDetails.prototype, "financialStatus", void 0);
|
|
412
|
+
tslib_1.__decorate([
|
|
413
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Order channel/source (e.g., Web channel, Mobile app)' }),
|
|
414
|
+
tslib_1.__metadata("design:type", String)
|
|
415
|
+
], OrderDetails.prototype, "channelName", void 0);
|
|
416
|
+
tslib_1.__decorate([
|
|
417
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Shipping method' }),
|
|
142
418
|
tslib_1.__metadata("design:type", String)
|
|
143
419
|
], OrderDetails.prototype, "shippingMethod", void 0);
|
|
144
420
|
tslib_1.__decorate([
|
|
145
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Payment method
|
|
421
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Payment method' }),
|
|
146
422
|
tslib_1.__metadata("design:type", String)
|
|
147
423
|
], OrderDetails.prototype, "paymentMethod", void 0);
|
|
148
424
|
tslib_1.__decorate([
|
|
149
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Tracking number
|
|
425
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Tracking number' }),
|
|
150
426
|
tslib_1.__metadata("design:type", String)
|
|
151
427
|
], OrderDetails.prototype, "trackingNumber", void 0);
|
|
152
428
|
tslib_1.__decorate([
|
|
153
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Carrier/courier name
|
|
429
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Carrier/courier name' }),
|
|
154
430
|
tslib_1.__metadata("design:type", String)
|
|
155
431
|
], OrderDetails.prototype, "carrierName", void 0);
|
|
156
432
|
tslib_1.__decorate([
|
|
157
|
-
(0, graphql_1.Field)({ description: '
|
|
433
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Tracking URL' }),
|
|
434
|
+
tslib_1.__metadata("design:type", String)
|
|
435
|
+
], OrderDetails.prototype, "trackingUrl", void 0);
|
|
436
|
+
tslib_1.__decorate([
|
|
437
|
+
(0, graphql_1.Field)({ description: 'Order creation date' }),
|
|
158
438
|
tslib_1.__metadata("design:type", String)
|
|
159
439
|
], OrderDetails.prototype, "createdAt", void 0);
|
|
160
440
|
tslib_1.__decorate([
|
|
161
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Expected delivery date
|
|
441
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Expected delivery date' }),
|
|
162
442
|
tslib_1.__metadata("design:type", String)
|
|
163
|
-
], OrderDetails.prototype, "
|
|
443
|
+
], OrderDetails.prototype, "estimatedDeliveryAt", void 0);
|
|
164
444
|
tslib_1.__decorate([
|
|
165
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Actual delivery
|
|
445
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Actual delivery date' }),
|
|
166
446
|
tslib_1.__metadata("design:type", String)
|
|
167
447
|
], OrderDetails.prototype, "deliveredAt", void 0);
|
|
448
|
+
tslib_1.__decorate([
|
|
449
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Subtotal amount' }),
|
|
450
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
451
|
+
], OrderDetails.prototype, "subtotal", void 0);
|
|
452
|
+
tslib_1.__decorate([
|
|
453
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Shipping cost' }),
|
|
454
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
455
|
+
], OrderDetails.prototype, "shippingCost", void 0);
|
|
456
|
+
tslib_1.__decorate([
|
|
457
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Total tax' }),
|
|
458
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
459
|
+
], OrderDetails.prototype, "totalTax", void 0);
|
|
460
|
+
tslib_1.__decorate([
|
|
461
|
+
(0, graphql_1.Field)(() => OrderMoney, { description: 'Total amount' }),
|
|
462
|
+
tslib_1.__metadata("design:type", OrderMoney)
|
|
463
|
+
], OrderDetails.prototype, "totalAmount", void 0);
|
|
464
|
+
tslib_1.__decorate([
|
|
465
|
+
(0, graphql_1.Field)(() => OrderAddress, { nullable: true, description: 'Billing address' }),
|
|
466
|
+
tslib_1.__metadata("design:type", OrderAddress)
|
|
467
|
+
], OrderDetails.prototype, "billingAddress", void 0);
|
|
468
|
+
tslib_1.__decorate([
|
|
469
|
+
(0, graphql_1.Field)(() => OrderAddress, { nullable: true, description: 'Shipping address' }),
|
|
470
|
+
tslib_1.__metadata("design:type", OrderAddress)
|
|
471
|
+
], OrderDetails.prototype, "shippingAddress", void 0);
|
|
472
|
+
tslib_1.__decorate([
|
|
473
|
+
(0, graphql_1.Field)({ description: 'Whether the order can be cancelled' }),
|
|
474
|
+
tslib_1.__metadata("design:type", Boolean)
|
|
475
|
+
], OrderDetails.prototype, "canCancel", void 0);
|
|
476
|
+
tslib_1.__decorate([
|
|
477
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Message about cancellation eligibility' }),
|
|
478
|
+
tslib_1.__metadata("design:type", String)
|
|
479
|
+
], OrderDetails.prototype, "cancellationMessage", void 0);
|
|
168
480
|
exports.OrderDetails = OrderDetails = tslib_1.__decorate([
|
|
169
481
|
(0, graphql_1.ObjectType)()
|
|
170
482
|
], OrderDetails);
|
|
171
483
|
/**
|
|
172
|
-
* Unified order tracking result
|
|
484
|
+
* Unified order tracking result
|
|
173
485
|
*/
|
|
174
486
|
let OrderTrackingResult = class OrderTrackingResult {
|
|
175
|
-
|
|
176
|
-
showLoginOTP;
|
|
177
|
-
statusTrackingUrl;
|
|
178
|
-
logisticsTrackingUrl;
|
|
179
|
-
itemStatuses;
|
|
180
|
-
// Shopify order data
|
|
487
|
+
trackingUrl;
|
|
181
488
|
orderDetails;
|
|
182
|
-
// Combined tracking timeline
|
|
183
489
|
trackingTimeline;
|
|
490
|
+
lineItems;
|
|
491
|
+
cancellation;
|
|
492
|
+
returns;
|
|
493
|
+
refunds;
|
|
184
494
|
};
|
|
185
495
|
exports.OrderTrackingResult = OrderTrackingResult;
|
|
186
496
|
tslib_1.__decorate([
|
|
187
|
-
(0, graphql_1.Field)({ description: '
|
|
188
|
-
tslib_1.__metadata("design:type", Boolean)
|
|
189
|
-
], OrderTrackingResult.prototype, "showLoginOTP", void 0);
|
|
190
|
-
tslib_1.__decorate([
|
|
191
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Omuni order tracking page URL' }),
|
|
192
|
-
tslib_1.__metadata("design:type", String)
|
|
193
|
-
], OrderTrackingResult.prototype, "statusTrackingUrl", void 0);
|
|
194
|
-
tslib_1.__decorate([
|
|
195
|
-
(0, graphql_1.Field)({ nullable: true, description: 'Logistics partner tracking URL (e.g., Delhivery, Clickpost)' }),
|
|
497
|
+
(0, graphql_1.Field)({ nullable: true, description: 'Tracking URL for "Track Order" button' }),
|
|
196
498
|
tslib_1.__metadata("design:type", String)
|
|
197
|
-
], OrderTrackingResult.prototype, "
|
|
499
|
+
], OrderTrackingResult.prototype, "trackingUrl", void 0);
|
|
198
500
|
tslib_1.__decorate([
|
|
199
|
-
(0, graphql_1.Field)(() =>
|
|
200
|
-
tslib_1.__metadata("design:type", Array)
|
|
201
|
-
], OrderTrackingResult.prototype, "itemStatuses", void 0);
|
|
202
|
-
tslib_1.__decorate([
|
|
203
|
-
(0, graphql_1.Field)(() => OrderDetails, { nullable: true, description: 'Order details from Shopify' }),
|
|
501
|
+
(0, graphql_1.Field)(() => OrderDetails, { nullable: true, description: 'Order details' }),
|
|
204
502
|
tslib_1.__metadata("design:type", OrderDetails)
|
|
205
503
|
], OrderTrackingResult.prototype, "orderDetails", void 0);
|
|
206
504
|
tslib_1.__decorate([
|
|
207
|
-
(0, graphql_1.Field)(() => [TrackingTimelineEvent], { nullable: true, description: 'Tracking timeline
|
|
505
|
+
(0, graphql_1.Field)(() => [TrackingTimelineEvent], { nullable: true, description: 'Tracking timeline' }),
|
|
208
506
|
tslib_1.__metadata("design:type", Array)
|
|
209
507
|
], OrderTrackingResult.prototype, "trackingTimeline", void 0);
|
|
508
|
+
tslib_1.__decorate([
|
|
509
|
+
(0, graphql_1.Field)(() => [OrderLineItem], { nullable: true, description: 'Order line items' }),
|
|
510
|
+
tslib_1.__metadata("design:type", Array)
|
|
511
|
+
], OrderTrackingResult.prototype, "lineItems", void 0);
|
|
512
|
+
tslib_1.__decorate([
|
|
513
|
+
(0, graphql_1.Field)(() => CancellationInfo, { nullable: true, description: 'Cancellation details if order was cancelled' }),
|
|
514
|
+
tslib_1.__metadata("design:type", CancellationInfo)
|
|
515
|
+
], OrderTrackingResult.prototype, "cancellation", void 0);
|
|
516
|
+
tslib_1.__decorate([
|
|
517
|
+
(0, graphql_1.Field)(() => [ReturnInfo], { nullable: true, description: 'Return information if any returns exist' }),
|
|
518
|
+
tslib_1.__metadata("design:type", Array)
|
|
519
|
+
], OrderTrackingResult.prototype, "returns", void 0);
|
|
520
|
+
tslib_1.__decorate([
|
|
521
|
+
(0, graphql_1.Field)(() => [RefundInfo], { nullable: true, description: 'Refund information if any refunds exist' }),
|
|
522
|
+
tslib_1.__metadata("design:type", Array)
|
|
523
|
+
], OrderTrackingResult.prototype, "refunds", void 0);
|
|
210
524
|
exports.OrderTrackingResult = OrderTrackingResult = tslib_1.__decorate([
|
|
211
525
|
(0, graphql_1.ObjectType)()
|
|
212
526
|
], OrderTrackingResult);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"order-tracking.types.js","sourceRoot":"","sources":["../../src/order-tracking/order-tracking.types.ts"],"names":[],"mappings":";;;;AAAA,6CAA+D;AAE/D
|
|
1
|
+
{"version":3,"file":"order-tracking.types.js","sourceRoot":"","sources":["../../src/order-tracking/order-tracking.types.ts"],"names":[],"mappings":"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"}
|