@forge/cli-shared 3.22.0-next.4 → 3.22.0-next.5
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
|
@@ -20911,7 +20911,7 @@ export type JiraFallbackField = JiraIssueField & JiraIssueFieldConfiguration & N
|
|
|
20911
20911
|
renderedFieldHtml?: Maybe<Scalars['String']['output']>;
|
|
20912
20912
|
type: Scalars['String']['output'];
|
|
20913
20913
|
};
|
|
20914
|
-
export type JiraFavourite = JiraProject;
|
|
20914
|
+
export type JiraFavourite = JiraCustomFilter | JiraProject | JiraSystemFilter;
|
|
20915
20915
|
export type JiraFavouriteConnection = {
|
|
20916
20916
|
__typename?: 'JiraFavouriteConnection';
|
|
20917
20917
|
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
@@ -20926,6 +20926,7 @@ export type JiraFavouriteFilter = {
|
|
|
20926
20926
|
type: JiraFavouriteType;
|
|
20927
20927
|
};
|
|
20928
20928
|
export declare enum JiraFavouriteType {
|
|
20929
|
+
Filter = "FILTER",
|
|
20929
20930
|
Project = "PROJECT"
|
|
20930
20931
|
}
|
|
20931
20932
|
export type JiraFavouriteValue = Node & {
|
|
@@ -27238,11 +27239,26 @@ export type JiraSubmitBulkOperationProgress = Node & {
|
|
|
27238
27239
|
};
|
|
27239
27240
|
export type JiraSubscription = {
|
|
27240
27241
|
__typename?: 'JiraSubscription';
|
|
27242
|
+
onIssueCreatedByProject?: Maybe<JiraIssue>;
|
|
27243
|
+
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
27244
|
+
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
27241
27245
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
27242
27246
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
27243
27247
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
27244
27248
|
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
27245
27249
|
};
|
|
27250
|
+
export type JiraSubscriptionOnIssueCreatedByProjectArgs = {
|
|
27251
|
+
cloudId: Scalars['ID']['input'];
|
|
27252
|
+
projectId: Scalars['String']['input'];
|
|
27253
|
+
};
|
|
27254
|
+
export type JiraSubscriptionOnIssueDeletedByProjectArgs = {
|
|
27255
|
+
cloudId: Scalars['ID']['input'];
|
|
27256
|
+
projectId: Scalars['String']['input'];
|
|
27257
|
+
};
|
|
27258
|
+
export type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
27259
|
+
cloudId: Scalars['ID']['input'];
|
|
27260
|
+
projectId: Scalars['String']['input'];
|
|
27261
|
+
};
|
|
27246
27262
|
export type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
27247
27263
|
siteId: Scalars['ID']['input'];
|
|
27248
27264
|
};
|