@forge/cli-shared 9.3.1-next.2-experimental-f258a6d → 9.4.0-next.4
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 +6 -7
- package/out/graphql/graphql-types.d.ts +121 -17
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +66 -40
- package/out/http-client/file-uploader.d.ts.map +1 -1
- package/out/ui/text.d.ts +32 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +33 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.
|
|
3
|
+
## 9.4.0-next.4
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 2b13c2e: Move from node-fetch to native fetch
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## 9.4.0-next.3
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
10
12
|
|
|
11
|
-
-
|
|
12
|
-
- 93422bb: Add an option to inspect the application bundle
|
|
13
|
-
- Updated dependencies [dcbf516]
|
|
14
|
-
- @forge/manifest@13.3.1-next.0-experimental-f258a6d
|
|
13
|
+
- ff4f2bf: Add `forge site provision` to provision a new demo site or get an existing demo site.
|
|
15
14
|
|
|
16
15
|
## 9.3.1-next.2
|
|
17
16
|
|
|
@@ -14942,6 +14942,29 @@ export type AssetsObjectTypeAttributeValue = {
|
|
|
14942
14942
|
searchValue?: Maybe<Scalars['String']['output']>;
|
|
14943
14943
|
value?: Maybe<AssetsAttributeValue>;
|
|
14944
14944
|
};
|
|
14945
|
+
export type AssetsPeopleAttribute = AssetsObjectTypeAttribute & {
|
|
14946
|
+
__typename?: 'AssetsPeopleAttribute';
|
|
14947
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
14948
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14949
|
+
id: Scalars['ID']['output'];
|
|
14950
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
14951
|
+
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
14952
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14953
|
+
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
14954
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
14955
|
+
};
|
|
14956
|
+
export type AssetsPeopleAttributeOnObject = AssetsAttributeOnObject & {
|
|
14957
|
+
__typename?: 'AssetsPeopleAttributeOnObject';
|
|
14958
|
+
attribute?: Maybe<AssetsPeopleAttribute>;
|
|
14959
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14960
|
+
id: Scalars['ID']['output'];
|
|
14961
|
+
identityGroups?: Maybe<Array<AssetsIdentityGroup>>;
|
|
14962
|
+
name: Scalars['String']['output'];
|
|
14963
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
14964
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
14965
|
+
value?: Maybe<Array<AssetsPeopleAttributeValue>>;
|
|
14966
|
+
};
|
|
14967
|
+
export type AssetsPeopleAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
14945
14968
|
export type AssetsPrimitiveAttributeValue = {
|
|
14946
14969
|
__typename?: 'AssetsPrimitiveAttributeValue';
|
|
14947
14970
|
value: Scalars['String']['output'];
|
|
@@ -23231,6 +23254,7 @@ export type CommerceExpEntitlementFilter = {
|
|
|
23231
23254
|
includeManuallyBilled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23232
23255
|
invoiceGroupIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
23233
23256
|
isSandbox?: InputMaybe<Scalars['Boolean']['input']>;
|
|
23257
|
+
offeringKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
23234
23258
|
pricingPlanTypes?: InputMaybe<Array<CommerceExpCcpPricingType>>;
|
|
23235
23259
|
productKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
23236
23260
|
productName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31719,6 +31743,14 @@ export type ConfluenceContentPerformance = {
|
|
|
31719
31743
|
space: ConfluenceContentPerformanceSpace;
|
|
31720
31744
|
views: Scalars['Int']['output'];
|
|
31721
31745
|
};
|
|
31746
|
+
export declare enum ConfluenceContentPerformanceByCriteriaOrder {
|
|
31747
|
+
ContentOwner = "CONTENT_OWNER",
|
|
31748
|
+
ContentTitle = "CONTENT_TITLE",
|
|
31749
|
+
LoadTimeRating = "LOAD_TIME_RATING",
|
|
31750
|
+
MedianLoadTime = "MEDIAN_LOAD_TIME",
|
|
31751
|
+
Space = "SPACE",
|
|
31752
|
+
Views = "VIEWS"
|
|
31753
|
+
}
|
|
31722
31754
|
export type ConfluenceContentPerformanceConnection = {
|
|
31723
31755
|
__typename?: 'ConfluenceContentPerformanceConnection';
|
|
31724
31756
|
edges: Array<Maybe<ConfluenceContentPerformanceEdge>>;
|
|
@@ -34663,17 +34695,6 @@ export type ConfluencePageBlogified = {
|
|
|
34663
34695
|
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
34664
34696
|
spaceName?: Maybe<Scalars['String']['output']>;
|
|
34665
34697
|
};
|
|
34666
|
-
export type ConfluencePageBriefing = {
|
|
34667
|
-
__typename?: 'ConfluencePageBriefing';
|
|
34668
|
-
actions: Array<ConfluencePageBriefingAction>;
|
|
34669
|
-
briefing: Scalars['String']['output'];
|
|
34670
|
-
};
|
|
34671
|
-
export type ConfluencePageBriefingAction = {
|
|
34672
|
-
__typename?: 'ConfluencePageBriefingAction';
|
|
34673
|
-
cta: Scalars['String']['output'];
|
|
34674
|
-
description: Scalars['String']['output'];
|
|
34675
|
-
icon: Scalars['String']['output'];
|
|
34676
|
-
};
|
|
34677
34698
|
export type ConfluencePageIncludeMacro = {
|
|
34678
34699
|
__typename?: 'ConfluencePageIncludeMacro';
|
|
34679
34700
|
targetContent?: Maybe<Content>;
|
|
@@ -39753,6 +39774,11 @@ export type CplsAtlasProjectRecommendation = {
|
|
|
39753
39774
|
atlasProject?: Maybe<TownsquareProject>;
|
|
39754
39775
|
atlasProjectId: Scalars['ID']['output'];
|
|
39755
39776
|
};
|
|
39777
|
+
export type CplsCapacityPlan = {
|
|
39778
|
+
__typename?: 'CplsCapacityPlan';
|
|
39779
|
+
id: Scalars['ID']['output'];
|
|
39780
|
+
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
39781
|
+
};
|
|
39756
39782
|
export type CplsCapacityPlanningPeopleView = {
|
|
39757
39783
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
39758
39784
|
contributor?: Maybe<CplsContributor>;
|
|
@@ -117800,7 +117826,9 @@ export type GravityCreateDraftInput = {
|
|
|
117800
117826
|
ari: Scalars['String']['input'];
|
|
117801
117827
|
content: Scalars['String']['input'];
|
|
117802
117828
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
117829
|
+
replaceActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
117803
117830
|
type: Scalars['String']['input'];
|
|
117831
|
+
upsertActions?: InputMaybe<Array<GravityUpsertActionInput>>;
|
|
117804
117832
|
};
|
|
117805
117833
|
export type GravityCreateViewFromInlinedTemplateInput = {
|
|
117806
117834
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -119849,6 +119877,7 @@ export type HelpCenterHubProductEntityResult = {
|
|
|
119849
119877
|
};
|
|
119850
119878
|
export type HelpCenterHubTranslationBlock = {
|
|
119851
119879
|
__typename?: 'HelpCenterHubTranslationBlock';
|
|
119880
|
+
extensionType?: Maybe<Scalars['String']['output']>;
|
|
119852
119881
|
fields: Array<HelpCenterHubTranslationField>;
|
|
119853
119882
|
localId: Scalars['ID']['output'];
|
|
119854
119883
|
};
|
|
@@ -120340,7 +120369,7 @@ export type HelpCenterQueryApi = {
|
|
|
120340
120369
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
120341
120370
|
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
120342
120371
|
hubProductEntities: Array<HelpCenterHubProductEntityResult>;
|
|
120343
|
-
layoutTranslations
|
|
120372
|
+
layoutTranslations?: Maybe<Array<HelpCenterHubLayoutTranslations>>;
|
|
120344
120373
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
120345
120374
|
};
|
|
120346
120375
|
export type HelpCenterQueryApiCustomerExperiencesArgs = {
|
|
@@ -132799,6 +132828,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
132799
132828
|
issueTypesForHierarchyAbove?: Maybe<JiraIssueTypeConnection>;
|
|
132800
132829
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
132801
132830
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
132831
|
+
issueViewVariant?: Maybe<JiraIssueViewVariant>;
|
|
132802
132832
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
132803
132833
|
jiraWorkItemLinksExternalBranch?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBranchConnection>;
|
|
132804
132834
|
jiraWorkItemLinksExternalBuild?: Maybe<GraphStoreV2SimplifiedJiraWorkItemLinksExternalBuildConnection>;
|
|
@@ -133283,6 +133313,7 @@ export type JiraIssueAiSummary = {
|
|
|
133283
133313
|
__typename?: 'JiraIssueAISummary';
|
|
133284
133314
|
hasUserOptedOut: Scalars['Boolean']['output'];
|
|
133285
133315
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
133316
|
+
promptVersion?: Maybe<Scalars['String']['output']>;
|
|
133286
133317
|
summary?: Maybe<JiraRichText>;
|
|
133287
133318
|
};
|
|
133288
133319
|
export type JiraIssueAiSummaryResult = JiraIssueAiSummary | QueryError;
|
|
@@ -134209,6 +134240,7 @@ export type JiraIssueFieldsInput = {
|
|
|
134209
134240
|
jiraForgeStringsFields?: InputMaybe<Array<JiraForgeStringsFieldInput>>;
|
|
134210
134241
|
jiraForgeUsersFields?: InputMaybe<Array<JiraForgeUsersFieldInput>>;
|
|
134211
134242
|
labelsFields?: InputMaybe<Array<JiraLabelsFieldInput>>;
|
|
134243
|
+
longTextFields?: InputMaybe<Array<JiraSingleLineTextFieldInput>>;
|
|
134212
134244
|
multipleGroupPickerFields?: InputMaybe<Array<JiraMultipleGroupPickerFieldInput>>;
|
|
134213
134245
|
multipleSelectClearableUserPickerFields?: InputMaybe<Array<JiraMultipleSelectClearableUserPickerFieldInput>>;
|
|
134214
134246
|
multipleSelectFields?: InputMaybe<Array<JiraMultipleSelectFieldInput>>;
|
|
@@ -135672,6 +135704,10 @@ export type JiraIssueViewUserPreferredLayout = {
|
|
|
135672
135704
|
layoutId?: Maybe<Scalars['String']['output']>;
|
|
135673
135705
|
layoutType?: Maybe<JiraIssueViewUserPreferenceLayoutType>;
|
|
135674
135706
|
};
|
|
135707
|
+
export declare enum JiraIssueViewVariant {
|
|
135708
|
+
Classic = "CLASSIC",
|
|
135709
|
+
Modern = "MODERN"
|
|
135710
|
+
}
|
|
135675
135711
|
export type JiraIssueWithScenario = {
|
|
135676
135712
|
__typename?: 'JiraIssueWithScenario';
|
|
135677
135713
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -137985,6 +138021,7 @@ export type JiraMutation = {
|
|
|
137985
138021
|
updateLabelColor?: Maybe<JiraLabelColorUpdatePayload>;
|
|
137986
138022
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
137987
138023
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
138024
|
+
updateLongTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
137988
138025
|
updateMultipleGroupPickerField?: Maybe<JiraMultipleGroupPickerFieldPayload>;
|
|
137989
138026
|
updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
|
|
137990
138027
|
updateMultipleSelectUserPickerField?: Maybe<JiraMultipleSelectUserPickerFieldPayload>;
|
|
@@ -138744,6 +138781,9 @@ export type JiraMutationUpdateLabelsFieldArgs = {
|
|
|
138744
138781
|
export type JiraMutationUpdateLegacyTeamFieldArgs = {
|
|
138745
138782
|
input: JiraUpdateLegacyTeamFieldInput;
|
|
138746
138783
|
};
|
|
138784
|
+
export type JiraMutationUpdateLongTextFieldArgs = {
|
|
138785
|
+
input: JiraUpdateSingleLineTextFieldInput;
|
|
138786
|
+
};
|
|
138747
138787
|
export type JiraMutationUpdateMultipleGroupPickerFieldArgs = {
|
|
138748
138788
|
input: JiraUpdateMultipleGroupPickerFieldInput;
|
|
138749
138789
|
};
|
|
@@ -147977,6 +148017,7 @@ export type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
147977
148017
|
id: Scalars['ID']['output'];
|
|
147978
148018
|
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
147979
148019
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
148020
|
+
isMultiline?: Maybe<Scalars['Boolean']['output']>;
|
|
147980
148021
|
issue?: Maybe<JiraIssue>;
|
|
147981
148022
|
name: Scalars['String']['output'];
|
|
147982
148023
|
text?: Maybe<Scalars['String']['output']>;
|
|
@@ -163280,6 +163321,7 @@ export type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
|
163280
163321
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
163281
163322
|
compatibleWithProduct?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
163282
163323
|
complianceBoundary?: InputMaybe<MarketplaceStoreComplianceBoundary>;
|
|
163324
|
+
hostProduct?: InputMaybe<Scalars['String']['input']>;
|
|
163283
163325
|
objectKey?: InputMaybe<Scalars['String']['input']>;
|
|
163284
163326
|
objectType?: InputMaybe<MarketplaceStoreObjectType>;
|
|
163285
163327
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -167387,6 +167429,7 @@ export declare enum MercuryFocusAreaSortField {
|
|
|
167387
167429
|
FocusAreaType = "FOCUS_AREA_TYPE",
|
|
167388
167430
|
GroupType = "GROUP_TYPE",
|
|
167389
167431
|
HasParent = "HAS_PARENT",
|
|
167432
|
+
HasSponsorOrganization = "HAS_SPONSOR_ORGANIZATION",
|
|
167390
167433
|
Health = "HEALTH",
|
|
167391
167434
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
167392
167435
|
LastUpdated = "LAST_UPDATED",
|
|
@@ -169092,6 +169135,7 @@ export type MercuryOrganization = Node & {
|
|
|
169092
169135
|
owner?: Maybe<User>;
|
|
169093
169136
|
parent?: Maybe<MercuryOrganization>;
|
|
169094
169137
|
path?: Maybe<Array<MercuryOrganization>>;
|
|
169138
|
+
plans?: Maybe<MercuryOrganizationPlans>;
|
|
169095
169139
|
sharedUsers?: Maybe<MercuryOrganizationUserAccessConnection>;
|
|
169096
169140
|
starred: Scalars['Boolean']['output'];
|
|
169097
169141
|
status: MercuryOrganizationStatus;
|
|
@@ -169121,6 +169165,11 @@ export type MercuryOrganizationOrganizationStatusUpdatesArgs = {
|
|
|
169121
169165
|
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
169122
169166
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169123
169167
|
};
|
|
169168
|
+
export type MercuryOrganizationPlansArgs = {
|
|
169169
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169170
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169171
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
169172
|
+
};
|
|
169124
169173
|
export type MercuryOrganizationSharedUsersArgs = {
|
|
169125
169174
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
169126
169175
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -169363,6 +169412,11 @@ export declare enum MercuryOrganizationPermission {
|
|
|
169363
169412
|
Export = "EXPORT",
|
|
169364
169413
|
ViewFund = "VIEW_FUND"
|
|
169365
169414
|
}
|
|
169415
|
+
export type MercuryOrganizationPlans = {
|
|
169416
|
+
__typename?: 'MercuryOrganizationPlans';
|
|
169417
|
+
organizationId: Scalars['ID']['output'];
|
|
169418
|
+
plans?: Maybe<MercuryPlanConnection>;
|
|
169419
|
+
};
|
|
169366
169420
|
export type MercuryOrganizationSort = {
|
|
169367
169421
|
field?: InputMaybe<MercuryOrganizationSortField>;
|
|
169368
169422
|
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -183846,6 +183900,7 @@ export type PostOfficeMessageRovoNudgeLiveNudgeDemoMessageData = {
|
|
|
183846
183900
|
export type PostOfficeRecommendationSession = {
|
|
183847
183901
|
__typename?: 'PostOfficeRecommendationSession';
|
|
183848
183902
|
entityId: Scalars['String']['output'];
|
|
183903
|
+
itemFeatureSetId: Scalars['String']['output'];
|
|
183849
183904
|
sessionId: Scalars['String']['output'];
|
|
183850
183905
|
};
|
|
183851
183906
|
export type PostOfficeScopeEntryInput = {
|
|
@@ -184722,6 +184777,8 @@ export type PullRequestStatusInTimeRangeQueryFilter = {
|
|
|
184722
184777
|
};
|
|
184723
184778
|
export type PushNotificationCustomSettings = {
|
|
184724
184779
|
__typename?: 'PushNotificationCustomSettings';
|
|
184780
|
+
agentSessionAssistanceNeeded?: Maybe<Scalars['Boolean']['output']>;
|
|
184781
|
+
agentSessionTaskCompleted?: Maybe<Scalars['Boolean']['output']>;
|
|
184725
184782
|
comment: Scalars['Boolean']['output'];
|
|
184726
184783
|
commentContentCreator: Scalars['Boolean']['output'];
|
|
184727
184784
|
commentReply: Scalars['Boolean']['output'];
|
|
@@ -184748,6 +184805,8 @@ export type PushNotificationCustomSettings = {
|
|
|
184748
184805
|
taskAssign: Scalars['Boolean']['output'];
|
|
184749
184806
|
};
|
|
184750
184807
|
export type PushNotificationCustomSettingsInput = {
|
|
184808
|
+
agentSessionAssistanceNeeded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
184809
|
+
agentSessionTaskCompleted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
184751
184810
|
comment: Scalars['Boolean']['input'];
|
|
184752
184811
|
commentContentCreator: Scalars['Boolean']['input'];
|
|
184753
184812
|
commentReply: Scalars['Boolean']['input'];
|
|
@@ -185382,7 +185441,6 @@ export type Query = {
|
|
|
185382
185441
|
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
185383
185442
|
confluence_note?: Maybe<NoteResponse>;
|
|
185384
185443
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
185385
|
-
confluence_pageBriefing?: Maybe<ConfluencePageBriefing>;
|
|
185386
185444
|
confluence_pageIncludeMacro?: Maybe<ConfluencePageIncludeMacro>;
|
|
185387
185445
|
confluence_pagePdfExportDownloadLink?: Maybe<ConfluencePagePdfExportDownloadLink>;
|
|
185388
185446
|
confluence_pagePdfExportTask?: Maybe<ConfluencePagePdfExportTask>;
|
|
@@ -185497,6 +185555,7 @@ export type Query = {
|
|
|
185497
185555
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
185498
185556
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
185499
185557
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
185558
|
+
cpls_capacityPlansByIds?: Maybe<Array<Maybe<CplsCapacityPlan>>>;
|
|
185500
185559
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
185501
185560
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
185502
185561
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
@@ -188036,6 +188095,7 @@ export type Query = {
|
|
|
188036
188095
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
188037
188096
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
188038
188097
|
jira_subtaskCreationLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
188098
|
+
jira_subtaskCreationLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
188039
188099
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
188040
188100
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
188041
188101
|
jira_view?: Maybe<JiraViewResult>;
|
|
@@ -188367,6 +188427,7 @@ export type Query = {
|
|
|
188367
188427
|
radar_skillsSearch?: Maybe<RadarSkillConnection>;
|
|
188368
188428
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
188369
188429
|
radar_syncHistoriesSearch?: Maybe<RadarSyncHistoriesConnection>;
|
|
188430
|
+
radar_validateTaxonomySkill?: Maybe<Array<RadarTaxonomySkillValidationResult>>;
|
|
188370
188431
|
radar_viewByAri?: Maybe<RadarView>;
|
|
188371
188432
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
188372
188433
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
@@ -188393,6 +188454,7 @@ export type Query = {
|
|
|
188393
188454
|
searchesByTerm?: Maybe<SearchesByTerm>;
|
|
188394
188455
|
searchesWithZeroCTR?: Maybe<SearchesWithZeroCtr>;
|
|
188395
188456
|
secoda_getResource?: Maybe<SecodaResource>;
|
|
188457
|
+
secoda_getResourcesByAris?: Maybe<Array<Maybe<SecodaResource>>>;
|
|
188396
188458
|
secoda_workspace?: Maybe<SecodaWorkspace>;
|
|
188397
188459
|
settings_creationSettings?: Maybe<SettingsCreationSettings>;
|
|
188398
188460
|
settings_navigationCustomisation?: Maybe<SettingsNavigationCustomisation>;
|
|
@@ -191213,6 +191275,8 @@ export type QueryConfluence_ContentPerformanceListArgs = {
|
|
|
191213
191275
|
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
191214
191276
|
filters?: InputMaybe<ConfluenceContentPerformanceFilters>;
|
|
191215
191277
|
first: Scalars['Int']['input'];
|
|
191278
|
+
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
191279
|
+
orderBy?: InputMaybe<ConfluenceContentPerformanceByCriteriaOrder>;
|
|
191216
191280
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
191217
191281
|
startTimestamp: Scalars['String']['input'];
|
|
191218
191282
|
};
|
|
@@ -191524,9 +191588,6 @@ export type QueryConfluence_NotesByProductLinkArgs = {
|
|
|
191524
191588
|
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
191525
191589
|
productLink: Scalars['ID']['input'];
|
|
191526
191590
|
};
|
|
191527
|
-
export type QueryConfluence_PageBriefingArgs = {
|
|
191528
|
-
pageId: Scalars['ID']['input'];
|
|
191529
|
-
};
|
|
191530
191591
|
export type QueryConfluence_PageIncludeMacroArgs = {
|
|
191531
191592
|
cloudId: Scalars['ID']['input'];
|
|
191532
191593
|
macroId: Scalars['ID']['input'];
|
|
@@ -192159,6 +192220,9 @@ export type QueryCountUsersGroupByPageArgs = {
|
|
|
192159
192220
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
192160
192221
|
startTime: Scalars['String']['input'];
|
|
192161
192222
|
};
|
|
192223
|
+
export type QueryCpls_CapacityPlansByIdsArgs = {
|
|
192224
|
+
ids: Array<Scalars['ID']['input']>;
|
|
192225
|
+
};
|
|
192162
192226
|
export type QueryCpls_CustomContributionTargetsArgs = {
|
|
192163
192227
|
input: CplsSearchCustomContributionTargetsInput;
|
|
192164
192228
|
};
|
|
@@ -209721,6 +209785,13 @@ export type QueryJira_SubtaskCreationLayoutArgs = {
|
|
|
209721
209785
|
parentId: JiraParentIdInput;
|
|
209722
209786
|
project?: InputMaybe<JiraProjectInput>;
|
|
209723
209787
|
};
|
|
209788
|
+
export type QueryJira_SubtaskCreationLayoutWithMlArgs = {
|
|
209789
|
+
cloudId: Scalars['ID']['input'];
|
|
209790
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
209791
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
209792
|
+
parentId: JiraParentIdInput;
|
|
209793
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
209794
|
+
};
|
|
209724
209795
|
export type QueryJira_UserSegRedirectAdviceArgs = {
|
|
209725
209796
|
accountId: Scalars['ID']['input'];
|
|
209726
209797
|
cloudId: Scalars['ID']['input'];
|
|
@@ -210995,6 +211066,10 @@ export type QueryRadar_SyncHistoriesSearchArgs = {
|
|
|
210995
211066
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
210996
211067
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
210997
211068
|
};
|
|
211069
|
+
export type QueryRadar_ValidateTaxonomySkillArgs = {
|
|
211070
|
+
cloudId: Scalars['ID']['input'];
|
|
211071
|
+
inputs: Array<RadarValidateTaxonomySkillInput>;
|
|
211072
|
+
};
|
|
210998
211073
|
export type QueryRadar_ViewByAriArgs = {
|
|
210999
211074
|
id: Scalars['ID']['input'];
|
|
211000
211075
|
};
|
|
@@ -211115,6 +211190,9 @@ export type QuerySecoda_GetResourceArgs = {
|
|
|
211115
211190
|
id: Scalars['ID']['input'];
|
|
211116
211191
|
workspaceAri: Scalars['ID']['input'];
|
|
211117
211192
|
};
|
|
211193
|
+
export type QuerySecoda_GetResourcesByArisArgs = {
|
|
211194
|
+
ids: Array<Scalars['ID']['input']>;
|
|
211195
|
+
};
|
|
211118
211196
|
export type QuerySecoda_WorkspaceArgs = {
|
|
211119
211197
|
cloudId: Scalars['ID']['input'];
|
|
211120
211198
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -212933,6 +213011,23 @@ export type RadarSyncHistorySummarySource = {
|
|
|
212933
213011
|
source?: Maybe<Scalars['String']['output']>;
|
|
212934
213012
|
type?: Maybe<Scalars['String']['output']>;
|
|
212935
213013
|
};
|
|
213014
|
+
export declare enum RadarTaxonomySkillType {
|
|
213015
|
+
Soft = "SOFT",
|
|
213016
|
+
Technical = "TECHNICAL",
|
|
213017
|
+
Unclear = "UNCLEAR"
|
|
213018
|
+
}
|
|
213019
|
+
export type RadarTaxonomySkillValidationResult = {
|
|
213020
|
+
__typename?: 'RadarTaxonomySkillValidationResult';
|
|
213021
|
+
isValidForTaxonomy?: Maybe<Scalars['Boolean']['output']>;
|
|
213022
|
+
name: Scalars['String']['output'];
|
|
213023
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
213024
|
+
skillType?: Maybe<RadarTaxonomySkillType>;
|
|
213025
|
+
status: RadarTaxonomySkillValidationStatus;
|
|
213026
|
+
};
|
|
213027
|
+
export declare enum RadarTaxonomySkillValidationStatus {
|
|
213028
|
+
Completed = "COMPLETED",
|
|
213029
|
+
Unavailable = "UNAVAILABLE"
|
|
213030
|
+
}
|
|
212936
213031
|
export type RadarUpdateAiConnectorInput = {
|
|
212937
213032
|
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
212938
213033
|
id: Scalars['ID']['input'];
|
|
@@ -213030,6 +213125,12 @@ export type RadarUserFieldValue = {
|
|
|
213030
213125
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
213031
213126
|
value?: Maybe<User>;
|
|
213032
213127
|
};
|
|
213128
|
+
export type RadarValidateTaxonomySkillInput = {
|
|
213129
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
213130
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
213131
|
+
name: Scalars['String']['input'];
|
|
213132
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
213133
|
+
};
|
|
213033
213134
|
export type RadarView = Node & {
|
|
213034
213135
|
__typename?: 'RadarView';
|
|
213035
213136
|
creator?: Maybe<User>;
|
|
@@ -216603,10 +216704,12 @@ export type SecodaIntegration = {
|
|
|
216603
216704
|
name: Scalars['String']['output'];
|
|
216604
216705
|
type?: Maybe<Scalars['String']['output']>;
|
|
216605
216706
|
};
|
|
216606
|
-
export type SecodaResource = {
|
|
216707
|
+
export type SecodaResource = Node & {
|
|
216607
216708
|
__typename?: 'SecodaResource';
|
|
216709
|
+
archived: Scalars['Boolean']['output'];
|
|
216608
216710
|
collections: Array<SecodaResourceCollection>;
|
|
216609
216711
|
columns: Array<SecodaResourceColumn>;
|
|
216712
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
216610
216713
|
currentUserPermissions: SecodaCurrentUserPermissions;
|
|
216611
216714
|
description?: Maybe<Scalars['String']['output']>;
|
|
216612
216715
|
entityCounts: SecodaEntityCounts;
|
|
@@ -216618,6 +216721,7 @@ export type SecodaResource = {
|
|
|
216618
216721
|
tags: Array<SecodaResourceTag>;
|
|
216619
216722
|
teams: Array<SecodaResourceTeam>;
|
|
216620
216723
|
type?: Maybe<Scalars['String']['output']>;
|
|
216724
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
216621
216725
|
};
|
|
216622
216726
|
export type SecodaResourceColumnsArgs = {
|
|
216623
216727
|
first?: Scalars['Int']['input'];
|