@forge/cli-shared 3.17.2-next.7 → 3.17.2
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 +36 -0
- package/out/graphql/graphql-types.d.ts +136 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +39 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.17.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 30713ea9: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
- cdf28f27: Improve user error detection
|
|
12
|
+
- 8c4ec99f: Bumping dependencies via Renovate:
|
|
13
|
+
|
|
14
|
+
- @atlassian/xen-test-util
|
|
15
|
+
|
|
16
|
+
- 81556b08: Bumping dependencies via Renovate:
|
|
17
|
+
|
|
18
|
+
- @sentry/node
|
|
19
|
+
|
|
20
|
+
- 035116d2: Bumping dependencies via Renovate:
|
|
21
|
+
|
|
22
|
+
- node-fetch
|
|
23
|
+
|
|
24
|
+
- 439098ca: Add missing dev dependencies
|
|
25
|
+
- Updated dependencies [8b993ad6]
|
|
26
|
+
- Updated dependencies [035116d2]
|
|
27
|
+
- Updated dependencies [07e8f1f4]
|
|
28
|
+
- Updated dependencies [1fa312eb]
|
|
29
|
+
- @forge/manifest@4.19.1
|
|
30
|
+
|
|
31
|
+
## 3.17.2-next.8
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- 8c4ec99f: Bumping dependencies via Renovate:
|
|
36
|
+
|
|
37
|
+
- @atlassian/xen-test-util
|
|
38
|
+
|
|
3
39
|
## 3.17.2-next.7
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -326,12 +326,12 @@ export type AddCompassComponentLabelsPayload = Payload & {
|
|
|
326
326
|
export type AddMultipleAppContributorInput = {
|
|
327
327
|
appId: Scalars['ID'];
|
|
328
328
|
newContributorEmails: Array<Scalars['String']>;
|
|
329
|
-
|
|
329
|
+
roles: Array<AppContributorRole>;
|
|
330
330
|
};
|
|
331
331
|
export type AddMultipleAppContributorResponsePayload = Payload & {
|
|
332
332
|
__typename?: 'AddMultipleAppContributorResponsePayload';
|
|
333
333
|
success: Scalars['Boolean'];
|
|
334
|
-
contributorsFailed
|
|
334
|
+
contributorsFailed?: Maybe<Array<ContributorFailed>>;
|
|
335
335
|
errors?: Maybe<Array<MutationError>>;
|
|
336
336
|
};
|
|
337
337
|
export type AddPolarisColumnInput = {
|
|
@@ -686,11 +686,14 @@ export type AppContributor = {
|
|
|
686
686
|
status: Scalars['String'];
|
|
687
687
|
isOwner?: Maybe<Scalars['Boolean']>;
|
|
688
688
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
689
|
-
|
|
689
|
+
roles?: Maybe<Array<Scalars['String']>>;
|
|
690
690
|
};
|
|
691
691
|
export declare enum AppContributorRole {
|
|
692
692
|
Admin = "ADMIN",
|
|
693
|
-
Developer = "DEVELOPER"
|
|
693
|
+
Developer = "DEVELOPER",
|
|
694
|
+
ViewerAdvanced = "VIEWER_ADVANCED",
|
|
695
|
+
Viewer = "VIEWER",
|
|
696
|
+
Deployer = "DEPLOYER"
|
|
694
697
|
}
|
|
695
698
|
export type AppDeployment = {
|
|
696
699
|
__typename?: 'AppDeployment';
|
|
@@ -7567,6 +7570,7 @@ export type DevOpsBuildProvider = DevOpsDataProvider & {
|
|
|
7567
7570
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7568
7571
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7569
7572
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7573
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7570
7574
|
};
|
|
7571
7575
|
export declare enum DevOpsBuildState {
|
|
7572
7576
|
Pending = "PENDING",
|
|
@@ -7588,6 +7592,7 @@ export type DevOpsDataProvider = {
|
|
|
7588
7592
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7589
7593
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7590
7594
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7595
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7591
7596
|
};
|
|
7592
7597
|
export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
7593
7598
|
__typename?: 'DevOpsDeploymentProvider';
|
|
@@ -7598,6 +7603,7 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
|
7598
7603
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7599
7604
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7600
7605
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7606
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7601
7607
|
};
|
|
7602
7608
|
export type DevOpsDesign = Node & {
|
|
7603
7609
|
__typename?: 'DevOpsDesign';
|
|
@@ -7620,6 +7626,7 @@ export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
|
7620
7626
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7621
7627
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7622
7628
|
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7629
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7623
7630
|
};
|
|
7624
7631
|
export declare enum DevOpsDesignStatus {
|
|
7625
7632
|
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
@@ -7643,6 +7650,7 @@ export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
|
7643
7650
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7644
7651
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7645
7652
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7653
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7646
7654
|
};
|
|
7647
7655
|
export type DevOpsDocument = Node & {
|
|
7648
7656
|
__typename?: 'DevOpsDocument';
|
|
@@ -7699,6 +7707,7 @@ export type DevOpsDocumentationProvider = DevOpsDataProvider & {
|
|
|
7699
7707
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7700
7708
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7701
7709
|
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7710
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7702
7711
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
7703
7712
|
};
|
|
7704
7713
|
export type DevOpsDocumentationProviderLinkedContainersArgs = {
|
|
@@ -7784,6 +7793,7 @@ export type DevOpsFeatureFlagProvider = DevOpsDataProvider & {
|
|
|
7784
7793
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7785
7794
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7786
7795
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
7796
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
7787
7797
|
createFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
7788
7798
|
connectFeatureFlagTemplateUrl?: Maybe<Scalars['String']>;
|
|
7789
7799
|
};
|
|
@@ -8022,7 +8032,8 @@ export type DevOpsProviders = {
|
|
|
8022
8032
|
};
|
|
8023
8033
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
8024
8034
|
Approved = "APPROVED",
|
|
8025
|
-
Unapproved = "UNAPPROVED"
|
|
8035
|
+
Unapproved = "UNAPPROVED",
|
|
8036
|
+
Needswork = "NEEDSWORK"
|
|
8026
8037
|
}
|
|
8027
8038
|
export type DevOpsPullRequestDetails = {
|
|
8028
8039
|
__typename?: 'DevOpsPullRequestDetails';
|
|
@@ -8048,6 +8059,7 @@ export declare enum DevOpsPullRequestStatus {
|
|
|
8048
8059
|
Open = "OPEN",
|
|
8049
8060
|
Merged = "MERGED",
|
|
8050
8061
|
Declined = "DECLINED",
|
|
8062
|
+
Draft = "DRAFT",
|
|
8051
8063
|
Unknown = "UNKNOWN"
|
|
8052
8064
|
}
|
|
8053
8065
|
export declare enum DevOpsRelationshipCertainty {
|
|
@@ -8068,6 +8080,7 @@ export type DevOpsRemoteLinksProvider = DevOpsDataProvider & {
|
|
|
8068
8080
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
8069
8081
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
8070
8082
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8083
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
8071
8084
|
};
|
|
8072
8085
|
export type DevOpsRepository = {
|
|
8073
8086
|
__typename?: 'DevOpsRepository';
|
|
@@ -8099,6 +8112,7 @@ export type DevOpsSecurityProvider = DevOpsDataProvider & {
|
|
|
8099
8112
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
8100
8113
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
8101
8114
|
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
8115
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
8102
8116
|
linkedWorkspaces?: Maybe<AriGraphRelationshipConnection>;
|
|
8103
8117
|
linkedContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
8104
8118
|
};
|
|
@@ -9771,6 +9785,7 @@ export type GraphFetchAllRelationshipsArgs = {
|
|
|
9771
9785
|
ascending?: Maybe<Scalars['Boolean']>;
|
|
9772
9786
|
first?: Maybe<Scalars['Int']>;
|
|
9773
9787
|
from: Scalars['ID'];
|
|
9788
|
+
ignoredRelationshipTypes?: Maybe<Array<Scalars['String']>>;
|
|
9774
9789
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
9775
9790
|
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
9776
9791
|
};
|
|
@@ -13155,6 +13170,10 @@ export type JiraDismissDevOpsIssuePanelBannerPayload = Payload & {
|
|
|
13155
13170
|
success: Scalars['Boolean'];
|
|
13156
13171
|
errors?: Maybe<Array<MutationError>>;
|
|
13157
13172
|
};
|
|
13173
|
+
export declare enum JiraEmailMimeType {
|
|
13174
|
+
Html = "HTML",
|
|
13175
|
+
Text = "TEXT"
|
|
13176
|
+
}
|
|
13158
13177
|
export type JiraEntityProperty = {
|
|
13159
13178
|
id: Scalars['ID'];
|
|
13160
13179
|
propertyKey?: Maybe<Scalars['String']>;
|
|
@@ -15481,6 +15500,8 @@ export type JiraMutation = {
|
|
|
15481
15500
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
15482
15501
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
15483
15502
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
15503
|
+
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
15504
|
+
updateEmailMimeType?: Maybe<JiraUpdateEmailMimeTypePayload>;
|
|
15484
15505
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
15485
15506
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
15486
15507
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
@@ -15700,6 +15721,14 @@ export type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
|
15700
15721
|
export type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
15701
15722
|
input: JiraVersionUpdateApproverStatusInput;
|
|
15702
15723
|
};
|
|
15724
|
+
export type JiraMutationUpdateGlobalNotificationPreferencesArgs = {
|
|
15725
|
+
cloudId: Scalars['ID'];
|
|
15726
|
+
input: JiraUpdateGlobalNotificationPreferencesInput;
|
|
15727
|
+
};
|
|
15728
|
+
export type JiraMutationUpdateEmailMimeTypeArgs = {
|
|
15729
|
+
cloudId: Scalars['ID'];
|
|
15730
|
+
input: JiraUpdateEmailMimeTypeInput;
|
|
15731
|
+
};
|
|
15703
15732
|
export type JiraMutationSubmitBulkOperationArgs = {
|
|
15704
15733
|
cloudId: Scalars['ID'];
|
|
15705
15734
|
input: JiraSubmitBulkOperationInput;
|
|
@@ -15725,6 +15754,50 @@ export type JiraNaturalLanguageToJqlInput = {
|
|
|
15725
15754
|
naturalLanguageInput: Scalars['String'];
|
|
15726
15755
|
iteration?: Maybe<JiraIteration>;
|
|
15727
15756
|
};
|
|
15757
|
+
export type JiraNotificationChannel = {
|
|
15758
|
+
__typename?: 'JiraNotificationChannel';
|
|
15759
|
+
channel?: Maybe<JiraNotificationChannelType>;
|
|
15760
|
+
isEnabled?: Maybe<Scalars['Boolean']>;
|
|
15761
|
+
isEditable?: Maybe<Scalars['Boolean']>;
|
|
15762
|
+
};
|
|
15763
|
+
export declare enum JiraNotificationChannelType {
|
|
15764
|
+
Email = "EMAIL"
|
|
15765
|
+
}
|
|
15766
|
+
export type JiraNotificationGlobalPreference = {
|
|
15767
|
+
__typename?: 'JiraNotificationGlobalPreference';
|
|
15768
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
15769
|
+
emailMimeType?: Maybe<JiraEmailMimeType>;
|
|
15770
|
+
isEmailMimeTypeEditable?: Maybe<Scalars['Boolean']>;
|
|
15771
|
+
};
|
|
15772
|
+
export type JiraNotificationPreference = {
|
|
15773
|
+
__typename?: 'JiraNotificationPreference';
|
|
15774
|
+
id: Scalars['ID'];
|
|
15775
|
+
type?: Maybe<JiraNotificationType>;
|
|
15776
|
+
emailChannel?: Maybe<JiraNotificationChannel>;
|
|
15777
|
+
};
|
|
15778
|
+
export type JiraNotificationPreferenceInput = {
|
|
15779
|
+
type: JiraNotificationType;
|
|
15780
|
+
channelsEnabled: Array<JiraNotificationChannelType>;
|
|
15781
|
+
};
|
|
15782
|
+
export type JiraNotificationPreferences = {
|
|
15783
|
+
__typename?: 'JiraNotificationPreferences';
|
|
15784
|
+
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
15785
|
+
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
15786
|
+
issueDeleted?: Maybe<JiraNotificationPreference>;
|
|
15787
|
+
issueMentioned?: Maybe<JiraNotificationPreference>;
|
|
15788
|
+
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
15789
|
+
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
15790
|
+
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
15791
|
+
commentReacted?: Maybe<JiraNotificationPreference>;
|
|
15792
|
+
};
|
|
15793
|
+
export declare enum JiraNotificationType {
|
|
15794
|
+
IssueAssigned = "ISSUE_ASSIGNED",
|
|
15795
|
+
IssueDeleted = "ISSUE_DELETED",
|
|
15796
|
+
IssueUpdated = "ISSUE_UPDATED",
|
|
15797
|
+
CommentCreated = "COMMENT_CREATED",
|
|
15798
|
+
CommentEdited = "COMMENT_EDITED",
|
|
15799
|
+
CommentDeleted = "COMMENT_DELETED"
|
|
15800
|
+
}
|
|
15728
15801
|
export type JiraNumberField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
15729
15802
|
__typename?: 'JiraNumberField';
|
|
15730
15803
|
id: Scalars['ID'];
|
|
@@ -16908,6 +16981,7 @@ export type JiraQuery = {
|
|
|
16908
16981
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
16909
16982
|
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
16910
16983
|
issueLinkTypes?: Maybe<JiraIssueLinkTypeConnection>;
|
|
16984
|
+
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
16911
16985
|
canPerform?: Maybe<Scalars['Boolean']>;
|
|
16912
16986
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
16913
16987
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -17279,6 +17353,9 @@ export type JiraQueryIssueLinkTypesArgs = {
|
|
|
17279
17353
|
last?: Maybe<Scalars['Int']>;
|
|
17280
17354
|
before?: Maybe<Scalars['String']>;
|
|
17281
17355
|
};
|
|
17356
|
+
export type JiraQueryNotificationGlobalPreferenceArgs = {
|
|
17357
|
+
cloudId: Scalars['ID'];
|
|
17358
|
+
};
|
|
17282
17359
|
export type JiraQueryCanPerformArgs = {
|
|
17283
17360
|
type: JiraActionType;
|
|
17284
17361
|
cloudId: Scalars['ID'];
|
|
@@ -19283,6 +19360,24 @@ export type JiraUpdateDateTimeFieldInput = {
|
|
|
19283
19360
|
id: Scalars['ID'];
|
|
19284
19361
|
operation: JiraDateTimeFieldOperationInput;
|
|
19285
19362
|
};
|
|
19363
|
+
export type JiraUpdateEmailMimeTypeInput = {
|
|
19364
|
+
emailMimeType: JiraEmailMimeType;
|
|
19365
|
+
};
|
|
19366
|
+
export type JiraUpdateEmailMimeTypePayload = Payload & {
|
|
19367
|
+
__typename?: 'JiraUpdateEmailMimeTypePayload';
|
|
19368
|
+
success: Scalars['Boolean'];
|
|
19369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19370
|
+
updatedEmailMimeType?: Maybe<JiraEmailMimeType>;
|
|
19371
|
+
};
|
|
19372
|
+
export type JiraUpdateGlobalNotificationPreferencesInput = {
|
|
19373
|
+
preferences: Array<JiraNotificationPreferenceInput>;
|
|
19374
|
+
};
|
|
19375
|
+
export type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
19376
|
+
__typename?: 'JiraUpdateGlobalPreferencesPayload';
|
|
19377
|
+
success: Scalars['Boolean'];
|
|
19378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19379
|
+
preferences?: Maybe<JiraNotificationPreferences>;
|
|
19380
|
+
};
|
|
19286
19381
|
export type JiraUpdateLabelsFieldInput = {
|
|
19287
19382
|
id: Scalars['ID'];
|
|
19288
19383
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -20852,7 +20947,6 @@ export type Mutation = {
|
|
|
20852
20947
|
createPolarisStandardField?: Maybe<CreatePolarisStandardFieldPayload>;
|
|
20853
20948
|
createPolarisCalculatedField?: Maybe<CreatePolarisCalculatedFieldPayload>;
|
|
20854
20949
|
updatePolarisCalculatedField?: Maybe<UpdatePolarisCalculatedFieldPayload>;
|
|
20855
|
-
updatePolarisFieldDescription?: Maybe<UpdatePolarisFieldDescriptionPayload>;
|
|
20856
20950
|
updatePolarisField?: Maybe<UpdatePolarisFieldPayload>;
|
|
20857
20951
|
updatePolarisFieldEmoji?: Maybe<UpdatePolarisFieldEmojiPayload>;
|
|
20858
20952
|
deletePolarisField?: Maybe<DeletePolarisFieldPayload>;
|
|
@@ -20879,7 +20973,6 @@ export type Mutation = {
|
|
|
20879
20973
|
createPolarisInsightFromPlayContribution?: Maybe<CreatePolarisInsightPayload>;
|
|
20880
20974
|
configurePolarisRefresh?: Maybe<ConfigurePolarisRefreshPayload>;
|
|
20881
20975
|
applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
|
|
20882
|
-
setPolarisProjectOnboarded?: Maybe<SetPolarisProjectOnboardedPayload>;
|
|
20883
20976
|
setPolarisSelectedDeliveryProject?: Maybe<SetPolarisSelectedDeliveryProjectPayload>;
|
|
20884
20977
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
20885
20978
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
@@ -21102,9 +21195,6 @@ export type MutationCreatePolarisCalculatedFieldArgs = {
|
|
|
21102
21195
|
export type MutationUpdatePolarisCalculatedFieldArgs = {
|
|
21103
21196
|
input: UpdatePolarisCalculatedFieldInput;
|
|
21104
21197
|
};
|
|
21105
|
-
export type MutationUpdatePolarisFieldDescriptionArgs = {
|
|
21106
|
-
input: UpdatePolarisFieldDescriptionInput;
|
|
21107
|
-
};
|
|
21108
21198
|
export type MutationUpdatePolarisFieldArgs = {
|
|
21109
21199
|
input: UpdatePolarisFieldInput;
|
|
21110
21200
|
};
|
|
@@ -21191,9 +21281,6 @@ export type MutationConfigurePolarisRefreshArgs = {
|
|
|
21191
21281
|
export type MutationApplyPolarisProjectTemplateArgs = {
|
|
21192
21282
|
input: ApplyPolarisProjectTemplateInput;
|
|
21193
21283
|
};
|
|
21194
|
-
export type MutationSetPolarisProjectOnboardedArgs = {
|
|
21195
|
-
input: SetPolarisProjectOnboardedInput;
|
|
21196
|
-
};
|
|
21197
21284
|
export type MutationSetPolarisSelectedDeliveryProjectArgs = {
|
|
21198
21285
|
input: SetPolarisSelectedDeliveryProjectInput;
|
|
21199
21286
|
};
|
|
@@ -25424,15 +25511,6 @@ export type SetIssueMediaVisibilityOutput = MutationResponse & {
|
|
|
25424
25511
|
message: Scalars['String'];
|
|
25425
25512
|
clientMutationId?: Maybe<Scalars['ID']>;
|
|
25426
25513
|
};
|
|
25427
|
-
export type SetPolarisProjectOnboardedInput = {
|
|
25428
|
-
projectId: Scalars['ID'];
|
|
25429
|
-
value: Scalars['Boolean'];
|
|
25430
|
-
};
|
|
25431
|
-
export type SetPolarisProjectOnboardedPayload = Payload & {
|
|
25432
|
-
__typename?: 'SetPolarisProjectOnboardedPayload';
|
|
25433
|
-
success: Scalars['Boolean'];
|
|
25434
|
-
errors?: Maybe<Array<MutationError>>;
|
|
25435
|
-
};
|
|
25436
25514
|
export type SetPolarisSelectedDeliveryProjectInput = {
|
|
25437
25515
|
projectId: Scalars['ID'];
|
|
25438
25516
|
selectedDeliveryProjectId: Scalars['ID'];
|
|
@@ -25631,6 +25709,10 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
25631
25709
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
25632
25710
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
25633
25711
|
}
|
|
25712
|
+
export type ShepherdAlertTitle = {
|
|
25713
|
+
__typename?: 'ShepherdAlertTitle';
|
|
25714
|
+
default: Scalars['String'];
|
|
25715
|
+
};
|
|
25634
25716
|
export type ShepherdAlertsConnection = {
|
|
25635
25717
|
__typename?: 'ShepherdAlertsConnection';
|
|
25636
25718
|
edges?: Maybe<Array<Maybe<ShepherdAlertEdge>>>;
|
|
@@ -25717,6 +25799,7 @@ export type ShepherdDetection = {
|
|
|
25717
25799
|
description?: Maybe<Scalars['JSON']>;
|
|
25718
25800
|
id: Scalars['ID'];
|
|
25719
25801
|
product: ShepherdAtlassianProduct;
|
|
25802
|
+
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
25720
25803
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
25721
25804
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
25722
25805
|
title: Scalars['String'];
|
|
@@ -25886,6 +25969,11 @@ export declare enum ShepherdRateThresholdValue {
|
|
|
25886
25969
|
Low = "LOW",
|
|
25887
25970
|
Medium = "MEDIUM"
|
|
25888
25971
|
}
|
|
25972
|
+
export type ShepherdRelatedAlertType = {
|
|
25973
|
+
__typename?: 'ShepherdRelatedAlertType';
|
|
25974
|
+
template?: Maybe<ShepherdAlertTemplateType>;
|
|
25975
|
+
title?: Maybe<ShepherdAlertTitle>;
|
|
25976
|
+
};
|
|
25889
25977
|
export type ShepherdResourceActivity = {
|
|
25890
25978
|
__typename?: 'ShepherdResourceActivity';
|
|
25891
25979
|
action: ShepherdActionType;
|
|
@@ -25895,6 +25983,11 @@ export type ShepherdResourceActivity = {
|
|
|
25895
25983
|
resourceUrl?: Maybe<Scalars['String']>;
|
|
25896
25984
|
time: Scalars['DateTime'];
|
|
25897
25985
|
};
|
|
25986
|
+
export type ShepherdSite = {
|
|
25987
|
+
__typename?: 'ShepherdSite';
|
|
25988
|
+
cloudId: Scalars['ID'];
|
|
25989
|
+
tenantContext?: Maybe<TenantContext>;
|
|
25990
|
+
};
|
|
25898
25991
|
export type ShepherdSlackEdge = ShepherdSubscriptionEdge & {
|
|
25899
25992
|
__typename?: 'ShepherdSlackEdge';
|
|
25900
25993
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -26069,6 +26162,7 @@ export type ShepherdWorkspace = {
|
|
|
26069
26162
|
id: Scalars['ID'];
|
|
26070
26163
|
orgId: Scalars['ID'];
|
|
26071
26164
|
shouldOnboard?: Maybe<Scalars['Boolean']>;
|
|
26165
|
+
sites?: Maybe<Array<Maybe<ShepherdSite>>>;
|
|
26072
26166
|
};
|
|
26073
26167
|
export type ShepherdWorkspaceDetectionsArgs = {
|
|
26074
26168
|
detectionId?: Maybe<Scalars['ID']>;
|
|
@@ -27162,6 +27256,7 @@ export type Toolchain = {
|
|
|
27162
27256
|
export type ToolchainContainersArgs = {
|
|
27163
27257
|
cloudId?: Maybe<Scalars['ID']>;
|
|
27164
27258
|
providerId?: Maybe<Scalars['String']>;
|
|
27259
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27165
27260
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
27166
27261
|
query?: Maybe<Scalars['String']>;
|
|
27167
27262
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -27170,6 +27265,7 @@ export type ToolchainContainersArgs = {
|
|
|
27170
27265
|
export type ToolchainWorkspacesArgs = {
|
|
27171
27266
|
cloudId: Scalars['ID'];
|
|
27172
27267
|
providerId: Scalars['String'];
|
|
27268
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27173
27269
|
query?: Maybe<Scalars['String']>;
|
|
27174
27270
|
first?: Maybe<Scalars['Int']>;
|
|
27175
27271
|
after?: Maybe<Scalars['String']>;
|
|
@@ -27177,12 +27273,14 @@ export type ToolchainWorkspacesArgs = {
|
|
|
27177
27273
|
export type ToolchainSyncStatusArgs = {
|
|
27178
27274
|
cloudId: Scalars['ID'];
|
|
27179
27275
|
providerId: Scalars['String'];
|
|
27276
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27180
27277
|
jiraProjectId: Scalars['ID'];
|
|
27181
27278
|
containerId: Scalars['ID'];
|
|
27182
27279
|
};
|
|
27183
27280
|
export type ToolchainCheck3LoArgs = {
|
|
27184
27281
|
cloudId: Scalars['ID'];
|
|
27185
27282
|
providerId: Scalars['String'];
|
|
27283
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27186
27284
|
};
|
|
27187
27285
|
export type ToolchainAssociateContainerInput = {
|
|
27188
27286
|
jiraProjectId: Scalars['ID'];
|
|
@@ -27192,6 +27290,7 @@ export type ToolchainAssociateContainerInput = {
|
|
|
27192
27290
|
export type ToolchainAssociateContainersInput = {
|
|
27193
27291
|
cloudId: Scalars['ID'];
|
|
27194
27292
|
providerId: Scalars['ID'];
|
|
27293
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27195
27294
|
associations: Array<ToolchainAssociateContainerInput>;
|
|
27196
27295
|
};
|
|
27197
27296
|
export type ToolchainAssociateContainersPayload = Payload & {
|
|
@@ -27203,6 +27302,7 @@ export type ToolchainAssociateContainersPayload = Payload & {
|
|
|
27203
27302
|
export type ToolchainAssociateEntitiesInput = {
|
|
27204
27303
|
cloudId: Scalars['ID'];
|
|
27205
27304
|
providerId: Scalars['ID'];
|
|
27305
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27206
27306
|
associations: Array<ToolchainAssociateEntityInput>;
|
|
27207
27307
|
};
|
|
27208
27308
|
export type ToolchainAssociateEntitiesPayload = Payload & {
|
|
@@ -27246,6 +27346,7 @@ export type ToolchainContainerWorkspaceDetails = {
|
|
|
27246
27346
|
export type ToolchainCreateContainerInput = {
|
|
27247
27347
|
cloudId: Scalars['ID'];
|
|
27248
27348
|
providerId?: Maybe<Scalars['ID']>;
|
|
27349
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27249
27350
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
27250
27351
|
name: Scalars['String'];
|
|
27251
27352
|
type?: Maybe<Scalars['String']>;
|
|
@@ -27263,6 +27364,7 @@ export type ToolchainDisassociateContainerInput = {
|
|
|
27263
27364
|
export type ToolchainDisassociateContainersInput = {
|
|
27264
27365
|
cloudId: Scalars['ID'];
|
|
27265
27366
|
providerId: Scalars['ID'];
|
|
27367
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27266
27368
|
disassociations: Array<ToolchainDisassociateContainerInput>;
|
|
27267
27369
|
};
|
|
27268
27370
|
export type ToolchainDisassociateContainersPayload = Payload & {
|
|
@@ -27273,6 +27375,7 @@ export type ToolchainDisassociateContainersPayload = Payload & {
|
|
|
27273
27375
|
export type ToolchainDisassociateEntitiesInput = {
|
|
27274
27376
|
cloudId: Scalars['ID'];
|
|
27275
27377
|
providerId: Scalars['ID'];
|
|
27378
|
+
providerType?: Maybe<ToolchainProviderType>;
|
|
27276
27379
|
disassociations: Array<ToolchainDisassociateEntityInput>;
|
|
27277
27380
|
};
|
|
27278
27381
|
export type ToolchainDisassociateEntitiesPayload = Payload & {
|
|
@@ -27307,6 +27410,16 @@ export type ToolchainMutationDisassociateEntitiesArgs = {
|
|
|
27307
27410
|
export type ToolchainMutationCreateContainerArgs = {
|
|
27308
27411
|
input: ToolchainCreateContainerInput;
|
|
27309
27412
|
};
|
|
27413
|
+
export declare enum ToolchainProviderType {
|
|
27414
|
+
DevInfo = "DEV_INFO",
|
|
27415
|
+
Build = "BUILD",
|
|
27416
|
+
Deployment = "DEPLOYMENT",
|
|
27417
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
27418
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
27419
|
+
Security = "SECURITY",
|
|
27420
|
+
Documentation = "DOCUMENTATION",
|
|
27421
|
+
Design = "DESIGN"
|
|
27422
|
+
}
|
|
27310
27423
|
export declare enum ToolchainSyncState {
|
|
27311
27424
|
InProgress = "IN_PROGRESS",
|
|
27312
27425
|
Complete = "COMPLETE",
|
|
@@ -28918,17 +29031,6 @@ export type UpdatePolarisDecorationPayload = Payload & {
|
|
|
28918
29031
|
errors?: Maybe<Array<MutationError>>;
|
|
28919
29032
|
node?: Maybe<PolarisDecoration>;
|
|
28920
29033
|
};
|
|
28921
|
-
export type UpdatePolarisFieldDescriptionInput = {
|
|
28922
|
-
field: Scalars['ID'];
|
|
28923
|
-
ideaType: Scalars['ID'];
|
|
28924
|
-
description: Scalars['String'];
|
|
28925
|
-
};
|
|
28926
|
-
export type UpdatePolarisFieldDescriptionPayload = Payload & {
|
|
28927
|
-
__typename?: 'UpdatePolarisFieldDescriptionPayload';
|
|
28928
|
-
success: Scalars['Boolean'];
|
|
28929
|
-
errors?: Maybe<Array<MutationError>>;
|
|
28930
|
-
node?: Maybe<PolarisIdeaField>;
|
|
28931
|
-
};
|
|
28932
29034
|
export type UpdatePolarisFieldEmojiInput = {
|
|
28933
29035
|
field: Scalars['ID'];
|
|
28934
29036
|
ideaType: Scalars['ID'];
|
|
@@ -29418,6 +29520,7 @@ export type VirtualAgentIntentTemplate = Node & {
|
|
|
29418
29520
|
type: VirtualAgentIntentTemplateType;
|
|
29419
29521
|
name: Scalars['String'];
|
|
29420
29522
|
description?: Maybe<Scalars['String']>;
|
|
29523
|
+
noOfQuestions?: Maybe<Scalars['Int']>;
|
|
29421
29524
|
questions?: Maybe<Array<Scalars['String']>>;
|
|
29422
29525
|
};
|
|
29423
29526
|
export type VirtualAgentIntentTemplateEdge = {
|