@awsless/awsless 0.0.636 → 0.0.638
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/bin.js +28 -5
- package/dist/build-json-schema.js +21 -1
- package/dist/prebuild/icon/bundle.zip +0 -0
- package/dist/prebuild/image/bundle.zip +0 -0
- package/dist/prebuild/rpc/HASH +1 -1
- package/dist/prebuild/rpc/bundle.zip +0 -0
- package/dist/stack.json +1 -1
- package/dist/stack.stage.json +1 -1
- package/package.json +15 -15
package/dist/bin.js
CHANGED
|
@@ -1656,7 +1656,27 @@ var RpcDefaultSchema = z24.record(
|
|
|
1656
1656
|
timeout: TimeoutSchema2.default("1 minutes")
|
|
1657
1657
|
})
|
|
1658
1658
|
).describe(`Define the global RPC API's.`).optional();
|
|
1659
|
-
var RpcSchema = z24.record(
|
|
1659
|
+
var RpcSchema = z24.record(
|
|
1660
|
+
ResourceIdSchema,
|
|
1661
|
+
z24.record(
|
|
1662
|
+
z24.string(),
|
|
1663
|
+
z24.union([
|
|
1664
|
+
FunctionSchema.transform((f) => ({
|
|
1665
|
+
function: f,
|
|
1666
|
+
lock: false
|
|
1667
|
+
})),
|
|
1668
|
+
z24.object({
|
|
1669
|
+
function: FunctionSchema.describe("The RPC function to execute."),
|
|
1670
|
+
lock: z24.boolean().describe(
|
|
1671
|
+
[
|
|
1672
|
+
"Specify if the function should be locked on the `lockKey` returned from the auth function.",
|
|
1673
|
+
"An example would be returning the user ID as `lockKey`."
|
|
1674
|
+
].join("\n")
|
|
1675
|
+
)
|
|
1676
|
+
})
|
|
1677
|
+
])
|
|
1678
|
+
).describe("The queries for your global RPC API.")
|
|
1679
|
+
).describe("Define the schema in your stack for your global RPC API.").optional();
|
|
1660
1680
|
|
|
1661
1681
|
// src/feature/instance/schema.ts
|
|
1662
1682
|
import { days as days4, toDays as toDays2 } from "@awsless/duration";
|
|
@@ -5047,8 +5067,8 @@ var rpcFeature = defineFeature({
|
|
|
5047
5067
|
const schema = new TypeObject(2);
|
|
5048
5068
|
for (const stack of ctx.stackConfigs) {
|
|
5049
5069
|
for (const [name, props] of Object.entries(stack.rpc?.[id] ?? {})) {
|
|
5050
|
-
if ("file" in props.code) {
|
|
5051
|
-
const relFile = relative6(directories.types, props.code.file);
|
|
5070
|
+
if ("file" in props.function.code) {
|
|
5071
|
+
const relFile = relative6(directories.types, props.function.code.file);
|
|
5052
5072
|
const varName = camelCase6(`${id}-${stack.name}-${name}`);
|
|
5053
5073
|
types2.addImport(varName, relFile);
|
|
5054
5074
|
schema.addType(name, `Handle<typeof ${varName}>`);
|
|
@@ -5077,7 +5097,7 @@ var rpcFeature = defineFeature({
|
|
|
5077
5097
|
} else {
|
|
5078
5098
|
list3.add(name);
|
|
5079
5099
|
}
|
|
5080
|
-
const timeout = toSeconds6(props.timeout ?? ctx.appConfig.defaults.function.timeout);
|
|
5100
|
+
const timeout = toSeconds6(props.function.timeout ?? ctx.appConfig.defaults.function.timeout);
|
|
5081
5101
|
const maxTimeout = toSeconds6(ctx.appConfig.defaults.rpc[id].timeout) * 0.8;
|
|
5082
5102
|
if (timeout > maxTimeout) {
|
|
5083
5103
|
throw new FileError(
|
|
@@ -5217,7 +5237,7 @@ var rpcFeature = defineFeature({
|
|
|
5217
5237
|
const queryGroup = new Group13(group, "query", name);
|
|
5218
5238
|
const entryId = kebabCase6(`${id}-${shortId(name)}`);
|
|
5219
5239
|
createLambdaFunction(queryGroup, ctx, `rpc`, entryId, {
|
|
5220
|
-
...props,
|
|
5240
|
+
...props.function,
|
|
5221
5241
|
description: `${id} ${name}`
|
|
5222
5242
|
});
|
|
5223
5243
|
new aws14.dynamodb.TableItem(queryGroup, "query", {
|
|
@@ -5228,6 +5248,9 @@ var rpcFeature = defineFeature({
|
|
|
5228
5248
|
query: {
|
|
5229
5249
|
S: name
|
|
5230
5250
|
},
|
|
5251
|
+
lock: {
|
|
5252
|
+
BOOL: props.lock
|
|
5253
|
+
},
|
|
5231
5254
|
function: {
|
|
5232
5255
|
S: formatLocalResourceName({
|
|
5233
5256
|
appName: ctx.app.name,
|
|
@@ -718,7 +718,27 @@ var RpcDefaultSchema = z20.record(
|
|
|
718
718
|
timeout: TimeoutSchema2.default("1 minutes")
|
|
719
719
|
})
|
|
720
720
|
).describe(`Define the global RPC API's.`).optional();
|
|
721
|
-
var RpcSchema = z20.record(
|
|
721
|
+
var RpcSchema = z20.record(
|
|
722
|
+
ResourceIdSchema,
|
|
723
|
+
z20.record(
|
|
724
|
+
z20.string(),
|
|
725
|
+
z20.union([
|
|
726
|
+
FunctionSchema.transform((f) => ({
|
|
727
|
+
function: f,
|
|
728
|
+
lock: false
|
|
729
|
+
})),
|
|
730
|
+
z20.object({
|
|
731
|
+
function: FunctionSchema.describe("The RPC function to execute."),
|
|
732
|
+
lock: z20.boolean().describe(
|
|
733
|
+
[
|
|
734
|
+
"Specify if the function should be locked on the `lockKey` returned from the auth function.",
|
|
735
|
+
"An example would be returning the user ID as `lockKey`."
|
|
736
|
+
].join("\n")
|
|
737
|
+
)
|
|
738
|
+
})
|
|
739
|
+
])
|
|
740
|
+
).describe("The queries for your global RPC API.")
|
|
741
|
+
).describe("Define the schema in your stack for your global RPC API.").optional();
|
|
722
742
|
|
|
723
743
|
// src/feature/instance/schema.ts
|
|
724
744
|
import { days as days4, toDays as toDays2 } from "@awsless/duration";
|
|
Binary file
|
|
Binary file
|
package/dist/prebuild/rpc/HASH
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e88dbfaefba22668be356305b684c743e037b04a
|
|
Binary file
|