@squidcloud/backend 1.0.282 → 1.0.283
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.
|
@@ -98,7 +98,7 @@ export declare function secureGraphQL(integrationId: IntegrationId): ActionMetho
|
|
|
98
98
|
* The function can accept any parameter that can be serialized to JSON and return any parameter that can be serialized
|
|
99
99
|
* to JSON.
|
|
100
100
|
*
|
|
101
|
-
* Once the function is exposed, it can be called from the Squid
|
|
101
|
+
* Once the function is exposed, it can be called from the Squid SDK using the `executeFunction` method.
|
|
102
102
|
* To read more about exposing an executable, see the
|
|
103
103
|
* {@link https://docs.squid.cloud/docs/development-tools/backend/executables documentation}.
|
|
104
104
|
*/
|
|
@@ -10,7 +10,7 @@ export declare class SquidService {
|
|
|
10
10
|
readonly region: SquidRegion;
|
|
11
11
|
private readonly config;
|
|
12
12
|
constructor();
|
|
13
|
-
/** The list of your application's secrets as defined in the Squid
|
|
13
|
+
/** The list of your application's secrets as defined in the Squid Console. */
|
|
14
14
|
get secrets(): Record<SecretKey, SecretValue>;
|
|
15
15
|
/**
|
|
16
16
|
* The context object for the current request. This object contains information about the current request, such as
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@squidcloud/backend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.283",
|
|
4
4
|
"description": "Squid Cloud's backend SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/backend/src/index.d.ts",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"graphql": "^16.9.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@squidcloud/client": "^1.0.
|
|
29
|
+
"@squidcloud/client": "^1.0.283"
|
|
30
30
|
}
|
|
31
31
|
}
|