@droz-js/sdk 0.3.8 → 0.3.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.3.8",
4
+ "version": "0.3.9",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": "./src/index.js",
@@ -419,6 +419,7 @@ export type Query = {
419
419
  amplifyConfig?: Maybe<Scalars['JSON']['output']>;
420
420
  app?: Maybe<Scalars['DRN']['output']>;
421
421
  authInfo?: Maybe<AuthInfo>;
422
+ canUnregisterAppInstance: Scalars['Boolean']['output'];
422
423
  countAppInstances: Scalars['Int']['output'];
423
424
  countCredentials: Scalars['Int']['output'];
424
425
  countLiveStateMachineConfigs: Scalars['Int']['output'];
@@ -449,6 +450,9 @@ export type Query = {
449
450
  listSystemRoles: Array<Role>;
450
451
  version?: Maybe<Scalars['String']['output']>;
451
452
  };
453
+ export type QueryCanUnregisterAppInstanceArgs = {
454
+ drn: Scalars['DRN']['input'];
455
+ };
452
456
  export type QueryGetAgentArgs = {
453
457
  id: Scalars['ID']['input'];
454
458
  };