@adminide-stack/extension-api 2.0.1-alpha.0 → 2.0.1-alpha.2
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.
|
@@ -134,6 +134,16 @@ export declare type IContributionAction = {
|
|
|
134
134
|
radio?: Maybe<Scalars['Boolean']>;
|
|
135
135
|
run?: Maybe<IContributionActionRun>;
|
|
136
136
|
};
|
|
137
|
+
export declare type IContributionActionInput = {
|
|
138
|
+
id?: Maybe<Scalars['String']>;
|
|
139
|
+
label?: Maybe<Scalars['String']>;
|
|
140
|
+
tooltip?: Maybe<Scalars['String']>;
|
|
141
|
+
class?: Maybe<Scalars['String']>;
|
|
142
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
143
|
+
checked?: Maybe<Scalars['Boolean']>;
|
|
144
|
+
radio?: Maybe<Scalars['Boolean']>;
|
|
145
|
+
run?: Maybe<IContributionActionRunInput>;
|
|
146
|
+
};
|
|
137
147
|
export declare type IContributionActionItem = {
|
|
138
148
|
__typename?: 'ContributionActionItem';
|
|
139
149
|
label?: Maybe<Scalars['String']>;
|
|
@@ -145,21 +155,11 @@ export declare type IContributionActionRun = {
|
|
|
145
155
|
document?: Maybe<Scalars['AnyObject']>;
|
|
146
156
|
variables?: Maybe<Scalars['AnyObject']>;
|
|
147
157
|
};
|
|
148
|
-
export declare type
|
|
158
|
+
export declare type IContributionActionRunInput = {
|
|
149
159
|
type?: Maybe<IGraphqlCallType>;
|
|
150
160
|
document?: Maybe<Scalars['AnyObject']>;
|
|
151
161
|
variables?: Maybe<Scalars['AnyObject']>;
|
|
152
162
|
};
|
|
153
|
-
export declare type IContributionAction_Input = {
|
|
154
|
-
id?: Maybe<Scalars['String']>;
|
|
155
|
-
label?: Maybe<Scalars['String']>;
|
|
156
|
-
tooltip?: Maybe<Scalars['String']>;
|
|
157
|
-
class?: Maybe<Scalars['String']>;
|
|
158
|
-
enabled?: Maybe<Scalars['Boolean']>;
|
|
159
|
-
checked?: Maybe<Scalars['Boolean']>;
|
|
160
|
-
radio?: Maybe<Scalars['Boolean']>;
|
|
161
|
-
run?: Maybe<IContributionActionRun_Input>;
|
|
162
|
-
};
|
|
163
163
|
export declare type IContributionActions = {
|
|
164
164
|
__typename?: 'ContributionActions';
|
|
165
165
|
id?: Maybe<Scalars['String']>;
|
|
@@ -1149,7 +1149,7 @@ export declare type IMenuItemInput = {
|
|
|
1149
1149
|
id?: Maybe<Scalars['String']>;
|
|
1150
1150
|
label?: Maybe<Scalars['String']>;
|
|
1151
1151
|
enabled?: Maybe<Scalars['Boolean']>;
|
|
1152
|
-
run?: Maybe<
|
|
1152
|
+
run?: Maybe<IContributionActionRunInput>;
|
|
1153
1153
|
};
|
|
1154
1154
|
export declare type IMenus = {
|
|
1155
1155
|
__typename?: 'Menus';
|
|
@@ -1175,7 +1175,7 @@ export declare type IMessageLink = {
|
|
|
1175
1175
|
offset?: Maybe<Scalars['Int']>;
|
|
1176
1176
|
length?: Maybe<Scalars['Int']>;
|
|
1177
1177
|
};
|
|
1178
|
-
export declare type
|
|
1178
|
+
export declare type IMessageLinkInput = {
|
|
1179
1179
|
name?: Maybe<Scalars['String']>;
|
|
1180
1180
|
href?: Maybe<Scalars['String']>;
|
|
1181
1181
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -1243,7 +1243,7 @@ export declare type IMutationActivateArgs = {
|
|
|
1243
1243
|
request: IIActivationRequest;
|
|
1244
1244
|
};
|
|
1245
1245
|
export declare type IMutationAddNotificationArgs = {
|
|
1246
|
-
notification?: Maybe<
|
|
1246
|
+
notification?: Maybe<INotificationInput>;
|
|
1247
1247
|
};
|
|
1248
1248
|
export declare type IMutationCloseNotificationArgs = {
|
|
1249
1249
|
index?: Maybe<Scalars['Int']>;
|
|
@@ -1277,7 +1277,7 @@ export declare type IMutationDocumentSymbolDefinitionArgs = {
|
|
|
1277
1277
|
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1278
1278
|
};
|
|
1279
1279
|
export declare type IMutationHandlerArgs = {
|
|
1280
|
-
arg?: Maybe<
|
|
1280
|
+
arg?: Maybe<IContributionActionRunInput>;
|
|
1281
1281
|
};
|
|
1282
1282
|
export declare type IMutationHoverProviderDefinitionArgs = {
|
|
1283
1283
|
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
@@ -1286,22 +1286,22 @@ export declare type IMutationInstallArgs = {
|
|
|
1286
1286
|
vsix: Scalars['String'];
|
|
1287
1287
|
};
|
|
1288
1288
|
export declare type IMutationNotifyArgs = {
|
|
1289
|
-
notification?: Maybe<
|
|
1289
|
+
notification?: Maybe<INotificationInput>;
|
|
1290
1290
|
};
|
|
1291
1291
|
export declare type IMutationNotifyErrorArgs = {
|
|
1292
|
-
message?: Maybe<Array<Maybe<
|
|
1292
|
+
message?: Maybe<Array<Maybe<INotificationMessageInput>>>;
|
|
1293
1293
|
};
|
|
1294
1294
|
export declare type IMutationNotifyInfoArgs = {
|
|
1295
|
-
message?: Maybe<Array<Maybe<
|
|
1295
|
+
message?: Maybe<Array<Maybe<INotificationMessageInput>>>;
|
|
1296
1296
|
};
|
|
1297
1297
|
export declare type IMutationNotifyPromptArgs = {
|
|
1298
1298
|
severity?: Maybe<INotificationSeverity>;
|
|
1299
1299
|
message?: Maybe<Scalars['String']>;
|
|
1300
|
-
choices?: Maybe<Array<Maybe<
|
|
1301
|
-
options?: Maybe<
|
|
1300
|
+
choices?: Maybe<Array<Maybe<IPromptChoiceInput>>>;
|
|
1301
|
+
options?: Maybe<IPromptOptionsInput>;
|
|
1302
1302
|
};
|
|
1303
1303
|
export declare type IMutationNotifyWarnArgs = {
|
|
1304
|
-
message?: Maybe<Array<Maybe<
|
|
1304
|
+
message?: Maybe<Array<Maybe<INotificationMessageInput>>>;
|
|
1305
1305
|
};
|
|
1306
1306
|
export declare type IMutationOpenLanguageDocumentArgs = {
|
|
1307
1307
|
params?: Maybe<IOpenDocumentParamsInput>;
|
|
@@ -1325,7 +1325,7 @@ export declare type IMutationRenameDefinitionArgs = {
|
|
|
1325
1325
|
params?: Maybe<ITextDocumentPositionParamsInput>;
|
|
1326
1326
|
};
|
|
1327
1327
|
export declare type IMutationRunMenuActionArgs = {
|
|
1328
|
-
argument?: Maybe<
|
|
1328
|
+
argument?: Maybe<IContributionActionRunInput>;
|
|
1329
1329
|
};
|
|
1330
1330
|
export declare type IMutationShowContextMenuArgs = {
|
|
1331
1331
|
delegate?: Maybe<IContextMenuInput>;
|
|
@@ -1390,9 +1390,9 @@ export declare type INotificationActions = {
|
|
|
1390
1390
|
*/
|
|
1391
1391
|
secondary?: Maybe<Array<Maybe<IContributionAction>>>;
|
|
1392
1392
|
};
|
|
1393
|
-
export declare type
|
|
1394
|
-
primary?: Maybe<Array<Maybe<
|
|
1395
|
-
secondary?: Maybe<Array<Maybe<
|
|
1393
|
+
export declare type INotificationActionsInput = {
|
|
1394
|
+
primary?: Maybe<Array<Maybe<IContributionActionInput>>>;
|
|
1395
|
+
secondary?: Maybe<Array<Maybe<IContributionActionInput>>>;
|
|
1396
1396
|
};
|
|
1397
1397
|
export declare type INotificationChangeEvent = {
|
|
1398
1398
|
__typename?: 'NotificationChangeEvent';
|
|
@@ -1408,6 +1408,13 @@ export declare enum INotificationChangeType {
|
|
|
1408
1408
|
Change = "CHANGE",
|
|
1409
1409
|
Remove = "REMOVE"
|
|
1410
1410
|
}
|
|
1411
|
+
export declare type INotificationInput = {
|
|
1412
|
+
severity?: Maybe<INotificationSeverity>;
|
|
1413
|
+
message?: Maybe<INotificationMessageInput>;
|
|
1414
|
+
source?: Maybe<Scalars['String']>;
|
|
1415
|
+
actions?: Maybe<INotificationActionsInput>;
|
|
1416
|
+
sticky?: Maybe<Scalars['Boolean']>;
|
|
1417
|
+
};
|
|
1411
1418
|
export declare type INotificationMessage = {
|
|
1412
1419
|
__typename?: 'NotificationMessage';
|
|
1413
1420
|
raw?: Maybe<Scalars['String']>;
|
|
@@ -1415,11 +1422,11 @@ export declare type INotificationMessage = {
|
|
|
1415
1422
|
value?: Maybe<Scalars['String']>;
|
|
1416
1423
|
links?: Maybe<Array<Maybe<IMessageLink>>>;
|
|
1417
1424
|
};
|
|
1418
|
-
export declare type
|
|
1425
|
+
export declare type INotificationMessageInput = {
|
|
1419
1426
|
raw?: Maybe<Scalars['String']>;
|
|
1420
|
-
original?: Maybe<
|
|
1427
|
+
original?: Maybe<INotificationMessageInput>;
|
|
1421
1428
|
value?: Maybe<Scalars['String']>;
|
|
1422
|
-
links?: Maybe<Array<Maybe<
|
|
1429
|
+
links?: Maybe<Array<Maybe<IMessageLinkInput>>>;
|
|
1423
1430
|
};
|
|
1424
1431
|
export declare enum INotificationSeverity {
|
|
1425
1432
|
Ignore = "Ignore",
|
|
@@ -1460,13 +1467,6 @@ export declare type INotificationViewItemProgressState = {
|
|
|
1460
1467
|
/** Indicate that the long running operation is done. */
|
|
1461
1468
|
done?: Maybe<Scalars['Boolean']>;
|
|
1462
1469
|
};
|
|
1463
|
-
export declare type INotification_Input = {
|
|
1464
|
-
severity?: Maybe<INotificationSeverity>;
|
|
1465
|
-
message?: Maybe<INotificationMessage_Input>;
|
|
1466
|
-
source?: Maybe<Scalars['String']>;
|
|
1467
|
-
actions?: Maybe<INotificationActions_Input>;
|
|
1468
|
-
sticky?: Maybe<Scalars['Boolean']>;
|
|
1469
|
-
};
|
|
1470
1470
|
export declare type INotifications = {
|
|
1471
1471
|
__typename?: 'Notifications';
|
|
1472
1472
|
notifications?: Maybe<Array<Maybe<INotification>>>;
|
|
@@ -1529,12 +1529,7 @@ export declare type IProcessMonitoring = {
|
|
|
1529
1529
|
cpu?: Maybe<Scalars['Float']>;
|
|
1530
1530
|
memory?: Maybe<Scalars['Float']>;
|
|
1531
1531
|
};
|
|
1532
|
-
export declare type
|
|
1533
|
-
type?: Maybe<IGraphqlCallType>;
|
|
1534
|
-
document?: Maybe<Scalars['AnyObject']>;
|
|
1535
|
-
variables?: Maybe<Scalars['AnyObject']>;
|
|
1536
|
-
};
|
|
1537
|
-
export declare type IPromptChoice_Input = {
|
|
1532
|
+
export declare type IPromptChoiceInput = {
|
|
1538
1533
|
/** Label to show for the choice to the user. */
|
|
1539
1534
|
label?: Maybe<Scalars['String']>;
|
|
1540
1535
|
/**
|
|
@@ -1550,12 +1545,17 @@ export declare type IPromptChoice_Input = {
|
|
|
1550
1545
|
/** Triggered when the user selects the choice. */
|
|
1551
1546
|
run?: Maybe<IPromptChoiceRun>;
|
|
1552
1547
|
};
|
|
1548
|
+
export declare type IPromptChoiceRun = {
|
|
1549
|
+
type?: Maybe<IGraphqlCallType>;
|
|
1550
|
+
document?: Maybe<Scalars['AnyObject']>;
|
|
1551
|
+
variables?: Maybe<Scalars['AnyObject']>;
|
|
1552
|
+
};
|
|
1553
1553
|
export declare type IPromptOptionsCancel = {
|
|
1554
1554
|
type?: Maybe<IGraphqlCallType>;
|
|
1555
1555
|
document?: Maybe<Scalars['AnyObject']>;
|
|
1556
1556
|
variables?: Maybe<Scalars['AnyObject']>;
|
|
1557
1557
|
};
|
|
1558
|
-
export declare type
|
|
1558
|
+
export declare type IPromptOptionsInput = {
|
|
1559
1559
|
/**
|
|
1560
1560
|
* Sticky prompts are not automatically removed after a certain timeout.
|
|
1561
1561
|
*
|
|
@@ -1646,7 +1646,7 @@ export declare type IQueryReleasesArgs = {
|
|
|
1646
1646
|
extensionID: Scalars['String'];
|
|
1647
1647
|
};
|
|
1648
1648
|
export declare type IQueryShowNotificationArgs = {
|
|
1649
|
-
notification?: Maybe<
|
|
1649
|
+
notification?: Maybe<INotificationInput>;
|
|
1650
1650
|
};
|
|
1651
1651
|
/**
|
|
1652
1652
|
* @lsp - A range in a text document expressed as (zero-based) start and end positions. A range is comparable to a
|
|
@@ -1854,7 +1854,7 @@ export declare type ICopyMutation = ({
|
|
|
1854
1854
|
__typename?: 'Mutation';
|
|
1855
1855
|
} & Pick<IMutation, 'copy'>);
|
|
1856
1856
|
export declare type IRunMenuActionMutationVariables = Exact<{
|
|
1857
|
-
argument?: Maybe<
|
|
1857
|
+
argument?: Maybe<IContributionActionRunInput>;
|
|
1858
1858
|
}>;
|
|
1859
1859
|
export declare type IRunMenuActionMutation = ({
|
|
1860
1860
|
__typename?: 'Mutation';
|
|
@@ -2034,7 +2034,7 @@ export declare type INotificationsQuery = ({
|
|
|
2034
2034
|
})>;
|
|
2035
2035
|
});
|
|
2036
2036
|
export declare type IShowNotificationQueryVariables = Exact<{
|
|
2037
|
-
notification?: Maybe<
|
|
2037
|
+
notification?: Maybe<INotificationInput>;
|
|
2038
2038
|
}>;
|
|
2039
2039
|
export declare type IShowNotificationQuery = ({
|
|
2040
2040
|
__typename?: 'Query';
|
|
@@ -2082,7 +2082,7 @@ export declare const RunMenuActionDocument: Apollo.DocumentNode;
|
|
|
2082
2082
|
* });
|
|
2083
2083
|
*/
|
|
2084
2084
|
export declare function useRunMenuActionMutation(baseOptions?: Apollo.MutationHookOptions<IRunMenuActionMutation, IRunMenuActionMutationVariables>): Apollo.MutationTuple<IRunMenuActionMutation, Exact<{
|
|
2085
|
-
argument?:
|
|
2085
|
+
argument?: IContributionActionRunInput;
|
|
2086
2086
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
2087
2087
|
export declare type RunMenuActionMutationHookResult = ReturnType<typeof useRunMenuActionMutation>;
|
|
2088
2088
|
export declare type RunMenuActionMutationResult = Apollo.MutationResult<IRunMenuActionMutation>;
|
|
@@ -2380,10 +2380,10 @@ export declare const ShowNotificationDocument: Apollo.DocumentNode;
|
|
|
2380
2380
|
* });
|
|
2381
2381
|
*/
|
|
2382
2382
|
export declare function useShowNotificationQuery(baseOptions?: Apollo.QueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.QueryResult<IShowNotificationQuery, Exact<{
|
|
2383
|
-
notification?:
|
|
2383
|
+
notification?: INotificationInput;
|
|
2384
2384
|
}>>;
|
|
2385
2385
|
export declare function useShowNotificationLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IShowNotificationQuery, IShowNotificationQueryVariables>): Apollo.LazyQueryResultTuple<IShowNotificationQuery, Exact<{
|
|
2386
|
-
notification?:
|
|
2386
|
+
notification?: INotificationInput;
|
|
2387
2387
|
}>>;
|
|
2388
2388
|
export declare type ShowNotificationQueryHookResult = ReturnType<typeof useShowNotificationQuery>;
|
|
2389
2389
|
export declare type ShowNotificationLazyQueryHookResult = ReturnType<typeof useShowNotificationLazyQuery>;
|
|
@@ -2446,10 +2446,10 @@ export declare type IResolversTypes = {
|
|
|
2446
2446
|
ContextMenuInput: IContextMenuInput;
|
|
2447
2447
|
Contributes: ResolverTypeWrapper<IContributes>;
|
|
2448
2448
|
ContributionAction: ResolverTypeWrapper<IContributionAction>;
|
|
2449
|
+
ContributionActionInput: IContributionActionInput;
|
|
2449
2450
|
ContributionActionItem: ResolverTypeWrapper<IContributionActionItem>;
|
|
2450
2451
|
ContributionActionRun: ResolverTypeWrapper<IContributionActionRun>;
|
|
2451
|
-
|
|
2452
|
-
ContributionAction_input: IContributionAction_Input;
|
|
2452
|
+
ContributionActionRunInput: IContributionActionRunInput;
|
|
2453
2453
|
ContributionActions: ResolverTypeWrapper<IContributionActions>;
|
|
2454
2454
|
ContributionView: ResolverTypeWrapper<IContributionView>;
|
|
2455
2455
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
@@ -2536,23 +2536,23 @@ export declare type IResolversTypes = {
|
|
|
2536
2536
|
MenuItemInput: IMenuItemInput;
|
|
2537
2537
|
Menus: ResolverTypeWrapper<IMenus>;
|
|
2538
2538
|
MessageLink: ResolverTypeWrapper<IMessageLink>;
|
|
2539
|
-
|
|
2539
|
+
MessageLinkInput: IMessageLinkInput;
|
|
2540
2540
|
MoleculerServiceName: IMoleculerServiceName;
|
|
2541
2541
|
Mutation: ResolverTypeWrapper<{}>;
|
|
2542
2542
|
Node: IResolversTypes['RegistryExtension'];
|
|
2543
2543
|
Notification: ResolverTypeWrapper<INotification>;
|
|
2544
2544
|
NotificationActions: ResolverTypeWrapper<INotificationActions>;
|
|
2545
|
-
|
|
2545
|
+
NotificationActionsInput: INotificationActionsInput;
|
|
2546
2546
|
NotificationChangeEvent: ResolverTypeWrapper<INotificationChangeEvent>;
|
|
2547
2547
|
NotificationChangeType: INotificationChangeType;
|
|
2548
|
+
NotificationInput: INotificationInput;
|
|
2548
2549
|
NotificationMessage: ResolverTypeWrapper<INotificationMessage>;
|
|
2549
|
-
|
|
2550
|
+
NotificationMessageInput: INotificationMessageInput;
|
|
2550
2551
|
NotificationSeverity: INotificationSeverity;
|
|
2551
2552
|
NotificationViewItem: ResolverTypeWrapper<INotificationViewItem>;
|
|
2552
2553
|
NotificationViewItemLabelKind: INotificationViewItemLabelKind;
|
|
2553
2554
|
NotificationViewItemProgress: ResolverTypeWrapper<INotificationViewItemProgress>;
|
|
2554
2555
|
NotificationViewItemProgressState: ResolverTypeWrapper<INotificationViewItemProgressState>;
|
|
2555
|
-
Notification_input: INotification_Input;
|
|
2556
2556
|
Notifications: ResolverTypeWrapper<INotifications>;
|
|
2557
2557
|
Observable: ResolverTypeWrapper<Scalars['Observable']>;
|
|
2558
2558
|
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
@@ -2561,10 +2561,10 @@ export declare type IResolversTypes = {
|
|
|
2561
2561
|
Position: ResolverTypeWrapper<IPosition>;
|
|
2562
2562
|
PositionInput: IPositionInput;
|
|
2563
2563
|
ProcessMonitoring: ResolverTypeWrapper<IProcessMonitoring>;
|
|
2564
|
+
PromptChoiceInput: IPromptChoiceInput;
|
|
2564
2565
|
PromptChoiceRun: IPromptChoiceRun;
|
|
2565
|
-
PromptChoice_input: IPromptChoice_Input;
|
|
2566
2566
|
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2567
|
-
|
|
2567
|
+
PromptOptionsInput: IPromptOptionsInput;
|
|
2568
2568
|
ProvideTextDocumentLocationSignature: ResolverTypeWrapper<IProvideTextDocumentLocationSignature>;
|
|
2569
2569
|
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2570
2570
|
Query: ResolverTypeWrapper<{}>;
|
|
@@ -2615,10 +2615,10 @@ export declare type IResolversParentTypes = {
|
|
|
2615
2615
|
ContextMenuInput: IContextMenuInput;
|
|
2616
2616
|
Contributes: IContributes;
|
|
2617
2617
|
ContributionAction: IContributionAction;
|
|
2618
|
+
ContributionActionInput: IContributionActionInput;
|
|
2618
2619
|
ContributionActionItem: IContributionActionItem;
|
|
2619
2620
|
ContributionActionRun: IContributionActionRun;
|
|
2620
|
-
|
|
2621
|
-
ContributionAction_input: IContributionAction_Input;
|
|
2621
|
+
ContributionActionRunInput: IContributionActionRunInput;
|
|
2622
2622
|
ContributionActions: IContributionActions;
|
|
2623
2623
|
ContributionView: IContributionView;
|
|
2624
2624
|
ID: Scalars['ID'];
|
|
@@ -2699,19 +2699,19 @@ export declare type IResolversParentTypes = {
|
|
|
2699
2699
|
MenuItemInput: IMenuItemInput;
|
|
2700
2700
|
Menus: IMenus;
|
|
2701
2701
|
MessageLink: IMessageLink;
|
|
2702
|
-
|
|
2702
|
+
MessageLinkInput: IMessageLinkInput;
|
|
2703
2703
|
Mutation: {};
|
|
2704
2704
|
Node: IResolversParentTypes['RegistryExtension'];
|
|
2705
2705
|
Notification: INotification;
|
|
2706
2706
|
NotificationActions: INotificationActions;
|
|
2707
|
-
|
|
2707
|
+
NotificationActionsInput: INotificationActionsInput;
|
|
2708
2708
|
NotificationChangeEvent: INotificationChangeEvent;
|
|
2709
|
+
NotificationInput: INotificationInput;
|
|
2709
2710
|
NotificationMessage: INotificationMessage;
|
|
2710
|
-
|
|
2711
|
+
NotificationMessageInput: INotificationMessageInput;
|
|
2711
2712
|
NotificationViewItem: INotificationViewItem;
|
|
2712
2713
|
NotificationViewItemProgress: INotificationViewItemProgress;
|
|
2713
2714
|
NotificationViewItemProgressState: INotificationViewItemProgressState;
|
|
2714
|
-
Notification_input: INotification_Input;
|
|
2715
2715
|
Notifications: INotifications;
|
|
2716
2716
|
Observable: Scalars['Observable'];
|
|
2717
2717
|
OpenDocumentParamsInput: IOpenDocumentParamsInput;
|
|
@@ -2720,10 +2720,10 @@ export declare type IResolversParentTypes = {
|
|
|
2720
2720
|
Position: IPosition;
|
|
2721
2721
|
PositionInput: IPositionInput;
|
|
2722
2722
|
ProcessMonitoring: IProcessMonitoring;
|
|
2723
|
+
PromptChoiceInput: IPromptChoiceInput;
|
|
2723
2724
|
PromptChoiceRun: IPromptChoiceRun;
|
|
2724
|
-
PromptChoice_input: IPromptChoice_Input;
|
|
2725
2725
|
PromptOptionsCancel: IPromptOptionsCancel;
|
|
2726
|
-
|
|
2726
|
+
PromptOptionsInput: IPromptOptionsInput;
|
|
2727
2727
|
ProvideTextDocumentLocationSignature: IProvideTextDocumentLocationSignature;
|
|
2728
2728
|
ProvideTextDocumentLocationSignatureInput: IProvideTextDocumentLocationSignatureInput;
|
|
2729
2729
|
Query: {};
|
|
@@ -130,7 +130,7 @@ function useCopyMutation(baseOptions) {
|
|
|
130
130
|
}
|
|
131
131
|
exports.useCopyMutation = useCopyMutation;
|
|
132
132
|
exports.RunMenuActionDocument = (0, client_1.gql) `
|
|
133
|
-
mutation RunMenuAction($argument:
|
|
133
|
+
mutation RunMenuAction($argument: ContributionActionRunInput) {
|
|
134
134
|
runMenuAction(argument: $argument) @client
|
|
135
135
|
}
|
|
136
136
|
`;
|
|
@@ -615,7 +615,7 @@ function useNotificationsLazyQuery(baseOptions) {
|
|
|
615
615
|
}
|
|
616
616
|
exports.useNotificationsLazyQuery = useNotificationsLazyQuery;
|
|
617
617
|
exports.ShowNotificationDocument = (0, client_1.gql) `
|
|
618
|
-
query showNotification($notification:
|
|
618
|
+
query showNotification($notification: NotificationInput) {
|
|
619
619
|
showNotification(notification: $notification) @client
|
|
620
620
|
}
|
|
621
621
|
`;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated-models.js","sourceRoot":"","sources":["../../src/interfaces/generated-models.ts"],"names":[],"mappings":";;;AAIA,2CAAqC;AACrC,yCAAyC;AAMzC,MAAM,cAAc,GAAI,EAAE,CAAA;AA2E1B,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC5B,uCAAiB,CAAA;IACjB,yCAAmB,CAAA;AACrB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B;AAED,IAAY,uBAEX;AAFD,WAAY,uBAAuB;IACjC,sEAA2C,CAAA;AAC7C,CAAC,EAFW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAElC;AA2KD,IAAY,gBAIX;AAJD,WAAY,gBAAgB;IAC1B,6BAAS,CAAA;IACT,+BAAW,CAAA;IACX,mCAAe,CAAA;AACjB,CAAC,EAJW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAI3B;AA4XD,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,2BAAS,CAAA;IACT,yCAAuB,CAAA;AACzB,CAAC,EAHW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAGzB;AA0ND,IAAY,cAGX;AAHD,WAAY,cAAc;IACxB,mCAAiB,CAAA;IACjB,+BAAa,CAAA;AACf,CAAC,EAHW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAGzB;AA0GD,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IAC1B,yCAAqB,CAAA;IACrB,mCAAe,CAAA;AACjB,CAAC,EAHW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAG3B;AA4KD,IAAY,WAGX;AAHD,WAAY,WAAW;IACrB,sCAAuB,CAAA;IACvB,oCAAqB,CAAA;AACvB,CAAC,EAHW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAGtB;AAED,IAAY,OA+BX;AA/BD,WAAY,OAAO;IACjB,4CAAiC,CAAA;IACjC,0DAA+C,CAAA;IAC/C,gDAAqC,CAAA;IACrC,8CAAmC,CAAA;IACnC,8CAAmC,CAAA;IACnC,0CAA+B,CAAA;IAC/B,gEAAqD,CAAA;IACrD,4DAAiD,CAAA;IACjD,kDAAuC,CAAA;IACvC,wDAA6C,CAAA;IAC7C,8DAAmD,CAAA;IACnD,4DAAiD,CAAA;IACjD,8CAAmC,CAAA;IACnC,8CAAmC,CAAA;IACnC,kDAAuC,CAAA;IACvC,wDAA6C,CAAA;IAC7C,gDAAqC,CAAA;IACrC,oDAAyC,CAAA;IACzC,8DAAmD,CAAA;IACnD,oDAAyC,CAAA;IACzC,gCAAqB,CAAA;IACrB,0CAA+B,CAAA;IAC/B,wEAA6D,CAAA;IAC7D,8CAAmC,CAAA;IACnC,8CAAmC,CAAA;IACnC,kCAAuB,CAAA;IACvB,oDAAyC,CAAA;IACzC,wDAA6C,CAAA;IAC7C,wCAA6B,CAAA;IAC7B,4CAAiC,CAAA;AACnC,CAAC,EA/BW,OAAO,GAAP,eAAO,KAAP,eAAO,QA+BlB;AAsGD,yDAAyD;AACzD,IAAY,qBAEX;AAFD,WAAY,qBAAqB;IAC/B,wCAAe,CAAA;AACjB,CAAC,EAFW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAEhC;AA8RD,IAAY,uBAIX;AAJD,WAAY,uBAAuB;IACjC,sCAAW,CAAA;IACX,4CAAiB,CAAA;IACjB,4CAAiB,CAAA;AACnB,CAAC,EAJW,uBAAuB,GAAvB,+BAAuB,KAAvB,+BAAuB,QAIlC;
|
|
1
|
+
{"version":3,"file":"generated-models.js","sourceRoot":"","sources":["../../src/interfaces/generated-models.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adminide-stack/extension-api",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.2",
|
|
4
4
|
"description": "Workbench core for higher packages to depend on",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "CDMBase LLC",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@adminide-stack/core": "2.0.1-alpha.
|
|
38
|
+
"@adminide-stack/core": "2.0.1-alpha.2",
|
|
39
39
|
"abort-controller": "^2.0.0",
|
|
40
40
|
"abortable-rx": "^1.0.9",
|
|
41
41
|
"cdeops": "1.1.3-alpha.170",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"typescript": {
|
|
57
57
|
"definition": "lib/index.d.ts"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "3507f4a464033ad82b40ce57a6dc019dab116871"
|
|
60
60
|
}
|