sst 2.1.3 → 2.1.4
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/cli/commands/plugins/kysely.js +3 -6
- package/constructs/Api.d.ts +1 -1
- package/package.json +3 -3
- package/sst.mjs +2 -5
- package/support/rds-migrator/index.mjs +21 -21
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Kysely } from "kysely";
|
|
2
2
|
import { DataApiDialect } from "kysely-data-api";
|
|
3
|
-
import
|
|
3
|
+
import { RDSData } from "@aws-sdk/client-rds-data";
|
|
4
4
|
import * as fs from "fs/promises";
|
|
5
5
|
import { DatabaseMetadata, EnumCollection, PostgresDialect, MysqlDialect, Serializer, Transformer, } from "kysely-codegen";
|
|
6
6
|
import { Context } from "../../../context/context.js";
|
|
7
7
|
import { useBus } from "../../../bus.js";
|
|
8
8
|
import { useProject } from "../../../project.js";
|
|
9
9
|
import { Logger } from "../../../logger.js";
|
|
10
|
-
import { useAWSCredentials, } from "../../../credentials.js";
|
|
10
|
+
import { useAWSClient, useAWSCredentials, } from "../../../credentials.js";
|
|
11
11
|
export const useKyselyTypeGenerator = Context.memo(async () => {
|
|
12
12
|
let databases = [];
|
|
13
13
|
const bus = useBus();
|
|
@@ -24,10 +24,7 @@ export const useKyselyTypeGenerator = Context.memo(async () => {
|
|
|
24
24
|
secretArn: db.secretArn,
|
|
25
25
|
resourceArn: db.clusterArn,
|
|
26
26
|
database: db.defaultDatabaseName,
|
|
27
|
-
client:
|
|
28
|
-
region: project.config.region,
|
|
29
|
-
credentials,
|
|
30
|
-
}),
|
|
27
|
+
client: useAWSClient(RDSData),
|
|
31
28
|
},
|
|
32
29
|
}),
|
|
33
30
|
});
|
package/constructs/Api.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import * as apigV2Cors from "./util/apiGatewayV2Cors.js";
|
|
|
15
15
|
import * as apigV2Domain from "./util/apiGatewayV2Domain.js";
|
|
16
16
|
import * as apigV2AccessLog from "./util/apiGatewayV2AccessLog.js";
|
|
17
17
|
declare const PayloadFormatVersions: readonly ["1.0", "2.0"];
|
|
18
|
-
export type ApiPayloadFormatVersion =
|
|
18
|
+
export type ApiPayloadFormatVersion = typeof PayloadFormatVersions[number];
|
|
19
19
|
export type ApiAuthorizer = ApiUserPoolAuthorizer | ApiJwtAuthorizer | ApiLambdaAuthorizer;
|
|
20
20
|
interface ApiBaseAuthorizer {
|
|
21
21
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sst",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"bin": {
|
|
5
5
|
"sst": "cli/sst.js"
|
|
6
6
|
},
|
|
@@ -76,9 +76,9 @@
|
|
|
76
76
|
"immer": "9",
|
|
77
77
|
"ink": "^3.2.0",
|
|
78
78
|
"ink-spinner": "^4.0.3",
|
|
79
|
-
"kysely": "^0.23.
|
|
79
|
+
"kysely": "^0.23.4",
|
|
80
80
|
"kysely-codegen": "^0.9.0",
|
|
81
|
-
"kysely-data-api": "^0.
|
|
81
|
+
"kysely-data-api": "^0.2.0",
|
|
82
82
|
"minimatch": "^6.1.6",
|
|
83
83
|
"openid-client": "^5.1.8",
|
|
84
84
|
"ora": "^6.1.2",
|
package/sst.mjs
CHANGED
|
@@ -6213,7 +6213,7 @@ __export(kysely_exports, {
|
|
|
6213
6213
|
});
|
|
6214
6214
|
import { Kysely } from "kysely";
|
|
6215
6215
|
import { DataApiDialect } from "kysely-data-api";
|
|
6216
|
-
import
|
|
6216
|
+
import { RDSData } from "@aws-sdk/client-rds-data";
|
|
6217
6217
|
import * as fs17 from "fs/promises";
|
|
6218
6218
|
import {
|
|
6219
6219
|
DatabaseMetadata,
|
|
@@ -6248,10 +6248,7 @@ var init_kysely = __esm({
|
|
|
6248
6248
|
secretArn: db.secretArn,
|
|
6249
6249
|
resourceArn: db.clusterArn,
|
|
6250
6250
|
database: db.defaultDatabaseName,
|
|
6251
|
-
client:
|
|
6252
|
-
region: project.config.region,
|
|
6253
|
-
credentials
|
|
6254
|
-
})
|
|
6251
|
+
client: useAWSClient(RDSData)
|
|
6255
6252
|
}
|
|
6256
6253
|
})
|
|
6257
6254
|
});
|