sst 2.8.4 → 2.8.6
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/connect.js +2 -2
- package/cli/commands/plugins/kysely.js +20 -37
- package/cli/commands/plugins/pothos.js +1 -0
- package/constructs/Api.d.ts +7 -0
- package/constructs/Api.js +2 -0
- package/constructs/NextjsSite.js +1 -1
- package/package.json +3 -3
- package/pothos.d.ts +2 -3
- package/pothos.js +3 -0
- package/runtime/handlers/dotnet.js +3 -2
- package/runtime/handlers.d.ts +1 -0
- package/runtime/workers.js +1 -0
- package/sst.mjs +29 -41
- package/support/base-site-archiver.mjs +1 -1
- package/support/rds-migrator/index.mjs +15 -15
- package/scrap.d.ts +0 -1
- package/scrap.js +0 -58
package/scrap.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/scrap.js
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
class vehicle {
|
|
2
|
-
#wheels;
|
|
3
|
-
#seats;
|
|
4
|
-
get wheels() {
|
|
5
|
-
return this.#wheels;
|
|
6
|
-
}
|
|
7
|
-
get seats() {
|
|
8
|
-
return this.#seats;
|
|
9
|
-
}
|
|
10
|
-
constructor(wheels, seats) {
|
|
11
|
-
this.#wheels = wheels;
|
|
12
|
-
this.#seats = seats;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
class driftable {
|
|
16
|
-
#swervefactor;
|
|
17
|
-
get swervefactor() {
|
|
18
|
-
return this.#swervefactor;
|
|
19
|
-
}
|
|
20
|
-
constructor(swervefactor) {
|
|
21
|
-
this.#swervefactor = swervefactor;
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
class car extends vehicle {
|
|
25
|
-
constructor() {
|
|
26
|
-
super(4, 5);
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
const mycar = new car();
|
|
30
|
-
mycar.seats;
|
|
31
|
-
mycar.wheels;
|
|
32
|
-
function createvehicle(wheels, seats) {
|
|
33
|
-
return {
|
|
34
|
-
get wheels() {
|
|
35
|
-
return wheels;
|
|
36
|
-
},
|
|
37
|
-
get seats() {
|
|
38
|
-
return seats;
|
|
39
|
-
},
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
function createdriftable(swervefactor) {
|
|
43
|
-
return {
|
|
44
|
-
get swervefactor() {
|
|
45
|
-
return swervefactor;
|
|
46
|
-
},
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
|
-
function createcar() {
|
|
50
|
-
const vehicle = createvehicle(4, 4);
|
|
51
|
-
const driftable = createdriftable(0.5);
|
|
52
|
-
return {
|
|
53
|
-
...vehicle,
|
|
54
|
-
...driftable,
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
const functionalcar = createcar();
|
|
58
|
-
export {};
|