@droz-js/sdk 0.9.8 → 0.9.9

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@droz-js/sdk",
3
3
  "description": "Droz SDK",
4
- "version": "0.9.8",
4
+ "version": "0.9.9",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -122,6 +122,12 @@ export type Scalars = {
122
122
  output: void;
123
123
  };
124
124
  };
125
+ export type AdminAgent = {
126
+ email: Scalars['EmailAddress']['output'];
127
+ id: Scalars['ID']['output'];
128
+ name: Scalars['String']['output'];
129
+ picture?: Maybe<Scalars['String']['output']>;
130
+ };
125
131
  export type AgentInfo = {
126
132
  id: Scalars['ID']['output'];
127
133
  name: Scalars['String']['output'];
@@ -357,6 +363,7 @@ export type Query = {
357
363
  getFederationMetadata: Scalars['String']['output'];
358
364
  getGlobalParameter?: Maybe<Parameter>;
359
365
  getHttpEndpoint?: Maybe<Scalars['String']['output']>;
366
+ getMe?: Maybe<AdminAgent>;
360
367
  getTenant?: Maybe<Tenant>;
361
368
  getTenantParameter?: Maybe<Parameter>;
362
369
  listAccountParameters?: Maybe<Array<Parameter>>;