@webiny/api-websockets 6.0.0-alpha.1 → 6.0.0-alpha.2
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/graphql/utils.d.ts +1 -1
- package/package.json +18 -18
- package/registry/entity.d.ts +4 -4
package/graphql/utils.d.ts
CHANGED
|
@@ -3,5 +3,5 @@ export declare const emptyResolver: () => {};
|
|
|
3
3
|
interface ResolveCallable<T = any> {
|
|
4
4
|
(): Promise<T>;
|
|
5
5
|
}
|
|
6
|
-
export declare const resolve: <T = any>(fn: ResolveCallable<T>) => Promise<
|
|
6
|
+
export declare const resolve: <T = any>(fn: ResolveCallable<T>) => Promise<Response<T> | ErrorResponse>;
|
|
7
7
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webiny/api-websockets",
|
|
3
|
-
"version": "6.0.0-alpha.
|
|
3
|
+
"version": "6.0.0-alpha.2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,26 +12,26 @@
|
|
|
12
12
|
],
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@webiny/api": "6.0.0-alpha.
|
|
16
|
-
"@webiny/api-i18n": "6.0.0-alpha.
|
|
17
|
-
"@webiny/api-security": "6.0.0-alpha.
|
|
18
|
-
"@webiny/api-tenancy": "6.0.0-alpha.
|
|
19
|
-
"@webiny/aws-sdk": "6.0.0-alpha.
|
|
20
|
-
"@webiny/db-dynamodb": "6.0.0-alpha.
|
|
21
|
-
"@webiny/error": "6.0.0-alpha.
|
|
22
|
-
"@webiny/handler": "6.0.0-alpha.
|
|
23
|
-
"@webiny/handler-aws": "6.0.0-alpha.
|
|
24
|
-
"@webiny/plugins": "6.0.0-alpha.
|
|
25
|
-
"@webiny/utils": "6.0.0-alpha.
|
|
15
|
+
"@webiny/api": "6.0.0-alpha.2",
|
|
16
|
+
"@webiny/api-i18n": "6.0.0-alpha.2",
|
|
17
|
+
"@webiny/api-security": "6.0.0-alpha.2",
|
|
18
|
+
"@webiny/api-tenancy": "6.0.0-alpha.2",
|
|
19
|
+
"@webiny/aws-sdk": "6.0.0-alpha.2",
|
|
20
|
+
"@webiny/db-dynamodb": "6.0.0-alpha.2",
|
|
21
|
+
"@webiny/error": "6.0.0-alpha.2",
|
|
22
|
+
"@webiny/handler": "6.0.0-alpha.2",
|
|
23
|
+
"@webiny/handler-aws": "6.0.0-alpha.2",
|
|
24
|
+
"@webiny/plugins": "6.0.0-alpha.2",
|
|
25
|
+
"@webiny/utils": "6.0.0-alpha.2",
|
|
26
26
|
"type-fest": "4.14.0",
|
|
27
27
|
"zod": "3.23.8"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@webiny/api-headless-cms": "6.0.0-alpha.
|
|
31
|
-
"@webiny/api-wcp": "6.0.0-alpha.
|
|
32
|
-
"@webiny/handler-db": "6.0.0-alpha.
|
|
33
|
-
"@webiny/handler-graphql": "6.0.0-alpha.
|
|
34
|
-
"@webiny/project-utils": "6.0.0-alpha.
|
|
30
|
+
"@webiny/api-headless-cms": "6.0.0-alpha.2",
|
|
31
|
+
"@webiny/api-wcp": "6.0.0-alpha.2",
|
|
32
|
+
"@webiny/handler-db": "6.0.0-alpha.2",
|
|
33
|
+
"@webiny/handler-graphql": "6.0.0-alpha.2",
|
|
34
|
+
"@webiny/project-utils": "6.0.0-alpha.2",
|
|
35
35
|
"graphql": "15.9.0",
|
|
36
36
|
"rimraf": "6.0.1",
|
|
37
37
|
"typescript": "5.3.3"
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"build": "node ../cli/bin.js run build",
|
|
45
45
|
"watch": "node ../cli/bin.js run watch"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "7c9e8fbfd62a57ece5f880dbad6c864636b0355e"
|
|
48
48
|
}
|
package/registry/entity.d.ts
CHANGED
|
@@ -85,11 +85,11 @@ export declare const createEntity: (documentClient: DynamoDBDocument) => Entity<
|
|
|
85
85
|
GSI2_PK?: string | undefined;
|
|
86
86
|
GSI2_SK?: string | undefined;
|
|
87
87
|
TYPE?: string | undefined;
|
|
88
|
+
PK: any;
|
|
89
|
+
SK: any;
|
|
88
90
|
created: string;
|
|
89
91
|
modified: string;
|
|
90
92
|
entity: string;
|
|
91
|
-
PK: any;
|
|
92
|
-
SK: any;
|
|
93
93
|
}, {
|
|
94
94
|
data?: any;
|
|
95
95
|
GSI1_PK?: string | undefined;
|
|
@@ -97,11 +97,11 @@ export declare const createEntity: (documentClient: DynamoDBDocument) => Entity<
|
|
|
97
97
|
GSI2_PK?: string | undefined;
|
|
98
98
|
GSI2_SK?: string | undefined;
|
|
99
99
|
TYPE?: string | undefined;
|
|
100
|
+
PK: any;
|
|
101
|
+
SK: any;
|
|
100
102
|
created: string;
|
|
101
103
|
modified: string;
|
|
102
104
|
entity: string;
|
|
103
|
-
PK: any;
|
|
104
|
-
SK: any;
|
|
105
105
|
}, {
|
|
106
106
|
PK: any;
|
|
107
107
|
SK: any;
|