@forge/cli-shared 8.0.0-next.13 → 8.0.0-next.15
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 +18 -0
- package/out/graphql/graphql-types.d.ts +178 -49
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +50 -20
- package/out/shared/test.d.ts.map +1 -1
- package/out/shared/test.js +1 -2
- package/out/ui/command-line-ui.d.ts +0 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +0 -5
- package/out/ui/logger.d.ts +0 -1
- package/out/ui/logger.d.ts.map +1 -1
- package/out/ui/logger.js +0 -2
- package/out/ui/text.d.ts +0 -14
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -20
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.0.0-next.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3d96d1c]
|
|
8
|
+
- @forge/manifest@10.0.0-next.13
|
|
9
|
+
|
|
10
|
+
## 8.0.0-next.14
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- ba634d9: Remove further sandbox runtime related components
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [ba634d9]
|
|
19
|
+
- @forge/manifest@10.0.0-next.12
|
|
20
|
+
|
|
3
21
|
## 8.0.0-next.13
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -4869,6 +4869,7 @@ export declare type CcpQueryApi = {
|
|
|
4869
4869
|
entitlement?: Maybe<CcpEntitlement>;
|
|
4870
4870
|
entitlementTemplates?: Maybe<Array<Maybe<CcpEntitlementTemplate>>>;
|
|
4871
4871
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4872
|
+
entitlementsV2?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4872
4873
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4873
4874
|
invoiceGroups?: Maybe<Array<Maybe<CcpInvoiceGroupV2>>>;
|
|
4874
4875
|
offering?: Maybe<CcpOffering>;
|
|
@@ -4896,6 +4897,9 @@ export declare type CcpQueryApiEntitlementTemplatesArgs = {
|
|
|
4896
4897
|
export declare type CcpQueryApiEntitlementsArgs = {
|
|
4897
4898
|
ids: Array<Scalars['ID']['input']>;
|
|
4898
4899
|
};
|
|
4900
|
+
export declare type CcpQueryApiEntitlementsV2Args = {
|
|
4901
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4902
|
+
};
|
|
4899
4903
|
export declare type CcpQueryApiInvoiceGroupsArgs = {
|
|
4900
4904
|
ids: Array<Scalars['ID']['input']>;
|
|
4901
4905
|
};
|
|
@@ -21867,6 +21871,7 @@ export declare type CsmAiAction = {
|
|
|
21867
21871
|
description?: Maybe<Scalars['String']['output']>;
|
|
21868
21872
|
id: Scalars['ID']['output'];
|
|
21869
21873
|
isConfirmationRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
21874
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
21870
21875
|
name?: Maybe<Scalars['String']['output']>;
|
|
21871
21876
|
variables?: Maybe<Array<Maybe<CsmAiActionVariable>>>;
|
|
21872
21877
|
};
|
|
@@ -21959,6 +21964,7 @@ export declare type CsmAiCreateActionInput = {
|
|
|
21959
21964
|
authentication: CsmAiAuthenticationInput;
|
|
21960
21965
|
description: Scalars['String']['input'];
|
|
21961
21966
|
isConfirmationRequired: Scalars['Boolean']['input'];
|
|
21967
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
21962
21968
|
name: Scalars['String']['input'];
|
|
21963
21969
|
variables?: InputMaybe<Array<CsmAiActionVariableInput>>;
|
|
21964
21970
|
};
|
|
@@ -22002,6 +22008,10 @@ export declare type CsmAiHub = {
|
|
|
22002
22008
|
agent?: Maybe<CsmAiAgentResult>;
|
|
22003
22009
|
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
22004
22010
|
id: Scalars['ID']['output'];
|
|
22011
|
+
widgets?: Maybe<Array<Maybe<CsmAiWidgetConfigResult>>>;
|
|
22012
|
+
};
|
|
22013
|
+
export declare type CsmAiHubActionsArgs = {
|
|
22014
|
+
filterEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22005
22015
|
};
|
|
22006
22016
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
22007
22017
|
export declare type CsmAiKeyValueInput = {
|
|
@@ -22033,6 +22043,7 @@ export declare type CsmAiUpdateActionInput = {
|
|
|
22033
22043
|
authentication?: InputMaybe<CsmAiAuthenticationInput>;
|
|
22034
22044
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
22035
22045
|
isConfirmationRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22046
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22036
22047
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
22037
22048
|
variables?: InputMaybe<Array<InputMaybe<CsmAiActionVariableInput>>>;
|
|
22038
22049
|
};
|
|
@@ -22074,6 +22085,78 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
22074
22085
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
22075
22086
|
success: Scalars['Boolean']['output'];
|
|
22076
22087
|
};
|
|
22088
|
+
export declare type CsmAiUpdateWidgetPayload = Payload & {
|
|
22089
|
+
__typename?: 'CsmAiUpdateWidgetPayload';
|
|
22090
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22091
|
+
success: Scalars['Boolean']['output'];
|
|
22092
|
+
widget?: Maybe<CsmAiWidgetConfig>;
|
|
22093
|
+
};
|
|
22094
|
+
export declare type CsmAiWidgetBrandingAttribution = {
|
|
22095
|
+
__typename?: 'CsmAiWidgetBrandingAttribution';
|
|
22096
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
22097
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
22098
|
+
};
|
|
22099
|
+
export declare type CsmAiWidgetBrandingAttributionInput = {
|
|
22100
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
22101
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
22102
|
+
};
|
|
22103
|
+
export declare enum CsmAiWidgetBrandingChatColorVibeVariant {
|
|
22104
|
+
Dark = "DARK",
|
|
22105
|
+
Default = "DEFAULT",
|
|
22106
|
+
Light = "LIGHT",
|
|
22107
|
+
Vibrant = "VIBRANT"
|
|
22108
|
+
}
|
|
22109
|
+
export declare enum CsmAiWidgetBrandingColorVibeVariant {
|
|
22110
|
+
Dark = "DARK",
|
|
22111
|
+
Light = "LIGHT",
|
|
22112
|
+
Vibrant = "VIBRANT"
|
|
22113
|
+
}
|
|
22114
|
+
export declare enum CsmAiWidgetBrandingRadius {
|
|
22115
|
+
Normal = "NORMAL",
|
|
22116
|
+
Rounded = "ROUNDED",
|
|
22117
|
+
Sharp = "SHARP"
|
|
22118
|
+
}
|
|
22119
|
+
export declare enum CsmAiWidgetBrandingSpaceVariant {
|
|
22120
|
+
Comfortable = "COMFORTABLE",
|
|
22121
|
+
Cosy = "COSY",
|
|
22122
|
+
Generous = "GENEROUS"
|
|
22123
|
+
}
|
|
22124
|
+
export declare type CsmAiWidgetBrandingTheme = {
|
|
22125
|
+
__typename?: 'CsmAiWidgetBrandingTheme';
|
|
22126
|
+
attribution?: Maybe<CsmAiWidgetBrandingAttribution>;
|
|
22127
|
+
chatColor?: Maybe<CsmAiWidgetBrandingChatColorVibeVariant>;
|
|
22128
|
+
colorVibeVariant?: Maybe<CsmAiWidgetBrandingColorVibeVariant>;
|
|
22129
|
+
radius?: Maybe<CsmAiWidgetBrandingRadius>;
|
|
22130
|
+
space?: Maybe<CsmAiWidgetBrandingSpaceVariant>;
|
|
22131
|
+
};
|
|
22132
|
+
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
22133
|
+
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
22134
|
+
chatColor: CsmAiWidgetBrandingChatColorVibeVariant;
|
|
22135
|
+
colorVibeVariant: CsmAiWidgetBrandingColorVibeVariant;
|
|
22136
|
+
radius: CsmAiWidgetBrandingRadius;
|
|
22137
|
+
space: CsmAiWidgetBrandingSpaceVariant;
|
|
22138
|
+
};
|
|
22139
|
+
export declare type CsmAiWidgetConfig = {
|
|
22140
|
+
__typename?: 'CsmAiWidgetConfig';
|
|
22141
|
+
allowedDomains?: Maybe<Array<Scalars['String']['output']>>;
|
|
22142
|
+
id: Scalars['ID']['output'];
|
|
22143
|
+
isAnonymousAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22144
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
22145
|
+
theme?: Maybe<CsmAiWidgetBrandingTheme>;
|
|
22146
|
+
type: CsmAiWidgetType;
|
|
22147
|
+
};
|
|
22148
|
+
export declare type CsmAiWidgetConfigResult = CsmAiWidgetConfig | QueryError;
|
|
22149
|
+
export declare enum CsmAiWidgetType {
|
|
22150
|
+
Embed = "EMBED",
|
|
22151
|
+
SupportSite = "SUPPORT_SITE"
|
|
22152
|
+
}
|
|
22153
|
+
export declare type CsmAiWidgetUpdateInput = {
|
|
22154
|
+
allowedDomains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
22155
|
+
isAnonymousAccessEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22156
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22157
|
+
theme?: InputMaybe<CsmAiWidgetBrandingThemeUpdateInput>;
|
|
22158
|
+
type: CsmAiWidgetType;
|
|
22159
|
+
};
|
|
22077
22160
|
export declare type CumulativeFlowDiagram = {
|
|
22078
22161
|
__typename?: 'CumulativeFlowDiagram';
|
|
22079
22162
|
chart: CfdChartConnection;
|
|
@@ -32981,8 +33064,6 @@ export declare type GraphStore = {
|
|
|
32981
33064
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
32982
33065
|
componentLinkIsJiraProject?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectConnection>;
|
|
32983
33066
|
componentLinkIsJiraProjectInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsJiraProjectInverseConnection>;
|
|
32984
|
-
componentLinkIsProviderRepo?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoConnection>;
|
|
32985
|
-
componentLinkIsProviderRepoInverse?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection>;
|
|
32986
33067
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
32987
33068
|
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
32988
33069
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
@@ -34089,20 +34170,6 @@ export declare type GraphStoreComponentLinkIsJiraProjectInverseArgs = {
|
|
|
34089
34170
|
id: Scalars['ID']['input'];
|
|
34090
34171
|
sort?: InputMaybe<GraphStoreComponentLinkIsJiraProjectSortInput>;
|
|
34091
34172
|
};
|
|
34092
|
-
export declare type GraphStoreComponentLinkIsProviderRepoArgs = {
|
|
34093
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34094
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34095
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34096
|
-
id: Scalars['ID']['input'];
|
|
34097
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
34098
|
-
};
|
|
34099
|
-
export declare type GraphStoreComponentLinkIsProviderRepoInverseArgs = {
|
|
34100
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
34101
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34102
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34103
|
-
id: Scalars['ID']['input'];
|
|
34104
|
-
sort?: InputMaybe<GraphStoreComponentLinkIsProviderRepoSortInput>;
|
|
34105
|
-
};
|
|
34106
34173
|
export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
34107
34174
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34108
34175
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39756,9 +39823,6 @@ export declare type GraphStoreComponentImpactedByIncidentSortInput = {
|
|
|
39756
39823
|
export declare type GraphStoreComponentLinkIsJiraProjectSortInput = {
|
|
39757
39824
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39758
39825
|
};
|
|
39759
|
-
export declare type GraphStoreComponentLinkIsProviderRepoSortInput = {
|
|
39760
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39761
|
-
};
|
|
39762
39826
|
export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
39763
39827
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
39764
39828
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -46241,34 +46305,6 @@ export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseEdge =
|
|
|
46241
46305
|
};
|
|
46242
46306
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectInverseUnion = CompassLinkNode;
|
|
46243
46307
|
export declare type GraphStoreSimplifiedComponentLinkIsJiraProjectUnion = JiraProject;
|
|
46244
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoConnection = HasPageInfo & {
|
|
46245
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoConnection';
|
|
46246
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoEdge>>>;
|
|
46247
|
-
pageInfo: PageInfo;
|
|
46248
|
-
};
|
|
46249
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoEdge = {
|
|
46250
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoEdge';
|
|
46251
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46252
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46253
|
-
id: Scalars['ID']['output'];
|
|
46254
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46255
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoUnion>;
|
|
46256
|
-
};
|
|
46257
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection = HasPageInfo & {
|
|
46258
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseConnection';
|
|
46259
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge>>>;
|
|
46260
|
-
pageInfo: PageInfo;
|
|
46261
|
-
};
|
|
46262
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge = {
|
|
46263
|
-
__typename?: 'GraphStoreSimplifiedComponentLinkIsProviderRepoInverseEdge';
|
|
46264
|
-
createdAt: Scalars['DateTime']['output'];
|
|
46265
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
46266
|
-
id: Scalars['ID']['output'];
|
|
46267
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
46268
|
-
node?: Maybe<GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion>;
|
|
46269
|
-
};
|
|
46270
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoInverseUnion = CompassLinkNode;
|
|
46271
|
-
export declare type GraphStoreSimplifiedComponentLinkIsProviderRepoUnion = BitbucketRepository;
|
|
46272
46308
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
46273
46309
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
46274
46310
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -58804,6 +58840,7 @@ export declare type JiraBoardView = {
|
|
|
58804
58840
|
id: Scalars['ID']['output'];
|
|
58805
58841
|
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
58806
58842
|
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
58843
|
+
unmappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58807
58844
|
};
|
|
58808
58845
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
58809
58846
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58827,6 +58864,10 @@ export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
|
58827
58864
|
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
58828
58865
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
58829
58866
|
};
|
|
58867
|
+
export declare type JiraBoardViewUnmappedStatusesArgs = {
|
|
58868
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58869
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58870
|
+
};
|
|
58830
58871
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
58831
58872
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
58832
58873
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -58905,19 +58946,45 @@ export declare type JiraBoardViewSettings = {
|
|
|
58905
58946
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
58906
58947
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
58907
58948
|
};
|
|
58949
|
+
export declare type JiraBoardViewStatus = {
|
|
58950
|
+
__typename?: 'JiraBoardViewStatus';
|
|
58951
|
+
associatedIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
58952
|
+
id: Scalars['ID']['output'];
|
|
58953
|
+
status?: Maybe<JiraStatus>;
|
|
58954
|
+
};
|
|
58955
|
+
export declare type JiraBoardViewStatusAssociatedIssueTypesArgs = {
|
|
58956
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58957
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58958
|
+
};
|
|
58908
58959
|
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
58909
58960
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
58910
58961
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
58911
58962
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
58912
58963
|
id: Scalars['ID']['output'];
|
|
58964
|
+
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
58913
58965
|
name?: Maybe<Scalars['String']['output']>;
|
|
58914
58966
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
58915
58967
|
};
|
|
58968
|
+
export declare type JiraBoardViewStatusColumnMappedStatusesArgs = {
|
|
58969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
58970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
58971
|
+
};
|
|
58916
58972
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
58917
58973
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
58918
58974
|
name: Scalars['String']['input'];
|
|
58919
58975
|
statusIds: Array<Scalars['ID']['input']>;
|
|
58920
58976
|
};
|
|
58977
|
+
export declare type JiraBoardViewStatusConnection = {
|
|
58978
|
+
__typename?: 'JiraBoardViewStatusConnection';
|
|
58979
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewStatusEdge>>>;
|
|
58980
|
+
errors?: Maybe<Array<QueryError>>;
|
|
58981
|
+
pageInfo?: Maybe<PageInfo>;
|
|
58982
|
+
};
|
|
58983
|
+
export declare type JiraBoardViewStatusEdge = {
|
|
58984
|
+
__typename?: 'JiraBoardViewStatusEdge';
|
|
58985
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
58986
|
+
node?: Maybe<JiraBoardViewStatus>;
|
|
58987
|
+
};
|
|
58921
58988
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
58922
58989
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
58923
58990
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -61155,6 +61222,9 @@ export declare type JiraDetailedViewFieldSetsArgs = {
|
|
|
61155
61222
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61156
61223
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61157
61224
|
};
|
|
61225
|
+
export declare type JiraDetailedViewHasDefaultFieldSetsArgs = {
|
|
61226
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61227
|
+
};
|
|
61158
61228
|
export declare type JiraDetailedViewIssuesArgs = {
|
|
61159
61229
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61160
61230
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62000,10 +62070,14 @@ export declare type JiraFieldSetViewFieldSetsArgs = {
|
|
|
62000
62070
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62001
62071
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62002
62072
|
};
|
|
62073
|
+
export declare type JiraFieldSetViewHasDefaultFieldSetsArgs = {
|
|
62074
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62075
|
+
};
|
|
62003
62076
|
export declare type JiraFieldSetViewResult = JiraFieldSetView | QueryError;
|
|
62004
62077
|
export declare type JiraFieldSetsMutationInput = {
|
|
62005
62078
|
replaceFieldSetsInput?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
62006
62079
|
resetToDefaultFieldSets?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62080
|
+
scopedResetToDefaultFieldSets?: InputMaybe<JiraScopedResetFieldsetsInput>;
|
|
62007
62081
|
};
|
|
62008
62082
|
export declare type JiraFieldSetsViewMetadata = {
|
|
62009
62083
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
@@ -62018,6 +62092,9 @@ export declare type JiraFieldSetsViewMetadataFieldSetsArgs = {
|
|
|
62018
62092
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62019
62093
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62020
62094
|
};
|
|
62095
|
+
export declare type JiraFieldSetsViewMetadataHasDefaultFieldSetsArgs = {
|
|
62096
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62097
|
+
};
|
|
62021
62098
|
export declare type JiraFieldSetsViewPayload = Payload & {
|
|
62022
62099
|
__typename?: 'JiraFieldSetsViewPayload';
|
|
62023
62100
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -62832,7 +62909,6 @@ export declare type JiraGroup = Node & {
|
|
|
62832
62909
|
name: Scalars['String']['output'];
|
|
62833
62910
|
};
|
|
62834
62911
|
export declare type JiraGroupByDropdownFilter = {
|
|
62835
|
-
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
62836
62912
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
62837
62913
|
};
|
|
62838
62914
|
export declare type JiraGroupConnection = {
|
|
@@ -62890,6 +62966,9 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
62890
62966
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62891
62967
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62892
62968
|
};
|
|
62969
|
+
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
62970
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
62971
|
+
};
|
|
62893
62972
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
62894
62973
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
62895
62974
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -64459,6 +64538,9 @@ export declare type JiraIssueSearchViewFieldSetsArgs = {
|
|
|
64459
64538
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64460
64539
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64461
64540
|
};
|
|
64541
|
+
export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
64542
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64543
|
+
};
|
|
64462
64544
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
64463
64545
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
64464
64546
|
};
|
|
@@ -64546,6 +64628,9 @@ export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
|
64546
64628
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64547
64629
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64548
64630
|
};
|
|
64631
|
+
export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
64632
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
64633
|
+
};
|
|
64549
64634
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
64550
64635
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
64551
64636
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65795,6 +65880,9 @@ export declare type JiraListViewFieldSetsArgs = {
|
|
|
65795
65880
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65796
65881
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65797
65882
|
};
|
|
65883
|
+
export declare type JiraListViewHasDefaultFieldSetsArgs = {
|
|
65884
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
65885
|
+
};
|
|
65798
65886
|
export declare type JiraListViewIssuesArgs = {
|
|
65799
65887
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65800
65888
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69112,6 +69200,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
69112
69200
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
69113
69201
|
mostRecent?: Maybe<JiraProject>;
|
|
69114
69202
|
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
69203
|
+
otherItems?: Maybe<JiraProjectConnection>;
|
|
69115
69204
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
69116
69205
|
recents?: Maybe<JiraProjectConnection>;
|
|
69117
69206
|
};
|
|
@@ -69129,6 +69218,10 @@ export declare type JiraProjectsSidebarMenuMoreRecentsArgs = {
|
|
|
69129
69218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69130
69219
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69131
69220
|
};
|
|
69221
|
+
export declare type JiraProjectsSidebarMenuOtherItemsArgs = {
|
|
69222
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69223
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69224
|
+
};
|
|
69132
69225
|
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
69133
69226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69134
69227
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71239,6 +71332,10 @@ export declare type JiraScmRepository = {
|
|
|
71239
71332
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
71240
71333
|
name?: Maybe<Scalars['String']['output']>;
|
|
71241
71334
|
};
|
|
71335
|
+
export declare type JiraScopedResetFieldsetsInput = {
|
|
71336
|
+
context?: InputMaybe<JiraIssueSearchViewFieldSetsContext>;
|
|
71337
|
+
doReset?: InputMaybe<Scalars['Boolean']['input']>;
|
|
71338
|
+
};
|
|
71242
71339
|
export declare type JiraScreen = Node & {
|
|
71243
71340
|
__typename?: 'JiraScreen';
|
|
71244
71341
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -73188,6 +73285,9 @@ export declare type JiraSpreadsheetViewFieldSetsArgs = {
|
|
|
73188
73285
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73189
73286
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73190
73287
|
};
|
|
73288
|
+
export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
73289
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
73290
|
+
};
|
|
73191
73291
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
73192
73292
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73193
73293
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -77468,10 +77568,14 @@ export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
|
77468
77568
|
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
77469
77569
|
id: Scalars['ID']['output'];
|
|
77470
77570
|
name: Scalars['String']['output'];
|
|
77571
|
+
relatedEntities?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
77471
77572
|
relatedQuestion?: Maybe<Scalars['String']['output']>;
|
|
77472
77573
|
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
77473
77574
|
updatedAt: Scalars['String']['output'];
|
|
77474
77575
|
};
|
|
77576
|
+
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
77577
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77578
|
+
};
|
|
77475
77579
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
77476
77580
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
77477
77581
|
Area = "AREA",
|
|
@@ -83651,6 +83755,7 @@ export declare type Mutation = {
|
|
|
83651
83755
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
83652
83756
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
83653
83757
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
83758
|
+
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
83654
83759
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
83655
83760
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
83656
83761
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -84995,6 +85100,11 @@ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
|
|
|
84995
85100
|
helpCenterAri: Scalars['ID']['input'];
|
|
84996
85101
|
input: CsmAiUpdateHandoffConfigInput;
|
|
84997
85102
|
};
|
|
85103
|
+
export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
85104
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
85105
|
+
input: CsmAiWidgetUpdateInput;
|
|
85106
|
+
widgetId: Scalars['ID']['input'];
|
|
85107
|
+
};
|
|
84998
85108
|
export declare type MutationCustomerServiceArgs = {
|
|
84999
85109
|
cloudId: Scalars['ID']['input'];
|
|
85000
85110
|
};
|
|
@@ -88840,6 +88950,9 @@ export declare type Query = {
|
|
|
88840
88950
|
appStoredEntity?: Maybe<AppStoredEntity>;
|
|
88841
88951
|
apps?: Maybe<AppConnection>;
|
|
88842
88952
|
aquaOutgoingEmailLogs?: Maybe<AquaOutgoingEmailLogsQueryApi>;
|
|
88953
|
+
atlasGoalLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88954
|
+
atlasProjectsLinkedToGoals?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88955
|
+
atlasProjectsLinkedToIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
88843
88956
|
atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
|
|
88844
88957
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
88845
88958
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
@@ -89130,6 +89243,7 @@ export declare type Query = {
|
|
|
89130
89243
|
contentTemplateLabelsByCriteria?: Maybe<PaginatedLabelList>;
|
|
89131
89244
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
89132
89245
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
89246
|
+
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
89133
89247
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
89134
89248
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
89135
89249
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
@@ -89734,6 +89848,15 @@ export declare type QueryAppsArgs = {
|
|
|
89734
89848
|
export declare type QueryAquaOutgoingEmailLogsArgs = {
|
|
89735
89849
|
cloudId: Scalars['ID']['input'];
|
|
89736
89850
|
};
|
|
89851
|
+
export declare type QueryAtlasGoalLinkedToIssueArgs = {
|
|
89852
|
+
issueId: Scalars['ID']['input'];
|
|
89853
|
+
};
|
|
89854
|
+
export declare type QueryAtlasProjectsLinkedToGoalsArgs = {
|
|
89855
|
+
goalId: Scalars['ID']['input'];
|
|
89856
|
+
};
|
|
89857
|
+
export declare type QueryAtlasProjectsLinkedToIssueArgs = {
|
|
89858
|
+
issueId: Scalars['ID']['input'];
|
|
89859
|
+
};
|
|
89737
89860
|
export declare type QueryAtlassianStudio_UserSiteContextArgs = {
|
|
89738
89861
|
cloudId: Scalars['ID']['input'];
|
|
89739
89862
|
};
|
|
@@ -91037,6 +91160,11 @@ export declare type QueryContentWatchersArgs = {
|
|
|
91037
91160
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91038
91161
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
91039
91162
|
};
|
|
91163
|
+
export declare type QueryContributorsLinkedToAtlasProjectArgs = {
|
|
91164
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91166
|
+
projectId: Scalars['ID']['input'];
|
|
91167
|
+
};
|
|
91040
91168
|
export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
91041
91169
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91042
91170
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92016,7 +92144,7 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
|
|
|
92016
92144
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92017
92145
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
92018
92146
|
cloudId: Scalars['ID']['input'];
|
|
92019
|
-
entity
|
|
92147
|
+
entity?: InputMaybe<RadarPositionsByEntityType>;
|
|
92020
92148
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92021
92149
|
input?: InputMaybe<RadarPositionsByEntityInput>;
|
|
92022
92150
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -100115,6 +100243,7 @@ export declare type TenantContext = {
|
|
|
100115
100243
|
entitlementInfo?: Maybe<CommerceEntitlementInfo>;
|
|
100116
100244
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
100117
100245
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
100246
|
+
transactionAccounts?: Maybe<Array<Maybe<CommerceTransactionAccount>>>;
|
|
100118
100247
|
};
|
|
100119
100248
|
export declare type TenantContextActivationIdByProductArgs = {
|
|
100120
100249
|
product: Scalars['String']['input'];
|