@forge/cli-shared 5.5.3-next.2 → 5.5.3-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 5.5.3-next.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [63d81cf]
8
+ - Updated dependencies [b961661]
9
+ - Updated dependencies [8ec88e3]
10
+ - @forge/manifest@7.9.0-next.2
11
+
3
12
  ## 5.5.3-next.2
4
13
 
5
14
  ### Patch Changes
@@ -36991,6 +36991,7 @@ export declare type HelpCenterMutationApi = {
36991
36991
  deleteHelpCenter?: Maybe<HelpCenterDeletePayload>;
36992
36992
  deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
36993
36993
  updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
36994
+ updateHelpCenterPermissions?: Maybe<HelpCenterPermissionsPayload>;
36994
36995
  updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
36995
36996
  updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
36996
36997
  updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
@@ -37013,6 +37014,9 @@ export declare type HelpCenterMutationApiDeleteTopicArgs = {
37013
37014
  export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
37014
37015
  input: HelpCenterUpdateInput;
37015
37016
  };
37017
+ export declare type HelpCenterMutationApiUpdateHelpCenterPermissionsArgs = {
37018
+ input: HelpCenterPermissionsInput;
37019
+ };
37016
37020
  export declare type HelpCenterMutationApiUpdateHomePageAnnouncementArgs = {
37017
37021
  input: HelpCenterAnnouncementInput;
37018
37022
  };
@@ -37042,8 +37046,19 @@ export declare type HelpCenterNameInput = {
37042
37046
  };
37043
37047
  export declare type HelpCenterPermissions = {
37044
37048
  __typename?: 'HelpCenterPermissions';
37045
- allowedGroups?: Maybe<Array<Scalars['String']['output']>>;
37046
- helpCenterAccessControl?: Maybe<HelpCenterAccessControlType>;
37049
+ accessControlType: HelpCenterAccessControlType;
37050
+ allowedAccessGroups?: Maybe<Array<Scalars['String']['output']>>;
37051
+ };
37052
+ export declare type HelpCenterPermissionsInput = {
37053
+ accessControlType: HelpCenterAccessControlType;
37054
+ addedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
37055
+ deletedAllowedAccessGroups?: InputMaybe<Array<Scalars['String']['input']>>;
37056
+ helpCenterAri: Scalars['String']['input'];
37057
+ };
37058
+ export declare type HelpCenterPermissionsPayload = Payload & {
37059
+ __typename?: 'HelpCenterPermissionsPayload';
37060
+ errors?: Maybe<Array<MutationError>>;
37061
+ success: Scalars['Boolean']['output'];
37047
37062
  };
37048
37063
  export declare type HelpCenterPermissionsResult = HelpCenterPermissions | QueryError;
37049
37064
  export declare type HelpCenterPortal = {
@@ -38732,7 +38747,6 @@ export declare type InvocationResponsePayload = {
38732
38747
  export declare type InvokeAuxEffectsInput = {
38733
38748
  contextIds: Array<Scalars['ID']['input']>;
38734
38749
  entryPoint?: InputMaybe<Scalars['String']['input']>;
38735
- extensionDetails?: InputMaybe<ExtensionDetailsInput>;
38736
38750
  extensionId?: InputMaybe<Scalars['ID']['input']>;
38737
38751
  payload: AuxEffectsInvocationPayload;
38738
38752
  };
@@ -38745,7 +38759,6 @@ export declare type InvokeAuxEffectsResponse = Payload & {
38745
38759
  export declare type InvokeExtensionInput = {
38746
38760
  contextIds: Array<Scalars['ID']['input']>;
38747
38761
  entryPoint?: InputMaybe<Scalars['String']['input']>;
38748
- extensionDetails?: InputMaybe<ExtensionDetailsInput>;
38749
38762
  extensionId?: InputMaybe<Scalars['ID']['input']>;
38750
38763
  payload: Scalars['JSON']['input'];
38751
38764
  schema?: InputMaybe<Scalars['String']['input']>;
@@ -39182,6 +39195,14 @@ export declare enum JiraActionType {
39182
39195
  CreateTeamManagedProject = "CREATE_TEAM_MANAGED_PROJECT"
39183
39196
  }
39184
39197
  export declare type JiraActiveBackgroundDetailsResult = JiraAttachmentBackground | JiraColorBackground | JiraGradientBackground | JiraMediaBackground | QueryError;
39198
+ export declare type JiraActivityConfiguration = {
39199
+ __typename?: 'JiraActivityConfiguration';
39200
+ id: Scalars['ID']['output'];
39201
+ issueType?: Maybe<JiraIssueType>;
39202
+ name?: Maybe<Scalars['String']['output']>;
39203
+ project?: Maybe<JiraProject>;
39204
+ requestType?: Maybe<JiraServiceManagementRequestType>;
39205
+ };
39185
39206
  export declare type JiraAddFieldsToProjectInput = {
39186
39207
  cloudId: Scalars['ID']['input'];
39187
39208
  fieldIds: Array<Scalars['ID']['input']>;
@@ -41412,6 +41433,13 @@ export declare type JiraContainerNavigationQueryInput = {
41412
41433
  scopeId?: InputMaybe<Scalars['ID']['input']>;
41413
41434
  };
41414
41435
  export declare type JiraContainerNavigationResult = JiraContainerNavigation | QueryError;
41436
+ export declare type JiraCreateActivityConfigurationInput = {
41437
+ id: Scalars['ID']['input'];
41438
+ issueTypeId?: InputMaybe<Scalars['ID']['input']>;
41439
+ name: Scalars['String']['input'];
41440
+ projectId?: InputMaybe<Scalars['ID']['input']>;
41441
+ requestTypeId?: InputMaybe<Scalars['ID']['input']>;
41442
+ };
41415
41443
  export declare type JiraCreateAppNavigationItemInput = {
41416
41444
  appId: Scalars['ID']['input'];
41417
41445
  scopeId: Scalars['ID']['input'];
@@ -41507,6 +41535,7 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
41507
41535
  success: Scalars['Boolean']['output'];
41508
41536
  };
41509
41537
  export declare type JiraCreateJourneyConfigurationInput = {
41538
+ createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
41510
41539
  name: Scalars['String']['input'];
41511
41540
  parentIssue: JiraJourneyParentIssueInput;
41512
41541
  trigger: JiraJourneyTriggerInput;
@@ -44551,6 +44580,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
44551
44580
  JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
44552
44581
  JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
44553
44582
  JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
44583
+ JiraForgeStringField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
44554
44584
  JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
44555
44585
  JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
44556
44586
  JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
@@ -44751,11 +44781,13 @@ export declare type JiraJqlHistoryEdge = {
44751
44781
  };
44752
44782
  export declare type JiraJourneyConfiguration = Node & {
44753
44783
  __typename?: 'JiraJourneyConfiguration';
44784
+ activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
44754
44785
  createdAt?: Maybe<Scalars['DateTime']['output']>;
44755
44786
  createdBy?: Maybe<User>;
44756
44787
  id: Scalars['ID']['output'];
44757
44788
  name?: Maybe<Scalars['String']['output']>;
44758
44789
  parentIssue?: Maybe<JiraJourneyParentIssue>;
44790
+ status?: Maybe<JiraJourneyStatus>;
44759
44791
  trigger?: Maybe<JiraJourneyTrigger>;
44760
44792
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
44761
44793
  updatedBy?: Maybe<User>;
@@ -44775,7 +44807,7 @@ export declare type JiraJourneyConfigurationEdge = {
44775
44807
  };
44776
44808
  export declare type JiraJourneyParentIssue = {
44777
44809
  __typename?: 'JiraJourneyParentIssue';
44778
- projectId: Scalars['ID']['output'];
44810
+ project?: Maybe<JiraProject>;
44779
44811
  value?: Maybe<JiraJourneyParentIssueValueType>;
44780
44812
  };
44781
44813
  export declare type JiraJourneyParentIssueInput = {
@@ -44787,6 +44819,12 @@ export declare enum JiraJourneyParentIssueType {
44787
44819
  Request = "REQUEST"
44788
44820
  }
44789
44821
  export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
44822
+ export declare enum JiraJourneyStatus {
44823
+ Archived = "ARCHIVED",
44824
+ Disabled = "DISABLED",
44825
+ Draft = "DRAFT",
44826
+ Published = "PUBLISHED"
44827
+ }
44790
44828
  export declare type JiraJourneyTrigger = {
44791
44829
  __typename?: 'JiraJourneyTrigger';
44792
44830
  type: JiraJourneyTriggerType;
@@ -45892,6 +45930,7 @@ export declare type JiraMutation = {
45892
45930
  moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
45893
45931
  moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
45894
45932
  orderFormatingRule?: Maybe<JiraOrderFormattingRulePayload>;
45933
+ publishJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45895
45934
  rankIssues?: Maybe<JiraRankMutationPayload>;
45896
45935
  rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
45897
45936
  removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
@@ -45935,6 +45974,8 @@ export declare type JiraMutation = {
45935
45974
  updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
45936
45975
  updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
45937
45976
  updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
45977
+ updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45978
+ updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
45938
45979
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
45939
45980
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
45940
45981
  updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
@@ -46184,6 +46225,10 @@ export declare type JiraMutationMoveJiraVersionToStartArgs = {
46184
46225
  export declare type JiraMutationOrderFormatingRuleArgs = {
46185
46226
  input: JiraOrderFormattingRuleInput;
46186
46227
  };
46228
+ export declare type JiraMutationPublishJiraJourneyConfigurationArgs = {
46229
+ cloudId: Scalars['ID']['input'];
46230
+ input: JiraPublishJourneyConfigurationInput;
46231
+ };
46187
46232
  export declare type JiraMutationRankIssuesArgs = {
46188
46233
  rankInput: JiraRankMutationInput;
46189
46234
  };
@@ -46330,6 +46375,14 @@ export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
46330
46375
  export declare type JiraMutationUpdateIssueTypeFieldArgs = {
46331
46376
  input: JiraUpdateIssueTypeFieldInput;
46332
46377
  };
46378
+ export declare type JiraMutationUpdateJiraJourneyActivityConfigurationArgs = {
46379
+ cloudId: Scalars['ID']['input'];
46380
+ input: JiraUpdateJourneyActivityConfigurationInput;
46381
+ };
46382
+ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
46383
+ cloudId: Scalars['ID']['input'];
46384
+ input: JiraUpdateJourneyConfigurationInput;
46385
+ };
46333
46386
  export declare type JiraMutationUpdateJiraVersionArgs = {
46334
46387
  input: JiraVersionUpdateMutationInput;
46335
46388
  };
@@ -48175,6 +48228,10 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
48175
48228
  helpCenterId: Scalars['ID']['input'];
48176
48229
  helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
48177
48230
  };
48231
+ export declare type JiraPublishJourneyConfigurationInput = {
48232
+ id: Scalars['ID']['input'];
48233
+ version: Scalars['Long']['input'];
48234
+ };
48178
48235
  export declare type JiraPullRequestReviewer = {
48179
48236
  __typename?: 'JiraPullRequestReviewer';
48180
48237
  avatar?: Maybe<JiraAvatar>;
@@ -52343,6 +52400,24 @@ export declare type JiraUpdateIssueTypeFieldInput = {
52343
52400
  id: Scalars['ID']['input'];
52344
52401
  operation: JiraIssueTypeFieldOperationInput;
52345
52402
  };
52403
+ export declare type JiraUpdateJourneyActivityConfigurationInput = {
52404
+ createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
52405
+ id: Scalars['ID']['input'];
52406
+ version: Scalars['Long']['input'];
52407
+ };
52408
+ export declare type JiraUpdateJourneyConfigurationInput = {
52409
+ id: Scalars['ID']['input'];
52410
+ name?: InputMaybe<Scalars['String']['input']>;
52411
+ parentIssue?: InputMaybe<JiraJourneyParentIssueInput>;
52412
+ trigger?: InputMaybe<JiraJourneyTriggerInput>;
52413
+ version: Scalars['Long']['input'];
52414
+ };
52415
+ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
52416
+ __typename?: 'JiraUpdateJourneyConfigurationPayload';
52417
+ errors?: Maybe<Array<MutationError>>;
52418
+ jiraJourneyConfiguration?: Maybe<JiraJourneyConfiguration>;
52419
+ success: Scalars['Boolean']['output'];
52420
+ };
52346
52421
  export declare type JiraUpdateLabelsFieldInput = {
52347
52422
  id: Scalars['ID']['input'];
52348
52423
  operations: Array<JiraLabelsFieldOperationInput>;
@@ -54019,7 +54094,6 @@ export declare type JsmChatCreateConversationAnalyticsOutput = {
54019
54094
  status?: Maybe<Scalars['String']['output']>;
54020
54095
  };
54021
54096
  export declare type JsmChatCreateConversationInput = {
54022
- authorId: Scalars['String']['input'];
54023
54097
  channelExperienceId: JsmChatChannelExperienceId;
54024
54098
  conversationContextAri: Scalars['ID']['input'];
54025
54099
  isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
@@ -54762,6 +54836,17 @@ export declare type JswWorkingDaysConfig = {
54762
54836
  timeZoneEditModel?: Maybe<JswTimeZoneEditModel>;
54763
54837
  weekDays?: Maybe<JswWeekDaysConfig>;
54764
54838
  };
54839
+ export declare type KnowledgeBaseArticleCountError = {
54840
+ __typename?: 'KnowledgeBaseArticleCountError';
54841
+ container: Scalars['ID']['output'];
54842
+ extensions: Array<QueryErrorExtension>;
54843
+ message: Scalars['String']['output'];
54844
+ };
54845
+ export declare type KnowledgeBaseArticleCountSource = {
54846
+ __typename?: 'KnowledgeBaseArticleCountSource';
54847
+ container: Scalars['ID']['output'];
54848
+ count: Scalars['Int']['output'];
54849
+ };
54765
54850
  export declare type KnowledgeBaseLinkResponse = {
54766
54851
  __typename?: 'KnowledgeBaseLinkResponse';
54767
54852
  knowledgeBaseSource?: Maybe<KnowledgeBaseSource>;
@@ -54895,8 +54980,8 @@ export declare type KnowledgeDiscoveryAutoDefinition = {
54895
54980
  export declare type KnowledgeDiscoveryAutoDefinitionResult = KnowledgeDiscoveryAutoDefinition | QueryError;
54896
54981
  export declare type KnowledgeDiscoveryBookmark = {
54897
54982
  __typename?: 'KnowledgeDiscoveryBookmark';
54983
+ id: Scalars['ID']['output'];
54898
54984
  properties?: Maybe<KnowledgeDiscoveryBookmarkProperties>;
54899
- url?: Maybe<Scalars['String']['output']>;
54900
54985
  };
54901
54986
  export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
54902
54987
  __typename?: 'KnowledgeDiscoveryBookmarkCollisionFailureMetadata';
@@ -55125,7 +55210,6 @@ export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
55125
55210
  export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
55126
55211
  cloudId: Scalars['String']['input'];
55127
55212
  keyPhrase: Scalars['String']['input'];
55128
- workspaceId?: InputMaybe<Scalars['String']['input']>;
55129
55213
  };
55130
55214
  export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
55131
55215
  confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
@@ -55782,7 +55866,7 @@ export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
55782
55866
  versionNumber?: InputMaybe<Scalars['String']['input']>;
55783
55867
  };
55784
55868
  export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
55785
- appId?: InputMaybe<Scalars['ID']['input']>;
55869
+ appKey?: InputMaybe<Scalars['ID']['input']>;
55786
55870
  appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
55787
55871
  buildNumber: Scalars['ID']['input'];
55788
55872
  };
@@ -55809,6 +55893,10 @@ export declare type MarketplaceConsoleDeploymentInstruction = {
55809
55893
  body: Scalars['String']['output'];
55810
55894
  screenshots: MarketplaceConsoleListingScreenshot;
55811
55895
  };
55896
+ export declare type MarketplaceConsoleDeploymentInstructionInput = {
55897
+ body?: InputMaybe<Scalars['String']['input']>;
55898
+ screenshotImageUrl?: InputMaybe<Scalars['String']['input']>;
55899
+ };
55812
55900
  export declare type MarketplaceConsoleDevSpace = {
55813
55901
  __typename?: 'MarketplaceConsoleDevSpace';
55814
55902
  id: Scalars['ID']['output'];
@@ -56049,6 +56137,13 @@ export declare type MarketplaceConsoleLink = {
56049
56137
  title?: Maybe<Scalars['String']['output']>;
56050
56138
  type?: Maybe<Scalars['String']['output']>;
56051
56139
  };
56140
+ export declare type MarketplaceConsoleListingHighLightInput = {
56141
+ caption?: InputMaybe<Scalars['String']['input']>;
56142
+ screenshotUrl: Scalars['String']['input'];
56143
+ summary: Scalars['String']['input'];
56144
+ thumbnailUrl: Scalars['String']['input'];
56145
+ title: Scalars['String']['input'];
56146
+ };
56052
56147
  export declare type MarketplaceConsoleListingHighLights = {
56053
56148
  __typename?: 'MarketplaceConsoleListingHighLights';
56054
56149
  caption?: Maybe<Scalars['String']['output']>;
@@ -56061,6 +56156,51 @@ export declare type MarketplaceConsoleListingScreenshot = {
56061
56156
  caption?: Maybe<Scalars['String']['output']>;
56062
56157
  imageId: Scalars['String']['output'];
56063
56158
  };
56159
+ export declare type MarketplaceConsoleListingScreenshotInput = {
56160
+ caption?: InputMaybe<Scalars['String']['input']>;
56161
+ imageUrl: Scalars['String']['input'];
56162
+ };
56163
+ export declare type MarketplaceConsoleMakeAppVersionPublicRequest = {
56164
+ appKey: Scalars['ID']['input'];
56165
+ appSoftwareId: Scalars['ID']['input'];
56166
+ appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
56167
+ binaryUrl?: InputMaybe<Scalars['String']['input']>;
56168
+ buildNumber: Scalars['ID']['input'];
56169
+ categories?: InputMaybe<Array<Scalars['String']['input']>>;
56170
+ communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
56171
+ compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
56172
+ dataCenterReviewIssueKey?: InputMaybe<Scalars['String']['input']>;
56173
+ deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
56174
+ documentationUrl?: InputMaybe<Scalars['String']['input']>;
56175
+ eulaUrl?: InputMaybe<Scalars['String']['input']>;
56176
+ forumsUrl?: InputMaybe<Scalars['String']['input']>;
56177
+ googleAnalytics4Id?: InputMaybe<Scalars['String']['input']>;
56178
+ googleAnalyticsId?: InputMaybe<Scalars['String']['input']>;
56179
+ heroImageUrl?: InputMaybe<Scalars['String']['input']>;
56180
+ highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
56181
+ isBeta?: InputMaybe<Scalars['Boolean']['input']>;
56182
+ isSupported?: InputMaybe<Scalars['Boolean']['input']>;
56183
+ issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
56184
+ keywords?: InputMaybe<Array<Scalars['String']['input']>>;
56185
+ learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
56186
+ licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
56187
+ logoUrl?: InputMaybe<Scalars['String']['input']>;
56188
+ moreDetails?: InputMaybe<Scalars['String']['input']>;
56189
+ name?: InputMaybe<Scalars['String']['input']>;
56190
+ paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
56191
+ privacyUrl?: InputMaybe<Scalars['String']['input']>;
56192
+ productId: Scalars['ID']['input'];
56193
+ releaseNotes?: InputMaybe<Scalars['String']['input']>;
56194
+ releaseSummary?: InputMaybe<Scalars['String']['input']>;
56195
+ screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
56196
+ segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
56197
+ sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
56198
+ storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
56199
+ summary?: InputMaybe<Scalars['String']['input']>;
56200
+ supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
56201
+ tagLine?: InputMaybe<Scalars['String']['input']>;
56202
+ youtubeId?: InputMaybe<Scalars['String']['input']>;
56203
+ };
56064
56204
  export declare type MarketplaceConsoleMutationApi = {
56065
56205
  __typename?: 'MarketplaceConsoleMutationApi';
56066
56206
  activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
@@ -56070,6 +56210,7 @@ export declare type MarketplaceConsoleMutationApi = {
56070
56210
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
56071
56211
  deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
56072
56212
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
56213
+ makeAppVersionPublic?: Maybe<MarketplaceConsoleMutationVoidResponse>;
56073
56214
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
56074
56215
  };
56075
56216
  export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
@@ -56097,6 +56238,9 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
56097
56238
  editions: Array<MarketplaceConsoleEditionInput>;
56098
56239
  product: MarketplaceConsoleEditionsInput;
56099
56240
  };
56241
+ export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
56242
+ makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
56243
+ };
56100
56244
  export declare type MarketplaceConsoleMutationApiValidateArtifactUrlArgs = {
56101
56245
  url: Scalars['String']['input'];
56102
56246
  };
@@ -59440,6 +59584,7 @@ export declare type MutationKnowledgeBaseArgs = {
59440
59584
  cloudId: Scalars['ID']['input'];
59441
59585
  };
59442
59586
  export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
59587
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
59443
59588
  input: KnowledgeBaseSpacePermissionUpdateViewInput;
59444
59589
  };
59445
59590
  export declare type MutationMoveSprintDownArgs = {
@@ -66566,6 +66711,7 @@ export declare type ShepherdMutation = {
66566
66711
  createExampleAlert?: Maybe<ShepherdCreateExampleAlertPayload>;
66567
66712
  createTestAlert?: Maybe<ShepherdCreateTestAlertPayload>;
66568
66713
  deleteAlert?: Maybe<ShepherdDeleteAlertPayload>;
66714
+ redaction?: Maybe<ShepherdRedactionMutations>;
66569
66715
  subscription?: Maybe<ShepherdSubscriptionMutations>;
66570
66716
  unlinkAlertResources?: Maybe<ShepherdUpdateAlertPayload>;
66571
66717
  updateAlert?: Maybe<ShepherdUpdateAlertPayload>;
@@ -66664,6 +66810,50 @@ export declare enum ShepherdRateThresholdValue {
66664
66810
  Low = "LOW",
66665
66811
  Medium = "MEDIUM"
66666
66812
  }
66813
+ export declare type ShepherdRedactedContent = {
66814
+ __typename?: 'ShepherdRedactedContent';
66815
+ contentId: Scalars['ID']['output'];
66816
+ status: ShepherdRedactedContentStatus;
66817
+ };
66818
+ export declare enum ShepherdRedactedContentStatus {
66819
+ Redacted = "REDACTED",
66820
+ RedactionFailed = "REDACTION_FAILED",
66821
+ RedactionPending = "REDACTION_PENDING"
66822
+ }
66823
+ export declare type ShepherdRedaction = Node & {
66824
+ __typename?: 'ShepherdRedaction';
66825
+ createdOn: Scalars['DateTime']['output'];
66826
+ id: Scalars['ID']['output'];
66827
+ redactedContent: Array<ShepherdRedactedContent>;
66828
+ resource: Scalars['ID']['output'];
66829
+ status: ShepherdRedactionStatus;
66830
+ updatedOn?: Maybe<Scalars['DateTime']['output']>;
66831
+ };
66832
+ export declare type ShepherdRedactionInput = {
66833
+ alertId: Scalars['ID']['input'];
66834
+ redactions: Array<Scalars['ID']['input']>;
66835
+ removeHistory: Scalars['Boolean']['input'];
66836
+ timestamp: Scalars['String']['input'];
66837
+ };
66838
+ export declare type ShepherdRedactionMutations = {
66839
+ __typename?: 'ShepherdRedactionMutations';
66840
+ redact?: Maybe<ShepherdRedactionPayload>;
66841
+ };
66842
+ export declare type ShepherdRedactionMutationsRedactArgs = {
66843
+ input: ShepherdRedactionInput;
66844
+ };
66845
+ export declare type ShepherdRedactionPayload = Payload & {
66846
+ __typename?: 'ShepherdRedactionPayload';
66847
+ errors?: Maybe<Array<MutationError>>;
66848
+ node?: Maybe<ShepherdRedaction>;
66849
+ success: Scalars['Boolean']['output'];
66850
+ };
66851
+ export declare enum ShepherdRedactionStatus {
66852
+ Failed = "FAILED",
66853
+ PartiallyRedacted = "PARTIALLY_REDACTED",
66854
+ Pending = "PENDING",
66855
+ Redacted = "REDACTED"
66856
+ }
66667
66857
  export declare type ShepherdRelatedAlertType = {
66668
66858
  __typename?: 'ShepherdRelatedAlertType';
66669
66859
  product?: Maybe<ShepherdAtlassianProduct>;