@forge/cli-shared 8.1.0-next.7 → 8.1.0-next.7-experimental-effab31
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 +25 -0
- package/out/graphql/graphql-types.d.ts +135 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +3 -9
- package/out/service/bridge-script-service.d.ts.map +1 -1
- package/out/service/bridge-script-service.js +2 -3
- package/out/service/iframe-resizer-script-service.d.ts.map +1 -1
- package/out/service/iframe-resizer-script-service.js +2 -3
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.1.0-next.7-experimental-effab31
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- effab31: Bumped cheerio from 0.22 to 1.1
|
|
8
|
+
- 620aea7: Added support for Dashboards context for app creation
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- 25a3da2: Update attribution header
|
|
13
|
+
- 195411c: patch dependencies
|
|
14
|
+
- Updated dependencies [effab31]
|
|
15
|
+
- Updated dependencies [5d07fbf]
|
|
16
|
+
- Updated dependencies [4b15e26]
|
|
17
|
+
- Updated dependencies [634d7b9]
|
|
18
|
+
- Updated dependencies [b9574d4]
|
|
19
|
+
- Updated dependencies [195411c]
|
|
20
|
+
- Updated dependencies [d97a252]
|
|
21
|
+
- Updated dependencies [1479d2d]
|
|
22
|
+
- Updated dependencies [ca7e661]
|
|
23
|
+
- Updated dependencies [5ab2c49]
|
|
24
|
+
- @forge/manifest@10.0.1-next.7-experimental-effab31
|
|
25
|
+
- @forge/i18n@0.0.7-next.0-experimental-effab31
|
|
26
|
+
- @forge/util@1.4.10-next.0-experimental-effab31
|
|
27
|
+
|
|
3
28
|
## 8.1.0-next.7
|
|
4
29
|
|
|
5
30
|
### 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>;
|
|
@@ -55959,6 +55987,19 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
55959
55987
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
55960
55988
|
success: Scalars['Boolean']['output'];
|
|
55961
55989
|
};
|
|
55990
|
+
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
55991
|
+
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
55992
|
+
expression: JiraFormattingRuleExpressionInput;
|
|
55993
|
+
formattingArea: JiraFormattingArea;
|
|
55994
|
+
formattingColor?: InputMaybe<JiraColorInput>;
|
|
55995
|
+
viewId: Scalars['ID']['input'];
|
|
55996
|
+
};
|
|
55997
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
55998
|
+
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
55999
|
+
createdRule?: Maybe<JiraFormattingRule>;
|
|
56000
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56001
|
+
success: Scalars['Boolean']['output'];
|
|
56002
|
+
};
|
|
55962
56003
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
55963
56004
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
55964
56005
|
name: Scalars['String']['input'];
|
|
@@ -63544,6 +63585,7 @@ export declare type JiraPlaybook = Node & {
|
|
|
63544
63585
|
filters?: Maybe<Array<JiraPlaybookIssueFilter>>;
|
|
63545
63586
|
id: Scalars['ID']['output'];
|
|
63546
63587
|
jql?: Maybe<Scalars['String']['output']>;
|
|
63588
|
+
labels?: Maybe<Array<JiraPlaybookLabel>>;
|
|
63547
63589
|
name?: Maybe<Scalars['String']['output']>;
|
|
63548
63590
|
owner?: Maybe<User>;
|
|
63549
63591
|
scopeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -63619,6 +63661,49 @@ export declare enum JiraPlaybookIssueFilterType {
|
|
|
63619
63661
|
IssueTypes = "ISSUE_TYPES",
|
|
63620
63662
|
RequestTypes = "REQUEST_TYPES"
|
|
63621
63663
|
}
|
|
63664
|
+
export declare type JiraPlaybookLabel = Node & {
|
|
63665
|
+
__typename?: 'JiraPlaybookLabel';
|
|
63666
|
+
id: Scalars['ID']['output'];
|
|
63667
|
+
name: Scalars['String']['output'];
|
|
63668
|
+
property?: Maybe<JiraPlaybookLabelProperty>;
|
|
63669
|
+
scopeId?: Maybe<Scalars['String']['output']>;
|
|
63670
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
63671
|
+
};
|
|
63672
|
+
export declare type JiraPlaybookLabelAssignmentPayload = Payload & {
|
|
63673
|
+
__typename?: 'JiraPlaybookLabelAssignmentPayload';
|
|
63674
|
+
errors?: Maybe<Array<MutationError>>;
|
|
63675
|
+
id: Scalars['ID']['output'];
|
|
63676
|
+
success: Scalars['Boolean']['output'];
|
|
63677
|
+
};
|
|
63678
|
+
export declare type JiraPlaybookLabelConnection = HasPageInfo & QueryPayload & {
|
|
63679
|
+
__typename?: 'JiraPlaybookLabelConnection';
|
|
63680
|
+
edges?: Maybe<Array<JiraPlaybookLabelEdge>>;
|
|
63681
|
+
errors?: Maybe<Array<QueryError>>;
|
|
63682
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookLabel>>>;
|
|
63683
|
+
pageInfo: PageInfo;
|
|
63684
|
+
success: Scalars['Boolean']['output'];
|
|
63685
|
+
};
|
|
63686
|
+
export declare type JiraPlaybookLabelEdge = {
|
|
63687
|
+
__typename?: 'JiraPlaybookLabelEdge';
|
|
63688
|
+
cursor: Scalars['String']['output'];
|
|
63689
|
+
node?: Maybe<JiraPlaybookLabel>;
|
|
63690
|
+
};
|
|
63691
|
+
export declare type JiraPlaybookLabelFilter = {
|
|
63692
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63693
|
+
};
|
|
63694
|
+
export declare type JiraPlaybookLabelProperty = {
|
|
63695
|
+
__typename?: 'JiraPlaybookLabelProperty';
|
|
63696
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
63697
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
63698
|
+
};
|
|
63699
|
+
export declare type JiraPlaybookLabelPropertyInput = {
|
|
63700
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
63701
|
+
editable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
63702
|
+
};
|
|
63703
|
+
export declare type JiraPlaybookListFilter = {
|
|
63704
|
+
labels?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63705
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
63706
|
+
};
|
|
63622
63707
|
export declare type JiraPlaybookQueryPayload = QueryPayload & {
|
|
63623
63708
|
__typename?: 'JiraPlaybookQueryPayload';
|
|
63624
63709
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63710,7 +63795,7 @@ export declare type JiraPlaybookStepUsage = Node & {
|
|
|
63710
63795
|
id: Scalars['ID']['output'];
|
|
63711
63796
|
maxExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63712
63797
|
minExecutionDuration?: Maybe<Scalars['Long']['output']>;
|
|
63713
|
-
|
|
63798
|
+
owner?: Maybe<User>;
|
|
63714
63799
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
63715
63800
|
stepName?: Maybe<Scalars['String']['output']>;
|
|
63716
63801
|
stepType?: Maybe<JiraPlaybookStepType>;
|
|
@@ -77305,11 +77390,6 @@ export declare type MercuryFocusAreaType = {
|
|
|
77305
77390
|
id: Scalars['ID']['output'];
|
|
77306
77391
|
name: Scalars['String']['output'];
|
|
77307
77392
|
};
|
|
77308
|
-
export declare type MercuryForYouFocusAreaActivityHistory = {
|
|
77309
|
-
__typename?: 'MercuryForYouFocusAreaActivityHistory';
|
|
77310
|
-
activityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
77311
|
-
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
77312
|
-
};
|
|
77313
77393
|
export declare type MercuryFundChangeSummary = {
|
|
77314
77394
|
__typename?: 'MercuryFundChangeSummary';
|
|
77315
77395
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -77997,7 +78077,6 @@ export declare type MercuryQueryApi = {
|
|
|
77997
78077
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
77998
78078
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
77999
78079
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
78000
|
-
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
78001
78080
|
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
78002
78081
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
78003
78082
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
@@ -78081,14 +78160,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
78081
78160
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
78082
78161
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
78083
78162
|
};
|
|
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
78163
|
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
78093
78164
|
cloudId: Scalars['ID']['input'];
|
|
78094
78165
|
};
|
|
@@ -79076,6 +79147,7 @@ export declare type Mutation = {
|
|
|
79076
79147
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
79077
79148
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
79078
79149
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
79150
|
+
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
79079
79151
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
79080
79152
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
79081
79153
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
@@ -79323,6 +79395,7 @@ export declare type Mutation = {
|
|
|
79323
79395
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
79324
79396
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
79325
79397
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79398
|
+
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
79326
79399
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
79327
79400
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79328
79401
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
@@ -79392,9 +79465,12 @@ export declare type Mutation = {
|
|
|
79392
79465
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
79393
79466
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
79394
79467
|
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
79468
|
+
playbook_assignJiraPlaybookLabelToJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79395
79469
|
playbook_createJiraPlaybook?: Maybe<CreateJiraPlaybookPayload>;
|
|
79470
|
+
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
79396
79471
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
79397
79472
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
79473
|
+
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
79398
79474
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
79399
79475
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
79400
79476
|
polaris?: Maybe<PolarisMutationNamespace>;
|
|
@@ -79618,6 +79694,9 @@ export declare type MutationAgentStudio_CreateScenarioArgs = {
|
|
|
79618
79694
|
cloudId: Scalars['String']['input'];
|
|
79619
79695
|
input: AgentStudioCreateScenarioInput;
|
|
79620
79696
|
};
|
|
79697
|
+
export declare type MutationAgentStudio_DeleteAgentArgs = {
|
|
79698
|
+
id: Scalars['ID']['input'];
|
|
79699
|
+
};
|
|
79621
79700
|
export declare type MutationAgentStudio_DeleteScenarioArgs = {
|
|
79622
79701
|
id: Scalars['ID']['input'];
|
|
79623
79702
|
};
|
|
@@ -80440,6 +80519,9 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
80440
80519
|
cloudId: Scalars['ID']['input'];
|
|
80441
80520
|
input: JiraCreateGlobalCustomFieldInput;
|
|
80442
80521
|
};
|
|
80522
|
+
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
80523
|
+
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
80524
|
+
};
|
|
80443
80525
|
export declare type MutationJira_DeleteBoardViewStatusColumnArgs = {
|
|
80444
80526
|
input: JiraDeleteBoardViewStatusColumnInput;
|
|
80445
80527
|
};
|
|
@@ -80631,15 +80713,26 @@ export declare type MutationPlanModeCardCreateArgs = {
|
|
|
80631
80713
|
export declare type MutationPlanModeCardMoveArgs = {
|
|
80632
80714
|
input?: InputMaybe<PlanModeCardMoveInput>;
|
|
80633
80715
|
};
|
|
80716
|
+
export declare type MutationPlaybook_AssignJiraPlaybookLabelToJiraPlaybookArgs = {
|
|
80717
|
+
labelId: Scalars['ID']['input'];
|
|
80718
|
+
playbookId: Scalars['ID']['input'];
|
|
80719
|
+
};
|
|
80634
80720
|
export declare type MutationPlaybook_CreateJiraPlaybookArgs = {
|
|
80635
80721
|
input: CreateJiraPlaybookInput;
|
|
80636
80722
|
};
|
|
80723
|
+
export declare type MutationPlaybook_CreateJiraPlaybookLabelArgs = {
|
|
80724
|
+
input: CreateJiraPlaybookLabelInput;
|
|
80725
|
+
};
|
|
80637
80726
|
export declare type MutationPlaybook_CreateJiraPlaybookStepRunArgs = {
|
|
80638
80727
|
input: CreateJiraPlaybookStepRunInput;
|
|
80639
80728
|
};
|
|
80640
80729
|
export declare type MutationPlaybook_DeleteJiraPlaybookArgs = {
|
|
80641
80730
|
input: DeleteJiraPlaybookInput;
|
|
80642
80731
|
};
|
|
80732
|
+
export declare type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
80733
|
+
labelId: Scalars['ID']['input'];
|
|
80734
|
+
playbookId: Scalars['ID']['input'];
|
|
80735
|
+
};
|
|
80643
80736
|
export declare type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
80644
80737
|
input: UpdateJiraPlaybookInput;
|
|
80645
80738
|
};
|
|
@@ -84408,6 +84501,7 @@ export declare type Query = {
|
|
|
84408
84501
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
84409
84502
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
84410
84503
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
84504
|
+
playbook_jiraPlaybookLabelsForProject?: Maybe<JiraPlaybookLabelConnection>;
|
|
84411
84505
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84412
84506
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
84413
84507
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
@@ -84438,6 +84532,7 @@ export declare type Query = {
|
|
|
84438
84532
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84439
84533
|
projects_byId?: Maybe<TownsquareProject>;
|
|
84440
84534
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
84535
|
+
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
84441
84536
|
ptpage?: Maybe<PtPage>;
|
|
84442
84537
|
publicLinkInformation?: Maybe<PublicLinkInformation>;
|
|
84443
84538
|
publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
|
|
@@ -86225,6 +86320,13 @@ export declare type QueryPlaybook_JiraPlaybookInstancesForIssueArgs = {
|
|
|
86225
86320
|
issueId: Scalars['String']['input'];
|
|
86226
86321
|
projectKey: Scalars['String']['input'];
|
|
86227
86322
|
};
|
|
86323
|
+
export declare type QueryPlaybook_JiraPlaybookLabelsForProjectArgs = {
|
|
86324
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86325
|
+
cloudId: Scalars['ID']['input'];
|
|
86326
|
+
filters?: InputMaybe<JiraPlaybookLabelFilter>;
|
|
86327
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86328
|
+
projectKey: Scalars['String']['input'];
|
|
86329
|
+
};
|
|
86228
86330
|
export declare type QueryPlaybook_JiraPlaybookStepRunsForPlaybookInstanceArgs = {
|
|
86229
86331
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86230
86332
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -86249,6 +86351,7 @@ export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
86249
86351
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86250
86352
|
cloudId: Scalars['ID']['input'];
|
|
86251
86353
|
filter?: InputMaybe<JiraPlaybookFilter>;
|
|
86354
|
+
filters?: InputMaybe<JiraPlaybookListFilter>;
|
|
86252
86355
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86253
86356
|
projectKey: Scalars['String']['input'];
|
|
86254
86357
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
@@ -86332,6 +86435,9 @@ export declare type QueryProjects_ByIdArgs = {
|
|
|
86332
86435
|
export declare type QueryProjects_ByIdsArgs = {
|
|
86333
86436
|
projectIds: Array<Scalars['String']['input']>;
|
|
86334
86437
|
};
|
|
86438
|
+
export declare type QueryProjects_UpdatesByIdsArgs = {
|
|
86439
|
+
projectUpdateIds: Array<Scalars['String']['input']>;
|
|
86440
|
+
};
|
|
86335
86441
|
export declare type QueryPtpageArgs = {
|
|
86336
86442
|
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86337
86443
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -90809,7 +90915,6 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
90809
90915
|
callbackURL: Scalars['URL']['input'];
|
|
90810
90916
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
90811
90917
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
90812
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
90813
90918
|
};
|
|
90814
90919
|
export declare type ShepherdCurrentUser = {
|
|
90815
90920
|
__typename?: 'ShepherdCurrentUser';
|
|
@@ -91546,7 +91651,6 @@ export declare type ShepherdUpdateWebhookInput = {
|
|
|
91546
91651
|
callbackURL?: InputMaybe<Scalars['URL']['input']>;
|
|
91547
91652
|
destinationType?: InputMaybe<ShepherdWebhookDestinationType>;
|
|
91548
91653
|
status?: InputMaybe<ShepherdSubscriptionStatus>;
|
|
91549
|
-
type?: InputMaybe<ShepherdWebhookType>;
|
|
91550
91654
|
};
|
|
91551
91655
|
export declare type ShepherdUser = {
|
|
91552
91656
|
__typename?: 'ShepherdUser';
|
|
@@ -91576,15 +91680,9 @@ export declare type ShepherdWebhookSubscription = Node & ShepherdSubscription &
|
|
|
91576
91680
|
destinationType: ShepherdWebhookDestinationType;
|
|
91577
91681
|
id: Scalars['ID']['output'];
|
|
91578
91682
|
status: ShepherdSubscriptionStatus;
|
|
91579
|
-
type?: Maybe<ShepherdWebhookType>;
|
|
91580
91683
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
91581
91684
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
91582
91685
|
};
|
|
91583
|
-
export declare enum ShepherdWebhookType {
|
|
91584
|
-
Custom = "CUSTOM",
|
|
91585
|
-
MicrosoftTeams = "MICROSOFT_TEAMS",
|
|
91586
|
-
Slack = "SLACK"
|
|
91587
|
-
}
|
|
91588
91686
|
export declare type ShepherdWorkspace = Node & {
|
|
91589
91687
|
__typename?: 'ShepherdWorkspace';
|
|
91590
91688
|
bitbucketWorkspaces?: Maybe<Array<ShepherdBitbucketWorkspace>>;
|
|
@@ -93850,6 +93948,7 @@ export declare type SupportRequestTransitionInput = {
|
|
|
93850
93948
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
93851
93949
|
requestKey: Scalars['String']['input'];
|
|
93852
93950
|
transitionId: Scalars['ID']['input'];
|
|
93951
|
+
transitionName?: InputMaybe<Scalars['String']['input']>;
|
|
93853
93952
|
};
|
|
93854
93953
|
export declare type SupportRequestTransitions = {
|
|
93855
93954
|
__typename?: 'SupportRequestTransitions';
|
|
@@ -100144,6 +100243,19 @@ export declare type UpdateJiraPlaybookInput = {
|
|
|
100144
100243
|
state?: InputMaybe<JiraPlaybookStateField>;
|
|
100145
100244
|
steps: Array<UpdateJiraPlaybookStepInput>;
|
|
100146
100245
|
};
|
|
100246
|
+
export declare type UpdateJiraPlaybookLabelInput = {
|
|
100247
|
+
id: Scalars['ID']['input'];
|
|
100248
|
+
name: Scalars['String']['input'];
|
|
100249
|
+
property?: InputMaybe<JiraPlaybookLabelPropertyInput>;
|
|
100250
|
+
scopeId?: InputMaybe<Scalars['String']['input']>;
|
|
100251
|
+
scopeType: JiraPlaybookScopeType;
|
|
100252
|
+
};
|
|
100253
|
+
export declare type UpdateJiraPlaybookLabelPayload = Payload & {
|
|
100254
|
+
__typename?: 'UpdateJiraPlaybookLabelPayload';
|
|
100255
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100256
|
+
label?: Maybe<JiraPlaybookLabel>;
|
|
100257
|
+
success: Scalars['Boolean']['output'];
|
|
100258
|
+
};
|
|
100147
100259
|
export declare type UpdateJiraPlaybookPayload = Payload & {
|
|
100148
100260
|
__typename?: 'UpdateJiraPlaybookPayload';
|
|
100149
100261
|
errors?: Maybe<Array<MutationError>>;
|