@frontstackdev/cli 0.0.0-canary-20240831092357 → 0.0.0-canary-20240901030755
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.
|
@@ -81,7 +81,7 @@ const client = {
|
|
|
81
81
|
* Additional configuration options:
|
|
82
82
|
* - `requestUrl` to provide a URL that will be used to track the origin of the request
|
|
83
83
|
*/
|
|
84
|
-
options?:
|
|
84
|
+
options?: RequestOptions
|
|
85
85
|
}
|
|
86
86
|
): Promise<BlockResponses[BlockName]> => {
|
|
87
87
|
let endpoint: string = `${servers[0].url}${endpoints[blockName]}`;
|
|
@@ -132,7 +132,7 @@ const client = {
|
|
|
132
132
|
headers["fs-token"] = config.options.contextKey;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
return invoke(endpoint, '
|
|
135
|
+
return invoke(endpoint, 'GET', null, headers)
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
138
|
|
package/dist/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.0-canary-
|
|
1
|
+
0.0.0-canary-20240901030755
|