@forge/cli-shared 3.18.1-next.3 → 3.19.0-next.5
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 +17 -0
- package/out/graphql/graphql-types.d.ts +243 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -6
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.19.0-next.5
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- bd192806: Added ngrok config option to tunnel
|
|
8
|
+
|
|
9
|
+
## 3.18.1-next.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- c1c5fb5: Bumping dependencies via Renovate:
|
|
14
|
+
|
|
15
|
+
- @types/node
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [c1c5fb5]
|
|
18
|
+
- @forge/manifest@4.20.1-next.1
|
|
19
|
+
|
|
3
20
|
## 3.18.1-next.3
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -1614,6 +1614,7 @@ export type ArjConfiguration = {
|
|
|
1614
1614
|
__typename?: 'ArjConfiguration';
|
|
1615
1615
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
1616
1616
|
epicLinkCustomFieldId?: Maybe<Scalars['String']>;
|
|
1617
|
+
storyPointEstimateCustomFieldId?: Maybe<Scalars['String']>;
|
|
1617
1618
|
};
|
|
1618
1619
|
export type ArjHierarchyConfigurationLevel = {
|
|
1619
1620
|
__typename?: 'ArjHierarchyConfigurationLevel';
|
|
@@ -2291,6 +2292,7 @@ export type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2291
2292
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']>;
|
|
2292
2293
|
entitlementId?: Maybe<Scalars['ID']>;
|
|
2293
2294
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
2295
|
+
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
2294
2296
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2295
2297
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2296
2298
|
id: Scalars['ID'];
|
|
@@ -2309,6 +2311,13 @@ export type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2309
2311
|
version?: Maybe<Scalars['Int']>;
|
|
2310
2312
|
context?: Maybe<CcpContext>;
|
|
2311
2313
|
};
|
|
2314
|
+
export type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
2315
|
+
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
2316
|
+
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
2317
|
+
};
|
|
2318
|
+
export type CcpEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2319
|
+
offeringKey: Scalars['ID'];
|
|
2320
|
+
};
|
|
2312
2321
|
export type CcpEntitlementRelationship = {
|
|
2313
2322
|
__typename?: 'CcpEntitlementRelationship';
|
|
2314
2323
|
entitlementId?: Maybe<Scalars['ID']>;
|
|
@@ -2326,6 +2335,11 @@ export type CcpEntitlementTemplate = {
|
|
|
2326
2335
|
provisionedBy?: Maybe<Scalars['String']>;
|
|
2327
2336
|
version?: Maybe<Scalars['Int']>;
|
|
2328
2337
|
};
|
|
2338
|
+
export type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
2339
|
+
__typename?: 'CcpExperienceCapability';
|
|
2340
|
+
experienceUrl?: Maybe<Scalars['String']>;
|
|
2341
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']>;
|
|
2342
|
+
};
|
|
2329
2343
|
export type CcpMapEntry = {
|
|
2330
2344
|
__typename?: 'CcpMapEntry';
|
|
2331
2345
|
key?: Maybe<Scalars['String']>;
|
|
@@ -2648,6 +2662,13 @@ export type ColumnsConfig = {
|
|
|
2648
2662
|
export type CommerceEntitlement = {
|
|
2649
2663
|
id: Scalars['ID'];
|
|
2650
2664
|
subscription?: Maybe<CommerceSubscription>;
|
|
2665
|
+
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
2666
|
+
};
|
|
2667
|
+
export type CommerceEntitlementExperienceCapabilities = {
|
|
2668
|
+
changeOffering?: Maybe<CommerceExperienceCapability>;
|
|
2669
|
+
};
|
|
2670
|
+
export type CommerceEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
2671
|
+
offeringKey: Scalars['ID'];
|
|
2651
2672
|
};
|
|
2652
2673
|
export type CommerceEntitlementInfo = {
|
|
2653
2674
|
entitlement?: Maybe<CommerceEntitlement>;
|
|
@@ -2663,6 +2684,10 @@ export type CommerceEntitlementInfoHams = CommerceEntitlementInfo & {
|
|
|
2663
2684
|
entitlement?: Maybe<HamsEntitlement>;
|
|
2664
2685
|
entitlementId: Scalars['ID'];
|
|
2665
2686
|
};
|
|
2687
|
+
export type CommerceExperienceCapability = {
|
|
2688
|
+
experienceUrl?: Maybe<Scalars['String']>;
|
|
2689
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']>;
|
|
2690
|
+
};
|
|
2666
2691
|
export type CommercePricingPlan = {
|
|
2667
2692
|
primaryCycle?: Maybe<CommercePrimaryCycle>;
|
|
2668
2693
|
};
|
|
@@ -4489,6 +4514,7 @@ export declare enum CompassScorecardImportance {
|
|
|
4489
4514
|
export type CompassScorecardQueryFilter = {
|
|
4490
4515
|
name?: Maybe<Scalars['String']>;
|
|
4491
4516
|
componentTypeIds?: Maybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
4517
|
+
type?: Maybe<CompassScorecardTypesFilter>;
|
|
4492
4518
|
};
|
|
4493
4519
|
export type CompassScorecardQuerySort = {
|
|
4494
4520
|
name: Scalars['String'];
|
|
@@ -4508,6 +4534,9 @@ export type CompassScorecardScore = {
|
|
|
4508
4534
|
export type CompassScorecardScoreQuery = {
|
|
4509
4535
|
componentId: Scalars['ID'];
|
|
4510
4536
|
};
|
|
4537
|
+
export type CompassScorecardTypesFilter = {
|
|
4538
|
+
in: Array<Scalars['String']>;
|
|
4539
|
+
};
|
|
4511
4540
|
export type CompassScorecardsQuery = {
|
|
4512
4541
|
first?: Maybe<Scalars['Int']>;
|
|
4513
4542
|
after?: Maybe<Scalars['String']>;
|
|
@@ -6955,6 +6984,7 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
6955
6984
|
Url = "URL",
|
|
6956
6985
|
Date = "DATE",
|
|
6957
6986
|
Number = "NUMBER",
|
|
6987
|
+
Boolean = "BOOLEAN",
|
|
6958
6988
|
Phone = "PHONE",
|
|
6959
6989
|
Select = "SELECT",
|
|
6960
6990
|
Multiselect = "MULTISELECT"
|
|
@@ -8899,6 +8929,35 @@ export type EarliestViewViewedForUser = {
|
|
|
8899
8929
|
__typename?: 'EarliestViewViewedForUser';
|
|
8900
8930
|
datetime?: Maybe<Scalars['String']>;
|
|
8901
8931
|
};
|
|
8932
|
+
export type EcosystemAppPolicies = {
|
|
8933
|
+
__typename?: 'EcosystemAppPolicies';
|
|
8934
|
+
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
8935
|
+
};
|
|
8936
|
+
export type EcosystemAppPoliciesDataClassificationsArgs = {
|
|
8937
|
+
id: Scalars['ID'];
|
|
8938
|
+
};
|
|
8939
|
+
export type EcosystemDataClassificationPolicyContainer = {
|
|
8940
|
+
__typename?: 'EcosystemDataClassificationPolicyContainer';
|
|
8941
|
+
decision: EcosystemDataClassificationPolicyDecision;
|
|
8942
|
+
id: Scalars['ID'];
|
|
8943
|
+
};
|
|
8944
|
+
export type EcosystemDataClassificationPolicyDecision = {
|
|
8945
|
+
__typename?: 'EcosystemDataClassificationPolicyDecision';
|
|
8946
|
+
status: EcosystemDataClassificationPolicyDecisionStatus;
|
|
8947
|
+
};
|
|
8948
|
+
export declare enum EcosystemDataClassificationPolicyDecisionStatus {
|
|
8949
|
+
Allowed = "ALLOWED",
|
|
8950
|
+
Blocked = "BLOCKED"
|
|
8951
|
+
}
|
|
8952
|
+
export type EcosystemDataClassificationsContext = {
|
|
8953
|
+
__typename?: 'EcosystemDataClassificationsContext';
|
|
8954
|
+
containers?: Maybe<Array<Maybe<EcosystemDataClassificationPolicyContainer>>>;
|
|
8955
|
+
hasConstraints?: Maybe<Scalars['Boolean']>;
|
|
8956
|
+
id: Scalars['ID'];
|
|
8957
|
+
};
|
|
8958
|
+
export type EcosystemDataClassificationsContextContainersArgs = {
|
|
8959
|
+
ids: Array<Scalars['ID']>;
|
|
8960
|
+
};
|
|
8902
8961
|
export type EcosystemMutation = {
|
|
8903
8962
|
__typename?: 'EcosystemMutation';
|
|
8904
8963
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -8961,6 +9020,7 @@ export type EcosystemQuery = {
|
|
|
8961
9020
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
8962
9021
|
forgeContributors?: Maybe<ForgeAuditLogsContributorsActivityResult>;
|
|
8963
9022
|
forgeAlerts?: Maybe<ForgeAlertsQuery>;
|
|
9023
|
+
appPolicies?: Maybe<EcosystemAppPolicies>;
|
|
8964
9024
|
};
|
|
8965
9025
|
export type EcosystemQueryUserGrantsArgs = {
|
|
8966
9026
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9842,6 +9902,7 @@ export declare enum GrantCheckProduct {
|
|
|
9842
9902
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
9843
9903
|
Confluence = "CONFLUENCE",
|
|
9844
9904
|
Compass = "COMPASS",
|
|
9905
|
+
Townsquare = "TOWNSQUARE",
|
|
9845
9906
|
NoGrantChecks = "NO_GRANT_CHECKS"
|
|
9846
9907
|
}
|
|
9847
9908
|
export type Graph = {
|
|
@@ -10793,6 +10854,7 @@ export type HamsEntitlement = CommerceEntitlement & {
|
|
|
10793
10854
|
entitlementId?: Maybe<Scalars['String']>;
|
|
10794
10855
|
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
10795
10856
|
entitlementSource?: Maybe<Scalars['String']>;
|
|
10857
|
+
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
10796
10858
|
futureEdition?: Maybe<Scalars['String']>;
|
|
10797
10859
|
futureEditionTransition?: Maybe<Scalars['String']>;
|
|
10798
10860
|
id: Scalars['ID'];
|
|
@@ -10810,12 +10872,24 @@ export type HamsEntitlement = CommerceEntitlement & {
|
|
|
10810
10872
|
trialEditionEndDate?: Maybe<Scalars['String']>;
|
|
10811
10873
|
trialEndDate?: Maybe<Scalars['String']>;
|
|
10812
10874
|
};
|
|
10875
|
+
export type HamsEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
10876
|
+
__typename?: 'HamsEntitlementExperienceCapabilities';
|
|
10877
|
+
changeOffering?: Maybe<HamsExperienceCapability>;
|
|
10878
|
+
};
|
|
10879
|
+
export type HamsEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
10880
|
+
offeringKey: Scalars['ID'];
|
|
10881
|
+
};
|
|
10813
10882
|
export type HamsEntitlementMigrationEvaluation = {
|
|
10814
10883
|
__typename?: 'HamsEntitlementMigrationEvaluation';
|
|
10815
10884
|
btfSourceAccountId?: Maybe<Scalars['String']>;
|
|
10816
10885
|
usageLimit?: Maybe<Scalars['Int']>;
|
|
10817
10886
|
usageType?: Maybe<Scalars['String']>;
|
|
10818
10887
|
};
|
|
10888
|
+
export type HamsExperienceCapability = CommerceExperienceCapability & {
|
|
10889
|
+
__typename?: 'HamsExperienceCapability';
|
|
10890
|
+
experienceUrl?: Maybe<Scalars['String']>;
|
|
10891
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']>;
|
|
10892
|
+
};
|
|
10819
10893
|
export type HamsPricingPlan = CommercePricingPlan & {
|
|
10820
10894
|
__typename?: 'HamsPricingPlan';
|
|
10821
10895
|
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
@@ -10848,6 +10922,10 @@ export type HelpCenter = Node & {
|
|
|
10848
10922
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
10849
10923
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
10850
10924
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
10925
|
+
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
10926
|
+
};
|
|
10927
|
+
export type HelpCenterHelpDesksArgs = {
|
|
10928
|
+
helpCenterAri: Scalars['ID'];
|
|
10851
10929
|
};
|
|
10852
10930
|
export type HelpCenterBranding = {
|
|
10853
10931
|
__typename?: 'HelpCenterBranding';
|
|
@@ -10894,6 +10972,43 @@ export type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
|
10894
10972
|
errors?: Maybe<Array<MutationError>>;
|
|
10895
10973
|
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
10896
10974
|
};
|
|
10975
|
+
export type HelpCenterHelpDesk = Node & {
|
|
10976
|
+
__typename?: 'HelpCenterHelpDesk';
|
|
10977
|
+
id: Scalars['ID'];
|
|
10978
|
+
name: Scalars['String'];
|
|
10979
|
+
description?: Maybe<Scalars['String']>;
|
|
10980
|
+
contactInfo?: Maybe<Scalars['String']>;
|
|
10981
|
+
};
|
|
10982
|
+
export type HelpCenterHelpDeskCreateInput = {
|
|
10983
|
+
helpCenterAri: Scalars['String'];
|
|
10984
|
+
name: Scalars['String'];
|
|
10985
|
+
description?: Maybe<Scalars['String']>;
|
|
10986
|
+
contactInfo?: Maybe<Scalars['String']>;
|
|
10987
|
+
};
|
|
10988
|
+
export type HelpCenterHelpDeskItemConnection = {
|
|
10989
|
+
__typename?: 'HelpCenterHelpDeskItemConnection';
|
|
10990
|
+
edges?: Maybe<Array<Maybe<HelpCenterHelpDeskItemEdge>>>;
|
|
10991
|
+
pageInfo: PageInfo;
|
|
10992
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
10993
|
+
};
|
|
10994
|
+
export type HelpCenterHelpDeskItemEdge = {
|
|
10995
|
+
__typename?: 'HelpCenterHelpDeskItemEdge';
|
|
10996
|
+
cursor: Scalars['String'];
|
|
10997
|
+
node?: Maybe<HelpCenterHelpDesk>;
|
|
10998
|
+
};
|
|
10999
|
+
export type HelpCenterHelpDeskPayload = Payload & {
|
|
11000
|
+
__typename?: 'HelpCenterHelpDeskPayload';
|
|
11001
|
+
success: Scalars['Boolean'];
|
|
11002
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11003
|
+
helpDeskId: Scalars['ID'];
|
|
11004
|
+
};
|
|
11005
|
+
export type HelpCenterHelpDeskQueryResult = HelpCenterHelpDesk | QueryError;
|
|
11006
|
+
export type HelpCenterHelpDeskUpdateInput = {
|
|
11007
|
+
helpDeskAri: Scalars['String'];
|
|
11008
|
+
name: Scalars['String'];
|
|
11009
|
+
description?: Maybe<Scalars['String']>;
|
|
11010
|
+
contactInfo?: Maybe<Scalars['String']>;
|
|
11011
|
+
};
|
|
10897
11012
|
export type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError;
|
|
10898
11013
|
export type HelpCenterHomePageLayout = {
|
|
10899
11014
|
__typename?: 'HelpCenterHomePageLayout';
|
|
@@ -10922,6 +11037,8 @@ export type HelpCenterMutationApi = {
|
|
|
10922
11037
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
10923
11038
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
10924
11039
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
11040
|
+
createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
11041
|
+
updateHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
10925
11042
|
};
|
|
10926
11043
|
export type HelpCenterMutationApiCreateTopicArgs = {
|
|
10927
11044
|
input: HelpCenterBulkCreateTopicsInput;
|
|
@@ -10938,6 +11055,12 @@ export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
|
10938
11055
|
export type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
10939
11056
|
input: HelpCenterUpdateInput;
|
|
10940
11057
|
};
|
|
11058
|
+
export type HelpCenterMutationApiCreateHelpDeskArgs = {
|
|
11059
|
+
input: HelpCenterHelpDeskCreateInput;
|
|
11060
|
+
};
|
|
11061
|
+
export type HelpCenterMutationApiUpdateHelpDeskArgs = {
|
|
11062
|
+
input: HelpCenterHelpDeskUpdateInput;
|
|
11063
|
+
};
|
|
10941
11064
|
export type HelpCenterName = {
|
|
10942
11065
|
__typename?: 'HelpCenterName';
|
|
10943
11066
|
default: Scalars['String'];
|
|
@@ -10953,6 +11076,7 @@ export type HelpCenterQueryApi = {
|
|
|
10953
11076
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
10954
11077
|
helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
10955
11078
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
11079
|
+
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
10956
11080
|
};
|
|
10957
11081
|
export type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
10958
11082
|
productName: Scalars['String'];
|
|
@@ -10971,6 +11095,10 @@ export type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
10971
11095
|
export type HelpCenterQueryApiMediaConfigArgs = {
|
|
10972
11096
|
helpCenterAri: Scalars['ID'];
|
|
10973
11097
|
};
|
|
11098
|
+
export type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
11099
|
+
helpCenterAri: Scalars['ID'];
|
|
11100
|
+
helpDeskAri: Scalars['ID'];
|
|
11101
|
+
};
|
|
10974
11102
|
export type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
10975
11103
|
export type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
10976
11104
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
@@ -12205,6 +12333,18 @@ export type JiraAddIssuesToFixVersionPayload = Payload & {
|
|
|
12205
12333
|
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
12206
12334
|
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
12207
12335
|
};
|
|
12336
|
+
export type JiraAddPostIncidentReviewLinkMutationInput = {
|
|
12337
|
+
incidentId: Scalars['ID'];
|
|
12338
|
+
projectId: Scalars['ID'];
|
|
12339
|
+
postIncidentReviewUrl: Scalars['URL'];
|
|
12340
|
+
postIncidentReviewTitle?: Maybe<Scalars['String']>;
|
|
12341
|
+
};
|
|
12342
|
+
export type JiraAddPostIncidentReviewLinkMutationPayload = Payload & {
|
|
12343
|
+
__typename?: 'JiraAddPostIncidentReviewLinkMutationPayload';
|
|
12344
|
+
success: Scalars['Boolean'];
|
|
12345
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12346
|
+
postIncidentReviewLink?: Maybe<JiraPostIncidentReviewLink>;
|
|
12347
|
+
};
|
|
12208
12348
|
export type JiraAddRelatedWorkToVersionInput = {
|
|
12209
12349
|
versionId: Scalars['ID'];
|
|
12210
12350
|
relatedWorkId: Scalars['ID'];
|
|
@@ -15828,6 +15968,8 @@ export type JiraMutation = {
|
|
|
15828
15968
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
15829
15969
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
15830
15970
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
15971
|
+
addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
|
|
15972
|
+
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
15831
15973
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
15832
15974
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
15833
15975
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
@@ -15989,6 +16131,12 @@ export type JiraMutationDeleteGlobalPermissionGrantArgs = {
|
|
|
15989
16131
|
cloudId: Scalars['ID'];
|
|
15990
16132
|
input: JiraGlobalPermissionDeleteGroupGrantInput;
|
|
15991
16133
|
};
|
|
16134
|
+
export type JiraMutationAddPostIncidentReviewLinkArgs = {
|
|
16135
|
+
input: JiraAddPostIncidentReviewLinkMutationInput;
|
|
16136
|
+
};
|
|
16137
|
+
export type JiraMutationRemovePostIncidentReviewLinkArgs = {
|
|
16138
|
+
input: JiraRemovePostIncidentReviewLinkMutationInput;
|
|
16139
|
+
};
|
|
15992
16140
|
export type JiraMutationUpdateLabelsFieldArgs = {
|
|
15993
16141
|
input: JiraUpdateLabelsFieldInput;
|
|
15994
16142
|
};
|
|
@@ -16690,6 +16838,12 @@ export type JiraPlatformComment = JiraComment & Node & {
|
|
|
16690
16838
|
updated?: Maybe<Scalars['DateTime']>;
|
|
16691
16839
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
16692
16840
|
};
|
|
16841
|
+
export type JiraPostIncidentReviewLink = Node & {
|
|
16842
|
+
__typename?: 'JiraPostIncidentReviewLink';
|
|
16843
|
+
id: Scalars['ID'];
|
|
16844
|
+
url?: Maybe<Scalars['URL']>;
|
|
16845
|
+
title?: Maybe<Scalars['String']>;
|
|
16846
|
+
};
|
|
16693
16847
|
export type JiraPriority = Node & {
|
|
16694
16848
|
__typename?: 'JiraPriority';
|
|
16695
16849
|
id: Scalars['ID'];
|
|
@@ -17315,6 +17469,7 @@ export type JiraQuery = {
|
|
|
17315
17469
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
17316
17470
|
resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
|
|
17317
17471
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
17472
|
+
resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
|
|
17318
17473
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
17319
17474
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
17320
17475
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
@@ -17344,6 +17499,7 @@ export type JiraQuery = {
|
|
|
17344
17499
|
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
17345
17500
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
17346
17501
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
17502
|
+
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
17347
17503
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
17348
17504
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
17349
17505
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -17542,6 +17698,14 @@ export type JiraQueryResourceUsageMetricsArgs = {
|
|
|
17542
17698
|
last?: Maybe<Scalars['Int']>;
|
|
17543
17699
|
before?: Maybe<Scalars['String']>;
|
|
17544
17700
|
};
|
|
17701
|
+
export type JiraQueryResourceUsageCustomFieldRecommendationsArgs = {
|
|
17702
|
+
cloudId: Scalars['ID'];
|
|
17703
|
+
statuses?: Maybe<Array<Maybe<JiraResourceUsageRecommendationStatus>>>;
|
|
17704
|
+
first?: Maybe<Scalars['Int']>;
|
|
17705
|
+
after?: Maybe<Scalars['String']>;
|
|
17706
|
+
last?: Maybe<Scalars['Int']>;
|
|
17707
|
+
before?: Maybe<Scalars['String']>;
|
|
17708
|
+
};
|
|
17545
17709
|
export type JiraQueryUserPreferencesArgs = {
|
|
17546
17710
|
cloudId: Scalars['ID'];
|
|
17547
17711
|
};
|
|
@@ -17666,6 +17830,9 @@ export type JiraQueryJwmViewItemsArgs = {
|
|
|
17666
17830
|
last?: Maybe<Scalars['Int']>;
|
|
17667
17831
|
before?: Maybe<Scalars['String']>;
|
|
17668
17832
|
};
|
|
17833
|
+
export type JiraQueryPostIncidentReviewLinksByIdsArgs = {
|
|
17834
|
+
ids: Array<Scalars['ID']>;
|
|
17835
|
+
};
|
|
17669
17836
|
export type JiraQueryAllGrantTypeKeysArgs = {
|
|
17670
17837
|
cloudId: Scalars['ID'];
|
|
17671
17838
|
};
|
|
@@ -17980,6 +18147,15 @@ export type JiraRemoveIssuesFromFixVersionPayload = Payload & {
|
|
|
17980
18147
|
issuesWithMissingResolvePermission?: Maybe<Array<Scalars['String']>>;
|
|
17981
18148
|
issuesWithMissingEditPermission?: Maybe<Array<Scalars['String']>>;
|
|
17982
18149
|
};
|
|
18150
|
+
export type JiraRemovePostIncidentReviewLinkMutationInput = {
|
|
18151
|
+
incidentId: Scalars['ID'];
|
|
18152
|
+
postIncidentReviewLinkId: Scalars['ID'];
|
|
18153
|
+
};
|
|
18154
|
+
export type JiraRemovePostIncidentReviewLinkMutationPayload = Payload & {
|
|
18155
|
+
__typename?: 'JiraRemovePostIncidentReviewLinkMutationPayload';
|
|
18156
|
+
success: Scalars['Boolean'];
|
|
18157
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18158
|
+
};
|
|
17983
18159
|
export type JiraRemoveRelatedWorkFromVersionInput = {
|
|
17984
18160
|
versionId: Scalars['ID'];
|
|
17985
18161
|
relatedWorkId?: Maybe<Scalars['ID']>;
|
|
@@ -18049,6 +18225,33 @@ export type JiraResolutionFieldPayload = Payload & {
|
|
|
18049
18225
|
export type JiraResolutionInput = {
|
|
18050
18226
|
resolutionId: Scalars['ID'];
|
|
18051
18227
|
};
|
|
18228
|
+
export type JiraResourceUsageCustomFieldRecommendation = Node & {
|
|
18229
|
+
__typename?: 'JiraResourceUsageCustomFieldRecommendation';
|
|
18230
|
+
id: Scalars['ID'];
|
|
18231
|
+
recommendationId: Scalars['Long'];
|
|
18232
|
+
status: JiraResourceUsageRecommendationStatus;
|
|
18233
|
+
impact: Scalars['Float'];
|
|
18234
|
+
customFieldTarget?: Maybe<Scalars['String']>;
|
|
18235
|
+
customFieldName?: Maybe<Scalars['String']>;
|
|
18236
|
+
customFieldType?: Maybe<Scalars['String']>;
|
|
18237
|
+
customFieldDescription?: Maybe<Scalars['String']>;
|
|
18238
|
+
customFieldAction: JiraResourceUsageCustomFieldRecommendationAction;
|
|
18239
|
+
};
|
|
18240
|
+
export declare enum JiraResourceUsageCustomFieldRecommendationAction {
|
|
18241
|
+
Trash = "TRASH"
|
|
18242
|
+
}
|
|
18243
|
+
export type JiraResourceUsageCustomFieldRecommendationConnection = {
|
|
18244
|
+
__typename?: 'JiraResourceUsageCustomFieldRecommendationConnection';
|
|
18245
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
18246
|
+
pageInfo: PageInfo;
|
|
18247
|
+
edges?: Maybe<Array<Maybe<JiraResourceUsageCustomFieldRecommendationEdge>>>;
|
|
18248
|
+
nodes?: Maybe<Array<Maybe<JiraResourceUsageCustomFieldRecommendation>>>;
|
|
18249
|
+
};
|
|
18250
|
+
export type JiraResourceUsageCustomFieldRecommendationEdge = {
|
|
18251
|
+
__typename?: 'JiraResourceUsageCustomFieldRecommendationEdge';
|
|
18252
|
+
node?: Maybe<JiraResourceUsageCustomFieldRecommendation>;
|
|
18253
|
+
cursor: Scalars['String'];
|
|
18254
|
+
};
|
|
18052
18255
|
export type JiraResourceUsageMetric = Node & {
|
|
18053
18256
|
__typename?: 'JiraResourceUsageMetric';
|
|
18054
18257
|
id: Scalars['ID'];
|
|
@@ -18095,6 +18298,11 @@ export type JiraResourceUsageMetricValueEdge = {
|
|
|
18095
18298
|
node?: Maybe<JiraResourceUsageMetricValue>;
|
|
18096
18299
|
cursor: Scalars['String'];
|
|
18097
18300
|
};
|
|
18301
|
+
export declare enum JiraResourceUsageRecommendationStatus {
|
|
18302
|
+
New = "NEW",
|
|
18303
|
+
Obsolete = "OBSOLETE",
|
|
18304
|
+
Executed = "EXECUTED"
|
|
18305
|
+
}
|
|
18098
18306
|
export declare enum JiraReviewState {
|
|
18099
18307
|
Review = "REVIEW",
|
|
18100
18308
|
Approval = "APPROVAL",
|
|
@@ -25575,6 +25783,10 @@ export declare enum Scope {
|
|
|
25575
25783
|
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
25576
25784
|
ReadTeam = "READ_TEAM",
|
|
25577
25785
|
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
25786
|
+
ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
|
|
25787
|
+
ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
|
|
25788
|
+
ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
|
|
25789
|
+
ReadTownsquareComment = "READ_TOWNSQUARE_COMMENT",
|
|
25578
25790
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
25579
25791
|
CatalogRead = "CATALOG_READ",
|
|
25580
25792
|
ApiAccess = "API_ACCESS"
|
|
@@ -26065,6 +26277,10 @@ export type ShepherdAlert = Node & {
|
|
|
26065
26277
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
26066
26278
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
26067
26279
|
};
|
|
26280
|
+
export declare enum ShepherdAlertDetectionCategory {
|
|
26281
|
+
Data = "DATA",
|
|
26282
|
+
Threat = "THREAT"
|
|
26283
|
+
}
|
|
26068
26284
|
export type ShepherdAlertEdge = {
|
|
26069
26285
|
__typename?: 'ShepherdAlertEdge';
|
|
26070
26286
|
cursor?: Maybe<Scalars['String']>;
|
|
@@ -26138,6 +26354,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
26138
26354
|
UpdatedSamlConfig = "UPDATED_SAML_CONFIG",
|
|
26139
26355
|
UserAddedToBeacon = "USER_ADDED_TO_BEACON",
|
|
26140
26356
|
UserGrantedRole = "USER_GRANTED_ROLE",
|
|
26357
|
+
UserRemovedFromBeacon = "USER_REMOVED_FROM_BEACON",
|
|
26141
26358
|
UserRevokedRole = "USER_REVOKED_ROLE",
|
|
26142
26359
|
VerifiedDomainVerification = "VERIFIED_DOMAIN_VERIFICATION"
|
|
26143
26360
|
}
|
|
@@ -26228,9 +26445,12 @@ export type ShepherdDescriptionTemplate = {
|
|
|
26228
26445
|
};
|
|
26229
26446
|
export type ShepherdDetection = {
|
|
26230
26447
|
__typename?: 'ShepherdDetection';
|
|
26448
|
+
businessTypes?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
26449
|
+
category: ShepherdAlertDetectionCategory;
|
|
26231
26450
|
description?: Maybe<Scalars['JSON']>;
|
|
26232
26451
|
id: Scalars['ID'];
|
|
26233
26452
|
product: ShepherdAtlassianProduct;
|
|
26453
|
+
regions?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
26234
26454
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
26235
26455
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
26236
26456
|
settings?: Maybe<Array<ShepherdDetectionSetting>>;
|
|
@@ -28036,6 +28256,7 @@ export type TownsquareQueryApi = {
|
|
|
28036
28256
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
28037
28257
|
projectTql?: Maybe<TownsquareProjectConnection>;
|
|
28038
28258
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
28259
|
+
allWorkspacesForOrg?: Maybe<TownsquareWorkspaceConnection>;
|
|
28039
28260
|
};
|
|
28040
28261
|
export type TownsquareQueryApiProjectArgs = {
|
|
28041
28262
|
ari: Scalars['String'];
|
|
@@ -28081,6 +28302,12 @@ export type TownsquareQueryApiGoalTqlArgs = {
|
|
|
28081
28302
|
first?: Maybe<Scalars['Int']>;
|
|
28082
28303
|
sort?: Maybe<Array<Maybe<TownsquareGoalSortEnum>>>;
|
|
28083
28304
|
};
|
|
28305
|
+
export type TownsquareQueryApiAllWorkspacesForOrgArgs = {
|
|
28306
|
+
first?: Maybe<Scalars['Int']>;
|
|
28307
|
+
after?: Maybe<Scalars['String']>;
|
|
28308
|
+
organisationId?: Maybe<Scalars['String']>;
|
|
28309
|
+
cloudId?: Maybe<Scalars['String']>;
|
|
28310
|
+
};
|
|
28084
28311
|
export type TownsquareTag = Node & {
|
|
28085
28312
|
__typename?: 'TownsquareTag';
|
|
28086
28313
|
description?: Maybe<Scalars['String']>;
|
|
@@ -28120,6 +28347,22 @@ export type TownsquareTeam = Node & {
|
|
|
28120
28347
|
id: Scalars['ID'];
|
|
28121
28348
|
name?: Maybe<Scalars['String']>;
|
|
28122
28349
|
};
|
|
28350
|
+
export type TownsquareWorkspace = Node & {
|
|
28351
|
+
__typename?: 'TownsquareWorkspace';
|
|
28352
|
+
cloudId: Scalars['String'];
|
|
28353
|
+
id: Scalars['ID'];
|
|
28354
|
+
name: Scalars['String'];
|
|
28355
|
+
};
|
|
28356
|
+
export type TownsquareWorkspaceConnection = {
|
|
28357
|
+
__typename?: 'TownsquareWorkspaceConnection';
|
|
28358
|
+
edges?: Maybe<Array<Maybe<TownsquareWorkspaceEdge>>>;
|
|
28359
|
+
pageInfo: PageInfo;
|
|
28360
|
+
};
|
|
28361
|
+
export type TownsquareWorkspaceEdge = {
|
|
28362
|
+
__typename?: 'TownsquareWorkspaceEdge';
|
|
28363
|
+
cursor: Scalars['String'];
|
|
28364
|
+
node?: Maybe<TownsquareWorkspace>;
|
|
28365
|
+
};
|
|
28123
28366
|
export type TransitionFilter = {
|
|
28124
28367
|
from: Scalars['String'];
|
|
28125
28368
|
to: Scalars['String'];
|