@tthr/vue 0.0.63 → 0.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/nuxt/module.js CHANGED
@@ -135,4 +135,3 @@ export default defineNuxtModule({
135
135
  });
136
136
  },
137
137
  });
138
- //# sourceMappingURL=module.js.map
@@ -141,7 +141,7 @@ async function executeViaApi(config, functionName, functionType, args) {
141
141
  apiPath = `${base}/api/v1/projects/${config.projectId}`;
142
142
  }
143
143
  // Order endpoints to try based on functionType hint
144
- const endpointTypes = ['action', 'mutation', 'query'];
144
+ const endpointTypes = ['mutation', 'query'];
145
145
  // Move the hinted type to the front if valid
146
146
  if (functionType && endpointTypes.includes(functionType)) {
147
147
  endpointTypes.splice(endpointTypes.indexOf(functionType), 1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tthr/vue",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "description": "Tether Vue/Nuxt SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",