@tthr/vue 0.0.64 → 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
|
@@ -141,13 +141,11 @@ 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
|
-
// Note: action functions are executed via mutation endpoint (they have same capabilities)
|
|
145
144
|
const endpointTypes = ['mutation', 'query'];
|
|
146
|
-
// Move the hinted type to the front if valid
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
endpointTypes.
|
|
150
|
-
endpointTypes.unshift(mappedType);
|
|
145
|
+
// Move the hinted type to the front if valid
|
|
146
|
+
if (functionType && endpointTypes.includes(functionType)) {
|
|
147
|
+
endpointTypes.splice(endpointTypes.indexOf(functionType), 1);
|
|
148
|
+
endpointTypes.unshift(functionType);
|
|
151
149
|
}
|
|
152
150
|
let lastError = null;
|
|
153
151
|
for (const type of endpointTypes) {
|