@forge/cli-shared 3.24.0 → 3.25.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.
|
@@ -434,7 +434,7 @@ export declare type ActivityObject = {
|
|
|
434
434
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
435
435
|
type: Scalars['String']['output'];
|
|
436
436
|
};
|
|
437
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
437
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDocument | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
438
438
|
export declare enum ActivityObjectType {
|
|
439
439
|
Blogpost = "BLOGPOST",
|
|
440
440
|
Comment = "COMMENT",
|
|
@@ -776,6 +776,7 @@ export declare enum ApiContext {
|
|
|
776
776
|
Devops = "DEVOPS"
|
|
777
777
|
}
|
|
778
778
|
export declare enum ApiGroup {
|
|
779
|
+
AdminGraphqlServer = "ADMIN_GRAPHQL_SERVER",
|
|
779
780
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
780
781
|
Caas = "CAAS",
|
|
781
782
|
CloudAdmin = "CLOUD_ADMIN",
|
|
@@ -3062,6 +3063,32 @@ export declare type CompassAssistantAnswer = Node & {
|
|
|
3062
3063
|
status?: Maybe<Scalars['String']['output']>;
|
|
3063
3064
|
value?: Maybe<Scalars['String']['output']>;
|
|
3064
3065
|
};
|
|
3066
|
+
export declare type CompassAttentionItem = Node & {
|
|
3067
|
+
__typename?: 'CompassAttentionItem';
|
|
3068
|
+
actionLabel: Scalars['String']['output'];
|
|
3069
|
+
actionUri: Scalars['String']['output'];
|
|
3070
|
+
description: Scalars['String']['output'];
|
|
3071
|
+
id: Scalars['ID']['output'];
|
|
3072
|
+
priority: Scalars['Int']['output'];
|
|
3073
|
+
type: Scalars['String']['output'];
|
|
3074
|
+
};
|
|
3075
|
+
export declare type CompassAttentionItemConnection = {
|
|
3076
|
+
__typename?: 'CompassAttentionItemConnection';
|
|
3077
|
+
edges?: Maybe<Array<Maybe<CompassAttentionItemEdge>>>;
|
|
3078
|
+
nodes?: Maybe<Array<CompassAttentionItem>>;
|
|
3079
|
+
pageInfo: PageInfo;
|
|
3080
|
+
};
|
|
3081
|
+
export declare type CompassAttentionItemEdge = {
|
|
3082
|
+
__typename?: 'CompassAttentionItemEdge';
|
|
3083
|
+
cursor: Scalars['String']['output'];
|
|
3084
|
+
node?: Maybe<CompassAttentionItem>;
|
|
3085
|
+
};
|
|
3086
|
+
export declare type CompassAttentionItemQuery = {
|
|
3087
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3088
|
+
cloudId: Scalars['ID']['input'];
|
|
3089
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3090
|
+
};
|
|
3091
|
+
export declare type CompassAttentionItemQueryResult = CompassAttentionItemConnection | QueryError;
|
|
3065
3092
|
export declare type CompassBuildEvent = CompassEvent & {
|
|
3066
3093
|
__typename?: 'CompassBuildEvent';
|
|
3067
3094
|
buildProperties: CompassBuildEventProperties;
|
|
@@ -3358,6 +3385,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3358
3385
|
__typename?: 'CompassCatalogQueryApi';
|
|
3359
3386
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
3360
3387
|
assistantAnswer?: Maybe<CompassAssistantAnswer>;
|
|
3388
|
+
attentionItems?: Maybe<CompassAttentionItemQueryResult>;
|
|
3361
3389
|
component?: Maybe<CompassComponentResult>;
|
|
3362
3390
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
3363
3391
|
componentScorecardRelationship?: Maybe<CompassComponentScorecardRelationshipResult>;
|
|
@@ -3388,6 +3416,9 @@ export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
|
|
|
3388
3416
|
export declare type CompassCatalogQueryApiAssistantAnswerArgs = {
|
|
3389
3417
|
answerId: Scalars['ID']['input'];
|
|
3390
3418
|
};
|
|
3419
|
+
export declare type CompassCatalogQueryApiAttentionItemsArgs = {
|
|
3420
|
+
query: CompassAttentionItemQuery;
|
|
3421
|
+
};
|
|
3391
3422
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
3392
3423
|
id: Scalars['ID']['input'];
|
|
3393
3424
|
};
|
|
@@ -7436,10 +7467,6 @@ export declare type CreatePolarisIdeaTemplatePayload = {
|
|
|
7436
7467
|
node?: Maybe<PolarisIdeaTemplate>;
|
|
7437
7468
|
success: Scalars['Boolean']['output'];
|
|
7438
7469
|
};
|
|
7439
|
-
export declare type CreatePolarisInsightFromPlayContributionInput = {
|
|
7440
|
-
contribution: Scalars['ID']['input'];
|
|
7441
|
-
subject?: InputMaybe<Scalars['ID']['input']>;
|
|
7442
|
-
};
|
|
7443
7470
|
export declare type CreatePolarisInsightInput = {
|
|
7444
7471
|
cloudID: Scalars['String']['input'];
|
|
7445
7472
|
data?: InputMaybe<Array<Scalars['JSON']['input']>>;
|
|
@@ -8786,6 +8813,9 @@ export declare type DeploymentSummary = Node & {
|
|
|
8786
8813
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
8787
8814
|
url?: Maybe<Scalars['String']['output']>;
|
|
8788
8815
|
};
|
|
8816
|
+
export declare type DeploymentSummaryIssueIdsArgs = {
|
|
8817
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
8818
|
+
};
|
|
8789
8819
|
export declare type DetachCompassComponentDataManagerInput = {
|
|
8790
8820
|
componentId: Scalars['ID']['input'];
|
|
8791
8821
|
};
|
|
@@ -24637,7 +24667,9 @@ export declare type HelpCenterUpdateInput = {
|
|
|
24637
24667
|
};
|
|
24638
24668
|
export declare type HelpCenterUpdatePayload = Payload & {
|
|
24639
24669
|
__typename?: 'HelpCenterUpdatePayload';
|
|
24670
|
+
banner?: Maybe<HelpCenterBanner>;
|
|
24640
24671
|
errors?: Maybe<Array<MutationError>>;
|
|
24672
|
+
logo?: Maybe<HelpCenterLogo>;
|
|
24641
24673
|
success: Scalars['Boolean']['output'];
|
|
24642
24674
|
};
|
|
24643
24675
|
export declare type HelpCenterUpdateTopicInput = {
|
|
@@ -28771,6 +28803,30 @@ export declare enum JiraGroupsContext {
|
|
|
28771
28803
|
Group = "GROUP",
|
|
28772
28804
|
User = "USER"
|
|
28773
28805
|
}
|
|
28806
|
+
export declare type JiraHasMultipleSelectedValues = {
|
|
28807
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
28808
|
+
};
|
|
28809
|
+
export declare type JiraHasMultipleSelectedValuesSelectedValuesArgs = {
|
|
28810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28811
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28812
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28813
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28814
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
28815
|
+
};
|
|
28816
|
+
export declare type JiraHasSelectableValueOptions = {
|
|
28817
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
28818
|
+
};
|
|
28819
|
+
export declare type JiraHasSelectableValueOptionsSelectableValueOptionsArgs = {
|
|
28820
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28821
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28822
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
28823
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28824
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28825
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
28826
|
+
};
|
|
28827
|
+
export declare type JiraHasSingleSelectedValue = {
|
|
28828
|
+
selectedValue?: Maybe<JiraSelectableValue>;
|
|
28829
|
+
};
|
|
28774
28830
|
export declare type JiraHierarchyConfigError = {
|
|
28775
28831
|
__typename?: 'JiraHierarchyConfigError';
|
|
28776
28832
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -30609,7 +30665,7 @@ export declare type JiraMultipleSelectClearableUserPickerFieldInput = {
|
|
|
30609
30665
|
fieldId: Scalars['ID']['input'];
|
|
30610
30666
|
users?: InputMaybe<Array<JiraUserInput>>;
|
|
30611
30667
|
};
|
|
30612
|
-
export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30668
|
+
export declare type JiraMultipleSelectField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
30613
30669
|
__typename?: 'JiraMultipleSelectField';
|
|
30614
30670
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
30615
30671
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -30620,8 +30676,10 @@ export declare type JiraMultipleSelectField = JiraIssueField & JiraIssueFieldCon
|
|
|
30620
30676
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
30621
30677
|
name: Scalars['String']['output'];
|
|
30622
30678
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
30679
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
30623
30680
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
30624
30681
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
30682
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
30625
30683
|
type: Scalars['String']['output'];
|
|
30626
30684
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
30627
30685
|
};
|
|
@@ -30633,12 +30691,27 @@ export declare type JiraMultipleSelectFieldFieldOptionsArgs = {
|
|
|
30633
30691
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30634
30692
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
30635
30693
|
};
|
|
30694
|
+
export declare type JiraMultipleSelectFieldSelectableValueOptionsArgs = {
|
|
30695
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30696
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
30697
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
30698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30699
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30700
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
30701
|
+
};
|
|
30636
30702
|
export declare type JiraMultipleSelectFieldSelectedOptionsArgs = {
|
|
30637
30703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30638
30704
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
30639
30705
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30640
30706
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30641
30707
|
};
|
|
30708
|
+
export declare type JiraMultipleSelectFieldSelectedValuesArgs = {
|
|
30709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30710
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
30711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30712
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30713
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
30714
|
+
};
|
|
30642
30715
|
export declare type JiraMultipleSelectFieldInput = {
|
|
30643
30716
|
fieldId: Scalars['ID']['input'];
|
|
30644
30717
|
options: Array<JiraSelectedOptionInput>;
|
|
@@ -30761,9 +30834,13 @@ export declare type JiraMutation = {
|
|
|
30761
30834
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
30762
30835
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
30763
30836
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
30837
|
+
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
30764
30838
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
30765
30839
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
30840
|
+
jwmDeleteCustomBackground?: Maybe<JiraWorkManagementDeleteCustomBackgroundPayload>;
|
|
30841
|
+
jwmRemoveActiveBackground?: Maybe<JiraWorkManagementRemoveActiveBackgroundPayload>;
|
|
30766
30842
|
jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
|
|
30843
|
+
jwmUpdateCustomBackground?: Maybe<JiraWorkManagementUpdateCustomBackgroundPayload>;
|
|
30767
30844
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
30768
30845
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
30769
30846
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
@@ -30925,15 +31002,27 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
|
30925
31002
|
cloudId: Scalars['ID']['input'];
|
|
30926
31003
|
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
30927
31004
|
};
|
|
31005
|
+
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
31006
|
+
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
31007
|
+
};
|
|
30928
31008
|
export declare type JiraMutationJwmCreateSavedViewArgs = {
|
|
30929
31009
|
input: JiraWorkManagementCreateSavedViewInput;
|
|
30930
31010
|
};
|
|
30931
31011
|
export declare type JiraMutationJwmDeleteAttachmentArgs = {
|
|
30932
31012
|
input: JiraWorkManagementDeleteAttachmentInput;
|
|
30933
31013
|
};
|
|
31014
|
+
export declare type JiraMutationJwmDeleteCustomBackgroundArgs = {
|
|
31015
|
+
input: JiraWorkManagementDeleteCustomBackgroundInput;
|
|
31016
|
+
};
|
|
31017
|
+
export declare type JiraMutationJwmRemoveActiveBackgroundArgs = {
|
|
31018
|
+
input: JiraWorkManagementRemoveActiveBackgroundInput;
|
|
31019
|
+
};
|
|
30934
31020
|
export declare type JiraMutationJwmUpdateActiveBackgroundArgs = {
|
|
30935
31021
|
input: JiraWorkManagementUpdateBackgroundInput;
|
|
30936
31022
|
};
|
|
31023
|
+
export declare type JiraMutationJwmUpdateCustomBackgroundArgs = {
|
|
31024
|
+
input: JiraWorkManagementUpdateCustomBackgroundInput;
|
|
31025
|
+
};
|
|
30937
31026
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
30938
31027
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
30939
31028
|
};
|
|
@@ -31490,11 +31579,15 @@ export declare type JiraOpsgenieTeam = Node & {
|
|
|
31490
31579
|
name?: Maybe<Scalars['String']['output']>;
|
|
31491
31580
|
url?: Maybe<Scalars['String']['output']>;
|
|
31492
31581
|
};
|
|
31493
|
-
export declare type JiraOption = Node & {
|
|
31582
|
+
export declare type JiraOption = JiraSelectableValue & Node & {
|
|
31494
31583
|
__typename?: 'JiraOption';
|
|
31495
31584
|
id: Scalars['ID']['output'];
|
|
31496
31585
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
31497
31586
|
optionId: Scalars['String']['output'];
|
|
31587
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
31588
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
31589
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
31590
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
31498
31591
|
value?: Maybe<Scalars['String']['output']>;
|
|
31499
31592
|
};
|
|
31500
31593
|
export declare type JiraOptionConnection = {
|
|
@@ -32585,7 +32678,9 @@ export declare type JiraQuery = {
|
|
|
32585
32678
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
32586
32679
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
32587
32680
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
32681
|
+
jwmActiveBackgroundDetails?: Maybe<JiraWorkManagementActiveBackgroundDetailsResult>;
|
|
32588
32682
|
jwmAddableViewTypes?: Maybe<JiraWorkManagementSavedViewTypeConnection>;
|
|
32683
|
+
jwmBackgroundUploadToken?: Maybe<JiraWorkManagementBackgroundUploadTokenResult>;
|
|
32589
32684
|
jwmCustomBackgrounds?: Maybe<JiraWorkManagementCustomBackgroundConnection>;
|
|
32590
32685
|
jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
|
|
32591
32686
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
@@ -32625,6 +32720,7 @@ export declare type JiraQuery = {
|
|
|
32625
32720
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
32626
32721
|
sprintById?: Maybe<JiraSprint>;
|
|
32627
32722
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
32723
|
+
startDateField?: Maybe<JiraJqlField>;
|
|
32628
32724
|
stringUserProperty?: Maybe<JiraEntityPropertyString>;
|
|
32629
32725
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
32630
32726
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
@@ -32966,11 +33062,18 @@ export declare type JiraQueryJsonUserPropertyArgs = {
|
|
|
32966
33062
|
cloudId: Scalars['ID']['input'];
|
|
32967
33063
|
propertyKey: Scalars['String']['input'];
|
|
32968
33064
|
};
|
|
33065
|
+
export declare type JiraQueryJwmActiveBackgroundDetailsArgs = {
|
|
33066
|
+
entityId: Scalars['ID']['input'];
|
|
33067
|
+
};
|
|
32969
33068
|
export declare type JiraQueryJwmAddableViewTypesArgs = {
|
|
32970
33069
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32971
33070
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32972
33071
|
projectId: Scalars['ID']['input'];
|
|
32973
33072
|
};
|
|
33073
|
+
export declare type JiraQueryJwmBackgroundUploadTokenArgs = {
|
|
33074
|
+
cloudId: Scalars['ID']['input'];
|
|
33075
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
33076
|
+
};
|
|
32974
33077
|
export declare type JiraQueryJwmCustomBackgroundsArgs = {
|
|
32975
33078
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32976
33079
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -33153,6 +33256,9 @@ export declare type JiraQuerySprintSearchArgs = {
|
|
|
33153
33256
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33154
33257
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33155
33258
|
};
|
|
33259
|
+
export declare type JiraQueryStartDateFieldArgs = {
|
|
33260
|
+
cloudId: Scalars['ID']['input'];
|
|
33261
|
+
};
|
|
33156
33262
|
export declare type JiraQueryStringUserPropertyArgs = {
|
|
33157
33263
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
33158
33264
|
cloudId: Scalars['ID']['input'];
|
|
@@ -33258,8 +33364,8 @@ export declare type JiraRankMutationPayload = Payload & {
|
|
|
33258
33364
|
success: Scalars['Boolean']['output'];
|
|
33259
33365
|
};
|
|
33260
33366
|
export declare type JiraRankNavigationItemInput = {
|
|
33261
|
-
|
|
33262
|
-
|
|
33367
|
+
afterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
33368
|
+
beforeItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
33263
33369
|
id: Scalars['ID']['input'];
|
|
33264
33370
|
};
|
|
33265
33371
|
export declare type JiraRankNavigationItemPayload = Payload & {
|
|
@@ -33829,6 +33935,23 @@ export declare type JiraSecurityLevelFieldSecurityLevelsArgs = {
|
|
|
33829
33935
|
export declare type JiraSecurityLevelInput = {
|
|
33830
33936
|
securityLevelId: Scalars['ID']['input'];
|
|
33831
33937
|
};
|
|
33938
|
+
export declare type JiraSelectableValue = {
|
|
33939
|
+
id: Scalars['ID']['output'];
|
|
33940
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
33941
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
33942
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
33943
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
33944
|
+
};
|
|
33945
|
+
export declare type JiraSelectableValueConnection = {
|
|
33946
|
+
__typename?: 'JiraSelectableValueConnection';
|
|
33947
|
+
edges?: Maybe<Array<Maybe<JiraSelectableValueEdge>>>;
|
|
33948
|
+
pageInfo: PageInfo;
|
|
33949
|
+
};
|
|
33950
|
+
export declare type JiraSelectableValueEdge = {
|
|
33951
|
+
__typename?: 'JiraSelectableValueEdge';
|
|
33952
|
+
cursor: Scalars['String']['output'];
|
|
33953
|
+
node?: Maybe<JiraSelectableValue>;
|
|
33954
|
+
};
|
|
33832
33955
|
export declare type JiraSelectedOptionInput = {
|
|
33833
33956
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
33834
33957
|
optionId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -34156,6 +34279,24 @@ export declare type JiraServiceManagementDueDatePreviewField = JiraServiceManage
|
|
|
34156
34279
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
34157
34280
|
type?: Maybe<Scalars['String']['output']>;
|
|
34158
34281
|
};
|
|
34282
|
+
export declare type JiraServiceManagementEntitlement = Node & {
|
|
34283
|
+
__typename?: 'JiraServiceManagementEntitlement';
|
|
34284
|
+
id: Scalars['ID']['output'];
|
|
34285
|
+
product?: Maybe<JiraServiceManagementProduct>;
|
|
34286
|
+
};
|
|
34287
|
+
export declare type JiraServiceManagementEntitlementField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
34288
|
+
__typename?: 'JiraServiceManagementEntitlementField';
|
|
34289
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
34290
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
34291
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
34292
|
+
fieldId: Scalars['String']['output'];
|
|
34293
|
+
id: Scalars['ID']['output'];
|
|
34294
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
34295
|
+
name: Scalars['String']['output'];
|
|
34296
|
+
selectedEntitlement?: Maybe<JiraServiceManagementEntitlement>;
|
|
34297
|
+
type: Scalars['String']['output'];
|
|
34298
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
34299
|
+
};
|
|
34159
34300
|
export declare type JiraServiceManagementFeedback = {
|
|
34160
34301
|
__typename?: 'JiraServiceManagementFeedback';
|
|
34161
34302
|
rating?: Maybe<Scalars['Int']['output']>;
|
|
@@ -34204,6 +34345,15 @@ export declare type JiraServiceManagementMajorIncidentField = JiraIssueField & J
|
|
|
34204
34345
|
type: Scalars['String']['output'];
|
|
34205
34346
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
34206
34347
|
};
|
|
34348
|
+
export declare type JiraServiceManagementMultiCheckboxesPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
34349
|
+
__typename?: 'JiraServiceManagementMultiCheckboxesPreviewField';
|
|
34350
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
34351
|
+
displayed?: Maybe<Scalars['Boolean']['output']>;
|
|
34352
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
34353
|
+
options?: Maybe<Array<Maybe<JiraServiceManagementPreviewOption>>>;
|
|
34354
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
34355
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
34356
|
+
};
|
|
34207
34357
|
export declare type JiraServiceManagementMultiSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
34208
34358
|
__typename?: 'JiraServiceManagementMultiSelectPreviewField';
|
|
34209
34359
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -34338,6 +34488,14 @@ export declare type JiraServiceManagementPeopleFieldUsersArgs = {
|
|
|
34338
34488
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
34339
34489
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34340
34490
|
};
|
|
34491
|
+
export declare type JiraServiceManagementPeoplePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
34492
|
+
__typename?: 'JiraServiceManagementPeoplePreviewField';
|
|
34493
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
34494
|
+
displayed?: Maybe<Scalars['Boolean']['output']>;
|
|
34495
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
34496
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
34497
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
34498
|
+
};
|
|
34341
34499
|
export declare enum JiraServiceManagementPractice {
|
|
34342
34500
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
34343
34501
|
DeveloperEscalation = "DEVELOPER_ESCALATION",
|
|
@@ -34350,6 +34508,11 @@ export declare type JiraServiceManagementPreviewOption = {
|
|
|
34350
34508
|
__typename?: 'JiraServiceManagementPreviewOption';
|
|
34351
34509
|
value?: Maybe<Scalars['String']['output']>;
|
|
34352
34510
|
};
|
|
34511
|
+
export declare type JiraServiceManagementProduct = Node & {
|
|
34512
|
+
__typename?: 'JiraServiceManagementProduct';
|
|
34513
|
+
id: Scalars['ID']['output'];
|
|
34514
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
34515
|
+
};
|
|
34353
34516
|
export declare type JiraServiceManagementProjectNavigationMetadata = {
|
|
34354
34517
|
__typename?: 'JiraServiceManagementProjectNavigationMetadata';
|
|
34355
34518
|
queueId: Scalars['ID']['output'];
|
|
@@ -34447,7 +34610,7 @@ export declare type JiraServiceManagementRequestTypePractice = {
|
|
|
34447
34610
|
__typename?: 'JiraServiceManagementRequestTypePractice';
|
|
34448
34611
|
key?: Maybe<JiraServiceManagementPractice>;
|
|
34449
34612
|
};
|
|
34450
|
-
export declare type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementAttachmentPreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementTextPreviewField | JiraServiceManagementUnknownPreviewField;
|
|
34613
|
+
export declare type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementAttachmentPreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementMultiCheckboxesPreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementPeoplePreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementTextPreviewField | JiraServiceManagementUnknownPreviewField;
|
|
34451
34614
|
export declare type JiraServiceManagementRequestTypeTemplate = {
|
|
34452
34615
|
__typename?: 'JiraServiceManagementRequestTypeTemplate';
|
|
34453
34616
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -34813,7 +34976,7 @@ export declare type JiraSingleLineTextFieldPayload = Payload & {
|
|
|
34813
34976
|
field?: Maybe<JiraSingleLineTextField>;
|
|
34814
34977
|
success: Scalars['Boolean']['output'];
|
|
34815
34978
|
};
|
|
34816
|
-
export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
34979
|
+
export declare type JiraSingleSelectField = JiraHasSelectableValueOptions & JiraHasSingleSelectedValue & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
34817
34980
|
__typename?: 'JiraSingleSelectField';
|
|
34818
34981
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
34819
34982
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -34825,6 +34988,8 @@ export declare type JiraSingleSelectField = JiraIssueField & JiraIssueFieldConfi
|
|
|
34825
34988
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
34826
34989
|
name: Scalars['String']['output'];
|
|
34827
34990
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
34991
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
34992
|
+
selectedValue?: Maybe<JiraSelectableValue>;
|
|
34828
34993
|
type: Scalars['String']['output'];
|
|
34829
34994
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
34830
34995
|
};
|
|
@@ -34836,6 +35001,14 @@ export declare type JiraSingleSelectFieldFieldOptionsArgs = {
|
|
|
34836
35001
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
34837
35002
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
34838
35003
|
};
|
|
35004
|
+
export declare type JiraSingleSelectFieldSelectableValueOptionsArgs = {
|
|
35005
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35006
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35007
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
35008
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35009
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35010
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
35011
|
+
};
|
|
34839
35012
|
export declare type JiraSingleSelectFieldInput = {
|
|
34840
35013
|
fieldId: Scalars['ID']['input'];
|
|
34841
35014
|
option: JiraSelectedOptionInput;
|
|
@@ -36495,6 +36668,7 @@ export declare type JiraWorkLogEdge = {
|
|
|
36495
36668
|
cursor: Scalars['String']['output'];
|
|
36496
36669
|
node?: Maybe<JiraWorklog>;
|
|
36497
36670
|
};
|
|
36671
|
+
export declare type JiraWorkManagementActiveBackgroundDetailsResult = JiraWorkManagementAttachmentBackground | JiraWorkManagementColorBackground | JiraWorkManagementGradientBackground | JiraWorkManagementMediaBackground | QueryError;
|
|
36498
36672
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
36499
36673
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
36500
36674
|
attachment?: Maybe<JiraAttachment>;
|
|
@@ -36509,6 +36683,13 @@ export declare enum JiraWorkManagementBackgroundType {
|
|
|
36509
36683
|
Custom = "CUSTOM",
|
|
36510
36684
|
Gradient = "GRADIENT"
|
|
36511
36685
|
}
|
|
36686
|
+
export declare type JiraWorkManagementBackgroundUploadToken = {
|
|
36687
|
+
__typename?: 'JiraWorkManagementBackgroundUploadToken';
|
|
36688
|
+
targetCollection?: Maybe<Scalars['String']['output']>;
|
|
36689
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
36690
|
+
tokenDurationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
36691
|
+
};
|
|
36692
|
+
export declare type JiraWorkManagementBackgroundUploadTokenResult = JiraWorkManagementBackgroundUploadToken | QueryError;
|
|
36512
36693
|
export declare type JiraWorkManagementChildSummary = {
|
|
36513
36694
|
__typename?: 'JiraWorkManagementChildSummary';
|
|
36514
36695
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36523,6 +36704,17 @@ export declare type JiraWorkManagementCommentSummary = {
|
|
|
36523
36704
|
__typename?: 'JiraWorkManagementCommentSummary';
|
|
36524
36705
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
36525
36706
|
};
|
|
36707
|
+
export declare type JiraWorkManagementCreateCustomBackgroundInput = {
|
|
36708
|
+
altText: Scalars['String']['input'];
|
|
36709
|
+
entityId: Scalars['ID']['input'];
|
|
36710
|
+
mediaApiFileId: Scalars['String']['input'];
|
|
36711
|
+
};
|
|
36712
|
+
export declare type JiraWorkManagementCreateCustomBackgroundPayload = Payload & {
|
|
36713
|
+
__typename?: 'JiraWorkManagementCreateCustomBackgroundPayload';
|
|
36714
|
+
background?: Maybe<JiraWorkManagementMediaBackground>;
|
|
36715
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36716
|
+
success: Scalars['Boolean']['output'];
|
|
36717
|
+
};
|
|
36526
36718
|
export declare type JiraWorkManagementCreateFilterInput = {
|
|
36527
36719
|
contextId: Scalars['ID']['input'];
|
|
36528
36720
|
jql: Scalars['String']['input'];
|
|
@@ -36576,6 +36768,8 @@ export declare type JiraWorkManagementCustomBackground = {
|
|
|
36576
36768
|
id?: Maybe<Scalars['ID']['output']>;
|
|
36577
36769
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
36578
36770
|
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
36771
|
+
sourceIdentifier?: Maybe<Scalars['String']['output']>;
|
|
36772
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
36579
36773
|
};
|
|
36580
36774
|
export declare type JiraWorkManagementCustomBackgroundMediaReadTokenArgs = {
|
|
36581
36775
|
durationInSeconds: Scalars['Int']['input'];
|
|
@@ -36600,6 +36794,16 @@ export declare type JiraWorkManagementDeleteAttachmentPayload = Payload & {
|
|
|
36600
36794
|
errors?: Maybe<Array<MutationError>>;
|
|
36601
36795
|
success: Scalars['Boolean']['output'];
|
|
36602
36796
|
};
|
|
36797
|
+
export declare type JiraWorkManagementDeleteCustomBackgroundInput = {
|
|
36798
|
+
cloudId: Scalars['ID']['input'];
|
|
36799
|
+
customBackgroundId: Scalars['ID']['input'];
|
|
36800
|
+
};
|
|
36801
|
+
export declare type JiraWorkManagementDeleteCustomBackgroundPayload = Payload & {
|
|
36802
|
+
__typename?: 'JiraWorkManagementDeleteCustomBackgroundPayload';
|
|
36803
|
+
customBackgroundId?: Maybe<Scalars['ID']['output']>;
|
|
36804
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36805
|
+
success: Scalars['Boolean']['output'];
|
|
36806
|
+
};
|
|
36603
36807
|
export declare type JiraWorkManagementDeleteOverviewInput = {
|
|
36604
36808
|
id: Scalars['ID']['input'];
|
|
36605
36809
|
};
|
|
@@ -36806,6 +37010,14 @@ export declare type JiraWorkManagementRankInput = {
|
|
|
36806
37010
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
36807
37011
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
36808
37012
|
};
|
|
37013
|
+
export declare type JiraWorkManagementRemoveActiveBackgroundInput = {
|
|
37014
|
+
entityId: Scalars['ID']['input'];
|
|
37015
|
+
};
|
|
37016
|
+
export declare type JiraWorkManagementRemoveActiveBackgroundPayload = Payload & {
|
|
37017
|
+
__typename?: 'JiraWorkManagementRemoveActiveBackgroundPayload';
|
|
37018
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37019
|
+
success: Scalars['Boolean']['output'];
|
|
37020
|
+
};
|
|
36809
37021
|
export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
36810
37022
|
__typename?: 'JiraWorkManagementSavedView';
|
|
36811
37023
|
id: Scalars['ID']['output'];
|
|
@@ -36841,6 +37053,17 @@ export declare type JiraWorkManagementUpdateBackgroundInput = {
|
|
|
36841
37053
|
backgroundValue: Scalars['String']['input'];
|
|
36842
37054
|
entityId: Scalars['ID']['input'];
|
|
36843
37055
|
};
|
|
37056
|
+
export declare type JiraWorkManagementUpdateCustomBackgroundInput = {
|
|
37057
|
+
altText: Scalars['String']['input'];
|
|
37058
|
+
cloudId: Scalars['ID']['input'];
|
|
37059
|
+
customBackgroundId: Scalars['ID']['input'];
|
|
37060
|
+
};
|
|
37061
|
+
export declare type JiraWorkManagementUpdateCustomBackgroundPayload = Payload & {
|
|
37062
|
+
__typename?: 'JiraWorkManagementUpdateCustomBackgroundPayload';
|
|
37063
|
+
background?: Maybe<JiraWorkManagementCustomBackground>;
|
|
37064
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37065
|
+
success: Scalars['Boolean']['output'];
|
|
37066
|
+
};
|
|
36844
37067
|
export declare type JiraWorkManagementUpdateFilterInput = {
|
|
36845
37068
|
id: Scalars['ID']['input'];
|
|
36846
37069
|
name: Scalars['String']['input'];
|
|
@@ -37382,37 +37605,25 @@ export declare type MarketplaceStoreAlgoliaQuerySort = {
|
|
|
37382
37605
|
__typename?: 'MarketplaceStoreAlgoliaQuerySort';
|
|
37383
37606
|
criteria?: Maybe<Scalars['String']['output']>;
|
|
37384
37607
|
};
|
|
37385
|
-
export declare type
|
|
37386
|
-
__typename?: '
|
|
37608
|
+
export declare type MarketplaceStoreCategoryHeroSection = {
|
|
37609
|
+
__typename?: 'MarketplaceStoreCategoryHeroSection';
|
|
37387
37610
|
backgroundColor: Scalars['String']['output'];
|
|
37388
37611
|
description: Scalars['String']['output'];
|
|
37389
|
-
image:
|
|
37612
|
+
image: MarketplaceStoreCategoryHeroSectionImage;
|
|
37390
37613
|
title: Scalars['String']['output'];
|
|
37391
37614
|
};
|
|
37392
|
-
export declare type
|
|
37393
|
-
__typename?: '
|
|
37615
|
+
export declare type MarketplaceStoreCategoryHeroSectionImage = {
|
|
37616
|
+
__typename?: 'MarketplaceStoreCategoryHeroSectionImage';
|
|
37394
37617
|
altText: Scalars['String']['output'];
|
|
37395
37618
|
url: Scalars['String']['output'];
|
|
37396
37619
|
};
|
|
37397
|
-
export declare type
|
|
37398
|
-
__typename?: '
|
|
37620
|
+
export declare type MarketplaceStoreCategoryResponse = {
|
|
37621
|
+
__typename?: 'MarketplaceStoreCategoryResponse';
|
|
37399
37622
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
37400
|
-
heroSection:
|
|
37623
|
+
heroSection: MarketplaceStoreCategoryHeroSection;
|
|
37401
37624
|
id: Scalars['ID']['output'];
|
|
37402
37625
|
name: Scalars['String']['output'];
|
|
37403
37626
|
slug: Scalars['String']['output'];
|
|
37404
|
-
useCases?: Maybe<MarketplaceStoreCategoriesUseCases>;
|
|
37405
|
-
};
|
|
37406
|
-
export declare type MarketplaceStoreCategoriesUseCases = {
|
|
37407
|
-
__typename?: 'MarketplaceStoreCategoriesUseCases';
|
|
37408
|
-
heading: Scalars['String']['output'];
|
|
37409
|
-
values: Array<MarketplaceStoreCategoriesUseCasesValues>;
|
|
37410
|
-
};
|
|
37411
|
-
export declare type MarketplaceStoreCategoriesUseCasesValues = {
|
|
37412
|
-
__typename?: 'MarketplaceStoreCategoriesUseCasesValues';
|
|
37413
|
-
description: Scalars['String']['output'];
|
|
37414
|
-
title: Scalars['String']['output'];
|
|
37415
|
-
titleColor: Scalars['String']['output'];
|
|
37416
37627
|
};
|
|
37417
37628
|
export declare type MarketplaceStoreCollectionHeroSection = {
|
|
37418
37629
|
__typename?: 'MarketplaceStoreCollectionHeroSection';
|
|
@@ -37450,7 +37661,6 @@ export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHo
|
|
|
37450
37661
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
37451
37662
|
description: Scalars['String']['output'];
|
|
37452
37663
|
id: Scalars['ID']['output'];
|
|
37453
|
-
tagline: Scalars['String']['output'];
|
|
37454
37664
|
title: Scalars['String']['output'];
|
|
37455
37665
|
};
|
|
37456
37666
|
export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStoreHomePageSection & {
|
|
@@ -37459,8 +37669,6 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
37459
37669
|
description: Scalars['String']['output'];
|
|
37460
37670
|
highlightVariation: MarketplaceStoreHomePageHighlightedSectionVariation;
|
|
37461
37671
|
id: Scalars['ID']['output'];
|
|
37462
|
-
tagline: Scalars['String']['output'];
|
|
37463
|
-
tilesVariation: MarketplaceStoreTilesVariation;
|
|
37464
37672
|
title: Scalars['String']['output'];
|
|
37465
37673
|
};
|
|
37466
37674
|
export declare enum MarketplaceStoreHomePageHighlightedSectionVariation {
|
|
@@ -37471,8 +37679,6 @@ export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHom
|
|
|
37471
37679
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
37472
37680
|
description: Scalars['String']['output'];
|
|
37473
37681
|
id: Scalars['ID']['output'];
|
|
37474
|
-
tagline: Scalars['String']['output'];
|
|
37475
|
-
tilesVariation: MarketplaceStoreTilesVariation;
|
|
37476
37682
|
title: Scalars['String']['output'];
|
|
37477
37683
|
};
|
|
37478
37684
|
export declare type MarketplaceStoreHomePageResponse = {
|
|
@@ -37482,7 +37688,6 @@ export declare type MarketplaceStoreHomePageResponse = {
|
|
|
37482
37688
|
export declare type MarketplaceStoreHomePageSection = {
|
|
37483
37689
|
description: Scalars['String']['output'];
|
|
37484
37690
|
id: Scalars['ID']['output'];
|
|
37485
|
-
tagline: Scalars['String']['output'];
|
|
37486
37691
|
title: Scalars['String']['output'];
|
|
37487
37692
|
};
|
|
37488
37693
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
@@ -37519,12 +37724,12 @@ export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
|
37519
37724
|
};
|
|
37520
37725
|
export declare type MarketplaceStoreQueryApi = {
|
|
37521
37726
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
37522
|
-
|
|
37727
|
+
category: MarketplaceStoreCategoryResponse;
|
|
37523
37728
|
collection: MarketplaceStoreCollectionResponse;
|
|
37524
37729
|
homePage: MarketplaceStoreHomePageResponse;
|
|
37525
37730
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
37526
37731
|
};
|
|
37527
|
-
export declare type
|
|
37732
|
+
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
37528
37733
|
slug: Scalars['String']['input'];
|
|
37529
37734
|
};
|
|
37530
37735
|
export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
@@ -37533,10 +37738,6 @@ export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
|
37533
37738
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
37534
37739
|
id: Scalars['ID']['input'];
|
|
37535
37740
|
};
|
|
37536
|
-
export declare enum MarketplaceStoreTilesVariation {
|
|
37537
|
-
Large = "LARGE",
|
|
37538
|
-
Small = "SMALL"
|
|
37539
|
-
}
|
|
37540
37741
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
37541
37742
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
37542
37743
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -37669,7 +37870,6 @@ export declare type Mutation = {
|
|
|
37669
37870
|
createPolarisDecoration?: Maybe<CreatePolarisDecorationPayload>;
|
|
37670
37871
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
37671
37872
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
37672
|
-
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
37673
37873
|
createPolarisPlay?: Maybe<CreatePolarisPlayPayload>;
|
|
37674
37874
|
createPolarisPlayContribution?: Maybe<CreatePolarisPlayContributionPayload>;
|
|
37675
37875
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
@@ -37898,9 +38098,6 @@ export declare type MutationCreatePolarisIdeaTemplateArgs = {
|
|
|
37898
38098
|
export declare type MutationCreatePolarisInsightArgs = {
|
|
37899
38099
|
input: CreatePolarisInsightInput;
|
|
37900
38100
|
};
|
|
37901
|
-
export declare type MutationCreatePolarisInsightFromPlayContributionArgs = {
|
|
37902
|
-
input?: InputMaybe<CreatePolarisInsightFromPlayContributionInput>;
|
|
37903
|
-
};
|
|
37904
38101
|
export declare type MutationCreatePolarisPlayArgs = {
|
|
37905
38102
|
input: CreatePolarisPlayInput;
|
|
37906
38103
|
};
|
|
@@ -40640,6 +40837,7 @@ export declare type QueryContentFacetArgs = {
|
|
|
40640
40837
|
first?: Scalars['Int']['input'];
|
|
40641
40838
|
forContentType: Scalars['String']['input'];
|
|
40642
40839
|
forFields: Array<Scalars['String']['input']>;
|
|
40840
|
+
withLocales?: Array<Scalars['String']['input']>;
|
|
40643
40841
|
};
|
|
40644
40842
|
export declare type QueryCustomerServiceArgs = {
|
|
40645
40843
|
cloudId: Scalars['ID']['input'];
|
|
@@ -42065,6 +42263,7 @@ export declare enum Scope {
|
|
|
42065
42263
|
ProjectVersionWrite = "PROJECT_VERSION_WRITE",
|
|
42066
42264
|
ProjectWrite = "PROJECT_WRITE",
|
|
42067
42265
|
ReadAccount = "READ_ACCOUNT",
|
|
42266
|
+
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
42068
42267
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
42069
42268
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
42070
42269
|
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
@@ -46240,7 +46439,7 @@ export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
|
46240
46439
|
input: TrelloRemoveMemberInput;
|
|
46241
46440
|
};
|
|
46242
46441
|
export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
46243
|
-
input:
|
|
46442
|
+
input: TrelloRemoveMemberFromWorkspaceInput;
|
|
46244
46443
|
};
|
|
46245
46444
|
export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
46246
46445
|
input: TrelloUnarchiveCardInput;
|