@forge/cli-shared 3.17.1-next.9 → 3.17.2-next.0
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 +66 -0
- package/out/graphql/graphql-types.d.ts +270 -13
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +18 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.17.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [8b993ad6]
|
|
8
|
+
- @forge/manifest@4.19.1-next.0
|
|
9
|
+
|
|
10
|
+
## 3.17.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- ea21bdd: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @graphql-tools/schema
|
|
17
|
+
- graphql-tools
|
|
18
|
+
|
|
19
|
+
- 9e74985: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- @sentry/node
|
|
22
|
+
|
|
23
|
+
- 388380b: Bumping dependencies via Renovate:
|
|
24
|
+
|
|
25
|
+
- inquirer
|
|
26
|
+
|
|
27
|
+
- a30d4a3: Bumping dependencies via Renovate:
|
|
28
|
+
|
|
29
|
+
- @types/ignore-walk
|
|
30
|
+
|
|
31
|
+
- 2cba32e: Fixes for error reporting
|
|
32
|
+
- 94ce678: Bumping dependencies via Renovate:
|
|
33
|
+
|
|
34
|
+
- fp-ts
|
|
35
|
+
|
|
36
|
+
- bdbea8e1: Bumping dependencies via Renovate:
|
|
37
|
+
|
|
38
|
+
- @sentry/node
|
|
39
|
+
|
|
40
|
+
- ac89229: Bumping dependencies via Renovate:
|
|
41
|
+
|
|
42
|
+
- @atlassian/xen-test-util
|
|
43
|
+
|
|
44
|
+
- a777103: Minor refactoring
|
|
45
|
+
- Updated dependencies [484f9079]
|
|
46
|
+
- Updated dependencies [4640d4fb]
|
|
47
|
+
- Updated dependencies [8a1848c]
|
|
48
|
+
- Updated dependencies [161031c]
|
|
49
|
+
- Updated dependencies [7827779]
|
|
50
|
+
- Updated dependencies [06a3e19]
|
|
51
|
+
- @forge/manifest@4.19.0
|
|
52
|
+
|
|
53
|
+
## 3.17.1-next.11
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- Updated dependencies [7827779]
|
|
58
|
+
- @forge/manifest@4.19.0-next.5
|
|
59
|
+
|
|
60
|
+
## 3.17.1-next.10
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- ea21bdd: Bumping dependencies via Renovate:
|
|
65
|
+
|
|
66
|
+
- @graphql-tools/schema
|
|
67
|
+
- graphql-tools
|
|
68
|
+
|
|
3
69
|
## 3.17.1-next.9
|
|
4
70
|
|
|
5
71
|
### Patch Changes
|
|
@@ -621,7 +621,8 @@ export declare enum ApiGroup {
|
|
|
621
621
|
CustomerService = "CUSTOMER_SERVICE",
|
|
622
622
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
623
623
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
624
|
-
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY"
|
|
624
|
+
FeatureReleaseQuery = "FEATURE_RELEASE_QUERY",
|
|
625
|
+
Papi = "PAPI"
|
|
625
626
|
}
|
|
626
627
|
export type App = {
|
|
627
628
|
__typename?: 'App';
|
|
@@ -1110,6 +1111,7 @@ export type AppRecContext = {
|
|
|
1110
1111
|
containers?: Maybe<Scalars['JSON']>;
|
|
1111
1112
|
locale?: Maybe<Scalars['String']>;
|
|
1112
1113
|
sessionId?: Maybe<Scalars['ID']>;
|
|
1114
|
+
useCase?: Maybe<Scalars['String']>;
|
|
1113
1115
|
};
|
|
1114
1116
|
export type AppRecDismissRecommendationInput = {
|
|
1115
1117
|
productId: Scalars['ID'];
|
|
@@ -7572,6 +7574,16 @@ export type DevOpsDeploymentProvider = DevOpsDataProvider & {
|
|
|
7572
7574
|
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7573
7575
|
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7574
7576
|
};
|
|
7577
|
+
export type DevOpsDesignProvider = DevOpsDataProvider & {
|
|
7578
|
+
__typename?: 'DevOpsDesignProvider';
|
|
7579
|
+
id: Scalars['ID'];
|
|
7580
|
+
name?: Maybe<Scalars['String']>;
|
|
7581
|
+
homeUrl?: Maybe<Scalars['URL']>;
|
|
7582
|
+
logoUrl?: Maybe<Scalars['URL']>;
|
|
7583
|
+
documentationUrl?: Maybe<Scalars['URL']>;
|
|
7584
|
+
appInstallationId?: Maybe<Scalars['ID']>;
|
|
7585
|
+
grant3LOUrl?: Maybe<Scalars['String']>;
|
|
7586
|
+
};
|
|
7575
7587
|
export type DevOpsDevInfoProvider = DevOpsDataProvider & {
|
|
7576
7588
|
__typename?: 'DevOpsDevInfoProvider';
|
|
7577
7589
|
id: Scalars['ID'];
|
|
@@ -7941,7 +7953,8 @@ export declare enum DevOpsProviderType {
|
|
|
7941
7953
|
FeatureFlag = "FEATURE_FLAG",
|
|
7942
7954
|
RemoteLinks = "REMOTE_LINKS",
|
|
7943
7955
|
Security = "SECURITY",
|
|
7944
|
-
Documentation = "DOCUMENTATION"
|
|
7956
|
+
Documentation = "DOCUMENTATION",
|
|
7957
|
+
Design = "DESIGN"
|
|
7945
7958
|
}
|
|
7946
7959
|
export type DevOpsProviders = {
|
|
7947
7960
|
__typename?: 'DevOpsProviders';
|
|
@@ -7952,6 +7965,7 @@ export type DevOpsProviders = {
|
|
|
7952
7965
|
remoteLinksProviders?: Maybe<Array<Maybe<DevOpsRemoteLinksProvider>>>;
|
|
7953
7966
|
securityProviders?: Maybe<Array<Maybe<DevOpsSecurityProvider>>>;
|
|
7954
7967
|
documentationProviders?: Maybe<Array<Maybe<DevOpsDocumentationProvider>>>;
|
|
7968
|
+
designProviders?: Maybe<Array<Maybe<DevOpsDesignProvider>>>;
|
|
7955
7969
|
};
|
|
7956
7970
|
export declare enum DevOpsPullRequestApprovalStatus {
|
|
7957
7971
|
Approved = "APPROVED",
|
|
@@ -9658,6 +9672,7 @@ export declare enum GrantCheckProduct {
|
|
|
9658
9672
|
}
|
|
9659
9673
|
export type Graph = {
|
|
9660
9674
|
__typename?: 'Graph';
|
|
9675
|
+
fetchAllRelationships?: Maybe<GraphSimpleRelationshipConnection>;
|
|
9661
9676
|
parentDocumentHasChildDocument?: Maybe<GraphJiraDocumentConnection>;
|
|
9662
9677
|
parentDocumentHasChildDocumentInverse?: Maybe<GraphJiraDocumentConnection>;
|
|
9663
9678
|
parentDocumentHasChildDocumentRelationship?: Maybe<GraphParentDocumentHasChildDocumentRelationshipConnection>;
|
|
@@ -9680,6 +9695,14 @@ export type Graph = {
|
|
|
9680
9695
|
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
9681
9696
|
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
9682
9697
|
};
|
|
9698
|
+
export type GraphFetchAllRelationshipsArgs = {
|
|
9699
|
+
after?: Maybe<Scalars['String']>;
|
|
9700
|
+
ascending?: Maybe<Scalars['Boolean']>;
|
|
9701
|
+
first?: Maybe<Scalars['Int']>;
|
|
9702
|
+
from: Scalars['ID'];
|
|
9703
|
+
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
9704
|
+
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
9705
|
+
};
|
|
9683
9706
|
export type GraphParentDocumentHasChildDocumentArgs = {
|
|
9684
9707
|
after?: Maybe<Scalars['String']>;
|
|
9685
9708
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -9897,6 +9920,18 @@ export type GraphCreateSprintRetrospectivePageInput = {
|
|
|
9897
9920
|
to: Scalars['ID'];
|
|
9898
9921
|
updatedAt?: Maybe<Scalars['DateTime']>;
|
|
9899
9922
|
};
|
|
9923
|
+
export type GraphGeneric = Node & {
|
|
9924
|
+
__typename?: 'GraphGeneric';
|
|
9925
|
+
id: Scalars['ID'];
|
|
9926
|
+
fetchAllRelationships?: Maybe<GraphSimpleRelationshipConnection>;
|
|
9927
|
+
data?: Maybe<GraphRelationshipNodeData>;
|
|
9928
|
+
};
|
|
9929
|
+
export type GraphGenericFetchAllRelationshipsArgs = {
|
|
9930
|
+
after?: Maybe<Scalars['String']>;
|
|
9931
|
+
ascending?: Maybe<Scalars['Boolean']>;
|
|
9932
|
+
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
9933
|
+
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
9934
|
+
};
|
|
9900
9935
|
export type GraphIssueAssociatedPrPayload = Payload & {
|
|
9901
9936
|
__typename?: 'GraphIssueAssociatedPrPayload';
|
|
9902
9937
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10372,6 +10407,19 @@ export declare enum GraphQueryMetadataSortEnum {
|
|
|
10372
10407
|
Asc = "ASC",
|
|
10373
10408
|
Desc = "DESC"
|
|
10374
10409
|
}
|
|
10410
|
+
export type GraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | JiraIssue | JiraProject | JiraVersion | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
10411
|
+
export type GraphSimpleRelationship = {
|
|
10412
|
+
__typename?: 'GraphSimpleRelationship';
|
|
10413
|
+
from: GraphGeneric;
|
|
10414
|
+
lastUpdated: Scalars['DateTime'];
|
|
10415
|
+
to: GraphGeneric;
|
|
10416
|
+
type: Scalars['String'];
|
|
10417
|
+
};
|
|
10418
|
+
export type GraphSimpleRelationshipConnection = {
|
|
10419
|
+
__typename?: 'GraphSimpleRelationshipConnection';
|
|
10420
|
+
pageInfo: PageInfo;
|
|
10421
|
+
relationships: Array<Maybe<GraphSimpleRelationship>>;
|
|
10422
|
+
};
|
|
10375
10423
|
export type GraphSprintRetrospectivePagePayload = Payload & {
|
|
10376
10424
|
__typename?: 'GraphSprintRetrospectivePagePayload';
|
|
10377
10425
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -10601,15 +10649,11 @@ export type HelpLayout = Node & {
|
|
|
10601
10649
|
__typename?: 'HelpLayout';
|
|
10602
10650
|
id: Scalars['ID'];
|
|
10603
10651
|
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
10604
|
-
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
10605
10652
|
};
|
|
10606
10653
|
export type HelpLayoutSectionsArgs = {
|
|
10607
10654
|
first?: Maybe<Scalars['Int']>;
|
|
10608
10655
|
after?: Maybe<Scalars['String']>;
|
|
10609
10656
|
};
|
|
10610
|
-
export type HelpLayoutMediaConfigArgs = {
|
|
10611
|
-
parentAri: Scalars['ID'];
|
|
10612
|
-
};
|
|
10613
10657
|
export type HelpLayoutAtomicElement = HelpLayoutImageAtomicElement | HelpLayoutHeadingAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
10614
10658
|
export type HelpLayoutAtomicElementInput = {
|
|
10615
10659
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -10798,10 +10842,14 @@ export type HelpLayoutQueryApi = {
|
|
|
10798
10842
|
__typename?: 'HelpLayoutQueryApi';
|
|
10799
10843
|
layout?: Maybe<HelpLayoutResult>;
|
|
10800
10844
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
10845
|
+
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
10801
10846
|
};
|
|
10802
10847
|
export type HelpLayoutQueryApiLayoutArgs = {
|
|
10803
10848
|
id: Scalars['ID'];
|
|
10804
10849
|
};
|
|
10850
|
+
export type HelpLayoutQueryApiMediaConfigArgs = {
|
|
10851
|
+
parentAri: Scalars['ID'];
|
|
10852
|
+
};
|
|
10805
10853
|
export type HelpLayoutResult = HelpLayout | QueryError;
|
|
10806
10854
|
export type HelpLayoutSearchAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
10807
10855
|
__typename?: 'HelpLayoutSearchAtomicElement';
|
|
@@ -16627,6 +16675,7 @@ export type JiraQuery = {
|
|
|
16627
16675
|
issueSearchStatus?: Maybe<JiraIssueSearchStatus>;
|
|
16628
16676
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
16629
16677
|
isNaturalLanguageSearchEnabled?: Maybe<Scalars['Boolean']>;
|
|
16678
|
+
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
16630
16679
|
permission?: Maybe<JiraPermission>;
|
|
16631
16680
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
16632
16681
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -16823,6 +16872,15 @@ export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
|
16823
16872
|
export type JiraQueryIsNaturalLanguageSearchEnabledArgs = {
|
|
16824
16873
|
cloudId: Scalars['ID'];
|
|
16825
16874
|
};
|
|
16875
|
+
export type JiraQueryFieldSetsByIdArgs = {
|
|
16876
|
+
cloudId: Scalars['ID'];
|
|
16877
|
+
fieldSetIds: Array<Scalars['String']>;
|
|
16878
|
+
first?: Maybe<Scalars['Int']>;
|
|
16879
|
+
after?: Maybe<Scalars['String']>;
|
|
16880
|
+
last?: Maybe<Scalars['Int']>;
|
|
16881
|
+
before?: Maybe<Scalars['String']>;
|
|
16882
|
+
filter?: Maybe<JiraIssueSearchFieldSetsFilter>;
|
|
16883
|
+
};
|
|
16826
16884
|
export type JiraQueryPermissionArgs = {
|
|
16827
16885
|
cloudId: Scalars['ID'];
|
|
16828
16886
|
type: JiraPermissionType;
|
|
@@ -17695,6 +17753,14 @@ export type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
17695
17753
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
17696
17754
|
hasRestrictedParent?: Maybe<Scalars['Boolean']>;
|
|
17697
17755
|
};
|
|
17756
|
+
export type JiraServiceManagementAttachmentPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17757
|
+
__typename?: 'JiraServiceManagementAttachmentPreviewField';
|
|
17758
|
+
type?: Maybe<Scalars['String']>;
|
|
17759
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17760
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17761
|
+
label?: Maybe<Scalars['String']>;
|
|
17762
|
+
description?: Maybe<Scalars['String']>;
|
|
17763
|
+
};
|
|
17698
17764
|
export type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput = {
|
|
17699
17765
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
17700
17766
|
projectId: Scalars['ID'];
|
|
@@ -17810,6 +17876,14 @@ export declare enum JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIn
|
|
|
17810
17876
|
export type JiraServiceManagementCreateRequestTypeFromTemplateWorkflowIssueTypeReferenceInput = {
|
|
17811
17877
|
workflowIssueTypeId: Scalars['ID'];
|
|
17812
17878
|
};
|
|
17879
|
+
export type JiraServiceManagementDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17880
|
+
__typename?: 'JiraServiceManagementDatePreviewField';
|
|
17881
|
+
type?: Maybe<Scalars['String']>;
|
|
17882
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17883
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17884
|
+
label?: Maybe<Scalars['String']>;
|
|
17885
|
+
description?: Maybe<Scalars['String']>;
|
|
17886
|
+
};
|
|
17813
17887
|
export type JiraServiceManagementDateTimeField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
17814
17888
|
__typename?: 'JiraServiceManagementDateTimeField';
|
|
17815
17889
|
id: Scalars['ID'];
|
|
@@ -17822,6 +17896,14 @@ export type JiraServiceManagementDateTimeField = Node & JiraIssueField & JiraIss
|
|
|
17822
17896
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
17823
17897
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
17824
17898
|
};
|
|
17899
|
+
export type JiraServiceManagementDateTimePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17900
|
+
__typename?: 'JiraServiceManagementDateTimePreviewField';
|
|
17901
|
+
type?: Maybe<Scalars['String']>;
|
|
17902
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17903
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17904
|
+
label?: Maybe<Scalars['String']>;
|
|
17905
|
+
description?: Maybe<Scalars['String']>;
|
|
17906
|
+
};
|
|
17825
17907
|
export type JiraServiceManagementDecision = {
|
|
17826
17908
|
__typename?: 'JiraServiceManagementDecision';
|
|
17827
17909
|
approver?: Maybe<User>;
|
|
@@ -17838,6 +17920,14 @@ export type JiraServiceManagementDecisionEdge = {
|
|
|
17838
17920
|
node?: Maybe<JiraServiceManagementDecision>;
|
|
17839
17921
|
cursor: Scalars['String'];
|
|
17840
17922
|
};
|
|
17923
|
+
export type JiraServiceManagementDueDatePreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17924
|
+
__typename?: 'JiraServiceManagementDueDatePreviewField';
|
|
17925
|
+
type?: Maybe<Scalars['String']>;
|
|
17926
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17927
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17928
|
+
label?: Maybe<Scalars['String']>;
|
|
17929
|
+
description?: Maybe<Scalars['String']>;
|
|
17930
|
+
};
|
|
17841
17931
|
export type JiraServiceManagementFeedback = {
|
|
17842
17932
|
__typename?: 'JiraServiceManagementFeedback';
|
|
17843
17933
|
rating?: Maybe<Scalars['Int']>;
|
|
@@ -17884,6 +17974,31 @@ export type JiraServiceManagementMajorIncidentField = Node & JiraIssueField & Ji
|
|
|
17884
17974
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
17885
17975
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
17886
17976
|
};
|
|
17977
|
+
export type JiraServiceManagementMultiSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17978
|
+
__typename?: 'JiraServiceManagementMultiSelectPreviewField';
|
|
17979
|
+
type?: Maybe<Scalars['String']>;
|
|
17980
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17981
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17982
|
+
label?: Maybe<Scalars['String']>;
|
|
17983
|
+
description?: Maybe<Scalars['String']>;
|
|
17984
|
+
options?: Maybe<Array<Maybe<JiraServiceManagementPreviewOption>>>;
|
|
17985
|
+
};
|
|
17986
|
+
export type JiraServiceManagementMultiServicePickerPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17987
|
+
__typename?: 'JiraServiceManagementMultiServicePickerPreviewField';
|
|
17988
|
+
type?: Maybe<Scalars['String']>;
|
|
17989
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17990
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17991
|
+
label?: Maybe<Scalars['String']>;
|
|
17992
|
+
description?: Maybe<Scalars['String']>;
|
|
17993
|
+
};
|
|
17994
|
+
export type JiraServiceManagementMultiUserPickerPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
17995
|
+
__typename?: 'JiraServiceManagementMultiUserPickerPreviewField';
|
|
17996
|
+
type?: Maybe<Scalars['String']>;
|
|
17997
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
17998
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
17999
|
+
label?: Maybe<Scalars['String']>;
|
|
18000
|
+
description?: Maybe<Scalars['String']>;
|
|
18001
|
+
};
|
|
17887
18002
|
export type JiraServiceManagementMultipleSelectUserPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
17888
18003
|
__typename?: 'JiraServiceManagementMultipleSelectUserPickerField';
|
|
17889
18004
|
id: Scalars['ID'];
|
|
@@ -17997,6 +18112,10 @@ export declare enum JiraServiceManagementPractice {
|
|
|
17997
18112
|
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
17998
18113
|
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
17999
18114
|
}
|
|
18115
|
+
export type JiraServiceManagementPreviewOption = {
|
|
18116
|
+
__typename?: 'JiraServiceManagementPreviewOption';
|
|
18117
|
+
value?: Maybe<Scalars['String']>;
|
|
18118
|
+
};
|
|
18000
18119
|
export type JiraServiceManagementProjectNavigationMetadata = {
|
|
18001
18120
|
__typename?: 'JiraServiceManagementProjectNavigationMetadata';
|
|
18002
18121
|
queueId: Scalars['ID'];
|
|
@@ -18006,6 +18125,10 @@ export type JiraServiceManagementProjectTeamType = {
|
|
|
18006
18125
|
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
18007
18126
|
teamType?: Maybe<Scalars['String']>;
|
|
18008
18127
|
};
|
|
18128
|
+
export declare enum JiraServiceManagementRendererType {
|
|
18129
|
+
AtlassianWikiRendererType = "ATLASSIAN_WIKI_RENDERER_TYPE",
|
|
18130
|
+
JiraTextRendererType = "JIRA_TEXT_RENDERER_TYPE"
|
|
18131
|
+
}
|
|
18009
18132
|
export type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
18010
18133
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
18011
18134
|
id: Scalars['ID'];
|
|
@@ -18076,10 +18199,18 @@ export type JiraServiceManagementRequestTypeFieldRequestTypesArgs = {
|
|
|
18076
18199
|
before?: Maybe<Scalars['String']>;
|
|
18077
18200
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
18078
18201
|
};
|
|
18202
|
+
export type JiraServiceManagementRequestTypeFieldCommon = {
|
|
18203
|
+
type?: Maybe<Scalars['String']>;
|
|
18204
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
18205
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
18206
|
+
label?: Maybe<Scalars['String']>;
|
|
18207
|
+
description?: Maybe<Scalars['String']>;
|
|
18208
|
+
};
|
|
18079
18209
|
export type JiraServiceManagementRequestTypePractice = {
|
|
18080
18210
|
__typename?: 'JiraServiceManagementRequestTypePractice';
|
|
18081
18211
|
key?: Maybe<JiraServiceManagementPractice>;
|
|
18082
18212
|
};
|
|
18213
|
+
export type JiraServiceManagementRequestTypePreviewField = JiraServiceManagementTextPreviewField | JiraServiceManagementTextAreaPreviewField | JiraServiceManagementDueDatePreviewField | JiraServiceManagementDatePreviewField | JiraServiceManagementDateTimePreviewField | JiraServiceManagementAttachmentPreviewField | JiraServiceManagementSelectPreviewField | JiraServiceManagementMultiSelectPreviewField | JiraServiceManagementMultiUserPickerPreviewField | JiraServiceManagementMultiServicePickerPreviewField | JiraServiceManagementUnknownPreviewField;
|
|
18083
18214
|
export type JiraServiceManagementRequestTypeTemplate = {
|
|
18084
18215
|
__typename?: 'JiraServiceManagementRequestTypeTemplate';
|
|
18085
18216
|
formTemplateInternalId: Scalars['String'];
|
|
@@ -18090,6 +18221,7 @@ export type JiraServiceManagementRequestTypeTemplate = {
|
|
|
18090
18221
|
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
18091
18222
|
requestTypePortalDescription?: Maybe<Scalars['String']>;
|
|
18092
18223
|
previewImageUrl?: Maybe<Scalars['URL']>;
|
|
18224
|
+
previewFieldData?: Maybe<Array<JiraServiceManagementRequestTypePreviewField>>;
|
|
18093
18225
|
};
|
|
18094
18226
|
export type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
18095
18227
|
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
@@ -18149,11 +18281,45 @@ export type JiraServiceManagementRespondersFieldRespondersConnectionArgs = {
|
|
|
18149
18281
|
last?: Maybe<Scalars['Int']>;
|
|
18150
18282
|
before?: Maybe<Scalars['String']>;
|
|
18151
18283
|
};
|
|
18284
|
+
export type JiraServiceManagementSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
18285
|
+
__typename?: 'JiraServiceManagementSelectPreviewField';
|
|
18286
|
+
type?: Maybe<Scalars['String']>;
|
|
18287
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
18288
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
18289
|
+
label?: Maybe<Scalars['String']>;
|
|
18290
|
+
description?: Maybe<Scalars['String']>;
|
|
18291
|
+
options?: Maybe<Array<Maybe<JiraServiceManagementPreviewOption>>>;
|
|
18292
|
+
};
|
|
18152
18293
|
export type JiraServiceManagementTeamResponder = {
|
|
18153
18294
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
18154
18295
|
teamId?: Maybe<Scalars['String']>;
|
|
18155
18296
|
teamName?: Maybe<Scalars['String']>;
|
|
18156
18297
|
};
|
|
18298
|
+
export type JiraServiceManagementTextAreaPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
18299
|
+
__typename?: 'JiraServiceManagementTextAreaPreviewField';
|
|
18300
|
+
type?: Maybe<Scalars['String']>;
|
|
18301
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
18302
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
18303
|
+
label?: Maybe<Scalars['String']>;
|
|
18304
|
+
description?: Maybe<Scalars['String']>;
|
|
18305
|
+
rendererType?: Maybe<Scalars['String']>;
|
|
18306
|
+
};
|
|
18307
|
+
export type JiraServiceManagementTextPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
18308
|
+
__typename?: 'JiraServiceManagementTextPreviewField';
|
|
18309
|
+
type?: Maybe<Scalars['String']>;
|
|
18310
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
18311
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
18312
|
+
label?: Maybe<Scalars['String']>;
|
|
18313
|
+
description?: Maybe<Scalars['String']>;
|
|
18314
|
+
};
|
|
18315
|
+
export type JiraServiceManagementUnknownPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
18316
|
+
__typename?: 'JiraServiceManagementUnknownPreviewField';
|
|
18317
|
+
type?: Maybe<Scalars['String']>;
|
|
18318
|
+
displayed?: Maybe<Scalars['Boolean']>;
|
|
18319
|
+
required?: Maybe<Scalars['Boolean']>;
|
|
18320
|
+
label?: Maybe<Scalars['String']>;
|
|
18321
|
+
description?: Maybe<Scalars['String']>;
|
|
18322
|
+
};
|
|
18157
18323
|
export type JiraServiceManagementUserApproverPrincipal = {
|
|
18158
18324
|
__typename?: 'JiraServiceManagementUserApproverPrincipal';
|
|
18159
18325
|
user?: Maybe<User>;
|
|
@@ -20610,6 +20776,7 @@ export type Mutation = {
|
|
|
20610
20776
|
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
20611
20777
|
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
20612
20778
|
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
20779
|
+
surfacePlatform: SurfacePlatformMutationApi;
|
|
20613
20780
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
20614
20781
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
20615
20782
|
createAppDeploymentUrl?: Maybe<CreateAppDeploymentUrlResponse>;
|
|
@@ -23503,6 +23670,7 @@ export type RankingDiffPayload = {
|
|
|
23503
23670
|
export declare enum RateLimitingCurrency {
|
|
23504
23671
|
TestingService = "TESTING_SERVICE",
|
|
23505
23672
|
TrelloCurrency = "TRELLO_CURRENCY",
|
|
23673
|
+
TrelloMutationCurrency = "TRELLO_MUTATION_CURRENCY",
|
|
23506
23674
|
DevopsToolRelationshipsReadCurrency = "DEVOPS_TOOL_RELATIONSHIPS_READ_CURRENCY",
|
|
23507
23675
|
DevopsToolRelationshipsWriteCurrency = "DEVOPS_TOOL_RELATIONSHIPS_WRITE_CURRENCY",
|
|
23508
23676
|
CannedResponseQueryCurrency = "CANNED_RESPONSE_QUERY_CURRENCY",
|
|
@@ -26468,6 +26636,13 @@ export type SupportRequests = {
|
|
|
26468
26636
|
total: Scalars['Int'];
|
|
26469
26637
|
page: Array<SupportRequest>;
|
|
26470
26638
|
};
|
|
26639
|
+
export type SurfacePlatformMutationApi = {
|
|
26640
|
+
__typename?: 'SurfacePlatformMutationApi';
|
|
26641
|
+
setSurfaceConfiguration?: Maybe<SurfacePlatformSurfaceConfiguration>;
|
|
26642
|
+
};
|
|
26643
|
+
export type SurfacePlatformMutationApiSetSurfaceConfigurationArgs = {
|
|
26644
|
+
configuration: SurfacePlatformSurfaceConfigurationInput;
|
|
26645
|
+
};
|
|
26471
26646
|
export type SurfacePlatformQueryApi = {
|
|
26472
26647
|
__typename?: 'SurfacePlatformQueryApi';
|
|
26473
26648
|
surface?: Maybe<SurfacePlatformSurface>;
|
|
@@ -26493,6 +26668,35 @@ export type SurfacePlatformSurface = {
|
|
|
26493
26668
|
version?: Maybe<Scalars['String']>;
|
|
26494
26669
|
zones?: Maybe<Scalars['JSON']>;
|
|
26495
26670
|
};
|
|
26671
|
+
export type SurfacePlatformSurfaceConfiguration = {
|
|
26672
|
+
__typename?: 'SurfacePlatformSurfaceConfiguration';
|
|
26673
|
+
channel: Scalars['String'];
|
|
26674
|
+
definitionVersion: Scalars['String'];
|
|
26675
|
+
description?: Maybe<Scalars['String']>;
|
|
26676
|
+
enrichmentFields?: Maybe<Scalars['JSON']>;
|
|
26677
|
+
fields: Scalars['JSON'];
|
|
26678
|
+
key: Scalars['String'];
|
|
26679
|
+
label: Scalars['String'];
|
|
26680
|
+
locale: Scalars['String'];
|
|
26681
|
+
revision: Scalars['Int'];
|
|
26682
|
+
status: Scalars['String'];
|
|
26683
|
+
type: Scalars['String'];
|
|
26684
|
+
zones?: Maybe<Scalars['JSON']>;
|
|
26685
|
+
};
|
|
26686
|
+
export type SurfacePlatformSurfaceConfigurationInput = {
|
|
26687
|
+
channel: Scalars['String'];
|
|
26688
|
+
definitionVersion: Scalars['String'];
|
|
26689
|
+
description?: Maybe<Scalars['String']>;
|
|
26690
|
+
enrichmentFields?: Maybe<Scalars['JSON']>;
|
|
26691
|
+
fields: Scalars['JSON'];
|
|
26692
|
+
key: Scalars['String'];
|
|
26693
|
+
label: Scalars['String'];
|
|
26694
|
+
locale: Scalars['String'];
|
|
26695
|
+
revision: Scalars['Int'];
|
|
26696
|
+
status: Scalars['String'];
|
|
26697
|
+
type: Scalars['String'];
|
|
26698
|
+
zones?: Maybe<Scalars['JSON']>;
|
|
26699
|
+
};
|
|
26496
26700
|
export type SurfacePlatformSurfaceV2 = {
|
|
26497
26701
|
__typename?: 'SurfacePlatformSurfaceV2';
|
|
26498
26702
|
channel?: Maybe<Scalars['String']>;
|
|
@@ -26992,8 +27196,6 @@ export declare enum TownsquareGoalSortEnum {
|
|
|
26992
27196
|
IdDesc = "ID_DESC",
|
|
26993
27197
|
LatestUpdateDateAsc = "LATEST_UPDATE_DATE_ASC",
|
|
26994
27198
|
LatestUpdateDateDesc = "LATEST_UPDATE_DATE_DESC",
|
|
26995
|
-
MemberCountAsc = "MEMBER_COUNT_ASC",
|
|
26996
|
-
MemberCountDesc = "MEMBER_COUNT_DESC",
|
|
26997
27199
|
NameAsc = "NAME_ASC",
|
|
26998
27200
|
NameDesc = "NAME_DESC",
|
|
26999
27201
|
ProjectCountAsc = "PROJECT_COUNT_ASC",
|
|
@@ -27182,7 +27384,7 @@ export type TrelloAddHelloPayload = Payload & {
|
|
|
27182
27384
|
};
|
|
27183
27385
|
export type TrelloAddMemberInput = {
|
|
27184
27386
|
cardId: Scalars['ID'];
|
|
27185
|
-
|
|
27387
|
+
userId: Scalars['ID'];
|
|
27186
27388
|
};
|
|
27187
27389
|
export type TrelloAddMemberToCardPayload = Payload & {
|
|
27188
27390
|
__typename?: 'TrelloAddMemberToCardPayload';
|
|
@@ -27231,9 +27433,11 @@ export type TrelloBoard = Node & {
|
|
|
27231
27433
|
enterpriseOwned: Scalars['Boolean'];
|
|
27232
27434
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
27233
27435
|
id: Scalars['ID'];
|
|
27436
|
+
labels?: Maybe<TrelloLabelConnection>;
|
|
27234
27437
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
27235
27438
|
limits?: Maybe<TrelloBoardLimits>;
|
|
27236
27439
|
lists?: Maybe<TrelloListConnection>;
|
|
27440
|
+
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
27237
27441
|
name: Scalars['String'];
|
|
27238
27442
|
objectId: Scalars['ID'];
|
|
27239
27443
|
prefs: TrelloBoardPrefs;
|
|
@@ -27244,11 +27448,19 @@ export type TrelloBoard = Node & {
|
|
|
27244
27448
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
27245
27449
|
workspace?: Maybe<TrelloWorkspace>;
|
|
27246
27450
|
};
|
|
27451
|
+
export type TrelloBoardLabelsArgs = {
|
|
27452
|
+
after?: Maybe<Scalars['String']>;
|
|
27453
|
+
first?: Maybe<Scalars['Int']>;
|
|
27454
|
+
};
|
|
27247
27455
|
export type TrelloBoardListsArgs = {
|
|
27248
27456
|
after?: Maybe<Scalars['String']>;
|
|
27249
27457
|
filter?: Maybe<TrelloListFilterInput>;
|
|
27250
27458
|
first?: Maybe<Scalars['Int']>;
|
|
27251
27459
|
};
|
|
27460
|
+
export type TrelloBoardMembersArgs = {
|
|
27461
|
+
after?: Maybe<Scalars['String']>;
|
|
27462
|
+
first?: Maybe<Scalars['Int']>;
|
|
27463
|
+
};
|
|
27252
27464
|
export type TrelloBoardAttachmentsLimits = {
|
|
27253
27465
|
__typename?: 'TrelloBoardAttachmentsLimits';
|
|
27254
27466
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -27331,6 +27543,30 @@ export type TrelloBoardListsLimits = {
|
|
|
27331
27543
|
openPerBoard?: Maybe<TrelloLimitProps>;
|
|
27332
27544
|
totalPerBoard?: Maybe<TrelloLimitProps>;
|
|
27333
27545
|
};
|
|
27546
|
+
export type TrelloBoardMembershipEdge = {
|
|
27547
|
+
__typename?: 'TrelloBoardMembershipEdge';
|
|
27548
|
+
cursor?: Maybe<Scalars['String']>;
|
|
27549
|
+
membership?: Maybe<TrelloBoardMembershipInfo>;
|
|
27550
|
+
node?: Maybe<TrelloMember>;
|
|
27551
|
+
};
|
|
27552
|
+
export type TrelloBoardMembershipInfo = {
|
|
27553
|
+
__typename?: 'TrelloBoardMembershipInfo';
|
|
27554
|
+
deactivated?: Maybe<Scalars['Boolean']>;
|
|
27555
|
+
lastActive?: Maybe<Scalars['DateTime']>;
|
|
27556
|
+
type?: Maybe<TrelloBoardMembershipType>;
|
|
27557
|
+
unconfirmed?: Maybe<Scalars['Boolean']>;
|
|
27558
|
+
};
|
|
27559
|
+
export declare enum TrelloBoardMembershipType {
|
|
27560
|
+
Admin = "ADMIN",
|
|
27561
|
+
Normal = "NORMAL",
|
|
27562
|
+
Observer = "OBSERVER"
|
|
27563
|
+
}
|
|
27564
|
+
export type TrelloBoardMembershipsConnection = {
|
|
27565
|
+
__typename?: 'TrelloBoardMembershipsConnection';
|
|
27566
|
+
edges?: Maybe<Array<TrelloBoardMembershipEdge>>;
|
|
27567
|
+
nodes?: Maybe<Array<TrelloMember>>;
|
|
27568
|
+
pageInfo: PageInfo;
|
|
27569
|
+
};
|
|
27334
27570
|
export type TrelloBoardPrefs = {
|
|
27335
27571
|
__typename?: 'TrelloBoardPrefs';
|
|
27336
27572
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -27401,6 +27637,7 @@ export type TrelloCard = Node & {
|
|
|
27401
27637
|
limits?: Maybe<TrelloCardLimits>;
|
|
27402
27638
|
list?: Maybe<TrelloList>;
|
|
27403
27639
|
location?: Maybe<TrelloCardLocation>;
|
|
27640
|
+
members?: Maybe<TrelloMemberConnection>;
|
|
27404
27641
|
name?: Maybe<Scalars['String']>;
|
|
27405
27642
|
objectId: Scalars['ID'];
|
|
27406
27643
|
pluginData?: Maybe<TrelloPluginDataConnection>;
|
|
@@ -27429,6 +27666,10 @@ export type TrelloCardLabelsArgs = {
|
|
|
27429
27666
|
after?: Maybe<Scalars['String']>;
|
|
27430
27667
|
first?: Maybe<Scalars['Int']>;
|
|
27431
27668
|
};
|
|
27669
|
+
export type TrelloCardMembersArgs = {
|
|
27670
|
+
after?: Maybe<Scalars['String']>;
|
|
27671
|
+
first?: Maybe<Scalars['Int']>;
|
|
27672
|
+
};
|
|
27432
27673
|
export type TrelloCardPluginDataArgs = {
|
|
27433
27674
|
after?: Maybe<Scalars['String']>;
|
|
27434
27675
|
filter?: Maybe<TrelloPluginDataFilterInput>;
|
|
@@ -27609,7 +27850,7 @@ export type TrelloChecklistEdge = {
|
|
|
27609
27850
|
node: TrelloChecklist;
|
|
27610
27851
|
};
|
|
27611
27852
|
export type TrelloCreateCardInput = {
|
|
27612
|
-
|
|
27853
|
+
listId: Scalars['ID'];
|
|
27613
27854
|
name: Scalars['String'];
|
|
27614
27855
|
};
|
|
27615
27856
|
export type TrelloCreateCardPayload = Payload & {
|
|
@@ -27823,6 +28064,17 @@ export type TrelloMember = Node & {
|
|
|
27823
28064
|
user?: Maybe<User>;
|
|
27824
28065
|
username?: Maybe<Scalars['String']>;
|
|
27825
28066
|
};
|
|
28067
|
+
export type TrelloMemberConnection = {
|
|
28068
|
+
__typename?: 'TrelloMemberConnection';
|
|
28069
|
+
edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
|
|
28070
|
+
nodes?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
28071
|
+
pageInfo: PageInfo;
|
|
28072
|
+
};
|
|
28073
|
+
export type TrelloMemberEdge = {
|
|
28074
|
+
__typename?: 'TrelloMemberEdge';
|
|
28075
|
+
cursor: Scalars['String'];
|
|
28076
|
+
node?: Maybe<TrelloMember>;
|
|
28077
|
+
};
|
|
27826
28078
|
export type TrelloMutationApi = {
|
|
27827
28079
|
__typename?: 'TrelloMutationApi';
|
|
27828
28080
|
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
@@ -27968,7 +28220,7 @@ export type TrelloRemoveMemberFromCardPayload = Payload & {
|
|
|
27968
28220
|
};
|
|
27969
28221
|
export type TrelloRemoveMemberInput = {
|
|
27970
28222
|
cardId: Scalars['ID'];
|
|
27971
|
-
|
|
28223
|
+
userId: Scalars['ID'];
|
|
27972
28224
|
};
|
|
27973
28225
|
export type TrelloScaleProps = {
|
|
27974
28226
|
__typename?: 'TrelloScaleProps';
|
|
@@ -28473,8 +28725,8 @@ export type UpdatePolarisFieldEmojiPayload = Payload & {
|
|
|
28473
28725
|
export type UpdatePolarisFieldInput = {
|
|
28474
28726
|
field: Scalars['ID'];
|
|
28475
28727
|
ideaType: Scalars['ID'];
|
|
28476
|
-
name
|
|
28477
|
-
description
|
|
28728
|
+
name?: Maybe<Scalars['String']>;
|
|
28729
|
+
description?: Maybe<Scalars['String']>;
|
|
28478
28730
|
};
|
|
28479
28731
|
export type UpdatePolarisFieldOptionWeightInput = {
|
|
28480
28732
|
project: Scalars['ID'];
|
|
@@ -29151,6 +29403,11 @@ export type VirtualAgentUpdatedQuestionInput = {
|
|
|
29151
29403
|
id: Scalars['ID'];
|
|
29152
29404
|
question: Scalars['String'];
|
|
29153
29405
|
};
|
|
29406
|
+
export type VirtualAgentValidationMutationErrorExtension = MutationErrorExtension & {
|
|
29407
|
+
__typename?: 'VirtualAgentValidationMutationErrorExtension';
|
|
29408
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
29409
|
+
errorType?: Maybe<Scalars['String']>;
|
|
29410
|
+
};
|
|
29154
29411
|
export type WatchMarketplaceAppPayload = Payload & {
|
|
29155
29412
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
29156
29413
|
success: Scalars['Boolean'];
|