@robosystems/client 0.2.17 → 0.2.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robosystems/client",
3
- "version": "0.2.17",
3
+ "version": "0.2.18",
4
4
  "description": "TypeScript client library for RoboSystems Financial Knowledge Graph API",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -2049,6 +2049,26 @@ export type GraphInfo = {
2049
2049
  * Repository type if isRepository=true
2050
2050
  */
2051
2051
  repositoryType?: string | null;
2052
+ /**
2053
+ * Schemaextensions
2054
+ * List of schema extensions installed on this graph
2055
+ */
2056
+ schemaExtensions?: Array<string>;
2057
+ /**
2058
+ * Issubgraph
2059
+ * Whether this is a subgraph (vs a main graph)
2060
+ */
2061
+ isSubgraph?: boolean;
2062
+ /**
2063
+ * Parentgraphid
2064
+ * Parent graph ID if this is a subgraph
2065
+ */
2066
+ parentGraphId?: string | null;
2067
+ /**
2068
+ * Graphtype
2069
+ * Type of graph: generic, entity, or repository
2070
+ */
2071
+ graphType?: string;
2052
2072
  };
2053
2073
  /**
2054
2074
  * GraphLimitsResponse
package/sdk/types.gen.ts CHANGED
@@ -2116,6 +2116,26 @@ export type GraphInfo = {
2116
2116
  * Repository type if isRepository=true
2117
2117
  */
2118
2118
  repositoryType?: string | null;
2119
+ /**
2120
+ * Schemaextensions
2121
+ * List of schema extensions installed on this graph
2122
+ */
2123
+ schemaExtensions?: Array<string>;
2124
+ /**
2125
+ * Issubgraph
2126
+ * Whether this is a subgraph (vs a main graph)
2127
+ */
2128
+ isSubgraph?: boolean;
2129
+ /**
2130
+ * Parentgraphid
2131
+ * Parent graph ID if this is a subgraph
2132
+ */
2133
+ parentGraphId?: string | null;
2134
+ /**
2135
+ * Graphtype
2136
+ * Type of graph: generic, entity, or repository
2137
+ */
2138
+ graphType?: string;
2119
2139
  };
2120
2140
 
2121
2141
  /**
package/types.gen.d.ts CHANGED
@@ -2049,6 +2049,26 @@ export type GraphInfo = {
2049
2049
  * Repository type if isRepository=true
2050
2050
  */
2051
2051
  repositoryType?: string | null;
2052
+ /**
2053
+ * Schemaextensions
2054
+ * List of schema extensions installed on this graph
2055
+ */
2056
+ schemaExtensions?: Array<string>;
2057
+ /**
2058
+ * Issubgraph
2059
+ * Whether this is a subgraph (vs a main graph)
2060
+ */
2061
+ isSubgraph?: boolean;
2062
+ /**
2063
+ * Parentgraphid
2064
+ * Parent graph ID if this is a subgraph
2065
+ */
2066
+ parentGraphId?: string | null;
2067
+ /**
2068
+ * Graphtype
2069
+ * Type of graph: generic, entity, or repository
2070
+ */
2071
+ graphType?: string;
2052
2072
  };
2053
2073
  /**
2054
2074
  * GraphLimitsResponse
package/types.gen.ts CHANGED
@@ -2116,6 +2116,26 @@ export type GraphInfo = {
2116
2116
  * Repository type if isRepository=true
2117
2117
  */
2118
2118
  repositoryType?: string | null;
2119
+ /**
2120
+ * Schemaextensions
2121
+ * List of schema extensions installed on this graph
2122
+ */
2123
+ schemaExtensions?: Array<string>;
2124
+ /**
2125
+ * Issubgraph
2126
+ * Whether this is a subgraph (vs a main graph)
2127
+ */
2128
+ isSubgraph?: boolean;
2129
+ /**
2130
+ * Parentgraphid
2131
+ * Parent graph ID if this is a subgraph
2132
+ */
2133
+ parentGraphId?: string | null;
2134
+ /**
2135
+ * Graphtype
2136
+ * Type of graph: generic, entity, or repository
2137
+ */
2138
+ graphType?: string;
2119
2139
  };
2120
2140
 
2121
2141
  /**