@webiny/api 5.40.5-beta.0 → 5.41.0-dbt.0
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/ServiceDiscovery.d.ts +1 -1
- package/package.json +7 -7
- package/types.d.ts +3 -3
package/ServiceDiscovery.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DynamoDBDocument } from "@webiny/aws-sdk/client-dynamodb";
|
|
2
2
|
import { GenericRecord } from "./types";
|
|
3
|
-
|
|
3
|
+
type Manifest = GenericRecord<string>;
|
|
4
4
|
export declare class ServiceDiscovery {
|
|
5
5
|
static setDocumentClient(client: DynamoDBDocument): void;
|
|
6
6
|
static load(): Promise<Manifest | undefined>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.41.0-dbt.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,19 +13,19 @@
|
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@babel/runtime": "7.24.1",
|
|
16
|
-
"@webiny/aws-sdk": "5.
|
|
17
|
-
"@webiny/plugins": "5.
|
|
16
|
+
"@webiny/aws-sdk": "5.41.0-dbt.0",
|
|
17
|
+
"@webiny/plugins": "5.41.0-dbt.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@babel/cli": "7.24.1",
|
|
21
21
|
"@babel/core": "7.24.3",
|
|
22
22
|
"@babel/preset-env": "7.24.3",
|
|
23
23
|
"@babel/preset-typescript": "7.24.1",
|
|
24
|
-
"@webiny/cli": "5.
|
|
25
|
-
"@webiny/project-utils": "5.
|
|
24
|
+
"@webiny/cli": "5.41.0-dbt.0",
|
|
25
|
+
"@webiny/project-utils": "5.41.0-dbt.0",
|
|
26
26
|
"rimraf": "5.0.5",
|
|
27
27
|
"ttypescript": "1.5.15",
|
|
28
|
-
"typescript": "4.
|
|
28
|
+
"typescript": "4.9.5"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"build": "yarn webiny run build",
|
|
36
36
|
"watch": "yarn webiny run watch"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "bbaec4dd1685579548c08bbde386aee5d96b80f8"
|
|
39
39
|
}
|
package/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { PluginsContainer } from "@webiny/plugins";
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
2
|
+
export type GenericRecordKey = string | number | symbol;
|
|
3
|
+
export type GenericRecord<K extends GenericRecordKey = GenericRecordKey, V = any> = Record<K, V>;
|
|
4
|
+
export type BenchmarkRuns = GenericRecord<string, number>;
|
|
5
5
|
export interface BenchmarkMeasurement {
|
|
6
6
|
name: string;
|
|
7
7
|
category: string;
|