@makeswift/runtime 0.28.9-canary.0 → 0.28.9
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/dist/cjs/api/graphql-api-client.js +1 -1
- package/dist/cjs/api/rest-api-client.js +1 -1
- package/dist/cjs/api-handler/handlers/manifest.js +1 -1
- package/dist/esm/api/graphql-api-client.js +1 -1
- package/dist/esm/api/rest-api-client.js +1 -1
- package/dist/esm/api-handler/handlers/manifest.js +1 -1
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ class MakeswiftGraphQLApiClient {
|
|
|
27
27
|
graphqlClient;
|
|
28
28
|
constructor({ endpoint }) {
|
|
29
29
|
this.graphqlClient = new import_client.GraphQLClient(endpoint, {
|
|
30
|
-
"makeswift-runtime-version": "0.28.9
|
|
30
|
+
"makeswift-runtime-version": "0.28.9"
|
|
31
31
|
});
|
|
32
32
|
}
|
|
33
33
|
async createTableRecord(tableId, columns) {
|
|
@@ -172,7 +172,7 @@ class MakeswiftRestAPIClient {
|
|
|
172
172
|
const requestHeaders = new Headers({
|
|
173
173
|
"x-api-key": this.apiKey,
|
|
174
174
|
"makeswift-site-api-key": this.apiKey,
|
|
175
|
-
"makeswift-runtime-version": "0.28.9
|
|
175
|
+
"makeswift-runtime-version": "0.28.9"
|
|
176
176
|
});
|
|
177
177
|
if (siteVersion?.token) {
|
|
178
178
|
requestUrl.searchParams.set("version", siteVersion.version);
|
|
@@ -28,7 +28,7 @@ async function manifestHandler(req, { apiKey, manifest }) {
|
|
|
28
28
|
return import_request_response.ApiResponse.json({ message: "Unauthorized" }, { status: 401 });
|
|
29
29
|
}
|
|
30
30
|
return import_request_response.ApiResponse.json({
|
|
31
|
-
version: "0.28.9
|
|
31
|
+
version: "0.28.9",
|
|
32
32
|
interactionMode: true,
|
|
33
33
|
clientSideNavigation: false,
|
|
34
34
|
elementFromPoint: false,
|
|
@@ -9,7 +9,7 @@ class MakeswiftGraphQLApiClient {
|
|
|
9
9
|
graphqlClient;
|
|
10
10
|
constructor({ endpoint }) {
|
|
11
11
|
this.graphqlClient = new GraphQLClient(endpoint, {
|
|
12
|
-
"makeswift-runtime-version": "0.28.9
|
|
12
|
+
"makeswift-runtime-version": "0.28.9"
|
|
13
13
|
});
|
|
14
14
|
}
|
|
15
15
|
async createTableRecord(tableId, columns) {
|
|
@@ -137,7 +137,7 @@ class MakeswiftRestAPIClient {
|
|
|
137
137
|
const requestHeaders = new Headers({
|
|
138
138
|
"x-api-key": this.apiKey,
|
|
139
139
|
"makeswift-site-api-key": this.apiKey,
|
|
140
|
-
"makeswift-runtime-version": "0.28.9
|
|
140
|
+
"makeswift-runtime-version": "0.28.9"
|
|
141
141
|
});
|
|
142
142
|
if (siteVersion?.token) {
|
|
143
143
|
requestUrl.searchParams.set("version", siteVersion.version);
|
|
@@ -8,7 +8,7 @@ async function manifestHandler(req, { apiKey, manifest }) {
|
|
|
8
8
|
return ApiResponse.json({ message: "Unauthorized" }, { status: 401 });
|
|
9
9
|
}
|
|
10
10
|
return ApiResponse.json({
|
|
11
|
-
version: "0.28.9
|
|
11
|
+
version: "0.28.9",
|
|
12
12
|
interactionMode: true,
|
|
13
13
|
clientSideNavigation: false,
|
|
14
14
|
elementFromPoint: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@makeswift/runtime",
|
|
3
|
-
"version": "0.28.9
|
|
3
|
+
"version": "0.28.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "makeswift/makeswift",
|
|
@@ -239,9 +239,9 @@
|
|
|
239
239
|
"use-sync-external-store": "^1.5.0",
|
|
240
240
|
"uuid": "^9.0.0",
|
|
241
241
|
"zod": "^3.21.4",
|
|
242
|
-
"@makeswift/controls": "0.1.21",
|
|
243
242
|
"@makeswift/next-plugin": "0.6.1",
|
|
244
|
-
"@makeswift/prop-controllers": "0.4.15"
|
|
243
|
+
"@makeswift/prop-controllers": "0.4.15",
|
|
244
|
+
"@makeswift/controls": "0.1.21"
|
|
245
245
|
},
|
|
246
246
|
"devDependencies": {
|
|
247
247
|
"@emotion/jest": "^11.11.0",
|