@forge/cli-shared 8.1.0-next.7 → 8.1.0-next.8

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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 8.1.0-next.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [46daa27]
8
+ - @forge/manifest@10.1.0-next.8
9
+
3
10
  ## 8.1.0-next.7
4
11
 
5
12
  ### Minor Changes
@@ -1308,6 +1308,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
1308
1308
  scenario?: Maybe<AgentStudioScenario>;
1309
1309
  success: Scalars['Boolean']['output'];
1310
1310
  };
1311
+ export declare type AgentStudioDeleteAgentPayload = Payload & {
1312
+ __typename?: 'AgentStudioDeleteAgentPayload';
1313
+ agent?: Maybe<AgentStudioAgent>;
1314
+ errors?: Maybe<Array<MutationError>>;
1315
+ success: Scalars['Boolean']['output'];
1316
+ };
1311
1317
  export declare type AgentStudioDeleteScenarioPayload = Payload & {
1312
1318
  __typename?: 'AgentStudioDeleteScenarioPayload';
1313
1319
  errors?: Maybe<Array<MutationError>>;
@@ -16887,6 +16893,20 @@ export declare type CreateJiraPlaybookInput = {
16887
16893
  state?: InputMaybe<JiraPlaybookStateField>;
16888
16894
  steps: Array<CreateJiraPlaybookStepInput>;
16889
16895
  };
16896
+ export declare type CreateJiraPlaybookLabelInput = {
16897
+ cloudId: Scalars['ID']['input'];
16898
+ name: Scalars['String']['input'];
16899
+ playbookId?: InputMaybe<Scalars['ID']['input']>;
16900
+ property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
16901
+ scopeId?: InputMaybe<Scalars['String']['input']>;
16902
+ scopeType: JiraPlaybookScopeType;
16903
+ };
16904
+ export declare type CreateJiraPlaybookLabelPayload = Payload & {
16905
+ __typename?: 'CreateJiraPlaybookLabelPayload';
16906
+ errors?: Maybe<Array<MutationError>>;
16907
+ label?: Maybe<JiraPlaybookLabel>;
16908
+ success: Scalars['Boolean']['output'];
16909
+ };
16890
16910
  export declare type CreateJiraPlaybookPayload = Payload & {
16891
16911
  __typename?: 'CreateJiraPlaybookPayload';
16892
16912
  errors?: Maybe<Array<MutationError>>;
@@ -50183,6 +50203,7 @@ export declare type HelpCenter = Node & {
50183
50203
  lastUpdated?: Maybe<Scalars['String']['output']>;
50184
50204
  mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
50185
50205
  name?: Maybe<HelpCenterName>;
50206
+ pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
50186
50207
  permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
50187
50208
  portals?: Maybe<HelpCenterPortals>;
50188
50209
  projectMappingData?: Maybe<HelpCenterProjectMappingData>;
@@ -50194,6 +50215,9 @@ export declare type HelpCenter = Node & {
50194
50215
  virtualAgentAvailable?: Maybe<Scalars['Boolean']['output']>;
50195
50216
  virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
50196
50217
  };
50218
+ export declare type HelpCenterPagesArgs = {
50219
+ filter?: InputMaybe<HelpCenterPagesFilter>;
50220
+ };
50197
50221
  export declare type HelpCenterPortalsArgs = {
50198
50222
  portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
50199
50223
  sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
@@ -50551,6 +50575,9 @@ export declare type HelpCenterPageUpdatePayload = Payload & {
50551
50575
  helpCenterPage?: Maybe<HelpCenterPage>;
50552
50576
  success: Scalars['Boolean']['output'];
50553
50577
  };
50578
+ export declare type HelpCenterPagesFilter = {
50579
+ ids?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
50580
+ };
50554
50581
  export declare type HelpCenterPermissionSettings = {
50555
50582
  __typename?: 'HelpCenterPermissionSettings';
50556
50583
  accessControlType: HelpCenterAccessControlType;
@@ -54090,6 +54117,7 @@ export declare enum JiraBoardType {
54090
54117
  }
54091
54118
  export declare type JiraBoardView = {
54092
54119
  __typename?: 'JiraBoardView';
54120
+ canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
54093
54121
  canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
54094
54122
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
54095
54123
  cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
@@ -63544,6 +63572,7 @@ export declare type JiraPlaybook = Node & {
63544
63572
  filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
63545
63573
  id: Scalars['ID']['output'];
63546
63574
  jql?: Maybe<Scalars['String']['output']>;
63575
+ labels?: Maybe<Array<JiraPlaybookLabel>>;
63547
63576
  name?: Maybe<Scalars['String']['output']>;
63548
63577
  owner?: Maybe<User>;
63549
63578
  scopeId?: Maybe<Scalars['String']['output']>;
@@ -63619,6 +63648,49 @@ export declare enum JiraPlaybookIssueFilterType {
63619
63648
  IssueTypes = "ISSUE_TYPES",
63620
63649
  RequestTypes = "REQUEST_TYPES"
63621
63650
  }
63651
+ export declare type JiraPlaybookLabel = Node & {
63652
+ __typename?: 'JiraPlaybookLabel';
63653
+ id: Scalars['ID']['output'];
63654
+ name: Scalars['String']['output'];
63655
+ property?: Maybe<JiraPlaybookLabelProperty>;
63656
+ scopeId?: Maybe<Scalars['String']['output']>;
63657
+ scopeType?: Maybe<JiraPlaybookScopeType>;
63658
+ };
63659
+ export declare type JiraPlaybookLabelAssignmentPayload = Payload & {
63660
+ __typename?: 'JiraPlaybookLabelAssignmentPayload';
63661
+ errors?: Maybe<Array<MutationError>>;
63662
+ id: Scalars['ID']['output'];
63663
+ success: Scalars['Boolean']['output'];
63664
+ };
63665
+ export declare type JiraPlaybookLabelConnection = HasPageInfo & QueryPayload & {
63666
+ __typename?: 'JiraPlaybookLabelConnection';
63667
+ edges?: Maybe<Array<JiraPlaybookLabelEdge>>;
63668
+ errors?: Maybe<Array<QueryError>>;
63669
+ nodes?: Maybe<Array<Maybe<JiraPlaybookLabel>>>;
63670
+ pageInfo: PageInfo;
63671
+ success: Scalars['Boolean']['output'];
63672
+ };
63673
+ export declare type JiraPlaybookLabelEdge = {
63674
+ __typename?: 'JiraPlaybookLabelEdge';
63675
+ cursor: Scalars['String']['output'];
63676
+ node?: Maybe<JiraPlaybookLabel>;
63677
+ };
63678
+ export declare type JiraPlaybookLabelFilter = {
63679
+ name?: InputMaybe<Scalars['String']['input']>;
63680
+ };
63681
+ export declare type JiraPlaybookLabelProperty = {
63682
+ __typename?: 'JiraPlaybookLabelProperty';
63683
+ color?: Maybe<Scalars['String']['output']>;
63684
+ editable?: Maybe<Scalars['Boolean']['output']>;
63685
+ };
63686
+ export declare type JiraPlaybookLabelPropertyInput = {
63687
+ color?: InputMaybe<Scalars['String']['input']>;
63688
+ editable?: InputMaybe<Scalars['Boolean']['input']>;
63689
+ };
63690
+ export declare type JiraPlaybookListFilter = {
63691
+ labels?: InputMaybe<Array<Scalars['ID']['input']>>;
63692
+ name?: InputMaybe<Scalars['String']['input']>;
63693
+ };
63622
63694
  export declare type JiraPlaybookQueryPayload = QueryPayload & {
63623
63695
  __typename?: 'JiraPlaybookQueryPayload';
63624
63696
  errors?: Maybe<Array<QueryError>>;
@@ -63710,7 +63782,7 @@ export declare type JiraPlaybookStepUsage = Node & {
63710
63782
  id: Scalars['ID']['output'];
63711
63783
  maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
63712
63784
  minExecutionDuration?: Maybe<Scalars['Long']['output']>;
63713
- ownerAccountId?: Maybe<Scalars['String']['output']>;
63785
+ owner?: Maybe<User>;
63714
63786
  playbookName?: Maybe<Scalars['String']['output']>;
63715
63787
  stepName?: Maybe<Scalars['String']['output']>;
63716
63788
  stepType?: Maybe<JiraPlaybookStepType>;
@@ -77305,11 +77377,6 @@ export declare type MercuryFocusAreaType = {
77305
77377
  id: Scalars['ID']['output'];
77306
77378
  name: Scalars['String']['output'];
77307
77379
  };
77308
- export declare type MercuryForYouFocusAreaActivityHistory = {
77309
- __typename?: 'MercuryForYouFocusAreaActivityHistory';
77310
- activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
77311
- focusAreas?: Maybe<MercuryFocusAreaConnection>;
77312
- };
77313
77380
  export declare type MercuryFundChangeSummary = {
77314
77381
  __typename?: 'MercuryFundChangeSummary';
77315
77382
  amount?: Maybe<MercuryFundChangeSummaryFields>;
@@ -77997,7 +78064,6 @@ export declare type MercuryQueryApi = {
77997
78064
  focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
77998
78065
  focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
77999
78066
  focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
78000
- forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
78001
78067
  goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
78002
78068
  mediaReadToken?: Maybe<MercuryMediaToken>;
78003
78069
  mediaUploadToken?: Maybe<MercuryMediaToken>;
@@ -78081,14 +78147,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
78081
78147
  hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
78082
78148
  sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
78083
78149
  };
78084
- export declare type MercuryQueryApiForYouFocusAreaActivityHistoryArgs = {
78085
- after?: InputMaybe<Scalars['String']['input']>;
78086
- cloudId?: InputMaybe<Scalars['ID']['input']>;
78087
- first?: InputMaybe<Scalars['Int']['input']>;
78088
- focusAreaFirst?: InputMaybe<Scalars['Int']['input']>;
78089
- q?: InputMaybe<Scalars['String']['input']>;
78090
- sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaActivitySort>>>;
78091
- };
78092
78150
  export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
78093
78151
  cloudId: Scalars['ID']['input'];
78094
78152
  };
@@ -79076,6 +79134,7 @@ export declare type Mutation = {
79076
79134
  admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
79077
79135
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
79078
79136
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
79137
+ agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
79079
79138
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
79080
79139
  agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
79081
79140
  agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
@@ -79392,9 +79451,12 @@ export declare type Mutation = {
79392
79451
  partnerEarlyAccess?: Maybe<PeapMutationApi>;
79393
79452
  planModeCardCreate?: Maybe<CreateCardsOutput>;
79394
79453
  planModeCardMove?: Maybe<MoveCardOutput>;
79454
+ playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
79395
79455
  playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
79456
+ playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
79396
79457
  playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
79397
79458
  playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
79459
+ playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
79398
79460
  playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
79399
79461
  playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
79400
79462
  polaris?: Maybe<PolarisMutationNamespace>;
@@ -79618,6 +79680,9 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
79618
79680
  cloudId: Scalars['String']['input'];
79619
79681
  input: AgentStudioCreateScenarioInput;
79620
79682
  };
79683
+ export declare type MutationAgentStudio_DeleteAgentArgs = {
79684
+ id: Scalars['ID']['input'];
79685
+ };
79621
79686
  export declare type MutationAgentStudio_DeleteScenarioArgs = {
79622
79687
  id: Scalars['ID']['input'];
79623
79688
  };
@@ -80631,15 +80696,26 @@ export declare type MutationPlanModeCardCreateArgs = {
80631
80696
  export declare type MutationPlanModeCardMoveArgs = {
80632
80697
  input?: InputMaybe<PlanModeCardMoveInput>;
80633
80698
  };
80699
+ export declare type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
80700
+ labelId: Scalars['ID']['input'];
80701
+ playbookId: Scalars['ID']['input'];
80702
+ };
80634
80703
  export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
80635
80704
  input: CreateJiraPlaybookInput;
80636
80705
  };
80706
+ export declare type MutationPlaybook_CreateJiraPlaybookLabelArgs = {
80707
+ input: CreateJiraPlaybookLabelInput;
80708
+ };
80637
80709
  export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
80638
80710
  input: CreateJiraPlaybookStepRunInput;
80639
80711
  };
80640
80712
  export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
80641
80713
  input: DeleteJiraPlaybookInput;
80642
80714
  };
80715
+ export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
80716
+ labelId: Scalars['ID']['input'];
80717
+ playbookId: Scalars['ID']['input'];
80718
+ };
80643
80719
  export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
80644
80720
  input: UpdateJiraPlaybookInput;
80645
80721
  };
@@ -84408,6 +84484,7 @@ export declare type Query = {
84408
84484
  permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
84409
84485
  playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
84410
84486
  playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
84487
+ playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
84411
84488
  playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
84412
84489
  playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
84413
84490
  playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
@@ -84438,6 +84515,7 @@ export declare type Query = {
84438
84515
  projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
84439
84516
  projects_byId?: Maybe<TownsquareProject>;
84440
84517
  projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
84518
+ projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
84441
84519
  ptpage?: Maybe<PtPage>;
84442
84520
  publicLinkInformation?: Maybe<PublicLinkInformation>;
84443
84521
  publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
@@ -86225,6 +86303,13 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
86225
86303
  issueId: Scalars['String']['input'];
86226
86304
  projectKey: Scalars['String']['input'];
86227
86305
  };
86306
+ export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
86307
+ after?: InputMaybe<Scalars['String']['input']>;
86308
+ cloudId: Scalars['ID']['input'];
86309
+ filters?: InputMaybe<JiraPlaybookLabelFilter>;
86310
+ first?: InputMaybe<Scalars['Int']['input']>;
86311
+ projectKey: Scalars['String']['input'];
86312
+ };
86228
86313
  export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
86229
86314
  after?: InputMaybe<Scalars['String']['input']>;
86230
86315
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -86249,6 +86334,7 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
86249
86334
  after?: InputMaybe<Scalars['String']['input']>;
86250
86335
  cloudId: Scalars['ID']['input'];
86251
86336
  filter?: InputMaybe<JiraPlaybookFilter>;
86337
+ filters?: InputMaybe<JiraPlaybookListFilter>;
86252
86338
  first?: InputMaybe<Scalars['Int']['input']>;
86253
86339
  projectKey: Scalars['String']['input'];
86254
86340
  sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
@@ -86332,6 +86418,9 @@ export declare type QueryProjects_ByIdArgs = {
86332
86418
  export declare type QueryProjects_ByIdsArgs = {
86333
86419
  projectIds: Array<Scalars['String']['input']>;
86334
86420
  };
86421
+ export declare type QueryProjects_UpdatesByIdsArgs = {
86422
+ projectUpdateIds: Array<Scalars['String']['input']>;
86423
+ };
86335
86424
  export declare type QueryPtpageArgs = {
86336
86425
  enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
86337
86426
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -90809,7 +90898,6 @@ export declare type ShepherdCreateWebhookInput = {
90809
90898
  callbackURL: Scalars['URL']['input'];
90810
90899
  destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
90811
90900
  status?: InputMaybe<ShepherdSubscriptionStatus>;
90812
- type?: InputMaybe<ShepherdWebhookType>;
90813
90901
  };
90814
90902
  export declare type ShepherdCurrentUser = {
90815
90903
  __typename?: 'ShepherdCurrentUser';
@@ -91546,7 +91634,6 @@ export declare type ShepherdUpdateWebhookInput = {
91546
91634
  callbackURL?: InputMaybe<Scalars['URL']['input']>;
91547
91635
  destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
91548
91636
  status?: InputMaybe<ShepherdSubscriptionStatus>;
91549
- type?: InputMaybe<ShepherdWebhookType>;
91550
91637
  };
91551
91638
  export declare type ShepherdUser = {
91552
91639
  __typename?: 'ShepherdUser';
@@ -91576,15 +91663,9 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
91576
91663
  destinationType: ShepherdWebhookDestinationType;
91577
91664
  id: Scalars['ID']['output'];
91578
91665
  status: ShepherdSubscriptionStatus;
91579
- type?: Maybe<ShepherdWebhookType>;
91580
91666
  updatedBy?: Maybe<Scalars['String']['output']>;
91581
91667
  updatedOn?: Maybe<Scalars['DateTime']['output']>;
91582
91668
  };
91583
- export declare enum ShepherdWebhookType {
91584
- Custom = "CUSTOM",
91585
- MicrosoftTeams = "MICROSOFT_TEAMS",
91586
- Slack = "SLACK"
91587
- }
91588
91669
  export declare type ShepherdWorkspace = Node & {
91589
91670
  __typename?: 'ShepherdWorkspace';
91590
91671
  bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
@@ -93850,6 +93931,7 @@ export declare type SupportRequestTransitionInput = {
93850
93931
  comment?: InputMaybe<Scalars['String']['input']>;
93851
93932
  requestKey: Scalars['String']['input'];
93852
93933
  transitionId: Scalars['ID']['input'];
93934
+ transitionName?: InputMaybe<Scalars['String']['input']>;
93853
93935
  };
93854
93936
  export declare type SupportRequestTransitions = {
93855
93937
  __typename?: 'SupportRequestTransitions';
@@ -100144,6 +100226,19 @@ export declare type UpdateJiraPlaybookInput = {
100144
100226
  state?: InputMaybe<JiraPlaybookStateField>;
100145
100227
  steps: Array<UpdateJiraPlaybookStepInput>;
100146
100228
  };
100229
+ export declare type UpdateJiraPlaybookLabelInput = {
100230
+ id: Scalars['ID']['input'];
100231
+ name: Scalars['String']['input'];
100232
+ property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
100233
+ scopeId?: InputMaybe<Scalars['String']['input']>;
100234
+ scopeType: JiraPlaybookScopeType;
100235
+ };
100236
+ export declare type UpdateJiraPlaybookLabelPayload = Payload & {
100237
+ __typename?: 'UpdateJiraPlaybookLabelPayload';
100238
+ errors?: Maybe<Array<MutationError>>;
100239
+ label?: Maybe<JiraPlaybookLabel>;
100240
+ success: Scalars['Boolean']['output'];
100241
+ };
100147
100242
  export declare type UpdateJiraPlaybookPayload = Payload & {
100148
100243
  __typename?: 'UpdateJiraPlaybookPayload';
100149
100244
  errors?: Maybe<Array<MutationError>>;