@forge/cli-shared 2.3.1-next.7 → 2.3.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
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [64dd525]
|
|
8
|
+
- Updated dependencies [8e2c90f]
|
|
9
|
+
- Updated dependencies [1c6c578]
|
|
10
|
+
- Updated dependencies [8b4fede]
|
|
11
|
+
- Updated dependencies [54bf134]
|
|
12
|
+
- Updated dependencies [10f147f]
|
|
13
|
+
- Updated dependencies [2484683]
|
|
14
|
+
- Updated dependencies [1a8a4bb]
|
|
15
|
+
- Updated dependencies [e0a44d4]
|
|
16
|
+
- Updated dependencies [19820d3]
|
|
17
|
+
- Updated dependencies [1ca8bbc]
|
|
18
|
+
- @forge/manifest@3.4.0
|
|
19
|
+
|
|
20
|
+
## 2.3.1-next.9
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [19820d3]
|
|
25
|
+
- @forge/manifest@3.4.0-next.9
|
|
26
|
+
|
|
27
|
+
## 2.3.1-next.8
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [8e2c90f]
|
|
32
|
+
- @forge/manifest@3.4.0-next.8
|
|
33
|
+
|
|
3
34
|
## 2.3.1-next.7
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
|
@@ -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'];
|
|
@@ -4440,6 +4393,7 @@ export declare type DeleteEventSourceInput = {
|
|
|
4440
4393
|
cloudId: Scalars['ID'];
|
|
4441
4394
|
externalEventSourceId: Scalars['ID'];
|
|
4442
4395
|
eventType: CompassEventType;
|
|
4396
|
+
deleteIfAttachedToComponents?: Maybe<Scalars['Boolean']>;
|
|
4443
4397
|
};
|
|
4444
4398
|
export declare type DeleteEventSourcePayload = Payload & {
|
|
4445
4399
|
__typename?: 'DeleteEventSourcePayload';
|
|
@@ -11296,7 +11250,7 @@ export declare type Mutation = {
|
|
|
11296
11250
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11297
11251
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
11298
11252
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11299
|
-
updateReleaseNote:
|
|
11253
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11300
11254
|
createApp?: Maybe<CreateAppResponse>;
|
|
11301
11255
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11302
11256
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -13090,7 +13044,7 @@ export declare type Query = {
|
|
|
13090
13044
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13091
13045
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
13092
13046
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13093
|
-
releaseNote
|
|
13047
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13094
13048
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
13095
13049
|
practicePage: ContentPlatformPracticePage;
|
|
13096
13050
|
apps?: Maybe<AppConnection>;
|
|
@@ -13123,6 +13077,7 @@ export declare type Query = {
|
|
|
13123
13077
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13124
13078
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13125
13079
|
codeInJira?: Maybe<CodeInJira>;
|
|
13080
|
+
avocado?: Maybe<Avocado>;
|
|
13126
13081
|
devOpsService?: Maybe<DevOpsService>;
|
|
13127
13082
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13128
13083
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
@@ -13632,6 +13587,10 @@ export declare type RoadmapAddItemResponse = {
|
|
|
13632
13587
|
item?: Maybe<RoadmapItem>;
|
|
13633
13588
|
matchesSource: Scalars['Boolean'];
|
|
13634
13589
|
};
|
|
13590
|
+
export declare type RoadmapAddLevelOneIssueTypeHealthcheckResolution = {
|
|
13591
|
+
create?: Maybe<RoadmapCreateLevelOneIssueType>;
|
|
13592
|
+
promote?: Maybe<RoadmapPromoteLevelOneIssueType>;
|
|
13593
|
+
};
|
|
13635
13594
|
export declare type RoadmapBoardConfiguration = {
|
|
13636
13595
|
__typename?: 'RoadmapBoardConfiguration';
|
|
13637
13596
|
jql?: Maybe<Scalars['String']>;
|
|
@@ -13662,6 +13621,10 @@ export declare type RoadmapContent = {
|
|
|
13662
13621
|
configuration: RoadmapConfiguration;
|
|
13663
13622
|
items: RoadmapItemConnection;
|
|
13664
13623
|
};
|
|
13624
|
+
export declare type RoadmapCreateLevelOneIssueType = {
|
|
13625
|
+
epicTypeName: Scalars['String'];
|
|
13626
|
+
epicTypeDescription: Scalars['String'];
|
|
13627
|
+
};
|
|
13665
13628
|
export declare type RoadmapCreationPreferences = {
|
|
13666
13629
|
__typename?: 'RoadmapCreationPreferences';
|
|
13667
13630
|
projectId?: Maybe<Scalars['Long']>;
|
|
@@ -13874,12 +13837,24 @@ export declare type RoadmapProjectValidation = {
|
|
|
13874
13837
|
hasValidHierarchy: Scalars['Boolean'];
|
|
13875
13838
|
isRoadmapFeatureEnabled: Scalars['Boolean'];
|
|
13876
13839
|
};
|
|
13840
|
+
export declare type RoadmapPromoteLevelOneIssueType = {
|
|
13841
|
+
promoteItemTypeId: Scalars['ID'];
|
|
13842
|
+
};
|
|
13877
13843
|
export declare type RoadmapQuickFilter = {
|
|
13878
13844
|
__typename?: 'RoadmapQuickFilter';
|
|
13879
13845
|
id: Scalars['ID'];
|
|
13880
13846
|
name: Scalars['String'];
|
|
13881
13847
|
query: Scalars['String'];
|
|
13882
13848
|
};
|
|
13849
|
+
export declare type RoadmapResolveHealthcheckInput = {
|
|
13850
|
+
actionId: Scalars['ID'];
|
|
13851
|
+
addLevelOneIssueType?: Maybe<RoadmapAddLevelOneIssueTypeHealthcheckResolution>;
|
|
13852
|
+
};
|
|
13853
|
+
export declare type RoadmapResolveHealthcheckPayload = Payload & {
|
|
13854
|
+
__typename?: 'RoadmapResolveHealthcheckPayload';
|
|
13855
|
+
success: Scalars['Boolean'];
|
|
13856
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13857
|
+
};
|
|
13883
13858
|
export declare type RoadmapSprint = {
|
|
13884
13859
|
__typename?: 'RoadmapSprint';
|
|
13885
13860
|
id: Scalars['ID'];
|
|
@@ -13976,6 +13951,7 @@ export declare type RoadmapViewSettings = {
|
|
|
13976
13951
|
export declare type RoadmapsMutation = {
|
|
13977
13952
|
__typename?: 'RoadmapsMutation';
|
|
13978
13953
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13954
|
+
resolveRoadmapHealthcheck?: Maybe<RoadmapResolveHealthcheckPayload>;
|
|
13979
13955
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13980
13956
|
updateRoadmapItem?: Maybe<RoadmapUpdateItemPayload>;
|
|
13981
13957
|
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
@@ -13984,6 +13960,10 @@ export declare type RoadmapsMutation = {
|
|
|
13984
13960
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13985
13961
|
input: RoadmapFeatureToggleInput;
|
|
13986
13962
|
};
|
|
13963
|
+
export declare type RoadmapsMutationResolveRoadmapHealthcheckArgs = {
|
|
13964
|
+
sourceARI: Scalars['ID'];
|
|
13965
|
+
input: RoadmapResolveHealthcheckInput;
|
|
13966
|
+
};
|
|
13987
13967
|
export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
13988
13968
|
sourceARI: Scalars['ID'];
|
|
13989
13969
|
input: RoadmapAddItemInput;
|
|
@@ -14031,6 +14011,7 @@ export declare enum Scope {
|
|
|
14031
14011
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
14032
14012
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
14033
14013
|
ReadMe = "READ_ME",
|
|
14014
|
+
ReadAccount = "READ_ACCOUNT",
|
|
14034
14015
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14035
14016
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
14036
14017
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -14410,6 +14391,7 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
14410
14391
|
authToken?: Maybe<Scalars['String']>;
|
|
14411
14392
|
callbackURL: Scalars['URL'];
|
|
14412
14393
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14394
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14413
14395
|
};
|
|
14414
14396
|
export declare type ShepherdEmailConnection = {
|
|
14415
14397
|
__typename?: 'ShepherdEmailConnection';
|
|
@@ -14545,6 +14527,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
|
14545
14527
|
export declare type ShepherdUpdateWebhookInput = {
|
|
14546
14528
|
callbackURL?: Maybe<Scalars['URL']>;
|
|
14547
14529
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14530
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14548
14531
|
};
|
|
14549
14532
|
export declare type ShepherdUser = {
|
|
14550
14533
|
__typename?: 'ShepherdUser';
|
|
@@ -14566,9 +14549,14 @@ export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
|
14566
14549
|
createdOn: Scalars['DateTime'];
|
|
14567
14550
|
id: Scalars['ID'];
|
|
14568
14551
|
status: ShepherdSubscriptionStatus;
|
|
14552
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14569
14553
|
updatedBy?: Maybe<Scalars['String']>;
|
|
14570
14554
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14571
14555
|
};
|
|
14556
|
+
export declare enum ShepherdWebhookType {
|
|
14557
|
+
Custom = "CUSTOM",
|
|
14558
|
+
Slack = "SLACK"
|
|
14559
|
+
}
|
|
14572
14560
|
export declare type SoftwareBoard = {
|
|
14573
14561
|
__typename?: 'SoftwareBoard';
|
|
14574
14562
|
id?: Maybe<Scalars['ID']>;
|