@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 +1 -1
- package/src/sdks/nucleus.d.ts +4 -0
package/package.json
CHANGED
package/src/sdks/nucleus.d.ts
CHANGED
|
@@ -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
|
};
|