@forge/cli-shared 5.6.0-next.13 → 5.6.0-next.14
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
|
@@ -5156,9 +5156,12 @@ export declare type CompassFilteredComponentsCount = {
|
|
|
5156
5156
|
count: Scalars['Int']['output'];
|
|
5157
5157
|
};
|
|
5158
5158
|
export declare type CompassFilteredComponentsCountQuery = {
|
|
5159
|
+
componentCreationTimeFilter?: InputMaybe<CompassComponentCreationTimeFilterInput>;
|
|
5159
5160
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
5160
5161
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
5162
|
+
lifecycleFilter?: InputMaybe<CompassLifecycleFilterInput>;
|
|
5161
5163
|
ownerIds?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
5164
|
+
repositoryLinkFilter?: InputMaybe<CompassRepositoryValueInput>;
|
|
5162
5165
|
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
5163
5166
|
};
|
|
5164
5167
|
export declare type CompassFilteredComponentsCountResult = CompassFilteredComponentsCount | QueryError;
|
|
@@ -39482,6 +39485,10 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
39482
39485
|
errors?: Maybe<Array<MutationError>>;
|
|
39483
39486
|
success: Scalars['Boolean']['output'];
|
|
39484
39487
|
};
|
|
39488
|
+
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
39489
|
+
id: Scalars['ID']['input'];
|
|
39490
|
+
version: Scalars['Long']['input'];
|
|
39491
|
+
};
|
|
39485
39492
|
export declare type JiraArchivedIssue = {
|
|
39486
39493
|
__typename?: 'JiraArchivedIssue';
|
|
39487
39494
|
archivedBy?: Maybe<User>;
|
|
@@ -42210,6 +42217,10 @@ export declare type JiraDevSummaryField = JiraIssueField & Node & {
|
|
|
42210
42217
|
name: Scalars['String']['output'];
|
|
42211
42218
|
type: Scalars['String']['output'];
|
|
42212
42219
|
};
|
|
42220
|
+
export declare type JiraDisableJourneyConfigurationInput = {
|
|
42221
|
+
id: Scalars['ID']['input'];
|
|
42222
|
+
version: Scalars['Long']['input'];
|
|
42223
|
+
};
|
|
42213
42224
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
42214
42225
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42215
42226
|
};
|
|
@@ -45855,6 +45866,7 @@ export declare type JiraMutation = {
|
|
|
45855
45866
|
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
45856
45867
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
45857
45868
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
45869
|
+
archiveJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45858
45870
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
45859
45871
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
45860
45872
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
@@ -45889,6 +45901,7 @@ export declare type JiraMutation = {
|
|
|
45889
45901
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
45890
45902
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
45891
45903
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
45904
|
+
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
45892
45905
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
45893
45906
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
45894
45907
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
@@ -46036,6 +46049,10 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
46036
46049
|
cloudId: Scalars['ID']['input'];
|
|
46037
46050
|
input: JiraAnswerApprovalDecisionInput;
|
|
46038
46051
|
};
|
|
46052
|
+
export declare type JiraMutationArchiveJiraJourneyConfigurationArgs = {
|
|
46053
|
+
cloudId: Scalars['ID']['input'];
|
|
46054
|
+
input: JiraArchiveJourneyConfigurationInput;
|
|
46055
|
+
};
|
|
46039
46056
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
46040
46057
|
input: JiraAssignRelatedWorkInput;
|
|
46041
46058
|
};
|
|
@@ -46148,6 +46165,10 @@ export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
|
46148
46165
|
export declare type JiraMutationDeleteProjectShortcutArgs = {
|
|
46149
46166
|
input: JiraDeleteShortcutInput;
|
|
46150
46167
|
};
|
|
46168
|
+
export declare type JiraMutationDisableJiraJourneyConfigurationArgs = {
|
|
46169
|
+
cloudId: Scalars['ID']['input'];
|
|
46170
|
+
input: JiraDisableJourneyConfigurationInput;
|
|
46171
|
+
};
|
|
46151
46172
|
export declare type JiraMutationGrantGlobalPermissionArgs = {
|
|
46152
46173
|
cloudId: Scalars['ID']['input'];
|
|
46153
46174
|
input: JiraGlobalPermissionAddGroupGrantInput;
|
|
@@ -55108,6 +55129,11 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
55108
55129
|
export declare type KnowledgeDiscoveryEntity = {
|
|
55109
55130
|
id: Scalars['ID']['output'];
|
|
55110
55131
|
};
|
|
55132
|
+
export declare type KnowledgeDiscoveryEntityGroup = {
|
|
55133
|
+
__typename?: 'KnowledgeDiscoveryEntityGroup';
|
|
55134
|
+
entities?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
55135
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
55136
|
+
};
|
|
55111
55137
|
export declare enum KnowledgeDiscoveryEntityType {
|
|
55112
55138
|
ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
|
|
55113
55139
|
ConfluenceDocument = "CONFLUENCE_DOCUMENT",
|
|
@@ -55188,6 +55214,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
55188
55214
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
55189
55215
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
55190
55216
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
55217
|
+
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
55191
55218
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
55192
55219
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
55193
55220
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
@@ -55246,6 +55273,12 @@ export declare type KnowledgeDiscoveryQueryApiRelatedEntitiesArgs = {
|
|
|
55246
55273
|
relatedEntityType: KnowledgeDiscoveryEntityType;
|
|
55247
55274
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55248
55275
|
};
|
|
55276
|
+
export declare type KnowledgeDiscoveryQueryApiSearchRelatedEntitiesArgs = {
|
|
55277
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
55278
|
+
query: Scalars['String']['input'];
|
|
55279
|
+
relatedEntityRequests?: InputMaybe<KnowledgeDiscoveryRelatedEntityRequests>;
|
|
55280
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
55281
|
+
};
|
|
55249
55282
|
export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
55250
55283
|
orgId: Scalars['String']['input'];
|
|
55251
55284
|
teamName: Scalars['String']['input'];
|
|
@@ -55275,6 +55308,13 @@ export declare type KnowledgeDiscoveryRelatedEntityConnection = {
|
|
|
55275
55308
|
nodes?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
55276
55309
|
pageInfo: KnowledgeDiscoveryPageInfo;
|
|
55277
55310
|
};
|
|
55311
|
+
export declare type KnowledgeDiscoveryRelatedEntityRequest = {
|
|
55312
|
+
count: Scalars['Int']['input'];
|
|
55313
|
+
entityType: KnowledgeDiscoveryEntityType;
|
|
55314
|
+
};
|
|
55315
|
+
export declare type KnowledgeDiscoveryRelatedEntityRequests = {
|
|
55316
|
+
requests?: InputMaybe<Array<KnowledgeDiscoveryRelatedEntityRequest>>;
|
|
55317
|
+
};
|
|
55278
55318
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
55279
55319
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
55280
55320
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -55282,6 +55322,11 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
55282
55322
|
Person = "PERSON",
|
|
55283
55323
|
Team = "TEAM"
|
|
55284
55324
|
}
|
|
55325
|
+
export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
55326
|
+
__typename?: 'KnowledgeDiscoverySearchRelatedEntities';
|
|
55327
|
+
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
55328
|
+
};
|
|
55329
|
+
export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDiscoverySearchRelatedEntities | QueryError;
|
|
55285
55330
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
55286
55331
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
55287
55332
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -69834,6 +69879,7 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
69834
69879
|
};
|
|
69835
69880
|
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69836
69881
|
__typename?: 'TrelloPlannerCalendar';
|
|
69882
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69837
69883
|
color?: Maybe<Scalars['String']['output']>;
|
|
69838
69884
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69839
69885
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
@@ -69877,6 +69923,25 @@ export declare type TrelloPlannerCalendarAccountEdge = {
|
|
|
69877
69923
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
69878
69924
|
node?: Maybe<TrelloPlannerCalendarAccount>;
|
|
69879
69925
|
};
|
|
69926
|
+
export declare enum TrelloPlannerCalendarColor {
|
|
69927
|
+
BlueSubtler = "BLUE_SUBTLER",
|
|
69928
|
+
BlueSubtlest = "BLUE_SUBTLEST",
|
|
69929
|
+
GraySubtler = "GRAY_SUBTLER",
|
|
69930
|
+
GreenSubtler = "GREEN_SUBTLER",
|
|
69931
|
+
GreenSubtlest = "GREEN_SUBTLEST",
|
|
69932
|
+
LimeSubtler = "LIME_SUBTLER",
|
|
69933
|
+
LimeSubtlest = "LIME_SUBTLEST",
|
|
69934
|
+
MagentaSubtler = "MAGENTA_SUBTLER",
|
|
69935
|
+
MagentaSubtlest = "MAGENTA_SUBTLEST",
|
|
69936
|
+
OrangeSubtler = "ORANGE_SUBTLER",
|
|
69937
|
+
OrangeSubtlest = "ORANGE_SUBTLEST",
|
|
69938
|
+
PurpleSubtlest = "PURPLE_SUBTLEST",
|
|
69939
|
+
RedSubtler = "RED_SUBTLER",
|
|
69940
|
+
RedSubtlest = "RED_SUBTLEST",
|
|
69941
|
+
YellowBolder = "YELLOW_BOLDER",
|
|
69942
|
+
YellowSubtler = "YELLOW_SUBTLER",
|
|
69943
|
+
YellowSubtlest = "YELLOW_SUBTLEST"
|
|
69944
|
+
}
|
|
69880
69945
|
export declare type TrelloPlannerCalendarConnection = {
|
|
69881
69946
|
__typename?: 'TrelloPlannerCalendarConnection';
|
|
69882
69947
|
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
@@ -69893,6 +69958,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
69893
69958
|
__typename?: 'TrelloPlannerCalendarEvent';
|
|
69894
69959
|
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
69895
69960
|
busy?: Maybe<Scalars['Boolean']['output']>;
|
|
69961
|
+
cards?: Maybe<TrelloPlannerCalendarEventCardConnection>;
|
|
69896
69962
|
conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
|
|
69897
69963
|
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
69898
69964
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -69906,6 +69972,27 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
69906
69972
|
type?: Maybe<TrelloSupportedPlannerProviders>;
|
|
69907
69973
|
visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
|
|
69908
69974
|
};
|
|
69975
|
+
export declare type TrelloPlannerCalendarEventCardsArgs = {
|
|
69976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69978
|
+
};
|
|
69979
|
+
export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
69980
|
+
__typename?: 'TrelloPlannerCalendarEventCard';
|
|
69981
|
+
cardId?: Maybe<Scalars['ID']['output']>;
|
|
69982
|
+
id: Scalars['ID']['output'];
|
|
69983
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
69984
|
+
};
|
|
69985
|
+
export declare type TrelloPlannerCalendarEventCardConnection = {
|
|
69986
|
+
__typename?: 'TrelloPlannerCalendarEventCardConnection';
|
|
69987
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
|
|
69988
|
+
nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
|
|
69989
|
+
pageInfo: PageInfo;
|
|
69990
|
+
};
|
|
69991
|
+
export declare type TrelloPlannerCalendarEventCardEdge = {
|
|
69992
|
+
__typename?: 'TrelloPlannerCalendarEventCardEdge';
|
|
69993
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69994
|
+
node?: Maybe<TrelloPlannerCalendarEventCard>;
|
|
69995
|
+
};
|
|
69909
69996
|
export declare type TrelloPlannerCalendarEventConferencing = {
|
|
69910
69997
|
__typename?: 'TrelloPlannerCalendarEventConferencing';
|
|
69911
69998
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -69938,6 +70025,7 @@ export declare type TrelloPlannerCalendarEventsFilter = {
|
|
|
69938
70025
|
};
|
|
69939
70026
|
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
69940
70027
|
__typename?: 'TrelloPlannerProviderCalendar';
|
|
70028
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
69941
70029
|
color?: Maybe<Scalars['String']['output']>;
|
|
69942
70030
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
69943
70031
|
id: Scalars['ID']['output'];
|
|
@@ -70013,6 +70101,7 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
70013
70101
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
70014
70102
|
};
|
|
70015
70103
|
export declare type TrelloProviderCalendarInterface = {
|
|
70104
|
+
adsColor?: Maybe<TrelloPlannerCalendarColor>;
|
|
70016
70105
|
color?: Maybe<Scalars['String']['output']>;
|
|
70017
70106
|
id: Scalars['ID']['output'];
|
|
70018
70107
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -71611,6 +71700,7 @@ export declare enum VirtualAgentConversationActionType {
|
|
|
71611
71700
|
export declare enum VirtualAgentConversationChannel {
|
|
71612
71701
|
HelpCenter = "HELP_CENTER",
|
|
71613
71702
|
JsmPortal = "JSM_PORTAL",
|
|
71703
|
+
JsmWidget = "JSM_WIDGET",
|
|
71614
71704
|
MsTeams = "MS_TEAMS",
|
|
71615
71705
|
Slack = "SLACK"
|
|
71616
71706
|
}
|