├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .npmrc ├── .prettierrc.yaml ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── mixins ├── base-child.js ├── base.js ├── shopify-payments-child.js └── shopify-payments.js ├── package.json ├── resources ├── access-scope.js ├── api-permission.js ├── application-charge.js ├── application-credit.js ├── article.js ├── asset.js ├── balance.js ├── blog.js ├── cancellation-request.js ├── carrier-service.js ├── checkout.js ├── collect.js ├── collection-listing.js ├── collection.js ├── comment.js ├── country.js ├── currency.js ├── custom-collection.js ├── customer-address.js ├── customer-saved-search.js ├── customer.js ├── deprecated-api-call.js ├── discount-code-creation-job.js ├── discount-code.js ├── dispute-evidence.js ├── dispute-file-upload.js ├── dispute.js ├── draft-order.js ├── event.js ├── fulfillment-event.js ├── fulfillment-order.js ├── fulfillment-request.js ├── fulfillment-service.js ├── fulfillment.js ├── gift-card-adjustment.js ├── gift-card.js ├── index.js ├── inventory-item.js ├── inventory-level.js ├── location.js ├── marketing-event.js ├── metafield.js ├── order-risk.js ├── order.js ├── page.js ├── payment.js ├── payout.js ├── policy.js ├── price-rule.js ├── product-image.js ├── product-listing.js ├── product-resource-feedback.js ├── product-variant.js ├── product.js ├── province.js ├── recurring-application-charge.js ├── redirect.js ├── refund.js ├── report.js ├── resource-feedback.js ├── script-tag.js ├── shipping-zone.js ├── shop.js ├── smart-collection.js ├── storefront-access-token.js ├── tender-transaction.js ├── theme.js ├── transaction.js ├── usage-charge.js ├── user.js └── webhook.js ├── test ├── access-scope.test.js ├── api-permission.test.js ├── application-charge.test.js ├── application-credit.test.js ├── article.test.js ├── asset.test.js ├── balance.test.js ├── blog.test.js ├── cancellation-request.test.js ├── carrier-service.test.js ├── checkout.test.js ├── collect.test.js ├── collection-listing.test.js ├── collection.test.js ├── comment.test.js ├── common.js ├── country.test.js ├── currency.test.js ├── custom-collection.test.js ├── customer-address.test.js ├── customer-saved-search.test.js ├── customer.test.js ├── deprecated-api-call.test.js ├── discount-code-creation-job.test.js ├── discount-code.test.js ├── dispute-evidence.test.js ├── dispute-file-upload.test.js ├── dispute.test.js ├── draft-order.test.js ├── event.test.js ├── fixtures │ ├── access-scope │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ └── list.json │ ├── application-charge │ │ ├── index.js │ │ ├── req │ │ │ ├── activate.json │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── activate.json │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── application-credit │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── article │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── authors.json │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── tags.json │ │ │ └── update.json │ ├── asset │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── balance │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── transactions.json │ ├── blog │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── cancellation-request │ │ ├── index.js │ │ └── res │ │ │ ├── accept.json │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── reject.json │ ├── carrier-service │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── checkout │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── complete.json │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── shipping-rates.json │ │ │ └── update.json │ ├── collect │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── collection-listing │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── product-ids.json │ ├── collection │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── products.json │ ├── comment │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── approve.json │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── notSpam.json │ │ │ ├── remove.json │ │ │ ├── restore.json │ │ │ ├── spam.json │ │ │ └── update.json │ ├── country │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── currency │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ └── list.json │ ├── custom-collection │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── customer-address │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── default.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── customer-saved-search │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── customers.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── customer │ │ ├── index.js │ │ ├── req │ │ │ ├── accountActivationUrl.json │ │ │ ├── create.json │ │ │ ├── customizedInvite.json │ │ │ ├── defaultInvite.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── accountActivationUrl.json │ │ │ ├── create.json │ │ │ ├── customizedInvite.json │ │ │ ├── defaultInvite.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── orders.json │ │ │ ├── search.json │ │ │ └── update.json │ ├── deprecated-api-call │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ └── list.json │ ├── discount-code-creation-job │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── discountCodes.json │ │ │ ├── get.json │ │ │ └── index.js │ ├── discount-code │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── lookup.html │ │ │ └── update.json │ ├── dispute-evidence │ │ ├── index.js │ │ ├── req │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── update.json │ ├── dispute-file-upload │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ └── index.js │ ├── dispute │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── draft-order │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ ├── send-invoice.json │ │ │ └── update.json │ │ └── res │ │ │ ├── complete.json │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── send-invoice.json │ │ │ └── update.json │ ├── event │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── fulfillment-event │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── fulfillment-order │ │ ├── index.js │ │ ├── req │ │ │ ├── close.json │ │ │ ├── hold.json │ │ │ ├── index.js │ │ │ ├── move.json │ │ │ ├── reschedule.json │ │ │ └── set-fulfillment-orders-deadline.json │ │ └── res │ │ │ ├── cancel.json │ │ │ ├── close.json │ │ │ ├── fulfillments.json │ │ │ ├── get.json │ │ │ ├── hold.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── locations-for-move.json │ │ │ ├── move.json │ │ │ ├── release-hold.json │ │ │ └── reschedule.json │ ├── fulfillment-request │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── accept.json │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── reject.json │ ├── fulfillment-service │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── fulfillment │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── createV2.json │ │ │ ├── index.js │ │ │ ├── update-tracking.json │ │ │ └── update.json │ │ └── res │ │ │ ├── cancel.json │ │ │ ├── complete.json │ │ │ ├── create.json │ │ │ ├── createV2.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── open.json │ │ │ ├── update-tracking.json │ │ │ └── update.json │ ├── gift-card-adjustment │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── gift-card │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── disable.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── disable.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── search.json │ │ │ └── update.json │ ├── inventory-item │ │ ├── index.js │ │ ├── req │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── inventory-level │ │ ├── index.js │ │ ├── req │ │ │ ├── adjust.json │ │ │ ├── connect.json │ │ │ ├── index.js │ │ │ └── set.json │ │ └── res │ │ │ ├── adjust.json │ │ │ ├── connect.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── set.json │ ├── location │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── inventory-levels.json │ │ │ └── list.json │ ├── marketing-event │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── engagements.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── engagements.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── metafield │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── order-risk │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── order │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── cancel.json │ │ │ ├── close.json │ │ │ ├── create.json │ │ │ ├── fulfillment-orders.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── open.json │ │ │ └── update.json │ ├── page │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── payment │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── payout │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── policy │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ └── list.json │ ├── price-rule │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── product-image │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── product-listing │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── product-ids.json │ ├── product-resource-feedback │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── product-variant │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── product │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── province │ │ ├── index.js │ │ ├── req │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── recurring-application-charge │ │ ├── index.js │ │ ├── req │ │ │ ├── activate.json │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── activate.json │ │ │ ├── create.json │ │ │ ├── customize.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── redirect │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── refund │ │ ├── index.js │ │ ├── req │ │ │ ├── calculate.json │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── calculate.json │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── report │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── resource-feedback │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── script-tag │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── shipping-zone │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ └── list.json │ ├── shop │ │ ├── index.js │ │ └── res │ │ │ ├── get.json │ │ │ └── index.js │ ├── smart-collection │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ ├── products.json │ │ │ └── update.json │ ├── storefront-access-token │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── tender-transaction │ │ ├── index.js │ │ └── res │ │ │ ├── index.js │ │ │ └── list.json │ ├── theme │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ ├── index.js │ │ │ └── update.json │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ ├── list.json │ │ │ └── update.json │ ├── transaction │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── usage-charge │ │ ├── index.js │ │ ├── req │ │ │ ├── create.json │ │ │ └── index.js │ │ └── res │ │ │ ├── create.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ ├── user │ │ ├── index.js │ │ └── res │ │ │ ├── current.json │ │ │ ├── get.json │ │ │ ├── index.js │ │ │ └── list.json │ └── webhook │ │ ├── index.js │ │ ├── req │ │ ├── create.json │ │ ├── index.js │ │ └── update.json │ │ └── res │ │ ├── create.json │ │ ├── get.json │ │ ├── index.js │ │ ├── list.json │ │ └── update.json ├── fulfillment-event.test.js ├── fulfillment-order.test.js ├── fulfillment-request.test.js ├── fulfillment-service.test.js ├── fulfillment.test.js ├── gift-card-adjustment.test.js ├── gift-card.test.js ├── inventory-item.test.js ├── inventory-level.test.js ├── location.test.js ├── marketing-event.test.js ├── metafield.test.js ├── order-risk.test.js ├── order.test.js ├── page.test.js ├── payment.test.js ├── payout.test.js ├── policy.test.js ├── price-rule.test.js ├── product-image.test.js ├── product-listing.test.js ├── product-resource-feedback.test.js ├── product-variant.test.js ├── product.test.js ├── province.test.js ├── recurring-application-charge.test.js ├── redirect.test.js ├── refund.test.js ├── report.test.js ├── resource-feedback.test.js ├── script-tag.test.js ├── shipping-zone.test.js ├── shop.test.js ├── shopify.test.js ├── smart-collection.test.js ├── storefront-access-token.test.js ├── tender-transaction.test.js ├── theme.test.js ├── transaction.test.js ├── usage-charge.test.js ├── user.test.js └── webhook.test.js └── types ├── index.d.ts └── index.test-d.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/index.js -------------------------------------------------------------------------------- /mixins/base-child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/mixins/base-child.js -------------------------------------------------------------------------------- /mixins/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/mixins/base.js -------------------------------------------------------------------------------- /mixins/shopify-payments-child.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/mixins/shopify-payments-child.js -------------------------------------------------------------------------------- /mixins/shopify-payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/mixins/shopify-payments.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/package.json -------------------------------------------------------------------------------- /resources/access-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/access-scope.js -------------------------------------------------------------------------------- /resources/api-permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/api-permission.js -------------------------------------------------------------------------------- /resources/application-charge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/application-charge.js -------------------------------------------------------------------------------- /resources/application-credit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/application-credit.js -------------------------------------------------------------------------------- /resources/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/article.js -------------------------------------------------------------------------------- /resources/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/asset.js -------------------------------------------------------------------------------- /resources/balance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/balance.js -------------------------------------------------------------------------------- /resources/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/blog.js -------------------------------------------------------------------------------- /resources/cancellation-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/cancellation-request.js -------------------------------------------------------------------------------- /resources/carrier-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/carrier-service.js -------------------------------------------------------------------------------- /resources/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/checkout.js -------------------------------------------------------------------------------- /resources/collect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/collect.js -------------------------------------------------------------------------------- /resources/collection-listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/collection-listing.js -------------------------------------------------------------------------------- /resources/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/collection.js -------------------------------------------------------------------------------- /resources/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/comment.js -------------------------------------------------------------------------------- /resources/country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/country.js -------------------------------------------------------------------------------- /resources/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/currency.js -------------------------------------------------------------------------------- /resources/custom-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/custom-collection.js -------------------------------------------------------------------------------- /resources/customer-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/customer-address.js -------------------------------------------------------------------------------- /resources/customer-saved-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/customer-saved-search.js -------------------------------------------------------------------------------- /resources/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/customer.js -------------------------------------------------------------------------------- /resources/deprecated-api-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/deprecated-api-call.js -------------------------------------------------------------------------------- /resources/discount-code-creation-job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/discount-code-creation-job.js -------------------------------------------------------------------------------- /resources/discount-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/discount-code.js -------------------------------------------------------------------------------- /resources/dispute-evidence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/dispute-evidence.js -------------------------------------------------------------------------------- /resources/dispute-file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/dispute-file-upload.js -------------------------------------------------------------------------------- /resources/dispute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/dispute.js -------------------------------------------------------------------------------- /resources/draft-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/draft-order.js -------------------------------------------------------------------------------- /resources/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/event.js -------------------------------------------------------------------------------- /resources/fulfillment-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/fulfillment-event.js -------------------------------------------------------------------------------- /resources/fulfillment-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/fulfillment-order.js -------------------------------------------------------------------------------- /resources/fulfillment-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/fulfillment-request.js -------------------------------------------------------------------------------- /resources/fulfillment-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/fulfillment-service.js -------------------------------------------------------------------------------- /resources/fulfillment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/fulfillment.js -------------------------------------------------------------------------------- /resources/gift-card-adjustment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/gift-card-adjustment.js -------------------------------------------------------------------------------- /resources/gift-card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/gift-card.js -------------------------------------------------------------------------------- /resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/index.js -------------------------------------------------------------------------------- /resources/inventory-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/inventory-item.js -------------------------------------------------------------------------------- /resources/inventory-level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/inventory-level.js -------------------------------------------------------------------------------- /resources/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/location.js -------------------------------------------------------------------------------- /resources/marketing-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/marketing-event.js -------------------------------------------------------------------------------- /resources/metafield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/metafield.js -------------------------------------------------------------------------------- /resources/order-risk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/order-risk.js -------------------------------------------------------------------------------- /resources/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/order.js -------------------------------------------------------------------------------- /resources/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/page.js -------------------------------------------------------------------------------- /resources/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/payment.js -------------------------------------------------------------------------------- /resources/payout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/payout.js -------------------------------------------------------------------------------- /resources/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/policy.js -------------------------------------------------------------------------------- /resources/price-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/price-rule.js -------------------------------------------------------------------------------- /resources/product-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/product-image.js -------------------------------------------------------------------------------- /resources/product-listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/product-listing.js -------------------------------------------------------------------------------- /resources/product-resource-feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/product-resource-feedback.js -------------------------------------------------------------------------------- /resources/product-variant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/product-variant.js -------------------------------------------------------------------------------- /resources/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/product.js -------------------------------------------------------------------------------- /resources/province.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/province.js -------------------------------------------------------------------------------- /resources/recurring-application-charge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/recurring-application-charge.js -------------------------------------------------------------------------------- /resources/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/redirect.js -------------------------------------------------------------------------------- /resources/refund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/refund.js -------------------------------------------------------------------------------- /resources/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/report.js -------------------------------------------------------------------------------- /resources/resource-feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/resource-feedback.js -------------------------------------------------------------------------------- /resources/script-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/script-tag.js -------------------------------------------------------------------------------- /resources/shipping-zone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/shipping-zone.js -------------------------------------------------------------------------------- /resources/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/shop.js -------------------------------------------------------------------------------- /resources/smart-collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/smart-collection.js -------------------------------------------------------------------------------- /resources/storefront-access-token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/storefront-access-token.js -------------------------------------------------------------------------------- /resources/tender-transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/tender-transaction.js -------------------------------------------------------------------------------- /resources/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/theme.js -------------------------------------------------------------------------------- /resources/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/transaction.js -------------------------------------------------------------------------------- /resources/usage-charge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/usage-charge.js -------------------------------------------------------------------------------- /resources/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/user.js -------------------------------------------------------------------------------- /resources/webhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/resources/webhook.js -------------------------------------------------------------------------------- /test/access-scope.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/access-scope.test.js -------------------------------------------------------------------------------- /test/api-permission.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/api-permission.test.js -------------------------------------------------------------------------------- /test/application-charge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/application-charge.test.js -------------------------------------------------------------------------------- /test/application-credit.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/application-credit.test.js -------------------------------------------------------------------------------- /test/article.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/article.test.js -------------------------------------------------------------------------------- /test/asset.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/asset.test.js -------------------------------------------------------------------------------- /test/balance.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/balance.test.js -------------------------------------------------------------------------------- /test/blog.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/blog.test.js -------------------------------------------------------------------------------- /test/cancellation-request.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/cancellation-request.test.js -------------------------------------------------------------------------------- /test/carrier-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/carrier-service.test.js -------------------------------------------------------------------------------- /test/checkout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/checkout.test.js -------------------------------------------------------------------------------- /test/collect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/collect.test.js -------------------------------------------------------------------------------- /test/collection-listing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/collection-listing.test.js -------------------------------------------------------------------------------- /test/collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/collection.test.js -------------------------------------------------------------------------------- /test/comment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/comment.test.js -------------------------------------------------------------------------------- /test/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/common.js -------------------------------------------------------------------------------- /test/country.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/country.test.js -------------------------------------------------------------------------------- /test/currency.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/currency.test.js -------------------------------------------------------------------------------- /test/custom-collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/custom-collection.test.js -------------------------------------------------------------------------------- /test/customer-address.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/customer-address.test.js -------------------------------------------------------------------------------- /test/customer-saved-search.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/customer-saved-search.test.js -------------------------------------------------------------------------------- /test/customer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/customer.test.js -------------------------------------------------------------------------------- /test/deprecated-api-call.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/deprecated-api-call.test.js -------------------------------------------------------------------------------- /test/discount-code-creation-job.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/discount-code-creation-job.test.js -------------------------------------------------------------------------------- /test/discount-code.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/discount-code.test.js -------------------------------------------------------------------------------- /test/dispute-evidence.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/dispute-evidence.test.js -------------------------------------------------------------------------------- /test/dispute-file-upload.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/dispute-file-upload.test.js -------------------------------------------------------------------------------- /test/dispute.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/dispute.test.js -------------------------------------------------------------------------------- /test/draft-order.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/draft-order.test.js -------------------------------------------------------------------------------- /test/event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/event.test.js -------------------------------------------------------------------------------- /test/fixtures/access-scope/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/access-scope/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.list = require('./list'); 4 | -------------------------------------------------------------------------------- /test/fixtures/access-scope/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/access-scope/res/list.json -------------------------------------------------------------------------------- /test/fixtures/application-charge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/index.js -------------------------------------------------------------------------------- /test/fixtures/application-charge/req/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/req/activate.json -------------------------------------------------------------------------------- /test/fixtures/application-charge/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/req/create.json -------------------------------------------------------------------------------- /test/fixtures/application-charge/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/req/index.js -------------------------------------------------------------------------------- /test/fixtures/application-charge/res/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/res/activate.json -------------------------------------------------------------------------------- /test/fixtures/application-charge/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/res/create.json -------------------------------------------------------------------------------- /test/fixtures/application-charge/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/res/get.json -------------------------------------------------------------------------------- /test/fixtures/application-charge/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/res/index.js -------------------------------------------------------------------------------- /test/fixtures/application-charge/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-charge/res/list.json -------------------------------------------------------------------------------- /test/fixtures/application-credit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/index.js -------------------------------------------------------------------------------- /test/fixtures/application-credit/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/req/create.json -------------------------------------------------------------------------------- /test/fixtures/application-credit/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/req/index.js -------------------------------------------------------------------------------- /test/fixtures/application-credit/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/res/create.json -------------------------------------------------------------------------------- /test/fixtures/application-credit/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/res/get.json -------------------------------------------------------------------------------- /test/fixtures/application-credit/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/res/index.js -------------------------------------------------------------------------------- /test/fixtures/application-credit/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/application-credit/res/list.json -------------------------------------------------------------------------------- /test/fixtures/article/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/index.js -------------------------------------------------------------------------------- /test/fixtures/article/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/req/create.json -------------------------------------------------------------------------------- /test/fixtures/article/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/req/index.js -------------------------------------------------------------------------------- /test/fixtures/article/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/req/update.json -------------------------------------------------------------------------------- /test/fixtures/article/res/authors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/res/authors.json -------------------------------------------------------------------------------- /test/fixtures/article/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/res/create.json -------------------------------------------------------------------------------- /test/fixtures/article/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/res/get.json -------------------------------------------------------------------------------- /test/fixtures/article/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/res/index.js -------------------------------------------------------------------------------- /test/fixtures/article/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/res/list.json -------------------------------------------------------------------------------- /test/fixtures/article/res/tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": ["Announcing", "Mystery"] 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/article/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/article/res/update.json -------------------------------------------------------------------------------- /test/fixtures/asset/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/index.js -------------------------------------------------------------------------------- /test/fixtures/asset/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/req/create.json -------------------------------------------------------------------------------- /test/fixtures/asset/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/req/index.js -------------------------------------------------------------------------------- /test/fixtures/asset/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/req/update.json -------------------------------------------------------------------------------- /test/fixtures/asset/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/res/create.json -------------------------------------------------------------------------------- /test/fixtures/asset/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/res/get.json -------------------------------------------------------------------------------- /test/fixtures/asset/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/res/index.js -------------------------------------------------------------------------------- /test/fixtures/asset/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/res/list.json -------------------------------------------------------------------------------- /test/fixtures/asset/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/asset/res/update.json -------------------------------------------------------------------------------- /test/fixtures/balance/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/balance/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/balance/res/index.js -------------------------------------------------------------------------------- /test/fixtures/balance/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/balance/res/list.json -------------------------------------------------------------------------------- /test/fixtures/balance/res/transactions.json: -------------------------------------------------------------------------------- 1 | { 2 | "transactions": [] 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/blog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/index.js -------------------------------------------------------------------------------- /test/fixtures/blog/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/req/create.json -------------------------------------------------------------------------------- /test/fixtures/blog/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/req/index.js -------------------------------------------------------------------------------- /test/fixtures/blog/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/req/update.json -------------------------------------------------------------------------------- /test/fixtures/blog/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/res/create.json -------------------------------------------------------------------------------- /test/fixtures/blog/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/res/get.json -------------------------------------------------------------------------------- /test/fixtures/blog/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/res/index.js -------------------------------------------------------------------------------- /test/fixtures/blog/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/res/list.json -------------------------------------------------------------------------------- /test/fixtures/blog/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/blog/res/update.json -------------------------------------------------------------------------------- /test/fixtures/cancellation-request/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/cancellation-request/res/accept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/cancellation-request/res/accept.json -------------------------------------------------------------------------------- /test/fixtures/cancellation-request/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/cancellation-request/res/create.json -------------------------------------------------------------------------------- /test/fixtures/cancellation-request/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/cancellation-request/res/index.js -------------------------------------------------------------------------------- /test/fixtures/cancellation-request/res/reject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/cancellation-request/res/reject.json -------------------------------------------------------------------------------- /test/fixtures/carrier-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/index.js -------------------------------------------------------------------------------- /test/fixtures/carrier-service/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/req/create.json -------------------------------------------------------------------------------- /test/fixtures/carrier-service/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/req/index.js -------------------------------------------------------------------------------- /test/fixtures/carrier-service/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/req/update.json -------------------------------------------------------------------------------- /test/fixtures/carrier-service/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/res/create.json -------------------------------------------------------------------------------- /test/fixtures/carrier-service/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/res/get.json -------------------------------------------------------------------------------- /test/fixtures/carrier-service/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/res/index.js -------------------------------------------------------------------------------- /test/fixtures/carrier-service/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/res/list.json -------------------------------------------------------------------------------- /test/fixtures/carrier-service/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/carrier-service/res/update.json -------------------------------------------------------------------------------- /test/fixtures/checkout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/index.js -------------------------------------------------------------------------------- /test/fixtures/checkout/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/req/create.json -------------------------------------------------------------------------------- /test/fixtures/checkout/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/req/index.js -------------------------------------------------------------------------------- /test/fixtures/checkout/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/req/update.json -------------------------------------------------------------------------------- /test/fixtures/checkout/res/complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/complete.json -------------------------------------------------------------------------------- /test/fixtures/checkout/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/create.json -------------------------------------------------------------------------------- /test/fixtures/checkout/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/get.json -------------------------------------------------------------------------------- /test/fixtures/checkout/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/index.js -------------------------------------------------------------------------------- /test/fixtures/checkout/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/list.json -------------------------------------------------------------------------------- /test/fixtures/checkout/res/shipping-rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/shipping-rates.json -------------------------------------------------------------------------------- /test/fixtures/checkout/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/checkout/res/update.json -------------------------------------------------------------------------------- /test/fixtures/collect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/index.js -------------------------------------------------------------------------------- /test/fixtures/collect/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/req/create.json -------------------------------------------------------------------------------- /test/fixtures/collect/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/req/index.js -------------------------------------------------------------------------------- /test/fixtures/collect/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/res/create.json -------------------------------------------------------------------------------- /test/fixtures/collect/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/res/get.json -------------------------------------------------------------------------------- /test/fixtures/collect/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/res/index.js -------------------------------------------------------------------------------- /test/fixtures/collect/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collect/res/list.json -------------------------------------------------------------------------------- /test/fixtures/collection-listing/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/collection-listing/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection-listing/res/get.json -------------------------------------------------------------------------------- /test/fixtures/collection-listing/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection-listing/res/index.js -------------------------------------------------------------------------------- /test/fixtures/collection-listing/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection-listing/res/list.json -------------------------------------------------------------------------------- /test/fixtures/collection-listing/res/product-ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection-listing/res/product-ids.json -------------------------------------------------------------------------------- /test/fixtures/collection/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/collection/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection/res/get.json -------------------------------------------------------------------------------- /test/fixtures/collection/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection/res/index.js -------------------------------------------------------------------------------- /test/fixtures/collection/res/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/collection/res/products.json -------------------------------------------------------------------------------- /test/fixtures/comment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/index.js -------------------------------------------------------------------------------- /test/fixtures/comment/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/req/create.json -------------------------------------------------------------------------------- /test/fixtures/comment/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/req/index.js -------------------------------------------------------------------------------- /test/fixtures/comment/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/req/update.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/approve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/approve.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/create.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/get.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/index.js -------------------------------------------------------------------------------- /test/fixtures/comment/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/list.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/notSpam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/notSpam.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/remove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/remove.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/restore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/restore.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/spam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/spam.json -------------------------------------------------------------------------------- /test/fixtures/comment/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/comment/res/update.json -------------------------------------------------------------------------------- /test/fixtures/country/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/index.js -------------------------------------------------------------------------------- /test/fixtures/country/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/req/create.json -------------------------------------------------------------------------------- /test/fixtures/country/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/req/index.js -------------------------------------------------------------------------------- /test/fixtures/country/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/req/update.json -------------------------------------------------------------------------------- /test/fixtures/country/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/res/create.json -------------------------------------------------------------------------------- /test/fixtures/country/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/res/get.json -------------------------------------------------------------------------------- /test/fixtures/country/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/res/index.js -------------------------------------------------------------------------------- /test/fixtures/country/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/res/list.json -------------------------------------------------------------------------------- /test/fixtures/country/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/country/res/update.json -------------------------------------------------------------------------------- /test/fixtures/currency/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/currency/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.list = require('./list'); 4 | -------------------------------------------------------------------------------- /test/fixtures/currency/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/currency/res/list.json -------------------------------------------------------------------------------- /test/fixtures/custom-collection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/index.js -------------------------------------------------------------------------------- /test/fixtures/custom-collection/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/req/create.json -------------------------------------------------------------------------------- /test/fixtures/custom-collection/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/req/index.js -------------------------------------------------------------------------------- /test/fixtures/custom-collection/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/req/update.json -------------------------------------------------------------------------------- /test/fixtures/custom-collection/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/res/create.json -------------------------------------------------------------------------------- /test/fixtures/custom-collection/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/res/get.json -------------------------------------------------------------------------------- /test/fixtures/custom-collection/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/res/index.js -------------------------------------------------------------------------------- /test/fixtures/custom-collection/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/res/list.json -------------------------------------------------------------------------------- /test/fixtures/custom-collection/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/custom-collection/res/update.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/index.js -------------------------------------------------------------------------------- /test/fixtures/customer-address/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/req/create.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/req/index.js -------------------------------------------------------------------------------- /test/fixtures/customer-address/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/req/update.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/res/create.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/res/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/res/default.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/res/get.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/res/index.js -------------------------------------------------------------------------------- /test/fixtures/customer-address/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/res/list.json -------------------------------------------------------------------------------- /test/fixtures/customer-address/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-address/res/update.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/index.js -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/req/create.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/req/index.js -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/req/update.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/res/create.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/res/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/res/customers.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/res/get.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/res/index.js -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/res/list.json -------------------------------------------------------------------------------- /test/fixtures/customer-saved-search/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer-saved-search/res/update.json -------------------------------------------------------------------------------- /test/fixtures/customer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/index.js -------------------------------------------------------------------------------- /test/fixtures/customer/req/accountActivationUrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/req/accountActivationUrl.json -------------------------------------------------------------------------------- /test/fixtures/customer/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/req/create.json -------------------------------------------------------------------------------- /test/fixtures/customer/req/customizedInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/req/customizedInvite.json -------------------------------------------------------------------------------- /test/fixtures/customer/req/defaultInvite.json: -------------------------------------------------------------------------------- 1 | { 2 | "customer_invite": {} 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/customer/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/req/index.js -------------------------------------------------------------------------------- /test/fixtures/customer/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/req/update.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/accountActivationUrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/accountActivationUrl.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/create.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/customizedInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/customizedInvite.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/defaultInvite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/defaultInvite.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/get.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/index.js -------------------------------------------------------------------------------- /test/fixtures/customer/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/list.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/orders.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/search.json -------------------------------------------------------------------------------- /test/fixtures/customer/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/customer/res/update.json -------------------------------------------------------------------------------- /test/fixtures/deprecated-api-call/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/deprecated-api-call/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.list = require('./list'); 4 | -------------------------------------------------------------------------------- /test/fixtures/deprecated-api-call/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/deprecated-api-call/res/list.json -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/index.js -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/req/create.json -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/req/index.js -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/res/create.json -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/res/discountCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/res/discountCodes.json -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/res/get.json -------------------------------------------------------------------------------- /test/fixtures/discount-code-creation-job/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code-creation-job/res/index.js -------------------------------------------------------------------------------- /test/fixtures/discount-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/index.js -------------------------------------------------------------------------------- /test/fixtures/discount-code/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/req/create.json -------------------------------------------------------------------------------- /test/fixtures/discount-code/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/req/index.js -------------------------------------------------------------------------------- /test/fixtures/discount-code/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/req/update.json -------------------------------------------------------------------------------- /test/fixtures/discount-code/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/res/create.json -------------------------------------------------------------------------------- /test/fixtures/discount-code/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/res/get.json -------------------------------------------------------------------------------- /test/fixtures/discount-code/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/res/index.js -------------------------------------------------------------------------------- /test/fixtures/discount-code/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/res/list.json -------------------------------------------------------------------------------- /test/fixtures/discount-code/res/lookup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/res/lookup.html -------------------------------------------------------------------------------- /test/fixtures/discount-code/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/discount-code/res/update.json -------------------------------------------------------------------------------- /test/fixtures/dispute-evidence/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-evidence/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute-evidence/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-evidence/req/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute-evidence/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-evidence/req/update.json -------------------------------------------------------------------------------- /test/fixtures/dispute-evidence/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-evidence/res/get.json -------------------------------------------------------------------------------- /test/fixtures/dispute-evidence/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-evidence/res/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute-evidence/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-evidence/res/update.json -------------------------------------------------------------------------------- /test/fixtures/dispute-file-upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-file-upload/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute-file-upload/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-file-upload/req/create.json -------------------------------------------------------------------------------- /test/fixtures/dispute-file-upload/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-file-upload/req/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute-file-upload/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-file-upload/res/create.json -------------------------------------------------------------------------------- /test/fixtures/dispute-file-upload/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-file-upload/res/get.json -------------------------------------------------------------------------------- /test/fixtures/dispute-file-upload/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute-file-upload/res/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/dispute/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute/res/get.json -------------------------------------------------------------------------------- /test/fixtures/dispute/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute/res/index.js -------------------------------------------------------------------------------- /test/fixtures/dispute/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/dispute/res/list.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/index.js -------------------------------------------------------------------------------- /test/fixtures/draft-order/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/req/create.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/req/index.js -------------------------------------------------------------------------------- /test/fixtures/draft-order/req/send-invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/req/send-invoice.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/req/update.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/complete.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/create.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/get.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/index.js -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/list.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/send-invoice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/send-invoice.json -------------------------------------------------------------------------------- /test/fixtures/draft-order/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/draft-order/res/update.json -------------------------------------------------------------------------------- /test/fixtures/event/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/event/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/event/res/get.json -------------------------------------------------------------------------------- /test/fixtures/event/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/event/res/index.js -------------------------------------------------------------------------------- /test/fixtures/event/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/event/res/list.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/req/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/req/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/req/update.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/res/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/res/get.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/res/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/res/list.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-event/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-event/res/update.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/req/close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/req/close.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/req/hold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/req/hold.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/req/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/req/move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/req/move.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/req/reschedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/req/reschedule.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/req/set-fulfillment-orders-deadline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/req/set-fulfillment-orders-deadline.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/cancel.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/close.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/fulfillments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/fulfillments.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/get.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/hold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/hold.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/list.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/locations-for-move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/locations-for-move.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/move.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/move.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/release-hold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/release-hold.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-order/res/reschedule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-order/res/reschedule.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/req/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/req/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/res/accept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/res/accept.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/res/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/res/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-request/res/reject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-request/res/reject.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/req/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/req/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/req/update.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/res/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/res/get.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/res/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/res/list.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment-service/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment-service/res/update.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/req/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/req/createV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/req/createV2.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/req/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment/req/update-tracking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/req/update-tracking.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/req/update.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/cancel.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/complete.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/create.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/createV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/createV2.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/get.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/index.js -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/list.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/open.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/update-tracking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/update-tracking.json -------------------------------------------------------------------------------- /test/fixtures/fulfillment/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/fulfillment/res/update.json -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/index.js -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/req/create.json -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/req/index.js -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/res/create.json -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/res/get.json -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/res/index.js -------------------------------------------------------------------------------- /test/fixtures/gift-card-adjustment/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card-adjustment/res/list.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/index.js -------------------------------------------------------------------------------- /test/fixtures/gift-card/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/req/create.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/req/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/req/disable.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/req/index.js -------------------------------------------------------------------------------- /test/fixtures/gift-card/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/req/update.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/create.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/disable.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/get.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/index.js -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/list.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/search.json -------------------------------------------------------------------------------- /test/fixtures/gift-card/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/gift-card/res/update.json -------------------------------------------------------------------------------- /test/fixtures/inventory-item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/index.js -------------------------------------------------------------------------------- /test/fixtures/inventory-item/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/req/index.js -------------------------------------------------------------------------------- /test/fixtures/inventory-item/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/req/update.json -------------------------------------------------------------------------------- /test/fixtures/inventory-item/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/res/get.json -------------------------------------------------------------------------------- /test/fixtures/inventory-item/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/res/index.js -------------------------------------------------------------------------------- /test/fixtures/inventory-item/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/res/list.json -------------------------------------------------------------------------------- /test/fixtures/inventory-item/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-item/res/update.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/index.js -------------------------------------------------------------------------------- /test/fixtures/inventory-level/req/adjust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/req/adjust.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/req/connect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/req/connect.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/req/index.js -------------------------------------------------------------------------------- /test/fixtures/inventory-level/req/set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/req/set.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/res/adjust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/res/adjust.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/res/connect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/res/connect.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/res/index.js -------------------------------------------------------------------------------- /test/fixtures/inventory-level/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/res/list.json -------------------------------------------------------------------------------- /test/fixtures/inventory-level/res/set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/inventory-level/res/set.json -------------------------------------------------------------------------------- /test/fixtures/location/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/location/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/location/res/get.json -------------------------------------------------------------------------------- /test/fixtures/location/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/location/res/index.js -------------------------------------------------------------------------------- /test/fixtures/location/res/inventory-levels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/location/res/inventory-levels.json -------------------------------------------------------------------------------- /test/fixtures/location/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/location/res/list.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/index.js -------------------------------------------------------------------------------- /test/fixtures/marketing-event/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/req/create.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/req/engagements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/req/engagements.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/req/index.js -------------------------------------------------------------------------------- /test/fixtures/marketing-event/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/req/update.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/res/create.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/res/engagements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/res/engagements.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/res/get.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/res/index.js -------------------------------------------------------------------------------- /test/fixtures/marketing-event/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/res/list.json -------------------------------------------------------------------------------- /test/fixtures/marketing-event/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/marketing-event/res/update.json -------------------------------------------------------------------------------- /test/fixtures/metafield/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/index.js -------------------------------------------------------------------------------- /test/fixtures/metafield/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/req/create.json -------------------------------------------------------------------------------- /test/fixtures/metafield/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/req/index.js -------------------------------------------------------------------------------- /test/fixtures/metafield/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/req/update.json -------------------------------------------------------------------------------- /test/fixtures/metafield/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/res/create.json -------------------------------------------------------------------------------- /test/fixtures/metafield/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/res/get.json -------------------------------------------------------------------------------- /test/fixtures/metafield/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/res/index.js -------------------------------------------------------------------------------- /test/fixtures/metafield/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/res/list.json -------------------------------------------------------------------------------- /test/fixtures/metafield/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/metafield/res/update.json -------------------------------------------------------------------------------- /test/fixtures/order-risk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/index.js -------------------------------------------------------------------------------- /test/fixtures/order-risk/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/req/create.json -------------------------------------------------------------------------------- /test/fixtures/order-risk/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/req/index.js -------------------------------------------------------------------------------- /test/fixtures/order-risk/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/req/update.json -------------------------------------------------------------------------------- /test/fixtures/order-risk/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/res/create.json -------------------------------------------------------------------------------- /test/fixtures/order-risk/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/res/get.json -------------------------------------------------------------------------------- /test/fixtures/order-risk/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/res/index.js -------------------------------------------------------------------------------- /test/fixtures/order-risk/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/res/list.json -------------------------------------------------------------------------------- /test/fixtures/order-risk/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order-risk/res/update.json -------------------------------------------------------------------------------- /test/fixtures/order/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/index.js -------------------------------------------------------------------------------- /test/fixtures/order/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/req/create.json -------------------------------------------------------------------------------- /test/fixtures/order/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/req/index.js -------------------------------------------------------------------------------- /test/fixtures/order/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/req/update.json -------------------------------------------------------------------------------- /test/fixtures/order/res/cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/cancel.json -------------------------------------------------------------------------------- /test/fixtures/order/res/close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/close.json -------------------------------------------------------------------------------- /test/fixtures/order/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/create.json -------------------------------------------------------------------------------- /test/fixtures/order/res/fulfillment-orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/fulfillment-orders.json -------------------------------------------------------------------------------- /test/fixtures/order/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/get.json -------------------------------------------------------------------------------- /test/fixtures/order/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/index.js -------------------------------------------------------------------------------- /test/fixtures/order/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/list.json -------------------------------------------------------------------------------- /test/fixtures/order/res/open.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/open.json -------------------------------------------------------------------------------- /test/fixtures/order/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/order/res/update.json -------------------------------------------------------------------------------- /test/fixtures/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/index.js -------------------------------------------------------------------------------- /test/fixtures/page/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/req/create.json -------------------------------------------------------------------------------- /test/fixtures/page/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/req/index.js -------------------------------------------------------------------------------- /test/fixtures/page/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/req/update.json -------------------------------------------------------------------------------- /test/fixtures/page/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/res/create.json -------------------------------------------------------------------------------- /test/fixtures/page/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/res/get.json -------------------------------------------------------------------------------- /test/fixtures/page/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/res/index.js -------------------------------------------------------------------------------- /test/fixtures/page/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/res/list.json -------------------------------------------------------------------------------- /test/fixtures/page/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/page/res/update.json -------------------------------------------------------------------------------- /test/fixtures/payment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/index.js -------------------------------------------------------------------------------- /test/fixtures/payment/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/req/create.json -------------------------------------------------------------------------------- /test/fixtures/payment/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/req/index.js -------------------------------------------------------------------------------- /test/fixtures/payment/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/res/create.json -------------------------------------------------------------------------------- /test/fixtures/payment/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/res/get.json -------------------------------------------------------------------------------- /test/fixtures/payment/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/res/index.js -------------------------------------------------------------------------------- /test/fixtures/payment/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payment/res/list.json -------------------------------------------------------------------------------- /test/fixtures/payout/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/payout/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payout/res/get.json -------------------------------------------------------------------------------- /test/fixtures/payout/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payout/res/index.js -------------------------------------------------------------------------------- /test/fixtures/payout/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/payout/res/list.json -------------------------------------------------------------------------------- /test/fixtures/policy/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/policy/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.list = require('./list'); 4 | -------------------------------------------------------------------------------- /test/fixtures/policy/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/policy/res/list.json -------------------------------------------------------------------------------- /test/fixtures/price-rule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/index.js -------------------------------------------------------------------------------- /test/fixtures/price-rule/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/req/create.json -------------------------------------------------------------------------------- /test/fixtures/price-rule/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/req/index.js -------------------------------------------------------------------------------- /test/fixtures/price-rule/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/req/update.json -------------------------------------------------------------------------------- /test/fixtures/price-rule/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/res/create.json -------------------------------------------------------------------------------- /test/fixtures/price-rule/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/res/get.json -------------------------------------------------------------------------------- /test/fixtures/price-rule/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/res/index.js -------------------------------------------------------------------------------- /test/fixtures/price-rule/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/res/list.json -------------------------------------------------------------------------------- /test/fixtures/price-rule/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/price-rule/res/update.json -------------------------------------------------------------------------------- /test/fixtures/product-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/index.js -------------------------------------------------------------------------------- /test/fixtures/product-image/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/req/create.json -------------------------------------------------------------------------------- /test/fixtures/product-image/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/req/index.js -------------------------------------------------------------------------------- /test/fixtures/product-image/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/req/update.json -------------------------------------------------------------------------------- /test/fixtures/product-image/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/res/create.json -------------------------------------------------------------------------------- /test/fixtures/product-image/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/res/get.json -------------------------------------------------------------------------------- /test/fixtures/product-image/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/res/index.js -------------------------------------------------------------------------------- /test/fixtures/product-image/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/res/list.json -------------------------------------------------------------------------------- /test/fixtures/product-image/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-image/res/update.json -------------------------------------------------------------------------------- /test/fixtures/product-listing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/index.js -------------------------------------------------------------------------------- /test/fixtures/product-listing/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/req/create.json -------------------------------------------------------------------------------- /test/fixtures/product-listing/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/req/index.js -------------------------------------------------------------------------------- /test/fixtures/product-listing/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/res/create.json -------------------------------------------------------------------------------- /test/fixtures/product-listing/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/res/get.json -------------------------------------------------------------------------------- /test/fixtures/product-listing/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/res/index.js -------------------------------------------------------------------------------- /test/fixtures/product-listing/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-listing/res/list.json -------------------------------------------------------------------------------- /test/fixtures/product-listing/res/product-ids.json: -------------------------------------------------------------------------------- 1 | { 2 | "product_ids": [921728736, 632910392] 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/product-resource-feedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-resource-feedback/index.js -------------------------------------------------------------------------------- /test/fixtures/product-resource-feedback/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-resource-feedback/req/create.json -------------------------------------------------------------------------------- /test/fixtures/product-resource-feedback/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-resource-feedback/req/index.js -------------------------------------------------------------------------------- /test/fixtures/product-resource-feedback/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-resource-feedback/res/create.json -------------------------------------------------------------------------------- /test/fixtures/product-resource-feedback/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-resource-feedback/res/index.js -------------------------------------------------------------------------------- /test/fixtures/product-resource-feedback/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-resource-feedback/res/list.json -------------------------------------------------------------------------------- /test/fixtures/product-variant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/index.js -------------------------------------------------------------------------------- /test/fixtures/product-variant/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/req/create.json -------------------------------------------------------------------------------- /test/fixtures/product-variant/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/req/index.js -------------------------------------------------------------------------------- /test/fixtures/product-variant/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/req/update.json -------------------------------------------------------------------------------- /test/fixtures/product-variant/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/res/create.json -------------------------------------------------------------------------------- /test/fixtures/product-variant/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/res/get.json -------------------------------------------------------------------------------- /test/fixtures/product-variant/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/res/index.js -------------------------------------------------------------------------------- /test/fixtures/product-variant/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/res/list.json -------------------------------------------------------------------------------- /test/fixtures/product-variant/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product-variant/res/update.json -------------------------------------------------------------------------------- /test/fixtures/product/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/index.js -------------------------------------------------------------------------------- /test/fixtures/product/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/req/create.json -------------------------------------------------------------------------------- /test/fixtures/product/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/req/index.js -------------------------------------------------------------------------------- /test/fixtures/product/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/req/update.json -------------------------------------------------------------------------------- /test/fixtures/product/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/res/create.json -------------------------------------------------------------------------------- /test/fixtures/product/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/res/get.json -------------------------------------------------------------------------------- /test/fixtures/product/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/res/index.js -------------------------------------------------------------------------------- /test/fixtures/product/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/res/list.json -------------------------------------------------------------------------------- /test/fixtures/product/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/product/res/update.json -------------------------------------------------------------------------------- /test/fixtures/province/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/index.js -------------------------------------------------------------------------------- /test/fixtures/province/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/req/index.js -------------------------------------------------------------------------------- /test/fixtures/province/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/req/update.json -------------------------------------------------------------------------------- /test/fixtures/province/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/res/get.json -------------------------------------------------------------------------------- /test/fixtures/province/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/res/index.js -------------------------------------------------------------------------------- /test/fixtures/province/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/res/list.json -------------------------------------------------------------------------------- /test/fixtures/province/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/province/res/update.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/index.js -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/req/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/req/activate.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/req/create.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/req/index.js -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/res/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/res/activate.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/res/create.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/res/customize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/res/customize.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/res/get.json -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/res/index.js -------------------------------------------------------------------------------- /test/fixtures/recurring-application-charge/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/recurring-application-charge/res/list.json -------------------------------------------------------------------------------- /test/fixtures/redirect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/index.js -------------------------------------------------------------------------------- /test/fixtures/redirect/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/req/create.json -------------------------------------------------------------------------------- /test/fixtures/redirect/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/req/index.js -------------------------------------------------------------------------------- /test/fixtures/redirect/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/req/update.json -------------------------------------------------------------------------------- /test/fixtures/redirect/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/res/create.json -------------------------------------------------------------------------------- /test/fixtures/redirect/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/res/get.json -------------------------------------------------------------------------------- /test/fixtures/redirect/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/res/index.js -------------------------------------------------------------------------------- /test/fixtures/redirect/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/res/list.json -------------------------------------------------------------------------------- /test/fixtures/redirect/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/redirect/res/update.json -------------------------------------------------------------------------------- /test/fixtures/refund/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/index.js -------------------------------------------------------------------------------- /test/fixtures/refund/req/calculate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/req/calculate.json -------------------------------------------------------------------------------- /test/fixtures/refund/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/req/create.json -------------------------------------------------------------------------------- /test/fixtures/refund/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/req/index.js -------------------------------------------------------------------------------- /test/fixtures/refund/res/calculate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/res/calculate.json -------------------------------------------------------------------------------- /test/fixtures/refund/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/res/create.json -------------------------------------------------------------------------------- /test/fixtures/refund/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/res/get.json -------------------------------------------------------------------------------- /test/fixtures/refund/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/res/index.js -------------------------------------------------------------------------------- /test/fixtures/refund/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/refund/res/list.json -------------------------------------------------------------------------------- /test/fixtures/report/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/index.js -------------------------------------------------------------------------------- /test/fixtures/report/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/req/create.json -------------------------------------------------------------------------------- /test/fixtures/report/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/req/index.js -------------------------------------------------------------------------------- /test/fixtures/report/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/req/update.json -------------------------------------------------------------------------------- /test/fixtures/report/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/res/create.json -------------------------------------------------------------------------------- /test/fixtures/report/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/res/get.json -------------------------------------------------------------------------------- /test/fixtures/report/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/res/index.js -------------------------------------------------------------------------------- /test/fixtures/report/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/res/list.json -------------------------------------------------------------------------------- /test/fixtures/report/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/report/res/update.json -------------------------------------------------------------------------------- /test/fixtures/resource-feedback/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/resource-feedback/index.js -------------------------------------------------------------------------------- /test/fixtures/resource-feedback/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/resource-feedback/req/create.json -------------------------------------------------------------------------------- /test/fixtures/resource-feedback/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/resource-feedback/req/index.js -------------------------------------------------------------------------------- /test/fixtures/resource-feedback/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/resource-feedback/res/create.json -------------------------------------------------------------------------------- /test/fixtures/resource-feedback/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/resource-feedback/res/index.js -------------------------------------------------------------------------------- /test/fixtures/resource-feedback/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/resource-feedback/res/list.json -------------------------------------------------------------------------------- /test/fixtures/script-tag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/index.js -------------------------------------------------------------------------------- /test/fixtures/script-tag/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/req/create.json -------------------------------------------------------------------------------- /test/fixtures/script-tag/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/req/index.js -------------------------------------------------------------------------------- /test/fixtures/script-tag/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/req/update.json -------------------------------------------------------------------------------- /test/fixtures/script-tag/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/res/create.json -------------------------------------------------------------------------------- /test/fixtures/script-tag/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/res/get.json -------------------------------------------------------------------------------- /test/fixtures/script-tag/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/res/index.js -------------------------------------------------------------------------------- /test/fixtures/script-tag/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/res/list.json -------------------------------------------------------------------------------- /test/fixtures/script-tag/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/script-tag/res/update.json -------------------------------------------------------------------------------- /test/fixtures/shipping-zone/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/shipping-zone/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.list = require('./list'); 4 | -------------------------------------------------------------------------------- /test/fixtures/shipping-zone/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/shipping-zone/res/list.json -------------------------------------------------------------------------------- /test/fixtures/shop/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/shop/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/shop/res/get.json -------------------------------------------------------------------------------- /test/fixtures/shop/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.get = require('./get'); 4 | -------------------------------------------------------------------------------- /test/fixtures/smart-collection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/index.js -------------------------------------------------------------------------------- /test/fixtures/smart-collection/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/req/create.json -------------------------------------------------------------------------------- /test/fixtures/smart-collection/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/req/index.js -------------------------------------------------------------------------------- /test/fixtures/smart-collection/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/req/update.json -------------------------------------------------------------------------------- /test/fixtures/smart-collection/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/res/create.json -------------------------------------------------------------------------------- /test/fixtures/smart-collection/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/res/get.json -------------------------------------------------------------------------------- /test/fixtures/smart-collection/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/res/index.js -------------------------------------------------------------------------------- /test/fixtures/smart-collection/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/res/list.json -------------------------------------------------------------------------------- /test/fixtures/smart-collection/res/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/res/products.json -------------------------------------------------------------------------------- /test/fixtures/smart-collection/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/smart-collection/res/update.json -------------------------------------------------------------------------------- /test/fixtures/storefront-access-token/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/storefront-access-token/index.js -------------------------------------------------------------------------------- /test/fixtures/storefront-access-token/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/storefront-access-token/req/create.json -------------------------------------------------------------------------------- /test/fixtures/storefront-access-token/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/storefront-access-token/req/index.js -------------------------------------------------------------------------------- /test/fixtures/storefront-access-token/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/storefront-access-token/res/create.json -------------------------------------------------------------------------------- /test/fixtures/storefront-access-token/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/storefront-access-token/res/index.js -------------------------------------------------------------------------------- /test/fixtures/storefront-access-token/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/storefront-access-token/res/list.json -------------------------------------------------------------------------------- /test/fixtures/tender-transaction/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/tender-transaction/res/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.list = require('./list'); 4 | -------------------------------------------------------------------------------- /test/fixtures/tender-transaction/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/tender-transaction/res/list.json -------------------------------------------------------------------------------- /test/fixtures/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/index.js -------------------------------------------------------------------------------- /test/fixtures/theme/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/req/create.json -------------------------------------------------------------------------------- /test/fixtures/theme/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/req/index.js -------------------------------------------------------------------------------- /test/fixtures/theme/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/req/update.json -------------------------------------------------------------------------------- /test/fixtures/theme/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/res/create.json -------------------------------------------------------------------------------- /test/fixtures/theme/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/res/get.json -------------------------------------------------------------------------------- /test/fixtures/theme/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/res/index.js -------------------------------------------------------------------------------- /test/fixtures/theme/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/res/list.json -------------------------------------------------------------------------------- /test/fixtures/theme/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/theme/res/update.json -------------------------------------------------------------------------------- /test/fixtures/transaction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/index.js -------------------------------------------------------------------------------- /test/fixtures/transaction/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/req/create.json -------------------------------------------------------------------------------- /test/fixtures/transaction/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/req/index.js -------------------------------------------------------------------------------- /test/fixtures/transaction/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/res/create.json -------------------------------------------------------------------------------- /test/fixtures/transaction/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/res/get.json -------------------------------------------------------------------------------- /test/fixtures/transaction/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/res/index.js -------------------------------------------------------------------------------- /test/fixtures/transaction/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/transaction/res/list.json -------------------------------------------------------------------------------- /test/fixtures/usage-charge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/index.js -------------------------------------------------------------------------------- /test/fixtures/usage-charge/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/req/create.json -------------------------------------------------------------------------------- /test/fixtures/usage-charge/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/req/index.js -------------------------------------------------------------------------------- /test/fixtures/usage-charge/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/res/create.json -------------------------------------------------------------------------------- /test/fixtures/usage-charge/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/res/get.json -------------------------------------------------------------------------------- /test/fixtures/usage-charge/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/res/index.js -------------------------------------------------------------------------------- /test/fixtures/usage-charge/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/usage-charge/res/list.json -------------------------------------------------------------------------------- /test/fixtures/user/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | exports.res = require('./res'); 4 | -------------------------------------------------------------------------------- /test/fixtures/user/res/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/user/res/current.json -------------------------------------------------------------------------------- /test/fixtures/user/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/user/res/get.json -------------------------------------------------------------------------------- /test/fixtures/user/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/user/res/index.js -------------------------------------------------------------------------------- /test/fixtures/user/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/user/res/list.json -------------------------------------------------------------------------------- /test/fixtures/webhook/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/index.js -------------------------------------------------------------------------------- /test/fixtures/webhook/req/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/req/create.json -------------------------------------------------------------------------------- /test/fixtures/webhook/req/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/req/index.js -------------------------------------------------------------------------------- /test/fixtures/webhook/req/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/req/update.json -------------------------------------------------------------------------------- /test/fixtures/webhook/res/create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/res/create.json -------------------------------------------------------------------------------- /test/fixtures/webhook/res/get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/res/get.json -------------------------------------------------------------------------------- /test/fixtures/webhook/res/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/res/index.js -------------------------------------------------------------------------------- /test/fixtures/webhook/res/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/res/list.json -------------------------------------------------------------------------------- /test/fixtures/webhook/res/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fixtures/webhook/res/update.json -------------------------------------------------------------------------------- /test/fulfillment-event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fulfillment-event.test.js -------------------------------------------------------------------------------- /test/fulfillment-order.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fulfillment-order.test.js -------------------------------------------------------------------------------- /test/fulfillment-request.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fulfillment-request.test.js -------------------------------------------------------------------------------- /test/fulfillment-service.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fulfillment-service.test.js -------------------------------------------------------------------------------- /test/fulfillment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/fulfillment.test.js -------------------------------------------------------------------------------- /test/gift-card-adjustment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/gift-card-adjustment.test.js -------------------------------------------------------------------------------- /test/gift-card.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/gift-card.test.js -------------------------------------------------------------------------------- /test/inventory-item.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/inventory-item.test.js -------------------------------------------------------------------------------- /test/inventory-level.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/inventory-level.test.js -------------------------------------------------------------------------------- /test/location.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/location.test.js -------------------------------------------------------------------------------- /test/marketing-event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/marketing-event.test.js -------------------------------------------------------------------------------- /test/metafield.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/metafield.test.js -------------------------------------------------------------------------------- /test/order-risk.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/order-risk.test.js -------------------------------------------------------------------------------- /test/order.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/order.test.js -------------------------------------------------------------------------------- /test/page.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/page.test.js -------------------------------------------------------------------------------- /test/payment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/payment.test.js -------------------------------------------------------------------------------- /test/payout.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/payout.test.js -------------------------------------------------------------------------------- /test/policy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/policy.test.js -------------------------------------------------------------------------------- /test/price-rule.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/price-rule.test.js -------------------------------------------------------------------------------- /test/product-image.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/product-image.test.js -------------------------------------------------------------------------------- /test/product-listing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/product-listing.test.js -------------------------------------------------------------------------------- /test/product-resource-feedback.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/product-resource-feedback.test.js -------------------------------------------------------------------------------- /test/product-variant.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/product-variant.test.js -------------------------------------------------------------------------------- /test/product.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/product.test.js -------------------------------------------------------------------------------- /test/province.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/province.test.js -------------------------------------------------------------------------------- /test/recurring-application-charge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/recurring-application-charge.test.js -------------------------------------------------------------------------------- /test/redirect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/redirect.test.js -------------------------------------------------------------------------------- /test/refund.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/refund.test.js -------------------------------------------------------------------------------- /test/report.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/report.test.js -------------------------------------------------------------------------------- /test/resource-feedback.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/resource-feedback.test.js -------------------------------------------------------------------------------- /test/script-tag.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/script-tag.test.js -------------------------------------------------------------------------------- /test/shipping-zone.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/shipping-zone.test.js -------------------------------------------------------------------------------- /test/shop.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/shop.test.js -------------------------------------------------------------------------------- /test/shopify.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/shopify.test.js -------------------------------------------------------------------------------- /test/smart-collection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/smart-collection.test.js -------------------------------------------------------------------------------- /test/storefront-access-token.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/storefront-access-token.test.js -------------------------------------------------------------------------------- /test/tender-transaction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/tender-transaction.test.js -------------------------------------------------------------------------------- /test/theme.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/theme.test.js -------------------------------------------------------------------------------- /test/transaction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/transaction.test.js -------------------------------------------------------------------------------- /test/usage-charge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/usage-charge.test.js -------------------------------------------------------------------------------- /test/user.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/user.test.js -------------------------------------------------------------------------------- /test/webhook.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/test/webhook.test.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MONEI/Shopify-api-node/HEAD/types/index.test-d.ts --------------------------------------------------------------------------------