@operato/scene-graphql 1.3.14 → 1.4.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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.4.0](https://github.com/things-scene/operato-scene/compare/v1.3.29...v1.4.0) (2025-01-11)
7
+
8
+ **Note:** Version bump only for package @operato/scene-graphql
9
+
10
+
11
+
12
+
13
+
6
14
  ## [1.3.14](https://github.com/things-scene/operato-scene/compare/v1.3.13...v1.3.14) (2024-02-14)
7
15
 
8
16
  **Note:** Version bump only for package @operato/scene-graphql
@@ -2,7 +2,7 @@ import { ApolloClient, NormalizedCacheObject } from '@apollo/client/core';
2
2
  import { ComponentNature, Shape } from '@hatiolab/things-scene';
3
3
  declare const GraphqlClient_base: (new (...args: any[]) => {
4
4
  isDataSource(): boolean;
5
- _convertDataFormat(data: any, format: string): any;
5
+ _convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
6
6
  }) & typeof Shape;
7
7
  export default class GraphqlClient extends GraphqlClient_base {
8
8
  private static _image;
@@ -1,7 +1,7 @@
1
1
  import { ComponentNature, Properties, Shape } from '@hatiolab/things-scene';
2
2
  declare const GraphQLQuery_base: (new (...args: any[]) => {
3
3
  isDataSource(): boolean;
4
- _convertDataFormat(data: any, format: string): any;
4
+ _convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
5
5
  }) & typeof Shape;
6
6
  declare class GraphQLQuery extends GraphQLQuery_base {
7
7
  private _repeatTimer?;
@@ -1,7 +1,7 @@
1
1
  import { ComponentNature, Shape } from '@hatiolab/things-scene';
2
2
  declare const GraphqlSubscription_base: (new (...args: any[]) => {
3
3
  isDataSource(): boolean;
4
- _convertDataFormat(data: any, format: string): any;
4
+ _convertDataFormat(data: any, format: "json" | "text" | "jsonp" | string): any;
5
5
  }) & typeof Shape;
6
6
  export default class GraphqlSubscription extends GraphqlSubscription_base {
7
7
  private static _image;
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": "1.3.14",
4
+ "version": "1.4.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
7
7
  "author": "heartyoh",
@@ -60,5 +60,5 @@
60
60
  "prettier --write"
61
61
  ]
62
62
  },
63
- "gitHead": "4bcb3cf4efb2f99d89d9219246be65055c78b4c3"
63
+ "gitHead": "2644777dcc5096929f04c2fa0ded9185b1fc32cc"
64
64
  }