forked from MONEI/Shopify-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
99 lines (95 loc) · 2.68 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
'use strict';
const map = {
accessScope: 'access-scope',
apiPermission: 'api-permission',
applicationCharge: 'application-charge',
applicationCredit: 'application-credit',
article: 'article',
asset: 'asset',
balance: 'balance',
blog: 'blog',
cancellationRequest: 'cancellation-request',
carrierService: 'carrier-service',
checkout: 'checkout',
collect: 'collect',
collection: 'collection',
collectionListing: 'collection-listing',
comment: 'comment',
country: 'country',
currency: 'currency',
customCollection: 'custom-collection',
customer: 'customer',
customerAddress: 'customer-address',
customerSavedSearch: 'customer-saved-search',
discountCode: 'discount-code',
discountCodeCreationJob: 'discount-code-creation-job',
dispute: 'dispute',
draftOrder: 'draft-order',
event: 'event',
fulfillment: 'fulfillment',
fulfillmentEvent: 'fulfillment-event',
fulfillmentOrder: 'fulfillment-order',
fulfillmentRequest: 'fulfillment-request',
fulfillmentService: 'fulfillment-service',
giftCard: 'gift-card',
giftCardAdjustment: 'gift-card-adjustment',
inventoryItem: 'inventory-item',
inventoryLevel: 'inventory-level',
location: 'location',
marketingEvent: 'marketing-event',
metafield: 'metafield',
order: 'order',
orderRisk: 'order-risk',
page: 'page',
payment: 'payment',
payout: 'payout',
policy: 'policy',
priceRule: 'price-rule',
product: 'product',
productImage: 'product-image',
productListing: 'product-listing',
productResourceFeedback: 'product-resource-feedback',
productVariant: 'product-variant',
province: 'province',
recurringApplicationCharge: 'recurring-application-charge',
redirect: 'redirect',
refund: 'refund',
report: 'report',
resourceFeedback: 'resource-feedback',
scriptTag: 'script-tag',
shippingZone: 'shipping-zone',
shop: 'shop',
smartCollection: 'smart-collection',
storefrontAccessToken: 'storefront-access-token',
tenderTransaction: 'tender-transaction',
theme: 'theme',
transaction: 'transaction',
usageCharge: 'usage-charge',
user: 'user',
webhook: 'webhook'
};
/**
* Registers resources on the `Shopify` class.
*
* @param {Shopify} Shopify The `Shopify` class
* @private
*/
function registerAll(Shopify) {
Object.keys(map).forEach((prop) => {
Object.defineProperty(Shopify.prototype, prop, {
configurable: true,
get: function get() {
const resource = require(`./${map[prop]}`);
return Object.defineProperty(this, prop, {
value: new resource(this)
})[prop];
},
set: function set(value) {
Object.defineProperty(this, prop, { value })[prop];
}
});
});
}
module.exports = {
registerAll
};