@forge/cli-shared 2.3.0-next.0 → 2.3.0-next.1
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/CHANGELOG.md
CHANGED
|
@@ -211,11 +211,11 @@ export declare enum ActivityEventType {
|
|
|
211
211
|
}
|
|
212
212
|
export declare type ActivityFilter = {
|
|
213
213
|
actors?: Maybe<Array<Scalars['ID']>>;
|
|
214
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
214
215
|
type?: Maybe<ActivitiesFilterType>;
|
|
215
216
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
216
217
|
};
|
|
217
218
|
export declare type ActivityFilterArgs = {
|
|
218
|
-
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
219
219
|
products?: Maybe<Array<Scalars['String']>>;
|
|
220
220
|
eventTypes?: Maybe<Array<Scalars['String']>>;
|
|
221
221
|
objectTypes?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3879,7 +3879,7 @@ export declare type CreateDevOpsServiceRelationshipPayload = Payload & {
|
|
|
3879
3879
|
serviceRelationship?: Maybe<DevOpsServiceRelationship>;
|
|
3880
3880
|
};
|
|
3881
3881
|
export declare type CreateEventSourceInput = {
|
|
3882
|
-
cloudId
|
|
3882
|
+
cloudId: Scalars['ID'];
|
|
3883
3883
|
externalEventSourceId: Scalars['ID'];
|
|
3884
3884
|
eventType: CompassEventType;
|
|
3885
3885
|
};
|
|
@@ -4335,7 +4335,7 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
4335
4335
|
errors?: Maybe<Array<MutationError>>;
|
|
4336
4336
|
};
|
|
4337
4337
|
export declare type DeleteEventSourceInput = {
|
|
4338
|
-
cloudId
|
|
4338
|
+
cloudId: Scalars['ID'];
|
|
4339
4339
|
externalEventSourceId: Scalars['ID'];
|
|
4340
4340
|
eventType: CompassEventType;
|
|
4341
4341
|
};
|
|
@@ -7627,6 +7627,9 @@ export declare type JiraIssueSearchInput = {
|
|
|
7627
7627
|
jql?: Maybe<Scalars['String']>;
|
|
7628
7628
|
filterId?: Maybe<Scalars['String']>;
|
|
7629
7629
|
};
|
|
7630
|
+
export declare type JiraIssueSearchOptions = {
|
|
7631
|
+
issueKey?: Maybe<Scalars['String']>;
|
|
7632
|
+
};
|
|
7630
7633
|
export declare type JiraIssueSearchResult = {
|
|
7631
7634
|
content?: Maybe<JiraIssueSearchContextualContent>;
|
|
7632
7635
|
contentByFieldConfigSetIds?: Maybe<JiraIssueSearchContextlessContent>;
|
|
@@ -9108,6 +9111,7 @@ export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
|
9108
9111
|
export declare type JiraQueryIssueSearchStableArgs = {
|
|
9109
9112
|
cloudId: Scalars['ID'];
|
|
9110
9113
|
issueSearchInput: JiraIssueSearchInput;
|
|
9114
|
+
options?: Maybe<JiraIssueSearchOptions>;
|
|
9111
9115
|
first?: Maybe<Scalars['Int']>;
|
|
9112
9116
|
after?: Maybe<Scalars['String']>;
|
|
9113
9117
|
last?: Maybe<Scalars['Int']>;
|
|
@@ -11508,6 +11512,7 @@ export declare type MyActivityViewedArgs = {
|
|
|
11508
11512
|
after?: Maybe<Scalars['String']>;
|
|
11509
11513
|
};
|
|
11510
11514
|
export declare type MyActivityFilter = {
|
|
11515
|
+
rootContainerIds?: Maybe<Array<Scalars['ID']>>;
|
|
11511
11516
|
type?: Maybe<ActivitiesFilterType>;
|
|
11512
11517
|
arguments?: Maybe<ActivityFilterArgs>;
|
|
11513
11518
|
};
|