@forge/cli-shared 3.2.2 → 3.2.3-next.1
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 +15 -0
- package/out/graphql/graphql-types.d.ts +107 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +24 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.2.3-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8e2a5a6: Update node-fetch version
|
|
8
|
+
- Updated dependencies [8e2a5a6]
|
|
9
|
+
- @forge/manifest@4.4.2-next.1
|
|
10
|
+
|
|
11
|
+
## 3.2.3-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [34d81d4e]
|
|
16
|
+
- @forge/manifest@4.4.2-next.0
|
|
17
|
+
|
|
3
18
|
## 3.2.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -866,6 +866,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
866
866
|
};
|
|
867
867
|
export declare type AppUser = User & {
|
|
868
868
|
__typename?: 'AppUser';
|
|
869
|
+
id: Scalars['ID'];
|
|
869
870
|
accountId: Scalars['ID'];
|
|
870
871
|
canonicalAccountId: Scalars['ID'];
|
|
871
872
|
accountStatus: AccountStatus;
|
|
@@ -1050,6 +1051,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
1050
1051
|
};
|
|
1051
1052
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
1052
1053
|
__typename?: 'AtlassianAccountUser';
|
|
1054
|
+
id: Scalars['ID'];
|
|
1053
1055
|
accountId: Scalars['ID'];
|
|
1054
1056
|
canonicalAccountId: Scalars['ID'];
|
|
1055
1057
|
accountStatus: AccountStatus;
|
|
@@ -1432,7 +1434,9 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
1432
1434
|
LinkedIssues = "LINKED_ISSUES",
|
|
1433
1435
|
NumDataPoints = "NUM_DATA_POINTS",
|
|
1434
1436
|
AtlasGoal = "ATLAS_GOAL",
|
|
1435
|
-
AtlasProject = "ATLAS_PROJECT"
|
|
1437
|
+
AtlasProject = "ATLAS_PROJECT",
|
|
1438
|
+
AtlasProjectStatus = "ATLAS_PROJECT_STATUS",
|
|
1439
|
+
AtlasProjectTarget = "ATLAS_PROJECT_TARGET"
|
|
1436
1440
|
}
|
|
1437
1441
|
export declare type BurndownChart = {
|
|
1438
1442
|
__typename?: 'BurndownChart';
|
|
@@ -1568,6 +1572,7 @@ export declare type CardPriority = {
|
|
|
1568
1572
|
__typename?: 'CardPriority';
|
|
1569
1573
|
name?: Maybe<Scalars['String']>;
|
|
1570
1574
|
iconUrl?: Maybe<Scalars['String']>;
|
|
1575
|
+
id?: Maybe<Scalars['String']>;
|
|
1571
1576
|
};
|
|
1572
1577
|
export declare type CardRank = {
|
|
1573
1578
|
afterCardId?: Maybe<Scalars['ID']>;
|
|
@@ -3393,7 +3398,6 @@ export declare type CompassTeamCheckinsInput = {
|
|
|
3393
3398
|
export declare type CompassTeamData = {
|
|
3394
3399
|
__typename?: 'CompassTeamData';
|
|
3395
3400
|
teamId?: Maybe<Scalars['ID']>;
|
|
3396
|
-
team?: Maybe<Team>;
|
|
3397
3401
|
labels?: Maybe<Array<CompassTeamLabel>>;
|
|
3398
3402
|
currentCheckin?: Maybe<CompassTeamCheckin>;
|
|
3399
3403
|
};
|
|
@@ -5305,6 +5309,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
5305
5309
|
};
|
|
5306
5310
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
5307
5311
|
__typename?: 'CustomerUser';
|
|
5312
|
+
id: Scalars['ID'];
|
|
5308
5313
|
accountId: Scalars['ID'];
|
|
5309
5314
|
canonicalAccountId: Scalars['ID'];
|
|
5310
5315
|
accountStatus: AccountStatus;
|
|
@@ -6333,6 +6338,7 @@ export declare type DevOpsToolAppLinks = {
|
|
|
6333
6338
|
manage?: Maybe<Scalars['String']>;
|
|
6334
6339
|
configure?: Maybe<Scalars['String']>;
|
|
6335
6340
|
getStarted?: Maybe<Scalars['String']>;
|
|
6341
|
+
support?: Maybe<Scalars['String']>;
|
|
6336
6342
|
};
|
|
6337
6343
|
export declare type DevOpsToolAuth = {
|
|
6338
6344
|
authenticated: Scalars['Boolean'];
|
|
@@ -8054,6 +8060,18 @@ export declare type JiraAssetFieldSelectedAssetsConnectionArgs = {
|
|
|
8054
8060
|
last?: Maybe<Scalars['Int']>;
|
|
8055
8061
|
before?: Maybe<Scalars['String']>;
|
|
8056
8062
|
};
|
|
8063
|
+
export declare type JiraAssignRelatedWorkInput = {
|
|
8064
|
+
assigneeId?: Maybe<Scalars['ID']>;
|
|
8065
|
+
relatedWorkType: JiraVersionRelatedWorkType;
|
|
8066
|
+
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
8067
|
+
versionId: Scalars['ID'];
|
|
8068
|
+
};
|
|
8069
|
+
export declare type JiraAssignRelatedWorkPayload = Payload & {
|
|
8070
|
+
__typename?: 'JiraAssignRelatedWorkPayload';
|
|
8071
|
+
success: Scalars['Boolean'];
|
|
8072
|
+
errors?: Maybe<Array<MutationError>>;
|
|
8073
|
+
relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
|
|
8074
|
+
};
|
|
8057
8075
|
export declare type JiraAtlassianTeam = {
|
|
8058
8076
|
__typename?: 'JiraAtlassianTeam';
|
|
8059
8077
|
teamId?: Maybe<Scalars['String']>;
|
|
@@ -10691,6 +10709,7 @@ export declare type JiraMutation = {
|
|
|
10691
10709
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
10692
10710
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
10693
10711
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
10712
|
+
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
10694
10713
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10695
10714
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10696
10715
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -10725,6 +10744,9 @@ export declare type JiraMutationAddRelatedWorkToVersionArgs = {
|
|
|
10725
10744
|
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
10726
10745
|
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
10727
10746
|
};
|
|
10747
|
+
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
10748
|
+
input: JiraAssignRelatedWorkInput;
|
|
10749
|
+
};
|
|
10728
10750
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
10729
10751
|
cloudId: Scalars['ID'];
|
|
10730
10752
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -13477,6 +13499,7 @@ export declare type JiraVersionRelatedWorkConfluenceReleaseNotes = JiraVersionRe
|
|
|
13477
13499
|
category?: Maybe<Scalars['String']>;
|
|
13478
13500
|
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13479
13501
|
addedBy?: Maybe<User>;
|
|
13502
|
+
assignee?: Maybe<User>;
|
|
13480
13503
|
};
|
|
13481
13504
|
export declare type JiraVersionRelatedWorkConnection = {
|
|
13482
13505
|
__typename?: 'JiraVersionRelatedWorkConnection';
|
|
@@ -13496,16 +13519,24 @@ export declare type JiraVersionRelatedWorkGenericLink = JiraVersionRelatedWorkV2
|
|
|
13496
13519
|
category?: Maybe<Scalars['String']>;
|
|
13497
13520
|
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13498
13521
|
addedBy?: Maybe<User>;
|
|
13522
|
+
assignee?: Maybe<User>;
|
|
13499
13523
|
};
|
|
13500
13524
|
export declare type JiraVersionRelatedWorkNativeReleaseNotes = JiraVersionRelatedWorkV2 & {
|
|
13501
13525
|
__typename?: 'JiraVersionRelatedWorkNativeReleaseNotes';
|
|
13502
13526
|
addedOn?: Maybe<Scalars['DateTime']>;
|
|
13503
13527
|
category?: Maybe<Scalars['String']>;
|
|
13504
13528
|
title?: Maybe<Scalars['String']>;
|
|
13529
|
+
assignee?: Maybe<User>;
|
|
13505
13530
|
};
|
|
13531
|
+
export declare enum JiraVersionRelatedWorkType {
|
|
13532
|
+
GenericLink = "GENERIC_LINK",
|
|
13533
|
+
ConfluenceReleaseNotes = "CONFLUENCE_RELEASE_NOTES",
|
|
13534
|
+
NativeReleaseNotes = "NATIVE_RELEASE_NOTES"
|
|
13535
|
+
}
|
|
13506
13536
|
export declare type JiraVersionRelatedWorkV2 = {
|
|
13507
13537
|
category?: Maybe<Scalars['String']>;
|
|
13508
13538
|
title?: Maybe<Scalars['String']>;
|
|
13539
|
+
assignee?: Maybe<User>;
|
|
13509
13540
|
};
|
|
13510
13541
|
export declare type JiraVersionRelatedWorkV2Connection = {
|
|
13511
13542
|
__typename?: 'JiraVersionRelatedWorkV2Connection';
|
|
@@ -14502,6 +14533,7 @@ export declare type Mutation = {
|
|
|
14502
14533
|
setIssueMediaVisibility?: Maybe<SetIssueMediaVisibilityOutput>;
|
|
14503
14534
|
toggleBoardFeature?: Maybe<ToggleBoardFeatureOutput>;
|
|
14504
14535
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
14536
|
+
planModeCardMove?: Maybe<MoveCardOutput>;
|
|
14505
14537
|
createApp?: Maybe<CreateAppResponse>;
|
|
14506
14538
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
14507
14539
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -14901,6 +14933,9 @@ export declare type MutationToggleBoardFeatureArgs = {
|
|
|
14901
14933
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
14902
14934
|
input?: Maybe<SetBoardEstimationTypeInput>;
|
|
14903
14935
|
};
|
|
14936
|
+
export declare type MutationPlanModeCardMoveArgs = {
|
|
14937
|
+
input?: Maybe<PlanModeCardMoveInput>;
|
|
14938
|
+
};
|
|
14904
14939
|
export declare type MutationCreateAppArgs = {
|
|
14905
14940
|
input: CreateAppInput;
|
|
14906
14941
|
};
|
|
@@ -15245,6 +15280,19 @@ export declare type PermissionToConsentByOauthId = {
|
|
|
15245
15280
|
isAllowed: Scalars['Boolean'];
|
|
15246
15281
|
isSiteAdmin: Scalars['Boolean'];
|
|
15247
15282
|
};
|
|
15283
|
+
export declare type PlanModeCardMoveInput = {
|
|
15284
|
+
cardIds: Array<Scalars['ID']>;
|
|
15285
|
+
boardId: Scalars['ID'];
|
|
15286
|
+
destination: PlanModeDestination;
|
|
15287
|
+
rankBeforeCardId?: Maybe<Scalars['Long']>;
|
|
15288
|
+
rankAfterCardId?: Maybe<Scalars['Long']>;
|
|
15289
|
+
sprintId?: Maybe<Scalars['ID']>;
|
|
15290
|
+
};
|
|
15291
|
+
export declare enum PlanModeDestination {
|
|
15292
|
+
Board = "BOARD",
|
|
15293
|
+
Backlog = "BACKLOG",
|
|
15294
|
+
Sprint = "SPRINT"
|
|
15295
|
+
}
|
|
15248
15296
|
export declare type PolarisAnonymousVisitorHash = PolarisAnonymousVisitorViewHash;
|
|
15249
15297
|
export declare type PolarisAnonymousVisitorViewHash = {
|
|
15250
15298
|
__typename?: 'PolarisAnonymousVisitorViewHash';
|
|
@@ -15306,6 +15354,7 @@ export declare enum PolarisFieldType {
|
|
|
15306
15354
|
PolarisIdeaLabelsField = "PolarisIdeaLabelsField",
|
|
15307
15355
|
PolarisIdeaNumberField = "PolarisIdeaNumberField",
|
|
15308
15356
|
PolarisIdeaExternalReferenceField = "PolarisIdeaExternalReferenceField",
|
|
15357
|
+
PolarisIdeaExternalReferencePropertyField = "PolarisIdeaExternalReferencePropertyField",
|
|
15309
15358
|
PolarisIdeaIntervalField = "PolarisIdeaIntervalField",
|
|
15310
15359
|
PolarisIdeaPlayField = "PolarisIdeaPlayField"
|
|
15311
15360
|
}
|
|
@@ -15463,6 +15512,25 @@ export declare type PolarisIdeaExternalReferenceField = PolarisIdeaField & {
|
|
|
15463
15512
|
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
15464
15513
|
configuration?: Maybe<Scalars['JSON']>;
|
|
15465
15514
|
};
|
|
15515
|
+
export declare type PolarisIdeaExternalReferencePropertyField = PolarisIdeaField & {
|
|
15516
|
+
__typename?: 'PolarisIdeaExternalReferencePropertyField';
|
|
15517
|
+
id: Scalars['ID'];
|
|
15518
|
+
fieldId?: Maybe<Scalars['Int']>;
|
|
15519
|
+
fieldName?: Maybe<Scalars['String']>;
|
|
15520
|
+
label: Scalars['String'];
|
|
15521
|
+
editable: Scalars['Boolean'];
|
|
15522
|
+
sortable: Scalars['Boolean'];
|
|
15523
|
+
groupable: Scalars['Boolean'];
|
|
15524
|
+
linearizable: Scalars['Boolean'];
|
|
15525
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
15526
|
+
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
15527
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
15528
|
+
formula?: Maybe<Scalars['JSON']>;
|
|
15529
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
15530
|
+
description?: Maybe<Scalars['String']>;
|
|
15531
|
+
emoji?: Maybe<Scalars['String']>;
|
|
15532
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
15533
|
+
};
|
|
15466
15534
|
export declare type PolarisIdeaField = {
|
|
15467
15535
|
id: Scalars['ID'];
|
|
15468
15536
|
jiraFieldKey?: Maybe<Scalars['String']>;
|
|
@@ -16291,6 +16359,8 @@ export declare type Query = {
|
|
|
16291
16359
|
trello?: Maybe<TrelloQueryApi>;
|
|
16292
16360
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
16293
16361
|
jiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationship>;
|
|
16362
|
+
devOpsToolRelationshipsForJiraProject?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
16363
|
+
jiraProjectRelationshipsForDevOpsTool?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
16294
16364
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
16295
16365
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
16296
16366
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -16400,6 +16470,19 @@ export declare type Query = {
|
|
|
16400
16470
|
export declare type QueryJiraProjectAndDevOpsToolRelationshipArgs = {
|
|
16401
16471
|
id: Scalars['ID'];
|
|
16402
16472
|
};
|
|
16473
|
+
export declare type QueryDevOpsToolRelationshipsForJiraProjectArgs = {
|
|
16474
|
+
id: Scalars['ID'];
|
|
16475
|
+
limit?: Maybe<Scalars['Int']>;
|
|
16476
|
+
after?: Maybe<Scalars['String']>;
|
|
16477
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
16478
|
+
};
|
|
16479
|
+
export declare type QueryJiraProjectRelationshipsForDevOpsToolArgs = {
|
|
16480
|
+
id: Scalars['ID'];
|
|
16481
|
+
jiraProjectId?: Maybe<Scalars['ID']>;
|
|
16482
|
+
first?: Maybe<Scalars['Int']>;
|
|
16483
|
+
after?: Maybe<Scalars['String']>;
|
|
16484
|
+
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
16485
|
+
};
|
|
16403
16486
|
export declare type QueryReleaseNotesArgs = {
|
|
16404
16487
|
after?: Maybe<Scalars['String']>;
|
|
16405
16488
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -16743,9 +16826,11 @@ export declare enum RateLimitingCurrency {
|
|
|
16743
16826
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
16744
16827
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
16745
16828
|
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
16829
|
+
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
16746
16830
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
16747
16831
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
16748
16832
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
16833
|
+
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
16749
16834
|
ForgeAlertsCurrency = "FORGE_ALERTS_CURRENCY"
|
|
16750
16835
|
}
|
|
16751
16836
|
export declare type RawStatus = {
|
|
@@ -16949,21 +17034,6 @@ export declare type RoadmapExternalConfiguration = {
|
|
|
16949
17034
|
epicNameField?: Maybe<Scalars['ID']>;
|
|
16950
17035
|
sprintField?: Maybe<Scalars['ID']>;
|
|
16951
17036
|
};
|
|
16952
|
-
export declare type RoadmapFeatureToggleInput = {
|
|
16953
|
-
sourceARI: Scalars['ID'];
|
|
16954
|
-
enabled: Scalars['Boolean'];
|
|
16955
|
-
};
|
|
16956
|
-
export declare type RoadmapFeatureToggleOutput = {
|
|
16957
|
-
__typename?: 'RoadmapFeatureToggleOutput';
|
|
16958
|
-
enabled: Scalars['Boolean'];
|
|
16959
|
-
isCrossProject: Scalars['Boolean'];
|
|
16960
|
-
};
|
|
16961
|
-
export declare type RoadmapFeatureTogglePayload = Payload & {
|
|
16962
|
-
__typename?: 'RoadmapFeatureTogglePayload';
|
|
16963
|
-
success: Scalars['Boolean'];
|
|
16964
|
-
errors?: Maybe<Array<MutationError>>;
|
|
16965
|
-
output?: Maybe<RoadmapFeatureToggleOutput>;
|
|
16966
|
-
};
|
|
16967
17037
|
export declare type RoadmapFilterConfiguration = {
|
|
16968
17038
|
__typename?: 'RoadmapFilterConfiguration';
|
|
16969
17039
|
customFilters?: Maybe<Array<RoadmapCustomFilter>>;
|
|
@@ -17281,7 +17351,6 @@ export declare type RoadmapViewSettings = {
|
|
|
17281
17351
|
};
|
|
17282
17352
|
export declare type RoadmapsMutation = {
|
|
17283
17353
|
__typename?: 'RoadmapsMutation';
|
|
17284
|
-
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
17285
17354
|
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
17286
17355
|
updateRoadmapSettings?: Maybe<RoadmapUpdateSettingsPayload>;
|
|
17287
17356
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
@@ -17290,9 +17359,6 @@ export declare type RoadmapsMutation = {
|
|
|
17290
17359
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
17291
17360
|
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
17292
17361
|
};
|
|
17293
|
-
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
17294
|
-
input: RoadmapFeatureToggleInput;
|
|
17295
|
-
};
|
|
17296
17362
|
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
17297
17363
|
sourceARI: Scalars['ID'];
|
|
17298
17364
|
input: RoadmapResolveHealthcheckInput;
|
|
@@ -17686,7 +17752,9 @@ export declare enum Scope {
|
|
|
17686
17752
|
ReadContainer = "READ_CONTAINER",
|
|
17687
17753
|
WriteContainer = "WRITE_CONTAINER",
|
|
17688
17754
|
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
17689
|
-
ReadAvocadoEntity = "READ_AVOCADO_ENTITY"
|
|
17755
|
+
ReadAvocadoEntity = "READ_AVOCADO_ENTITY",
|
|
17756
|
+
ReadTeam = "READ_TEAM",
|
|
17757
|
+
ReadTeamMembers = "READ_TEAM_MEMBERS"
|
|
17690
17758
|
}
|
|
17691
17759
|
export declare type ScopeSprintIssue = {
|
|
17692
17760
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -18001,6 +18069,7 @@ export declare type SetSwimlaneStrategyResponse = MutationResponse & {
|
|
|
18001
18069
|
export declare enum ShepherdActionType {
|
|
18002
18070
|
Create = "CREATE",
|
|
18003
18071
|
Delete = "DELETE",
|
|
18072
|
+
Export = "EXPORT",
|
|
18004
18073
|
Read = "READ",
|
|
18005
18074
|
Update = "UPDATE"
|
|
18006
18075
|
}
|
|
@@ -18061,6 +18130,8 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
18061
18130
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
18062
18131
|
AdminPasswordReset = "ADMIN_PASSWORD_RESET",
|
|
18063
18132
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
18133
|
+
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
18134
|
+
ConfluenceSpaceExports = "CONFLUENCE_SPACE_EXPORTS",
|
|
18064
18135
|
CreatedAuthPolicy = "CREATED_AUTH_POLICY",
|
|
18065
18136
|
CreatedPolicy = "CREATED_POLICY",
|
|
18066
18137
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
@@ -18275,6 +18346,9 @@ export declare type ShepherdQueryShepherdOrganizationArgs = {
|
|
|
18275
18346
|
export declare type ShepherdQueryShepherdSubscriptionsArgs = {
|
|
18276
18347
|
orgId: Scalars['ID'];
|
|
18277
18348
|
};
|
|
18349
|
+
export declare type ShepherdQueryShepherdUserArgs = {
|
|
18350
|
+
id?: Maybe<Scalars['ID']>;
|
|
18351
|
+
};
|
|
18278
18352
|
export declare enum ShepherdQueryErrorType {
|
|
18279
18353
|
NoProductAccess = "NO_PRODUCT_ACCESS",
|
|
18280
18354
|
Unauthorized = "UNAUTHORIZED"
|
|
@@ -18782,6 +18856,7 @@ export declare type SupportRequestAddCommentInput = {
|
|
|
18782
18856
|
export declare type SupportRequestCatalogMutationApi = {
|
|
18783
18857
|
__typename?: 'SupportRequestCatalogMutationApi';
|
|
18784
18858
|
addComment?: Maybe<SupportRequestComment>;
|
|
18859
|
+
updateMigrationTask?: Maybe<Array<Maybe<Scalars['JSON']>>>;
|
|
18785
18860
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
18786
18861
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
18787
18862
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
@@ -18794,6 +18869,9 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
18794
18869
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
18795
18870
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
18796
18871
|
};
|
|
18872
|
+
export declare type SupportRequestCatalogMutationApiUpdateMigrationTaskArgs = {
|
|
18873
|
+
input?: Maybe<SupportRequestMigrationTaskInput>;
|
|
18874
|
+
};
|
|
18797
18875
|
export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
18798
18876
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
18799
18877
|
};
|
|
@@ -18914,6 +18992,12 @@ export declare type SupportRequestLastComment = {
|
|
|
18914
18992
|
offset: Scalars['Int'];
|
|
18915
18993
|
values: Array<SupportRequestComment>;
|
|
18916
18994
|
};
|
|
18995
|
+
export declare type SupportRequestMigrationTaskInput = {
|
|
18996
|
+
requestKey: Scalars['String'];
|
|
18997
|
+
taskName: Scalars['String'];
|
|
18998
|
+
comment?: Maybe<Scalars['String']>;
|
|
18999
|
+
completedByPartner: Scalars['Boolean'];
|
|
19000
|
+
};
|
|
18917
19001
|
export declare enum SupportRequestNamedContactOperation {
|
|
18918
19002
|
Add = "ADD",
|
|
18919
19003
|
Remove = "REMOVE"
|
|
@@ -20109,6 +20193,7 @@ export declare type UpdateUserInstallationRulesInput = {
|
|
|
20109
20193
|
rule: UserInstallationRuleValue;
|
|
20110
20194
|
};
|
|
20111
20195
|
export declare type User = {
|
|
20196
|
+
id: Scalars['ID'];
|
|
20112
20197
|
accountId: Scalars['ID'];
|
|
20113
20198
|
canonicalAccountId: Scalars['ID'];
|
|
20114
20199
|
accountStatus: AccountStatus;
|