@forge/cli-shared 2.3.1-next.6 → 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
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.3.1-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [19820d3]
|
|
8
|
+
- @forge/manifest@3.4.0-next.9
|
|
9
|
+
|
|
10
|
+
## 2.3.1-next.8
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [8e2c90f]
|
|
15
|
+
- @forge/manifest@3.4.0-next.8
|
|
16
|
+
|
|
17
|
+
## 2.3.1-next.7
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [e0a44d40]
|
|
22
|
+
- @forge/manifest@3.4.0-next.7
|
|
23
|
+
|
|
3
24
|
## 2.3.1-next.6
|
|
4
25
|
|
|
5
26
|
### 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']>;
|
|
@@ -1141,8 +1170,9 @@ export declare enum BoardFeatureToggleStatus {
|
|
|
1141
1170
|
Disabled = "DISABLED"
|
|
1142
1171
|
}
|
|
1143
1172
|
export declare type BoardFeatureView = BasicBoardFeatureView | EstimationBoardFeatureView;
|
|
1144
|
-
export declare type BoardScope = {
|
|
1173
|
+
export declare type BoardScope = Node & {
|
|
1145
1174
|
__typename?: 'BoardScope';
|
|
1175
|
+
id: Scalars['ID'];
|
|
1146
1176
|
board?: Maybe<SoftwareBoard>;
|
|
1147
1177
|
userSwimlaneStrategy?: Maybe<SwimlaneStrategy>;
|
|
1148
1178
|
backlog?: Maybe<Backlog>;
|
|
@@ -1159,6 +1189,7 @@ export declare type BoardScope = {
|
|
|
1159
1189
|
startSprintPrototype?: Maybe<Sprint>;
|
|
1160
1190
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
1161
1191
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1192
|
+
name?: Maybe<Scalars['String']>;
|
|
1162
1193
|
};
|
|
1163
1194
|
export declare type BoardScopeSprintsArgs = {
|
|
1164
1195
|
state?: Maybe<Array<Maybe<SprintState>>>;
|
|
@@ -1177,6 +1208,16 @@ export declare type BoardScopeFilteredCardIdsArgs = {
|
|
|
1177
1208
|
issueIds: Array<Maybe<Scalars['ID']>>;
|
|
1178
1209
|
customFilterIds: Array<Maybe<Scalars['ID']>>;
|
|
1179
1210
|
};
|
|
1211
|
+
export declare type BoardScopeConnection = {
|
|
1212
|
+
__typename?: 'BoardScopeConnection';
|
|
1213
|
+
edges?: Maybe<Array<Maybe<BoardScopeEdge>>>;
|
|
1214
|
+
pageInfo?: Maybe<PageInfo>;
|
|
1215
|
+
};
|
|
1216
|
+
export declare type BoardScopeEdge = {
|
|
1217
|
+
__typename?: 'BoardScopeEdge';
|
|
1218
|
+
node?: Maybe<BoardScope>;
|
|
1219
|
+
cursor?: Maybe<Scalars['String']>;
|
|
1220
|
+
};
|
|
1180
1221
|
export declare enum BuiltinPolarisIdeaField {
|
|
1181
1222
|
Assignee = "ASSIGNEE",
|
|
1182
1223
|
Created = "CREATED",
|
|
@@ -3391,7 +3432,6 @@ export declare type ContainerEventObject = {
|
|
|
3391
3432
|
attributes: Scalars['JSON'];
|
|
3392
3433
|
};
|
|
3393
3434
|
export declare type ContentPlatformAnyContext = ContentPlatformContextProduct | ContentPlatformContextApp | ContentPlatformContextTheme;
|
|
3394
|
-
export declare type ContentPlatformAnyContextEntry = ContentPlatformContextProductEntry | ContentPlatformContextAppEntry | ContentPlatformContextThemeEntry;
|
|
3395
3435
|
export declare type ContentPlatformChunkBenefits = {
|
|
3396
3436
|
__typename?: 'ContentPlatformChunkBenefits';
|
|
3397
3437
|
title: Scalars['String'];
|
|
@@ -3432,16 +3472,6 @@ export declare type ContentPlatformContextApp = {
|
|
|
3432
3472
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3433
3473
|
url?: Maybe<Scalars['String']>;
|
|
3434
3474
|
};
|
|
3435
|
-
export declare type ContentPlatformContextAppEntry = {
|
|
3436
|
-
__typename?: 'ContentPlatformContextAppEntry';
|
|
3437
|
-
contextId: Scalars['String'];
|
|
3438
|
-
title: Scalars['String'];
|
|
3439
|
-
preventProdPublishing?: Maybe<Scalars['Boolean']>;
|
|
3440
|
-
appName: Scalars['String'];
|
|
3441
|
-
parentProductContext: Array<ContentPlatformContextProductEntry>;
|
|
3442
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3443
|
-
url: Scalars['String'];
|
|
3444
|
-
};
|
|
3445
3475
|
export declare type ContentPlatformContextProduct = {
|
|
3446
3476
|
__typename?: 'ContentPlatformContextProduct';
|
|
3447
3477
|
contextId: Scalars['String'];
|
|
@@ -3481,15 +3511,6 @@ export declare type ContentPlatformContextTheme = {
|
|
|
3481
3511
|
icon?: Maybe<ContentPlatformImageAsset>;
|
|
3482
3512
|
url?: Maybe<Scalars['String']>;
|
|
3483
3513
|
};
|
|
3484
|
-
export declare type ContentPlatformContextThemeEntry = {
|
|
3485
|
-
__typename?: 'ContentPlatformContextThemeEntry';
|
|
3486
|
-
contextId: Scalars['String'];
|
|
3487
|
-
title: Scalars['String'];
|
|
3488
|
-
preventProdPublishing: Scalars['Boolean'];
|
|
3489
|
-
hubName: Scalars['String'];
|
|
3490
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3491
|
-
url: Scalars['String'];
|
|
3492
|
-
};
|
|
3493
3514
|
export declare type ContentPlatformImageAsset = {
|
|
3494
3515
|
__typename?: 'ContentPlatformImageAsset';
|
|
3495
3516
|
title: Scalars['String'];
|
|
@@ -3515,13 +3536,6 @@ export declare type ContentPlatformImageComponent = {
|
|
|
3515
3536
|
image: ContentPlatformImageAsset;
|
|
3516
3537
|
contextReference: Array<ContentPlatformAnyContext>;
|
|
3517
3538
|
};
|
|
3518
|
-
export declare type ContentPlatformImageComponentEntry = {
|
|
3519
|
-
__typename?: 'ContentPlatformImageComponentEntry';
|
|
3520
|
-
name: Scalars['String'];
|
|
3521
|
-
altTag: Scalars['String'];
|
|
3522
|
-
image: ContentPlatformImageAssetEntry;
|
|
3523
|
-
contextReference: Array<ContentPlatformAnyContextEntry>;
|
|
3524
|
-
};
|
|
3525
3539
|
export declare type ContentPlatformIntroToPractice = {
|
|
3526
3540
|
__typename?: 'ContentPlatformIntroToPractice';
|
|
3527
3541
|
title: Scalars['String'];
|
|
@@ -3580,35 +3594,6 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3580
3594
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3581
3595
|
getStarted?: Maybe<Scalars['JSON']>;
|
|
3582
3596
|
};
|
|
3583
|
-
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3584
|
-
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
3585
|
-
releaseNoteId: Scalars['String'];
|
|
3586
|
-
fdIssueLink?: Maybe<Scalars['String']>;
|
|
3587
|
-
fdIssueKey?: Maybe<Scalars['String']>;
|
|
3588
|
-
title?: Maybe<Scalars['String']>;
|
|
3589
|
-
changeTargetSchedule?: Maybe<Scalars['String']>;
|
|
3590
|
-
announcementPlan?: Maybe<ContentPlatformTaxonomyAnnouncementPlanEntry>;
|
|
3591
|
-
changeType?: Maybe<ContentPlatformTypeOfChangeEntry>;
|
|
3592
|
-
changeStatus?: Maybe<ContentPlatformStatusOfChangeEntry>;
|
|
3593
|
-
relatedContexts?: Maybe<Array<ContentPlatformAnyContextEntry>>;
|
|
3594
|
-
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3595
|
-
usersNeedingInformed?: Maybe<Array<ContentPlatformTaxonomyUserRoleEntry>>;
|
|
3596
|
-
description?: Maybe<Scalars['JSON']>;
|
|
3597
|
-
featuredImage?: Maybe<ContentPlatformImageComponentEntry>;
|
|
3598
|
-
keyChanges?: Maybe<Scalars['JSON']>;
|
|
3599
|
-
reasonForChange?: Maybe<Scalars['JSON']>;
|
|
3600
|
-
prepareForChange?: Maybe<Scalars['JSON']>;
|
|
3601
|
-
supportingVisuals?: Maybe<Array<ContentPlatformImageComponentEntry>>;
|
|
3602
|
-
relatedContentLinks?: Maybe<Array<Scalars['String']>>;
|
|
3603
|
-
featureRolloutDate?: Maybe<Scalars['String']>;
|
|
3604
|
-
changeCategory?: Maybe<ContentPlatformTaxonomyChangeCategoryEntry>;
|
|
3605
|
-
releaseNoteFlag?: Maybe<Scalars['String']>;
|
|
3606
|
-
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3607
|
-
updatedAt: Scalars['String'];
|
|
3608
|
-
url: Scalars['String'];
|
|
3609
|
-
benefitsList: Scalars['JSON'];
|
|
3610
|
-
getStarted: Scalars['JSON'];
|
|
3611
|
-
};
|
|
3612
3597
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3613
3598
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
3614
3599
|
contextId?: Maybe<Scalars['String']>;
|
|
@@ -3637,11 +3622,6 @@ export declare type ContentPlatformStatusOfChange = {
|
|
|
3637
3622
|
label: Scalars['String'];
|
|
3638
3623
|
description: Scalars['String'];
|
|
3639
3624
|
};
|
|
3640
|
-
export declare type ContentPlatformStatusOfChangeEntry = {
|
|
3641
|
-
__typename?: 'ContentPlatformStatusOfChangeEntry';
|
|
3642
|
-
label: Scalars['String'];
|
|
3643
|
-
description: Scalars['String'];
|
|
3644
|
-
};
|
|
3645
3625
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
3646
3626
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
3647
3627
|
title: Scalars['String'];
|
|
@@ -3657,31 +3637,16 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
3657
3637
|
title: Scalars['String'];
|
|
3658
3638
|
description: Scalars['String'];
|
|
3659
3639
|
};
|
|
3660
|
-
export declare type ContentPlatformTaxonomyChangeCategoryEntry = {
|
|
3661
|
-
__typename?: 'ContentPlatformTaxonomyChangeCategoryEntry';
|
|
3662
|
-
title: Scalars['String'];
|
|
3663
|
-
description: Scalars['String'];
|
|
3664
|
-
};
|
|
3665
3640
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
3666
3641
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
3667
3642
|
title: Scalars['String'];
|
|
3668
3643
|
description: Scalars['String'];
|
|
3669
3644
|
};
|
|
3670
|
-
export declare type ContentPlatformTaxonomyUserRoleEntry = {
|
|
3671
|
-
__typename?: 'ContentPlatformTaxonomyUserRoleEntry';
|
|
3672
|
-
title: Scalars['String'];
|
|
3673
|
-
description: Scalars['String'];
|
|
3674
|
-
};
|
|
3675
3645
|
export declare type ContentPlatformTypeOfChange = {
|
|
3676
3646
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
3677
3647
|
label: Scalars['String'];
|
|
3678
3648
|
icon: ContentPlatformImageAsset;
|
|
3679
3649
|
};
|
|
3680
|
-
export declare type ContentPlatformTypeOfChangeEntry = {
|
|
3681
|
-
__typename?: 'ContentPlatformTypeOfChangeEntry';
|
|
3682
|
-
label?: Maybe<Scalars['String']>;
|
|
3683
|
-
icon?: Maybe<ContentPlatformImageAssetEntry>;
|
|
3684
|
-
};
|
|
3685
3650
|
export declare type ContentPlatformWhatPractice = {
|
|
3686
3651
|
__typename?: 'ContentPlatformWhatPractice';
|
|
3687
3652
|
title: Scalars['String'];
|
|
@@ -5038,7 +5003,10 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5038
5003
|
__typename?: 'DevOpsSummarisedDeployments';
|
|
5039
5004
|
entityId: Scalars['ID'];
|
|
5040
5005
|
count?: Maybe<Scalars['Int']>;
|
|
5006
|
+
mostRelevantCount?: Maybe<Scalars['Int']>;
|
|
5041
5007
|
deploymentState?: Maybe<DeploymentState>;
|
|
5008
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5009
|
+
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5042
5010
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5043
5011
|
};
|
|
5044
5012
|
export declare type DevOpsThirdPartyRepository = {
|
|
@@ -5243,6 +5211,7 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5243
5211
|
first?: Maybe<Scalars['Int']>;
|
|
5244
5212
|
after?: Maybe<Scalars['String']>;
|
|
5245
5213
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
5214
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5246
5215
|
categoryId?: Maybe<Scalars['String']>;
|
|
5247
5216
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5248
5217
|
};
|
|
@@ -9085,6 +9054,7 @@ export declare type JiraProject = Node & {
|
|
|
9085
9054
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
9086
9055
|
status?: Maybe<JiraProjectStatus>;
|
|
9087
9056
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
9057
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
9088
9058
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
9089
9059
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9090
9060
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -11279,7 +11249,7 @@ export declare type Mutation = {
|
|
|
11279
11249
|
shepherd?: Maybe<ShepherdMutation>;
|
|
11280
11250
|
createReleaseNote: ContentPlatformReleaseNote;
|
|
11281
11251
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
11282
|
-
updateReleaseNote:
|
|
11252
|
+
updateReleaseNote: ContentPlatformReleaseNote;
|
|
11283
11253
|
createApp?: Maybe<CreateAppResponse>;
|
|
11284
11254
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
11285
11255
|
deleteApp?: Maybe<DeleteAppResponse>;
|
|
@@ -13073,7 +13043,7 @@ export declare type Query = {
|
|
|
13073
13043
|
shepherd?: Maybe<ShepherdQuery>;
|
|
13074
13044
|
opsgenie?: Maybe<OpsgenieQuery>;
|
|
13075
13045
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
13076
|
-
releaseNote
|
|
13046
|
+
releaseNote: ContentPlatformReleaseNote;
|
|
13077
13047
|
practicePages: ContentPlatformPracticePagesConnection;
|
|
13078
13048
|
practicePage: ContentPlatformPracticePage;
|
|
13079
13049
|
apps?: Maybe<AppConnection>;
|
|
@@ -13082,6 +13052,7 @@ export declare type Query = {
|
|
|
13082
13052
|
jsw?: Maybe<JswQuery>;
|
|
13083
13053
|
boardScope?: Maybe<BoardScope>;
|
|
13084
13054
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
13055
|
+
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
13085
13056
|
devOpsTools?: Maybe<DevOpsTools>;
|
|
13086
13057
|
search?: Maybe<SearchQueryApi>;
|
|
13087
13058
|
devOps?: Maybe<DevOps>;
|
|
@@ -13105,6 +13076,7 @@ export declare type Query = {
|
|
|
13105
13076
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
13106
13077
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
13107
13078
|
codeInJira?: Maybe<CodeInJira>;
|
|
13079
|
+
avocado?: Maybe<Avocado>;
|
|
13108
13080
|
devOpsService?: Maybe<DevOpsService>;
|
|
13109
13081
|
devOpsServiceTiers?: Maybe<Array<DevOpsServiceTier>>;
|
|
13110
13082
|
devOpsServices?: Maybe<DevOpsServiceConnection>;
|
|
@@ -13201,6 +13173,9 @@ export declare type QueryBoardScopeArgs = {
|
|
|
13201
13173
|
export declare type QueryDevelopmentInformationArgs = {
|
|
13202
13174
|
issueId: Scalars['ID'];
|
|
13203
13175
|
};
|
|
13176
|
+
export declare type QuerySoftwareBoardsArgs = {
|
|
13177
|
+
projectAri: Scalars['ID'];
|
|
13178
|
+
};
|
|
13204
13179
|
export declare type QueryUserArgs = {
|
|
13205
13180
|
accountId: Scalars['ID'];
|
|
13206
13181
|
};
|
|
@@ -14010,6 +13985,7 @@ export declare enum Scope {
|
|
|
14010
13985
|
AuthConfluenceUser = "AUTH_CONFLUENCE_USER",
|
|
14011
13986
|
ManageDirectory = "MANAGE_DIRECTORY",
|
|
14012
13987
|
ReadMe = "READ_ME",
|
|
13988
|
+
ReadAccount = "READ_ACCOUNT",
|
|
14013
13989
|
ViewUserprofile = "VIEW_USERPROFILE",
|
|
14014
13990
|
IdentityAtlassianExternal = "IDENTITY_ATLASSIAN_EXTERNAL",
|
|
14015
13991
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -14389,6 +14365,7 @@ export declare type ShepherdCreateWebhookInput = {
|
|
|
14389
14365
|
authToken?: Maybe<Scalars['String']>;
|
|
14390
14366
|
callbackURL: Scalars['URL'];
|
|
14391
14367
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14368
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14392
14369
|
};
|
|
14393
14370
|
export declare type ShepherdEmailConnection = {
|
|
14394
14371
|
__typename?: 'ShepherdEmailConnection';
|
|
@@ -14524,6 +14501,7 @@ export declare type ShepherdUpdateSubscriptionPayload = Payload & {
|
|
|
14524
14501
|
export declare type ShepherdUpdateWebhookInput = {
|
|
14525
14502
|
callbackURL?: Maybe<Scalars['URL']>;
|
|
14526
14503
|
status?: Maybe<ShepherdSubscriptionStatus>;
|
|
14504
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14527
14505
|
};
|
|
14528
14506
|
export declare type ShepherdUser = {
|
|
14529
14507
|
__typename?: 'ShepherdUser';
|
|
@@ -14545,9 +14523,14 @@ export declare type ShepherdWebhookSubscription = ShepherdSubscription & {
|
|
|
14545
14523
|
createdOn: Scalars['DateTime'];
|
|
14546
14524
|
id: Scalars['ID'];
|
|
14547
14525
|
status: ShepherdSubscriptionStatus;
|
|
14526
|
+
type?: Maybe<ShepherdWebhookType>;
|
|
14548
14527
|
updatedBy?: Maybe<Scalars['String']>;
|
|
14549
14528
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
14550
14529
|
};
|
|
14530
|
+
export declare enum ShepherdWebhookType {
|
|
14531
|
+
Custom = "CUSTOM",
|
|
14532
|
+
Slack = "SLACK"
|
|
14533
|
+
}
|
|
14551
14534
|
export declare type SoftwareBoard = {
|
|
14552
14535
|
__typename?: 'SoftwareBoard';
|
|
14553
14536
|
id?: Maybe<Scalars['ID']>;
|