UNPKG

@shopify/shopify-api

Version:

Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks

33 lines (30 loc) 1.34 kB
import { Base } from '../../base.mjs'; import { ApiVersion } from '../../../lib/types.mjs'; /*********************************************************************************************************************** * This file is auto-generated. If you have an issue, please create a GitHub issue. * ***********************************************************************************************************************/ class LocationsForMove extends Base { static apiVersion = ApiVersion.October25; static hasOne = {}; static hasMany = {}; static paths = [ { "http_method": "get", "operation": "get", "ids": ["fulfillment_order_id"], "path": "fulfillment_orders/<fulfillment_order_id>/locations_for_move.json" } ]; static resourceNames = [ { "singular": "locations_for_move", "plural": "locations_for_moves" } ]; static async all({ session, fulfillment_order_id = null, ...otherArgs }) { const response = await this.baseFind({ session: session, urlIds: { "fulfillment_order_id": fulfillment_order_id }, params: { ...otherArgs }, }); return response; } locations_for_move; } export { LocationsForMove }; //# sourceMappingURL=locations_for_move.mjs.map