@operato/scene-graphql 10.0.0-beta.65 → 10.0.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/dist/graphql-client.d.ts +24 -20
- package/dist/graphql-query-and-mutation.d.ts +24 -20
- package/dist/graphql-subscription.d.ts +24 -20
- package/package.json +5 -10
package/dist/graphql-client.d.ts
CHANGED
|
@@ -21,19 +21,21 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
21
21
|
fontSize: any;
|
|
22
22
|
__cache__: any;
|
|
23
23
|
created(): void;
|
|
24
|
-
added(parent:
|
|
25
|
-
removed(parent:
|
|
24
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
25
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
26
26
|
ready(): Promise<void>;
|
|
27
|
+
_readyInvoked: boolean;
|
|
28
|
+
invokeReady(): void | Promise<void>;
|
|
27
29
|
touch(): void;
|
|
28
|
-
clearCache(...attrs:
|
|
29
|
-
removeSelf(completely
|
|
30
|
+
clearCache(...attrs: string[]): void;
|
|
31
|
+
removeSelf(completely?: boolean): void;
|
|
30
32
|
resetAnimation(): void;
|
|
31
33
|
dispose(): void;
|
|
32
34
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
33
35
|
get disposed(): boolean;
|
|
34
36
|
isLayer(): boolean;
|
|
35
37
|
isGroup(): boolean;
|
|
36
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
38
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
37
39
|
isLine(): boolean;
|
|
38
40
|
isRoot(): boolean;
|
|
39
41
|
isRootModel(): boolean;
|
|
@@ -45,17 +47,17 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
45
47
|
isConnectable(): boolean;
|
|
46
48
|
isIdentifiable(): boolean;
|
|
47
49
|
isPositionable(): boolean;
|
|
48
|
-
replaceRefids(replaceMap:
|
|
49
|
-
get(property:
|
|
50
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
51
|
+
get(property: string): any;
|
|
50
52
|
set(props: any, propval?: any): any;
|
|
51
|
-
getState(property:
|
|
53
|
+
getState(property: string): any;
|
|
52
54
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
53
55
|
get model(): any;
|
|
54
56
|
get state(): import("@hatiolab/things-scene").State;
|
|
55
57
|
get refid(): any;
|
|
56
58
|
get hierarchy(): any;
|
|
57
|
-
get volatile():
|
|
58
|
-
_applyProps(target:
|
|
59
|
+
get volatile(): string[];
|
|
60
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
59
61
|
contains(x: number, y: number): boolean;
|
|
60
62
|
move(offset: {
|
|
61
63
|
x: number;
|
|
@@ -269,19 +271,21 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
269
271
|
fontSize: any;
|
|
270
272
|
__cache__: any;
|
|
271
273
|
created(): void;
|
|
272
|
-
added(parent:
|
|
273
|
-
removed(parent:
|
|
274
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
275
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
274
276
|
ready(): Promise<void>;
|
|
277
|
+
_readyInvoked: boolean;
|
|
278
|
+
invokeReady(): void | Promise<void>;
|
|
275
279
|
touch(): void;
|
|
276
|
-
clearCache(...attrs:
|
|
277
|
-
removeSelf(completely
|
|
280
|
+
clearCache(...attrs: string[]): void;
|
|
281
|
+
removeSelf(completely?: boolean): void;
|
|
278
282
|
resetAnimation(): void;
|
|
279
283
|
dispose(): void;
|
|
280
284
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
281
285
|
get disposed(): boolean;
|
|
282
286
|
isLayer(): boolean;
|
|
283
287
|
isGroup(): boolean;
|
|
284
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
288
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
285
289
|
isLine(): boolean;
|
|
286
290
|
isRoot(): boolean;
|
|
287
291
|
isRootModel(): boolean;
|
|
@@ -293,17 +297,17 @@ declare const GraphqlClient_base: (new (...args: any[]) => {
|
|
|
293
297
|
isConnectable(): boolean;
|
|
294
298
|
isIdentifiable(): boolean;
|
|
295
299
|
isPositionable(): boolean;
|
|
296
|
-
replaceRefids(replaceMap:
|
|
297
|
-
get(property:
|
|
300
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
301
|
+
get(property: string): any;
|
|
298
302
|
set(props: any, propval?: any): any;
|
|
299
|
-
getState(property:
|
|
303
|
+
getState(property: string): any;
|
|
300
304
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
301
305
|
get model(): any;
|
|
302
306
|
get state(): import("@hatiolab/things-scene").State;
|
|
303
307
|
get refid(): any;
|
|
304
308
|
get hierarchy(): any;
|
|
305
|
-
get volatile():
|
|
306
|
-
_applyProps(target:
|
|
309
|
+
get volatile(): string[];
|
|
310
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
307
311
|
move(offset: {
|
|
308
312
|
x: number;
|
|
309
313
|
y: number;
|
|
@@ -20,19 +20,21 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
20
20
|
fontSize: any;
|
|
21
21
|
__cache__: any;
|
|
22
22
|
created(): void;
|
|
23
|
-
added(parent:
|
|
24
|
-
removed(parent:
|
|
23
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
24
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
|
-
clearCache(...attrs:
|
|
28
|
-
removeSelf(completely
|
|
29
|
+
clearCache(...attrs: string[]): void;
|
|
30
|
+
removeSelf(completely?: boolean): void;
|
|
29
31
|
resetAnimation(): void;
|
|
30
32
|
dispose(): void;
|
|
31
33
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
32
34
|
get disposed(): boolean;
|
|
33
35
|
isLayer(): boolean;
|
|
34
36
|
isGroup(): boolean;
|
|
35
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
37
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
36
38
|
isLine(): boolean;
|
|
37
39
|
isRoot(): boolean;
|
|
38
40
|
isRootModel(): boolean;
|
|
@@ -44,17 +46,17 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
44
46
|
isConnectable(): boolean;
|
|
45
47
|
isIdentifiable(): boolean;
|
|
46
48
|
isPositionable(): boolean;
|
|
47
|
-
replaceRefids(replaceMap:
|
|
48
|
-
get(property:
|
|
49
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
50
|
+
get(property: string): any;
|
|
49
51
|
set(props: any, propval?: any): any;
|
|
50
|
-
getState(property:
|
|
52
|
+
getState(property: string): any;
|
|
51
53
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
52
54
|
get model(): any;
|
|
53
55
|
get state(): import("@hatiolab/things-scene").State;
|
|
54
56
|
get refid(): any;
|
|
55
57
|
get hierarchy(): any;
|
|
56
|
-
get volatile():
|
|
57
|
-
_applyProps(target:
|
|
58
|
+
get volatile(): string[];
|
|
59
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
58
60
|
contains(x: number, y: number): boolean;
|
|
59
61
|
move(offset: {
|
|
60
62
|
x: number;
|
|
@@ -268,19 +270,21 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
268
270
|
fontSize: any;
|
|
269
271
|
__cache__: any;
|
|
270
272
|
created(): void;
|
|
271
|
-
added(parent:
|
|
272
|
-
removed(parent:
|
|
273
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
274
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
|
-
clearCache(...attrs:
|
|
276
|
-
removeSelf(completely
|
|
279
|
+
clearCache(...attrs: string[]): void;
|
|
280
|
+
removeSelf(completely?: boolean): void;
|
|
277
281
|
resetAnimation(): void;
|
|
278
282
|
dispose(): void;
|
|
279
283
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
280
284
|
get disposed(): boolean;
|
|
281
285
|
isLayer(): boolean;
|
|
282
286
|
isGroup(): boolean;
|
|
283
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
287
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
284
288
|
isLine(): boolean;
|
|
285
289
|
isRoot(): boolean;
|
|
286
290
|
isRootModel(): boolean;
|
|
@@ -292,17 +296,17 @@ declare const GraphQLQuery_base: (new (...args: any[]) => {
|
|
|
292
296
|
isConnectable(): boolean;
|
|
293
297
|
isIdentifiable(): boolean;
|
|
294
298
|
isPositionable(): boolean;
|
|
295
|
-
replaceRefids(replaceMap:
|
|
296
|
-
get(property:
|
|
299
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
300
|
+
get(property: string): any;
|
|
297
301
|
set(props: any, propval?: any): any;
|
|
298
|
-
getState(property:
|
|
302
|
+
getState(property: string): any;
|
|
299
303
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
300
304
|
get model(): any;
|
|
301
305
|
get state(): import("@hatiolab/things-scene").State;
|
|
302
306
|
get refid(): any;
|
|
303
307
|
get hierarchy(): any;
|
|
304
|
-
get volatile():
|
|
305
|
-
_applyProps(target:
|
|
308
|
+
get volatile(): string[];
|
|
309
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
306
310
|
move(offset: {
|
|
307
311
|
x: number;
|
|
308
312
|
y: number;
|
|
@@ -20,19 +20,21 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
20
20
|
fontSize: any;
|
|
21
21
|
__cache__: any;
|
|
22
22
|
created(): void;
|
|
23
|
-
added(parent:
|
|
24
|
-
removed(parent:
|
|
23
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
24
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
25
25
|
ready(): Promise<void>;
|
|
26
|
+
_readyInvoked: boolean;
|
|
27
|
+
invokeReady(): void | Promise<void>;
|
|
26
28
|
touch(): void;
|
|
27
|
-
clearCache(...attrs:
|
|
28
|
-
removeSelf(completely
|
|
29
|
+
clearCache(...attrs: string[]): void;
|
|
30
|
+
removeSelf(completely?: boolean): void;
|
|
29
31
|
resetAnimation(): void;
|
|
30
32
|
dispose(): void;
|
|
31
33
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
32
34
|
get disposed(): boolean;
|
|
33
35
|
isLayer(): boolean;
|
|
34
36
|
isGroup(): boolean;
|
|
35
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
37
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
36
38
|
isLine(): boolean;
|
|
37
39
|
isRoot(): boolean;
|
|
38
40
|
isRootModel(): boolean;
|
|
@@ -44,17 +46,17 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
44
46
|
isConnectable(): boolean;
|
|
45
47
|
isIdentifiable(): boolean;
|
|
46
48
|
isPositionable(): boolean;
|
|
47
|
-
replaceRefids(replaceMap:
|
|
48
|
-
get(property:
|
|
49
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
50
|
+
get(property: string): any;
|
|
49
51
|
set(props: any, propval?: any): any;
|
|
50
|
-
getState(property:
|
|
52
|
+
getState(property: string): any;
|
|
51
53
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
52
54
|
get model(): any;
|
|
53
55
|
get state(): import("@hatiolab/things-scene").State;
|
|
54
56
|
get refid(): any;
|
|
55
57
|
get hierarchy(): any;
|
|
56
|
-
get volatile():
|
|
57
|
-
_applyProps(target:
|
|
58
|
+
get volatile(): string[];
|
|
59
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
58
60
|
contains(x: number, y: number): boolean;
|
|
59
61
|
move(offset: {
|
|
60
62
|
x: number;
|
|
@@ -268,19 +270,21 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
268
270
|
fontSize: any;
|
|
269
271
|
__cache__: any;
|
|
270
272
|
created(): void;
|
|
271
|
-
added(parent:
|
|
272
|
-
removed(parent:
|
|
273
|
+
added(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
274
|
+
removed(parent: import("@hatiolab/things-scene/dist-types/types/component.js").Container): void;
|
|
273
275
|
ready(): Promise<void>;
|
|
276
|
+
_readyInvoked: boolean;
|
|
277
|
+
invokeReady(): void | Promise<void>;
|
|
274
278
|
touch(): void;
|
|
275
|
-
clearCache(...attrs:
|
|
276
|
-
removeSelf(completely
|
|
279
|
+
clearCache(...attrs: string[]): void;
|
|
280
|
+
removeSelf(completely?: boolean): void;
|
|
277
281
|
resetAnimation(): void;
|
|
278
282
|
dispose(): void;
|
|
279
283
|
get nature(): import("@hatiolab/things-scene").ComponentNature;
|
|
280
284
|
get disposed(): boolean;
|
|
281
285
|
isLayer(): boolean;
|
|
282
286
|
isGroup(): boolean;
|
|
283
|
-
isContainer(): this is import("@hatiolab/things-scene").Container;
|
|
287
|
+
isContainer(): this is import("@hatiolab/things-scene/dist-types/types/component.js").Container;
|
|
284
288
|
isLine(): boolean;
|
|
285
289
|
isRoot(): boolean;
|
|
286
290
|
isRootModel(): boolean;
|
|
@@ -292,17 +296,17 @@ declare const GraphqlSubscription_base: (new (...args: any[]) => {
|
|
|
292
296
|
isConnectable(): boolean;
|
|
293
297
|
isIdentifiable(): boolean;
|
|
294
298
|
isPositionable(): boolean;
|
|
295
|
-
replaceRefids(replaceMap:
|
|
296
|
-
get(property:
|
|
299
|
+
replaceRefids(replaceMap: Record<string, string>): void;
|
|
300
|
+
get(property: string): any;
|
|
297
301
|
set(props: any, propval?: any): any;
|
|
298
|
-
getState(property:
|
|
302
|
+
getState(property: string): any;
|
|
299
303
|
setState(props: Partial<import("@hatiolab/things-scene").State> | string, propval?: any): any;
|
|
300
304
|
get model(): any;
|
|
301
305
|
get state(): import("@hatiolab/things-scene").State;
|
|
302
306
|
get refid(): any;
|
|
303
307
|
get hierarchy(): any;
|
|
304
|
-
get volatile():
|
|
305
|
-
_applyProps(target:
|
|
308
|
+
get volatile(): string[];
|
|
309
|
+
_applyProps(target: Record<string, any>, props: Record<string, any>, options: import("@hatiolab/things-scene/dist-types/components/component.js").ApplyPropsOptions): any;
|
|
306
310
|
move(offset: {
|
|
307
311
|
x: number;
|
|
308
312
|
y: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-graphql",
|
|
3
3
|
"description": "Graphql datasource component for things-scene",
|
|
4
|
-
"version": "10.0.0
|
|
4
|
+
"version": "10.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -18,24 +18,19 @@
|
|
|
18
18
|
"directory": "packages/graphql"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"serve": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"things-factory-dev\"",
|
|
22
|
-
"serve:dev": "npm run serve",
|
|
23
21
|
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
|
|
24
22
|
"build": "tsc",
|
|
25
23
|
"prepublishOnly": "tsc",
|
|
26
24
|
"lint": "eslint src/ && prettier \"src/**/*.ts\" --check",
|
|
27
|
-
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
28
|
-
"migration": "things-factory-migration"
|
|
25
|
+
"format": "eslint src/ --fix && prettier \"src/**/*.ts\" --write"
|
|
29
26
|
},
|
|
30
27
|
"dependencies": {
|
|
31
28
|
"@apollo/client": "^3.6.9",
|
|
32
|
-
"@hatiolab/things-scene": "^10.0.0
|
|
33
|
-
"@operato/graphql": "^10.0.0
|
|
29
|
+
"@hatiolab/things-scene": "^10.0.0",
|
|
30
|
+
"@operato/graphql": "^10.0.0"
|
|
34
31
|
},
|
|
35
32
|
"devDependencies": {
|
|
36
33
|
"@hatiolab/prettier-config": "^1.0.0",
|
|
37
|
-
"@things-factory/builder": "^10.0.0-zeta.1",
|
|
38
|
-
"@things-factory/operato-board": "^10.0.0-zeta.1",
|
|
39
34
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
40
35
|
"@typescript-eslint/parser": "^8.0.0",
|
|
41
36
|
"@web/dev-server": "^0.1.28",
|
|
@@ -61,5 +56,5 @@
|
|
|
61
56
|
"prettier --write"
|
|
62
57
|
]
|
|
63
58
|
},
|
|
64
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "22356adaad4df093f25fa74316c1e0c6effbef8e"
|
|
65
60
|
}
|