@forge/cli-shared 5.5.1 → 5.5.2-next.0
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 -0
- package/out/graphql/graphql-types.d.ts +144 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +32 -16
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -1
- package/out/service/i18n-resource-bundling-service.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16004,7 +16004,8 @@ export declare type CustomerServiceCustomDetailContextInput = {
|
|
|
16004
16004
|
id: Scalars['ID']['input'];
|
|
16005
16005
|
};
|
|
16006
16006
|
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
16007
|
-
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
16007
|
+
ColorNotSaved = "COLOR_NOT_SAVED",
|
|
16008
|
+
PermissionsNotSaved = "PERMISSIONS_NOT_SAVED"
|
|
16008
16009
|
}
|
|
16009
16010
|
export declare type CustomerServiceCustomDetailCreateErrorExtension = MutationErrorExtension & {
|
|
16010
16011
|
__typename?: 'CustomerServiceCustomDetailCreateErrorExtension';
|
|
@@ -16540,7 +16541,8 @@ export declare type CustomerServicePermissionGroupEdge = {
|
|
|
16540
16541
|
export declare enum CustomerServicePermissionGroupType {
|
|
16541
16542
|
Admins = "ADMINS",
|
|
16542
16543
|
AdminsAgents = "ADMINS_AGENTS",
|
|
16543
|
-
AdminsAgentsCollaborators = "ADMINS_AGENTS_COLLABORATORS"
|
|
16544
|
+
AdminsAgentsCollaborators = "ADMINS_AGENTS_COLLABORATORS",
|
|
16545
|
+
AdminsAgentsSiteAccess = "ADMINS_AGENTS_SITE_ACCESS"
|
|
16544
16546
|
}
|
|
16545
16547
|
export declare type CustomerServicePlatformDetailValue = CustomerServiceUserDetailValue;
|
|
16546
16548
|
export declare type CustomerServiceProduct = Node & {
|
|
@@ -18579,11 +18581,9 @@ export declare type DevOpsSummarisedFeatureFlags = {
|
|
|
18579
18581
|
export declare type DevOpsSupportedActions = {
|
|
18580
18582
|
__typename?: 'DevOpsSupportedActions';
|
|
18581
18583
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
18582
|
-
associateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18583
18584
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
18584
18585
|
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
18585
18586
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
18586
|
-
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
18587
18587
|
getEntityByUrl?: Maybe<Scalars['Boolean']['output']>;
|
|
18588
18588
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
18589
18589
|
onEntityAssociated?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -36041,13 +36041,6 @@ export declare enum GrowthUnifiedProfileAnchorType {
|
|
|
36041
36041
|
Pfm = "PFM",
|
|
36042
36042
|
Seo = "SEO"
|
|
36043
36043
|
}
|
|
36044
|
-
export declare type GrowthUnifiedProfileChannel = {
|
|
36045
|
-
__typename?: 'GrowthUnifiedProfileChannel';
|
|
36046
|
-
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
36047
|
-
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
36048
|
-
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
36049
|
-
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
36050
|
-
};
|
|
36051
36044
|
export declare enum GrowthUnifiedProfileChannelName {
|
|
36052
36045
|
Comarketing = "COMARKETING",
|
|
36053
36046
|
Direct = "DIRECT",
|
|
@@ -36106,6 +36099,7 @@ export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
|
36106
36099
|
};
|
|
36107
36100
|
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
36108
36101
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
36102
|
+
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
36109
36103
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
36110
36104
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
36111
36105
|
};
|
|
@@ -36134,15 +36128,21 @@ export declare type GrowthUnifiedProfileInput = {
|
|
|
36134
36128
|
export declare enum GrowthUnifiedProfileJtbd {
|
|
36135
36129
|
Budgets = "BUDGETS",
|
|
36136
36130
|
CdWrtng = "CD_WRTNG",
|
|
36131
|
+
EstimateTimeAndEffort = "ESTIMATE_TIME_AND_EFFORT",
|
|
36132
|
+
ImproveTeamProcesses = "IMPROVE_TEAM_PROCESSES",
|
|
36137
36133
|
ImproveWorkflow = "IMPROVE_WORKFLOW",
|
|
36138
36134
|
LaunchCampaigns = "LAUNCH_CAMPAIGNS",
|
|
36135
|
+
ManageTasks = "MANAGE_TASKS",
|
|
36136
|
+
MapWorkDependencies = "MAP_WORK_DEPENDENCIES",
|
|
36139
36137
|
MarketingContent = "MARKETING_CONTENT",
|
|
36140
36138
|
PlanAndManage = "PLAN_AND_MANAGE",
|
|
36139
|
+
PrioritizeWork = "PRIORITIZE_WORK",
|
|
36141
36140
|
ProjectPlanning = "PROJECT_PLANNING",
|
|
36142
36141
|
ProjectProgress = "PROJECT_PROGRESS",
|
|
36143
36142
|
Stakeholders = "STAKEHOLDERS",
|
|
36144
36143
|
StrategiesAndGoals = "STRATEGIES_AND_GOALS",
|
|
36145
36144
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
36145
|
+
TrackBugs = "TRACK_BUGS",
|
|
36146
36146
|
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
36147
36147
|
}
|
|
36148
36148
|
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
@@ -36169,6 +36169,11 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
36169
36169
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
36170
36170
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
36171
36171
|
};
|
|
36172
|
+
export declare type GrowthUnifiedProfileLinkedEntities = {
|
|
36173
|
+
__typename?: 'GrowthUnifiedProfileLinkedEntities';
|
|
36174
|
+
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
36175
|
+
linkedId?: Maybe<Scalars['String']['output']>;
|
|
36176
|
+
};
|
|
36172
36177
|
export declare type GrowthUnifiedProfileOnboardingContext = {
|
|
36173
36178
|
__typename?: 'GrowthUnifiedProfileOnboardingContext';
|
|
36174
36179
|
confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
|
|
@@ -36178,13 +36183,34 @@ export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
|
36178
36183
|
confluence?: InputMaybe<GrowthUnifiedProfileConfluenceOnboardingContextInput>;
|
|
36179
36184
|
jira?: InputMaybe<GrowthUnifiedProfileJiraOnboardingContextInput>;
|
|
36180
36185
|
};
|
|
36186
|
+
export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
36187
|
+
__typename?: 'GrowthUnifiedProfilePaidChannelContext';
|
|
36188
|
+
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
36189
|
+
name?: Maybe<GrowthUnifiedProfileChannelName>;
|
|
36190
|
+
persona?: Maybe<Scalars['String']['output']>;
|
|
36191
|
+
product?: Maybe<GrowthUnifiedProfileProductType>;
|
|
36192
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
36193
|
+
utm?: Maybe<GrowthUnifiedProfileUtm>;
|
|
36194
|
+
};
|
|
36195
|
+
export declare enum GrowthUnifiedProfileProductType {
|
|
36196
|
+
Confluence = "CONFLUENCE",
|
|
36197
|
+
JiraSoftware = "JIRA_SOFTWARE",
|
|
36198
|
+
Jsm = "JSM",
|
|
36199
|
+
Trello = "TRELLO"
|
|
36200
|
+
}
|
|
36181
36201
|
export declare type GrowthUnifiedProfileResult = {
|
|
36182
36202
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
36183
|
-
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
36184
36203
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
36185
36204
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
36186
36205
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
36206
|
+
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
36187
36207
|
onboardingContext?: Maybe<GrowthUnifiedProfileOnboardingContext>;
|
|
36208
|
+
paidChannelContext?: Maybe<Array<Maybe<GrowthUnifiedProfilePaidChannelContext>>>;
|
|
36209
|
+
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
36210
|
+
};
|
|
36211
|
+
export declare type GrowthUnifiedProfileSeoContext = {
|
|
36212
|
+
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
36213
|
+
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
36188
36214
|
};
|
|
36189
36215
|
export declare enum GrowthUnifiedProfileTeamType {
|
|
36190
36216
|
CustomerService = "CUSTOMER_SERVICE",
|
|
@@ -38871,8 +38897,10 @@ export declare type JiraAdminRichTextFieldConfigAiEnabledByProjectArgs = {
|
|
|
38871
38897
|
};
|
|
38872
38898
|
export declare type JiraAdvancedRoadmapsNavigation = {
|
|
38873
38899
|
__typename?: 'JiraAdvancedRoadmapsNavigation';
|
|
38900
|
+
hasCreateSamplePlanPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38874
38901
|
hasEditOrViewPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38875
38902
|
hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38903
|
+
hasGlobalPlansAdminPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38876
38904
|
isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
38877
38905
|
};
|
|
38878
38906
|
export declare type JiraAffectedService = JiraSelectableValue & {
|
|
@@ -42832,6 +42860,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
42832
42860
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
42833
42861
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
42834
42862
|
comments?: Maybe<JiraCommentConnection>;
|
|
42863
|
+
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
42835
42864
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
42836
42865
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
42837
42866
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
@@ -42850,6 +42879,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
42850
42879
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
42851
42880
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
42852
42881
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
42882
|
+
hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
|
|
42853
42883
|
hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
42854
42884
|
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
42855
42885
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
@@ -42870,6 +42900,7 @@ export declare type JiraIssue = JiraScenarioIssueLike & Node & {
|
|
|
42870
42900
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
42871
42901
|
key: Scalars['String']['output'];
|
|
42872
42902
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
42903
|
+
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
42873
42904
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
42874
42905
|
mediaReadToken?: Maybe<JiraMediaReadToken>;
|
|
42875
42906
|
mediaUploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
@@ -42924,6 +42955,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
42924
42955
|
sortBy?: InputMaybe<JiraCommentSortInput>;
|
|
42925
42956
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
42926
42957
|
};
|
|
42958
|
+
export declare type JiraIssueContentPanelsArgs = {
|
|
42959
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42960
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
42961
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42962
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42963
|
+
};
|
|
42927
42964
|
export declare type JiraIssueDesignsArgs = {
|
|
42928
42965
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42929
42966
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -42989,6 +43026,12 @@ export declare type JiraIssueIssueLinksArgs = {
|
|
|
42989
43026
|
export declare type JiraIssueIssuePropertyByKeyArgs = {
|
|
42990
43027
|
key: Scalars['String']['input'];
|
|
42991
43028
|
};
|
|
43029
|
+
export declare type JiraIssueLegacyContentPanelsArgs = {
|
|
43030
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43031
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
43032
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43033
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43034
|
+
};
|
|
42992
43035
|
export declare type JiraIssueMediaReadTokenArgs = {
|
|
42993
43036
|
maxTokenLength: Scalars['Int']['input'];
|
|
42994
43037
|
};
|
|
@@ -43171,6 +43214,28 @@ export declare type JiraIssueConnectionPageCursorsArgs = {
|
|
|
43171
43214
|
maxCursors: Scalars['Int']['input'];
|
|
43172
43215
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
43173
43216
|
};
|
|
43217
|
+
export declare type JiraIssueContentPanel = {
|
|
43218
|
+
__typename?: 'JiraIssueContentPanel';
|
|
43219
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
43220
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
43221
|
+
isShownByDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
43222
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
43223
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
43224
|
+
options?: Maybe<Scalars['JSON']['output']>;
|
|
43225
|
+
tooltip?: Maybe<Scalars['String']['output']>;
|
|
43226
|
+
type?: Maybe<JiraIssueModuleType>;
|
|
43227
|
+
wasManuallyAddedToIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
43228
|
+
};
|
|
43229
|
+
export declare type JiraIssueContentPanelConnection = {
|
|
43230
|
+
__typename?: 'JiraIssueContentPanelConnection';
|
|
43231
|
+
edges?: Maybe<Array<Maybe<JiraIssueContentPanelEdge>>>;
|
|
43232
|
+
pageInfo: PageInfo;
|
|
43233
|
+
};
|
|
43234
|
+
export declare type JiraIssueContentPanelEdge = {
|
|
43235
|
+
__typename?: 'JiraIssueContentPanelEdge';
|
|
43236
|
+
cursor: Scalars['String']['output'];
|
|
43237
|
+
node?: Maybe<JiraIssueContentPanel>;
|
|
43238
|
+
};
|
|
43174
43239
|
export declare type JiraIssueCreateInput = {
|
|
43175
43240
|
fields: JiraIssueFieldsInput;
|
|
43176
43241
|
issueTypeId: Scalars['ID']['input'];
|
|
@@ -43686,6 +43751,10 @@ export declare type JiraIssueLinkTypeRelationEdge = {
|
|
|
43686
43751
|
cursor: Scalars['String']['output'];
|
|
43687
43752
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
43688
43753
|
};
|
|
43754
|
+
export declare enum JiraIssueModuleType {
|
|
43755
|
+
IssueModule = "ISSUE_MODULE",
|
|
43756
|
+
WebPanel = "WEB_PANEL"
|
|
43757
|
+
}
|
|
43689
43758
|
export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
43690
43759
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
43691
43760
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -47476,6 +47545,7 @@ export declare enum JiraProjectsHelpCenterMappingStatus {
|
|
|
47476
47545
|
Unlinked = "UNLINKED"
|
|
47477
47546
|
}
|
|
47478
47547
|
export declare type JiraProjectsMappedToHelpCenterFilterInput = {
|
|
47548
|
+
helpCenterARI?: InputMaybe<Scalars['ID']['input']>;
|
|
47479
47549
|
helpCenterId: Scalars['ID']['input'];
|
|
47480
47550
|
helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
|
|
47481
47551
|
};
|
|
@@ -55245,11 +55315,12 @@ export declare type MarketplaceConsoleProductTag = {
|
|
|
55245
55315
|
id: Scalars['ID']['output'];
|
|
55246
55316
|
name: Scalars['String']['output'];
|
|
55247
55317
|
};
|
|
55248
|
-
export declare
|
|
55249
|
-
|
|
55250
|
-
|
|
55251
|
-
|
|
55252
|
-
|
|
55318
|
+
export declare type MarketplaceConsoleProductTags = {
|
|
55319
|
+
__typename?: 'MarketplaceConsoleProductTags';
|
|
55320
|
+
category: Array<MarketplaceConsoleProductTag>;
|
|
55321
|
+
keywords: Array<MarketplaceConsoleProductTag>;
|
|
55322
|
+
marketing: Array<MarketplaceConsoleProductTag>;
|
|
55323
|
+
};
|
|
55253
55324
|
export declare type MarketplaceConsoleQueryApi = {
|
|
55254
55325
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
55255
55326
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
@@ -55269,7 +55340,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
55269
55340
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
55270
55341
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
55271
55342
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
55272
|
-
productTags
|
|
55343
|
+
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
55273
55344
|
};
|
|
55274
55345
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
55275
55346
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55319,9 +55390,6 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
55319
55390
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
55320
55391
|
appId: Scalars['ID']['input'];
|
|
55321
55392
|
};
|
|
55322
|
-
export declare type MarketplaceConsoleQueryApiProductTagsArgs = {
|
|
55323
|
-
tagType: MarketplaceConsoleProductTagType;
|
|
55324
|
-
};
|
|
55325
55393
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
55326
55394
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
55327
55395
|
binary: MarketplaceConsoleLink;
|
|
@@ -56087,16 +56155,23 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
56087
56155
|
success: Scalars['Boolean']['output'];
|
|
56088
56156
|
};
|
|
56089
56157
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
56090
|
-
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56091
56158
|
cloudId: Scalars['ID']['input'];
|
|
56092
|
-
|
|
56093
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
56159
|
+
id: Scalars['ID']['input'];
|
|
56094
56160
|
};
|
|
56095
56161
|
export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
56096
56162
|
__typename?: 'MercuryDeleteFocusAreaGoalLinkPayload';
|
|
56097
56163
|
errors?: Maybe<Array<MutationError>>;
|
|
56098
56164
|
success: Scalars['Boolean']['output'];
|
|
56099
56165
|
};
|
|
56166
|
+
export declare type MercuryDeleteFocusAreaGoalLinksInput = {
|
|
56167
|
+
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
56168
|
+
focusAreaAri: Scalars['String']['input'];
|
|
56169
|
+
};
|
|
56170
|
+
export declare type MercuryDeleteFocusAreaGoalLinksPayload = Payload & {
|
|
56171
|
+
__typename?: 'MercuryDeleteFocusAreaGoalLinksPayload';
|
|
56172
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56173
|
+
success: Scalars['Boolean']['output'];
|
|
56174
|
+
};
|
|
56100
56175
|
export declare type MercuryDeleteFocusAreaInput = {
|
|
56101
56176
|
cloudId: Scalars['ID']['input'];
|
|
56102
56177
|
id: Scalars['ID']['input'];
|
|
@@ -56499,6 +56574,7 @@ export declare type MercuryMutationApi = {
|
|
|
56499
56574
|
deleteComment?: Maybe<MercuryDeleteCommentPayload>;
|
|
56500
56575
|
deleteFocusArea?: Maybe<MercuryDeleteFocusAreaPayload>;
|
|
56501
56576
|
deleteFocusAreaGoalLink?: Maybe<MercuryDeleteFocusAreaGoalLinkPayload>;
|
|
56577
|
+
deleteFocusAreaGoalLinks?: Maybe<MercuryDeleteFocusAreaGoalLinksPayload>;
|
|
56502
56578
|
deleteFocusAreaLink?: Maybe<MercuryDeleteFocusAreaLinkPayload>;
|
|
56503
56579
|
deleteFocusAreaStatusUpdate?: Maybe<MercuryDeleteFocusAreaStatusUpdatePayload>;
|
|
56504
56580
|
deletePortfolio?: Maybe<MercuryDeletePortfolioPayload>;
|
|
@@ -56546,6 +56622,9 @@ export declare type MercuryMutationApiDeleteFocusAreaArgs = {
|
|
|
56546
56622
|
export declare type MercuryMutationApiDeleteFocusAreaGoalLinkArgs = {
|
|
56547
56623
|
input: MercuryDeleteFocusAreaGoalLinkInput;
|
|
56548
56624
|
};
|
|
56625
|
+
export declare type MercuryMutationApiDeleteFocusAreaGoalLinksArgs = {
|
|
56626
|
+
input: MercuryDeleteFocusAreaGoalLinksInput;
|
|
56627
|
+
};
|
|
56549
56628
|
export declare type MercuryMutationApiDeleteFocusAreaLinkArgs = {
|
|
56550
56629
|
input: MercuryDeleteFocusAreaLinkInput;
|
|
56551
56630
|
};
|
|
@@ -65140,6 +65219,11 @@ export declare type ShepherdDetectionBooleanSetting = {
|
|
|
65140
65219
|
booleanDefault: Scalars['Boolean']['output'];
|
|
65141
65220
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
65142
65221
|
};
|
|
65222
|
+
export declare type ShepherdDetectionConfluenceEnabledSetting = {
|
|
65223
|
+
__typename?: 'ShepherdDetectionConfluenceEnabledSetting';
|
|
65224
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
65225
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
65226
|
+
};
|
|
65143
65227
|
export declare type ShepherdDetectionContentExclusion = {
|
|
65144
65228
|
__typename?: 'ShepherdDetectionContentExclusion';
|
|
65145
65229
|
key: Scalars['String']['output'];
|
|
@@ -65211,7 +65295,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
65211
65295
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
65212
65296
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
65213
65297
|
};
|
|
65214
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
65298
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionConfluenceEnabledSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
65215
65299
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
65216
65300
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
65217
65301
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -65491,6 +65575,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
65491
65575
|
PublicAccessDspRemediation = "PUBLIC_ACCESS_DSP_REMEDIATION",
|
|
65492
65576
|
ResetAccountPasswordRemediation = "RESET_ACCOUNT_PASSWORD_REMEDIATION",
|
|
65493
65577
|
RestoreAccessRemediation = "RESTORE_ACCESS_REMEDIATION",
|
|
65578
|
+
RestrictPageAutomationRemediation = "RESTRICT_PAGE_AUTOMATION_REMEDIATION",
|
|
65494
65579
|
ReviewAccessRemediation = "REVIEW_ACCESS_REMEDIATION",
|
|
65495
65580
|
ReviewApiKeysRemediation = "REVIEW_API_KEYS_REMEDIATION",
|
|
65496
65581
|
ReviewApiTokensRemediation = "REVIEW_API_TOKENS_REMEDIATION",
|
|
@@ -65640,6 +65725,7 @@ export declare type ShepherdSubscriptionMutationsUpdateArgs = {
|
|
|
65640
65725
|
};
|
|
65641
65726
|
export declare enum ShepherdSubscriptionStatus {
|
|
65642
65727
|
Active = "ACTIVE",
|
|
65728
|
+
Error = "ERROR",
|
|
65643
65729
|
Inactive = "INACTIVE"
|
|
65644
65730
|
}
|
|
65645
65731
|
export declare type ShepherdSubscriptionUpdateInput = {
|
|
@@ -65820,6 +65906,7 @@ export declare type ShepherdWorkspaceSettingUpdateInput = {
|
|
|
65820
65906
|
value: ShepherdWorkspaceSettingValueInput;
|
|
65821
65907
|
};
|
|
65822
65908
|
export declare type ShepherdWorkspaceSettingValueInput = {
|
|
65909
|
+
confluenceEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65823
65910
|
enabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65824
65911
|
jiraEnabledValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65825
65912
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
@@ -68633,22 +68720,20 @@ export declare type TrelloPlannerAccountsArgs = {
|
|
|
68633
68720
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68634
68721
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68635
68722
|
};
|
|
68636
|
-
export declare type TrelloPlannerCalendar = Node & {
|
|
68723
|
+
export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterface & {
|
|
68637
68724
|
__typename?: 'TrelloPlannerCalendar';
|
|
68638
68725
|
color: Scalars['String']['output'];
|
|
68639
68726
|
enabled: Scalars['Boolean']['output'];
|
|
68640
68727
|
id: Scalars['ID']['output'];
|
|
68641
|
-
|
|
68642
|
-
objectId?: Maybe<Scalars['ID']['output']>;
|
|
68728
|
+
objectId: Scalars['ID']['output'];
|
|
68643
68729
|
timezone: Scalars['String']['output'];
|
|
68644
68730
|
title: Scalars['String']['output'];
|
|
68645
68731
|
type: TrelloSupportedPlannerProviders;
|
|
68646
|
-
workspaceId: Scalars['ID']['output'];
|
|
68647
68732
|
};
|
|
68648
68733
|
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
68649
68734
|
__typename?: 'TrelloPlannerCalendarAccount';
|
|
68650
68735
|
accountType: TrelloSupportedPlannerProviders;
|
|
68651
|
-
allCalendars?: Maybe<
|
|
68736
|
+
allCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
68652
68737
|
displayName: Scalars['String']['output'];
|
|
68653
68738
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68654
68739
|
id: Scalars['ID']['output'];
|
|
@@ -68684,6 +68769,26 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
68684
68769
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
68685
68770
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
68686
68771
|
};
|
|
68772
|
+
export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
|
|
68773
|
+
__typename?: 'TrelloPlannerProviderCalendar';
|
|
68774
|
+
color: Scalars['String']['output'];
|
|
68775
|
+
id: Scalars['ID']['output'];
|
|
68776
|
+
timezone: Scalars['String']['output'];
|
|
68777
|
+
title: Scalars['String']['output'];
|
|
68778
|
+
type: TrelloSupportedPlannerProviders;
|
|
68779
|
+
};
|
|
68780
|
+
export declare type TrelloPlannerProviderCalendarConnection = {
|
|
68781
|
+
__typename?: 'TrelloPlannerProviderCalendarConnection';
|
|
68782
|
+
edges?: Maybe<Array<TrelloPlannerProviderCalendarEdge>>;
|
|
68783
|
+
nodes?: Maybe<Array<TrelloPlannerProviderCalendar>>;
|
|
68784
|
+
pageInfo: PageInfo;
|
|
68785
|
+
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
68786
|
+
};
|
|
68787
|
+
export declare type TrelloPlannerProviderCalendarEdge = {
|
|
68788
|
+
__typename?: 'TrelloPlannerProviderCalendarEdge';
|
|
68789
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68790
|
+
node?: Maybe<TrelloPlannerProviderCalendar>;
|
|
68791
|
+
};
|
|
68687
68792
|
export declare type TrelloPowerUp = {
|
|
68688
68793
|
__typename?: 'TrelloPowerUp';
|
|
68689
68794
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -68733,9 +68838,16 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
68733
68838
|
__typename?: 'TrelloPowerUpUpdated';
|
|
68734
68839
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
68735
68840
|
};
|
|
68841
|
+
export declare type TrelloProviderCalendarInterface = {
|
|
68842
|
+
color: Scalars['String']['output'];
|
|
68843
|
+
id: Scalars['ID']['output'];
|
|
68844
|
+
timezone: Scalars['String']['output'];
|
|
68845
|
+
title: Scalars['String']['output'];
|
|
68846
|
+
type: TrelloSupportedPlannerProviders;
|
|
68847
|
+
};
|
|
68736
68848
|
export declare type TrelloQueryApi = {
|
|
68737
68849
|
__typename?: 'TrelloQueryApi';
|
|
68738
|
-
allPlannerCalendarsByAccountId?: Maybe<
|
|
68850
|
+
allPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
68739
68851
|
board?: Maybe<TrelloBoard>;
|
|
68740
68852
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
68741
68853
|
card?: Maybe<TrelloCard>;
|
|
@@ -69051,7 +69163,7 @@ export declare type TrelloWorkspaceMembershipsConnection = {
|
|
|
69051
69163
|
export declare type TrelloWorkspacePrefs = {
|
|
69052
69164
|
__typename?: 'TrelloWorkspacePrefs';
|
|
69053
69165
|
associatedDomain?: Maybe<Scalars['String']['output']>;
|
|
69054
|
-
|
|
69166
|
+
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
69055
69167
|
attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
69056
69168
|
boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
|
|
69057
69169
|
boardInviteRestrict?: Maybe<Scalars['String']['output']>;
|