UNPKG

@shopify/shopify-api

Version:

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

37 lines (33 loc) 1.24 kB
'use strict'; var base = require('../../base.js'); var types = require('../../../lib/types.js'); /*********************************************************************************************************************** * This file is auto-generated. If you have an issue, please create a GitHub issue. * ***********************************************************************************************************************/ class AccessScope extends base.Base { static apiVersion = types.ApiVersion.January24; static hasOne = {}; static hasMany = {}; static customPrefix = "/admin/oauth"; static paths = [ { "http_method": "get", "operation": "get", "ids": [], "path": "access_scopes.json" } ]; static resourceNames = [ { "singular": "access_scope", "plural": "access_scopes" } ]; static async all({ session, ...otherArgs }) { const response = await this.baseFind({ session: session, urlIds: {}, params: { ...otherArgs }, }); return response; } handle; access_scopes; } exports.AccessScope = AccessScope; //# sourceMappingURL=access_scope.js.map