@arrowsphere/api-client 3.55.0-rc.fdi.4 → 3.55.0-rc.fdi.5
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.
|
@@ -62,6 +62,7 @@ class AbstractGraphQLClient extends AbstractHttpClient_1.AbstractHttpClient {
|
|
|
62
62
|
}
|
|
63
63
|
async request(query) {
|
|
64
64
|
if (this.isLogging) {
|
|
65
|
+
console.info('GRAPHQL - Instance : ', this.getClientInstance());
|
|
65
66
|
console.info('GRAPHQL - Query : ', query);
|
|
66
67
|
}
|
|
67
68
|
const response = await this.getClientInstance().request(query);
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { Merge, Schema } from 'type-fest';
|
|
2
2
|
import { AccountAttributeType } from './accountGraphQLTypes';
|
|
3
3
|
import { AccountAttributeSchema } from './accountGraphQLSchemas';
|
|
4
|
-
export declare type GetAccountQuery =
|
|
4
|
+
export declare type GetAccountQuery = {
|
|
5
|
+
getUsers?: GetAccountQueryRequest;
|
|
6
|
+
};
|
|
7
|
+
export declare type GetAccountQueryRequest = Merge<{
|
|
5
8
|
__args: QueryAccountArgument;
|
|
6
9
|
}, AccountAttributeSchema>;
|
|
7
10
|
export declare type QueryAccountArgument = {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/ArrowSphere/nodejs-api-client.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "3.55.0-rc.fdi.
|
|
7
|
+
"version": "3.55.0-rc.fdi.5",
|
|
8
8
|
"description": "Node.js client for ArrowSphere's public API",
|
|
9
9
|
"main": "build/index.js",
|
|
10
10
|
"types": "build/index.d.ts",
|