@forge/cli-shared 2.3.1-next.8 → 2.3.1-next.9
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
|
@@ -245,7 +245,7 @@ export declare type ActivityObject = {
|
|
|
245
245
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
246
246
|
data?: Maybe<ActivityObjectData>;
|
|
247
247
|
};
|
|
248
|
-
export declare type ActivityObjectData = TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
248
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
249
249
|
export declare enum ActivityObjectType {
|
|
250
250
|
Site = "SITE",
|
|
251
251
|
Project = "PROJECT",
|
|
@@ -311,7 +311,8 @@ export declare enum ApiGroup {
|
|
|
311
311
|
DevopsService = "DEVOPS_SERVICE",
|
|
312
312
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
313
313
|
Teams = "TEAMS",
|
|
314
|
-
ContentPlatformApi = "CONTENT_PLATFORM_API"
|
|
314
|
+
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
315
|
+
Identity = "IDENTITY"
|
|
315
316
|
}
|
|
316
317
|
export declare type App = {
|
|
317
318
|
__typename?: 'App';
|
|
@@ -977,6 +978,34 @@ export declare type AvatarInput = {
|
|
|
977
978
|
webUrl?: Maybe<Scalars['String']>;
|
|
978
979
|
description?: Maybe<Scalars['String']>;
|
|
979
980
|
};
|
|
981
|
+
export declare type Avocado = {
|
|
982
|
+
__typename?: 'Avocado';
|
|
983
|
+
questionByAri?: Maybe<AvocadoQuestion>;
|
|
984
|
+
answerByAri?: Maybe<AvocadoAnswer>;
|
|
985
|
+
};
|
|
986
|
+
export declare type AvocadoQuestionByAriArgs = {
|
|
987
|
+
ari: Scalars['ID'];
|
|
988
|
+
};
|
|
989
|
+
export declare type AvocadoAnswerByAriArgs = {
|
|
990
|
+
ari: Scalars['ID'];
|
|
991
|
+
};
|
|
992
|
+
export declare type AvocadoAnswer = Node & {
|
|
993
|
+
__typename?: 'AvocadoAnswer';
|
|
994
|
+
id: Scalars['ID'];
|
|
995
|
+
text: Scalars['String'];
|
|
996
|
+
siteName: Scalars['String'];
|
|
997
|
+
url: Scalars['String'];
|
|
998
|
+
iconUrl: Scalars['String'];
|
|
999
|
+
question: AvocadoQuestion;
|
|
1000
|
+
};
|
|
1001
|
+
export declare type AvocadoQuestion = Node & {
|
|
1002
|
+
__typename?: 'AvocadoQuestion';
|
|
1003
|
+
id: Scalars['ID'];
|
|
1004
|
+
text: Scalars['String'];
|
|
1005
|
+
siteName: Scalars['String'];
|
|
1006
|
+
url: Scalars['String'];
|
|
1007
|
+
iconUrl: Scalars['String'];
|
|
1008
|
+
};
|
|
980
1009
|
export declare type Backlog = {
|
|
981
1010
|
__typename?: 'Backlog';
|
|
982
1011
|
boardIssueListKey?: Maybe<Scalars['String']>;
|
|
@@ -3403,7 +3432,6 @@ export declare type ContainerEventObject = {
|
|
|
3403
3432
|
attributes: Scalars['JSON'];
|
|
3404
3433
|
};
|
|
3405
3434
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
3406
|
-
export declare type ContentPlatformAnyContextEntry = ContentPlatformContextProductEntry | ContentPlatformContextAppEntry | ContentPlatformContextThemeEntry;
|
|
3407
3435
|
export declare type ContentPlatformChunkBenefits = {
|
|
3408
3436
|
__typename?: 'ContentPlatformChunkBenefits';
|
|
3409
3437
|
title: Scalars['String'];
|
|
@@ -3444,16 +3472,6 @@ export declare type ContentPlatformContextApp = {
|
|
|
3444
3472
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3445
3473
|
url?: Maybe<Scalars['String']>;
|
|
3446
3474
|
};
|
|
3447
|
-
export declare type ContentPlatformContextAppEntry = {
|
|
3448
|
-
__typename?: 'ContentPlatformContextAppEntry';
|
|
3449
|
-
contextId: Scalars['String'];
|
|
3450
|
-
title: Scalars['String'];
|
|
3451
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']>;
|
|
3452
|
-
appName: Scalars['String'];
|
|
3453
|
-
parentProductContext: Array<ContentPlatformContextProductEntry>;
|
|
3454
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3455
|
-
url: Scalars['String'];
|
|
3456
|
-
};
|
|
3457
3475
|
export declare type ContentPlatformContextProduct = {
|
|
3458
3476
|
__typename?: 'ContentPlatformContextProduct';
|
|
3459
3477
|
contextId: Scalars['String'];
|
|
@@ -3493,15 +3511,6 @@ export declare type ContentPlatformContextTheme = {
|
|
|
3493
3511
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3494
3512
|
url?: Maybe<Scalars['String']>;
|
|
3495
3513
|
};
|
|
3496
|
-
export declare type ContentPlatformContextThemeEntry = {
|
|
3497
|
-
__typename?: 'ContentPlatformContextThemeEntry';
|
|
3498
|
-
contextId: Scalars['String'];
|
|
3499
|
-
title: Scalars['String'];
|
|
3500
|
-
preventProdPublishing: Scalars['Boolean'];
|
|
3501
|
-
hubName: Scalars['String'];
|
|
3502
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3503
|
-
url: Scalars['String'];
|
|
3504
|
-
};
|
|
3505
3514
|
export declare type ContentPlatformImageAsset = {
|
|
3506
3515
|
__typename?: 'ContentPlatformImageAsset';
|
|
3507
3516
|
title: Scalars['String'];
|
|
@@ -3527,13 +3536,6 @@ export declare type ContentPlatformImageComponent = {
|
|
|
3527
3536
|
image: ContentPlatformImageAsset;
|
|
3528
3537
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
3529
3538
|
};
|
|
3530
|
-
export declare type ContentPlatformImageComponentEntry = {
|
|
3531
|
-
__typename?: 'ContentPlatformImageComponentEntry';
|
|
3532
|
-
name: Scalars['String'];
|
|
3533
|
-
altTag: Scalars['String'];
|
|
3534
|
-
image: ContentPlatformImageAssetEntry;
|
|
3535
|
-
contextReference: Array<ContentPlatformAnyContextEntry>;
|
|
3536
|
-
};
|
|
3537
3539
|
export declare type ContentPlatformIntroToPractice = {
|
|
3538
3540
|
__typename?: 'ContentPlatformIntroToPractice';
|
|
3539
3541
|
title: Scalars['String'];
|
|
@@ -3592,35 +3594,6 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3592
3594
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3593
3595
|
getStarted?: Maybe<Scalars['JSON']>;
|
|
3594
3596
|
};
|
|
3595
|
-
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3596
|
-
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
3597
|
-
releaseNoteId: Scalars['String'];
|
|
3598
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
3599
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
3600
|
-
title?: Maybe<Scalars['String']>;
|
|
3601
|
-
changeTargetSchedule?: Maybe<Scalars['String']>;
|
|
3602
|
-
announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlanEntry>;
|
|
3603
|
-
changeType?: Maybe<ContentPlatformTypeOfChangeEntry>;
|
|
3604
|
-
changeStatus?: Maybe<ContentPlatformStatusOfChangeEntry>;
|
|
3605
|
-
relatedContexts?: Maybe<Array<ContentPlatformAnyContextEntry>>;
|
|
3606
|
-
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3607
|
-
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3608
|
-
description?: Maybe<Scalars['JSON']>;
|
|
3609
|
-
featuredImage?: Maybe<ContentPlatformImageComponentEntry>;
|
|
3610
|
-
keyChanges?: Maybe<Scalars['JSON']>;
|
|
3611
|
-
reasonForChange?: Maybe<Scalars['JSON']>;
|
|
3612
|
-
prepareForChange?: Maybe<Scalars['JSON']>;
|
|
3613
|
-
supportingVisuals?: Maybe<Array<ContentPlatformImageComponentEntry>>;
|
|
3614
|
-
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3615
|
-
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3616
|
-
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategoryEntry>;
|
|
3617
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3618
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3619
|
-
updatedAt: Scalars['String'];
|
|
3620
|
-
url: Scalars['String'];
|
|
3621
|
-
benefitsList: Scalars['JSON'];
|
|
3622
|
-
getStarted: Scalars['JSON'];
|
|
3623
|
-
};
|
|
3624
3597
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3625
3598
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
3626
3599
|
contextId?: Maybe<Scalars['String']>;
|
|
@@ -3649,11 +3622,6 @@ export declare type ContentPlatformStatusOfChange = {
|
|
|
3649
3622
|
label: Scalars['String'];
|
|
3650
3623
|
description: Scalars['String'];
|
|
3651
3624
|
};
|
|
3652
|
-
export declare type ContentPlatformStatusOfChangeEntry = {
|
|
3653
|
-
__typename?: 'ContentPlatformStatusOfChangeEntry';
|
|
3654
|
-
label: Scalars['String'];
|
|
3655
|
-
description: Scalars['String'];
|
|
3656
|
-
};
|
|
3657
3625
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
3658
3626
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
3659
3627
|
title: Scalars['String'];
|
|
@@ -3669,31 +3637,16 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
3669
3637
|
title: Scalars['String'];
|
|
3670
3638
|
description: Scalars['String'];
|
|
3671
3639
|
};
|
|
3672
|
-
export declare type ContentPlatformTaxonomyChangeCategoryEntry = {
|
|
3673
|
-
__typename?: 'ContentPlatformTaxonomyChangeCategoryEntry';
|
|
3674
|
-
title: Scalars['String'];
|
|
3675
|
-
description: Scalars['String'];
|
|
3676
|
-
};
|
|
3677
3640
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
3678
3641
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
3679
3642
|
title: Scalars['String'];
|
|
3680
3643
|
description: Scalars['String'];
|
|
3681
3644
|
};
|
|
3682
|
-
export declare type ContentPlatformTaxonomyUserRoleEntry = {
|
|
3683
|
-
__typename?: 'ContentPlatformTaxonomyUserRoleEntry';
|
|
3684
|
-
title: Scalars['String'];
|
|
3685
|
-
description: Scalars['String'];
|
|
3686
|
-
};
|
|
3687
3645
|
export declare type ContentPlatformTypeOfChange = {
|
|
3688
3646
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
3689
3647
|
label: Scalars['String'];
|
|
3690
3648
|
icon: ContentPlatformImageAsset;
|
|
3691
3649
|
};
|
|
3692
|
-
export declare type ContentPlatformTypeOfChangeEntry = {
|
|
3693
|
-
__typename?: 'ContentPlatformTypeOfChangeEntry';
|
|
3694
|
-
label?: Maybe<Scalars['String']>;
|
|
3695
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3696
|
-
};
|
|
3697
3650
|
export declare type ContentPlatformWhatPractice = {
|
|
3698
3651
|
__typename?: 'ContentPlatformWhatPractice';
|
|
3699
3652
|
title: Scalars['String'];
|
|
@@ -11296,7 +11249,7 @@ export declare type Mutation = {
|
|
|
11296
11249
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11297
11250
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
11298
11251
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11299
|
-
updateReleaseNote:
|
|
11252
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11300
11253
|
createApp?: Maybe<CreateAppResponse>;
|
|
11301
11254
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11302
11255
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -13090,7 +13043,7 @@ export declare type Query = {
|
|
|
13090
13043
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13091
13044
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
13092
13045
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13093
|
-
releaseNote
|
|
13046
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13094
13047
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
13095
13048
|
practicePage: ContentPlatformPracticePage;
|
|
13096
13049
|
apps?: Maybe<AppConnection>;
|
|
@@ -13123,6 +13076,7 @@ export declare type Query = {
|
|
|
13123
13076
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13124
13077
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13125
13078
|
codeInJira?: Maybe<CodeInJira>;
|
|
13079
|
+
avocado?: Maybe<Avocado>;
|
|
13126
13080
|
devOpsService?: Maybe<DevOpsService>;
|
|
13127
13081
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13128
13082
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
@@ -14031,6 +13985,7 @@ export declare enum Scope {
|
|
|
14031
13985
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
14032
13986
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
14033
13987
|
ReadMe = "READ_ME",
|
|
13988
|
+
ReadAccount = "READ_ACCOUNT",
|
|
14034
13989
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14035
13990
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
14036
13991
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -14410,6 +14365,7 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
14410
14365
|
authToken?: Maybe<Scalars['String']>;
|
|
14411
14366
|
callbackURL: Scalars['URL'];
|
|
14412
14367
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14368
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14413
14369
|
};
|
|
14414
14370
|
export declare type ShepherdEmailConnection = {
|
|
14415
14371
|
__typename?: 'ShepherdEmailConnection';
|
|
@@ -14545,6 +14501,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
|
14545
14501
|
export declare type ShepherdUpdateWebhookInput = {
|
|
14546
14502
|
callbackURL?: Maybe<Scalars['URL']>;
|
|
14547
14503
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14504
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14548
14505
|
};
|
|
14549
14506
|
export declare type ShepherdUser = {
|
|
14550
14507
|
__typename?: 'ShepherdUser';
|
|
@@ -14566,9 +14523,14 @@ export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
|
14566
14523
|
createdOn: Scalars['DateTime'];
|
|
14567
14524
|
id: Scalars['ID'];
|
|
14568
14525
|
status: ShepherdSubscriptionStatus;
|
|
14526
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14569
14527
|
updatedBy?: Maybe<Scalars['String']>;
|
|
14570
14528
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14571
14529
|
};
|
|
14530
|
+
export declare enum ShepherdWebhookType {
|
|
14531
|
+
Custom = "CUSTOM",
|
|
14532
|
+
Slack = "SLACK"
|
|
14533
|
+
}
|
|
14572
14534
|
export declare type SoftwareBoard = {
|
|
14573
14535
|
__typename?: 'SoftwareBoard';
|
|
14574
14536
|
id?: Maybe<Scalars['ID']>;
|