@forge/cli-shared 2.2.0-next.22 → 2.2.1-next.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
CHANGED
|
@@ -1,5 +1,69 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [14102be]
|
|
8
|
+
- @forge/manifest@3.1.0-next.2
|
|
9
|
+
|
|
10
|
+
## 2.2.1-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [8ee1c58]
|
|
15
|
+
- @forge/manifest@3.1.0-next.1
|
|
16
|
+
|
|
17
|
+
## 2.2.1-next.0
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [813f8f3]
|
|
22
|
+
- Updated dependencies [5152239]
|
|
23
|
+
- @forge/manifest@3.1.0-next.0
|
|
24
|
+
|
|
25
|
+
## 2.2.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- b63af27: Refactor templates code to be more generic in order to ease implementing other templating methods
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 1dba082: Handle the manifest case of remotes found in the egress permissions section when installing an app
|
|
34
|
+
- Updated dependencies [bd6e025]
|
|
35
|
+
- Updated dependencies [1c196ff]
|
|
36
|
+
- Updated dependencies [271b98a]
|
|
37
|
+
- Updated dependencies [4cfa56d]
|
|
38
|
+
- Updated dependencies [22a488e]
|
|
39
|
+
- Updated dependencies [218fe20]
|
|
40
|
+
- Updated dependencies [2bca1c0]
|
|
41
|
+
- Updated dependencies [689c09b]
|
|
42
|
+
- Updated dependencies [b97660c]
|
|
43
|
+
- Updated dependencies [7c0d2ee]
|
|
44
|
+
- Updated dependencies [1dba082]
|
|
45
|
+
- Updated dependencies [d3afe01]
|
|
46
|
+
- Updated dependencies [dfe9dd8]
|
|
47
|
+
- Updated dependencies [91ea057]
|
|
48
|
+
- Updated dependencies [3010f0e]
|
|
49
|
+
- Updated dependencies [2b7c32b]
|
|
50
|
+
- Updated dependencies [e7ee3a7]
|
|
51
|
+
- Updated dependencies [92d081d]
|
|
52
|
+
- Updated dependencies [d3c8c8d]
|
|
53
|
+
- Updated dependencies [fca240d]
|
|
54
|
+
- Updated dependencies [36c7c8f]
|
|
55
|
+
- Updated dependencies [d2f6992]
|
|
56
|
+
- Updated dependencies [d18c9f1]
|
|
57
|
+
- Updated dependencies [1dba082]
|
|
58
|
+
- Updated dependencies [fa963b1]
|
|
59
|
+
- Updated dependencies [0a7725f]
|
|
60
|
+
- Updated dependencies [1dba082]
|
|
61
|
+
- Updated dependencies [e4a14c7]
|
|
62
|
+
- Updated dependencies [2bb89c5]
|
|
63
|
+
- Updated dependencies [5875eb3]
|
|
64
|
+
- Updated dependencies [0a39c43]
|
|
65
|
+
- @forge/manifest@3.0.0
|
|
66
|
+
|
|
3
67
|
## 2.2.0-next.22
|
|
4
68
|
|
|
5
69
|
### Patch Changes
|
|
@@ -186,7 +186,7 @@ export declare type ActivityEdge = {
|
|
|
186
186
|
export declare type ActivityEvent = {
|
|
187
187
|
__typename?: 'ActivityEvent';
|
|
188
188
|
id: Scalars['ID'];
|
|
189
|
-
timestamp?: Maybe<Scalars['
|
|
189
|
+
timestamp?: Maybe<Scalars['DateTime']>;
|
|
190
190
|
eventType?: Maybe<Scalars['String']>;
|
|
191
191
|
actor?: Maybe<User>;
|
|
192
192
|
extension?: Maybe<ActivitiesEventExtension>;
|
|
@@ -808,6 +808,7 @@ export declare type AppUnsubscribePayload = Payload & {
|
|
|
808
808
|
export declare type AppUser = User & {
|
|
809
809
|
__typename?: 'AppUser';
|
|
810
810
|
accountId: Scalars['ID'];
|
|
811
|
+
canonicalAccountId: Scalars['ID'];
|
|
811
812
|
accountStatus: AccountStatus;
|
|
812
813
|
name: Scalars['String'];
|
|
813
814
|
picture: Scalars['URL'];
|
|
@@ -867,6 +868,7 @@ export declare type AssignIssueParentOutput = MutationResponse & {
|
|
|
867
868
|
export declare type AtlassianAccountUser = User & LocalizationContext & {
|
|
868
869
|
__typename?: 'AtlassianAccountUser';
|
|
869
870
|
accountId: Scalars['ID'];
|
|
871
|
+
canonicalAccountId: Scalars['ID'];
|
|
870
872
|
accountStatus: AccountStatus;
|
|
871
873
|
name: Scalars['String'];
|
|
872
874
|
picture: Scalars['URL'];
|
|
@@ -1666,6 +1668,8 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1666
1668
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
1667
1669
|
metricDefinitions?: Maybe<CompassMetricDefinitionsQueryResult>;
|
|
1668
1670
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1671
|
+
builtinMetricDefinitions: Array<CompassMetricDefinition>;
|
|
1672
|
+
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1669
1673
|
};
|
|
1670
1674
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1671
1675
|
id: Scalars['ID'];
|
|
@@ -1708,6 +1712,11 @@ export declare type CompassCatalogQueryApiMetricDefinitionArgs = {
|
|
|
1708
1712
|
cloudId: Scalars['ID'];
|
|
1709
1713
|
metricDefinitionId: Scalars['ID'];
|
|
1710
1714
|
};
|
|
1715
|
+
export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
1716
|
+
cloudId: Scalars['ID'];
|
|
1717
|
+
eventType: CompassEventType;
|
|
1718
|
+
externalEventSourceId: Scalars['ID'];
|
|
1719
|
+
};
|
|
1711
1720
|
export declare type CompassChangeMetadata = {
|
|
1712
1721
|
__typename?: 'CompassChangeMetadata';
|
|
1713
1722
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2070,6 +2079,7 @@ export declare type CompassEventInput = {
|
|
|
2070
2079
|
lifecycle?: Maybe<CompassCreateLifecycleEventInput>;
|
|
2071
2080
|
custom?: Maybe<CompassCreateCustomEventInput>;
|
|
2072
2081
|
};
|
|
2082
|
+
export declare type CompassEventSourceResult = EventSource | QueryError;
|
|
2073
2083
|
export declare type CompassEventTimeParameters = {
|
|
2074
2084
|
startFrom?: Maybe<Scalars['DateTime']>;
|
|
2075
2085
|
endAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2082,6 +2092,11 @@ export declare enum CompassEventType {
|
|
|
2082
2092
|
Lifecycle = "LIFECYCLE",
|
|
2083
2093
|
Custom = "CUSTOM"
|
|
2084
2094
|
}
|
|
2095
|
+
export declare type CompassEventsInEventSourceQuery = {
|
|
2096
|
+
first?: Maybe<Scalars['Int']>;
|
|
2097
|
+
after?: Maybe<Scalars['String']>;
|
|
2098
|
+
timeParameters?: Maybe<CompassEventTimeParameters>;
|
|
2099
|
+
};
|
|
2085
2100
|
export declare type CompassEventsQuery = {
|
|
2086
2101
|
eventTypes?: Maybe<Array<CompassEventType>>;
|
|
2087
2102
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -2735,11 +2750,27 @@ export declare type ConfluenceContentBody = {
|
|
|
2735
2750
|
styledView?: Maybe<Scalars['String']>;
|
|
2736
2751
|
view?: Maybe<Scalars['String']>;
|
|
2737
2752
|
};
|
|
2753
|
+
export declare type ConfluenceContentBodyInput = {
|
|
2754
|
+
representation: ConfluenceContentRepresentation;
|
|
2755
|
+
value: Scalars['String'];
|
|
2756
|
+
};
|
|
2738
2757
|
export declare type ConfluenceContentMetadata = {
|
|
2739
2758
|
__typename?: 'ConfluenceContentMetadata';
|
|
2740
2759
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2741
2760
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
2742
2761
|
};
|
|
2762
|
+
export declare enum ConfluenceContentRepresentation {
|
|
2763
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
2764
|
+
Editor = "EDITOR",
|
|
2765
|
+
Editor2 = "EDITOR2",
|
|
2766
|
+
ExportView = "EXPORT_VIEW",
|
|
2767
|
+
Plain = "PLAIN",
|
|
2768
|
+
Raw = "RAW",
|
|
2769
|
+
Storage = "STORAGE",
|
|
2770
|
+
StyledView = "STYLED_VIEW",
|
|
2771
|
+
View = "VIEW",
|
|
2772
|
+
Wiki = "WIKI"
|
|
2773
|
+
}
|
|
2743
2774
|
export declare enum ConfluenceContentStatus {
|
|
2744
2775
|
Archived = "ARCHIVED",
|
|
2745
2776
|
Current = "CURRENT",
|
|
@@ -2760,6 +2791,30 @@ export declare enum ConfluenceContentType {
|
|
|
2760
2791
|
Comment = "COMMENT",
|
|
2761
2792
|
Page = "PAGE"
|
|
2762
2793
|
}
|
|
2794
|
+
export declare type ConfluenceCreateBlogPostInput = {
|
|
2795
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2796
|
+
spaceKey: Scalars['String'];
|
|
2797
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2798
|
+
title?: Maybe<Scalars['String']>;
|
|
2799
|
+
};
|
|
2800
|
+
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
2801
|
+
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
2802
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2803
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2804
|
+
success: Scalars['Boolean'];
|
|
2805
|
+
};
|
|
2806
|
+
export declare type ConfluenceCreatePageInput = {
|
|
2807
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
2808
|
+
spaceKey: Scalars['String'];
|
|
2809
|
+
status?: Maybe<ConfluenceMutationContentStatus>;
|
|
2810
|
+
title?: Maybe<Scalars['String']>;
|
|
2811
|
+
};
|
|
2812
|
+
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
2813
|
+
__typename?: 'ConfluenceCreatePagePayload';
|
|
2814
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
2815
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2816
|
+
success: Scalars['Boolean'];
|
|
2817
|
+
};
|
|
2763
2818
|
export declare type ConfluenceCreateSpaceInput = {
|
|
2764
2819
|
key: Scalars['String'];
|
|
2765
2820
|
name: Scalars['String'];
|
|
@@ -2771,6 +2826,24 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
2771
2826
|
errors?: Maybe<Array<MutationError>>;
|
|
2772
2827
|
success: Scalars['Boolean'];
|
|
2773
2828
|
};
|
|
2829
|
+
export declare type ConfluenceDeleteBlogPostInput = {
|
|
2830
|
+
id: Scalars['ID'];
|
|
2831
|
+
status: ConfluenceMutationContentStatus;
|
|
2832
|
+
};
|
|
2833
|
+
export declare type ConfluenceDeleteBlogPostPayload = Payload & {
|
|
2834
|
+
__typename?: 'ConfluenceDeleteBlogPostPayload';
|
|
2835
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2836
|
+
success: Scalars['Boolean'];
|
|
2837
|
+
};
|
|
2838
|
+
export declare type ConfluenceDeletePageInput = {
|
|
2839
|
+
id: Scalars['ID'];
|
|
2840
|
+
status: ConfluenceMutationContentStatus;
|
|
2841
|
+
};
|
|
2842
|
+
export declare type ConfluenceDeletePagePayload = Payload & {
|
|
2843
|
+
__typename?: 'ConfluenceDeletePagePayload';
|
|
2844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2845
|
+
success: Scalars['Boolean'];
|
|
2846
|
+
};
|
|
2774
2847
|
export declare type ConfluenceInlineTask = {
|
|
2775
2848
|
__typename?: 'ConfluenceInlineTask';
|
|
2776
2849
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -2799,15 +2872,68 @@ export declare type ConfluenceLabel = {
|
|
|
2799
2872
|
};
|
|
2800
2873
|
export declare type ConfluenceMutationApi = {
|
|
2801
2874
|
__typename?: 'ConfluenceMutationApi';
|
|
2875
|
+
confluenceCreateBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
2876
|
+
confluenceCreatePage?: Maybe<ConfluenceCreatePagePayload>;
|
|
2802
2877
|
confluenceCreateSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
2878
|
+
confluenceDeleteBlogPost?: Maybe<ConfluenceDeleteBlogPostPayload>;
|
|
2879
|
+
confluenceDeletePage?: Maybe<ConfluenceDeletePagePayload>;
|
|
2880
|
+
confluencePublishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
2881
|
+
confluencePublishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
2882
|
+
confluencePurgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
2883
|
+
confluencePurgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
2884
|
+
confluenceUpdateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
2885
|
+
confluenceUpdateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
2886
|
+
confluenceUpdateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
2887
|
+
confluenceUpdateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
2803
2888
|
confluenceUpdateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
2804
2889
|
};
|
|
2890
|
+
export declare type ConfluenceMutationApiConfluenceCreateBlogPostArgs = {
|
|
2891
|
+
blogPostInput: ConfluenceCreateBlogPostInput;
|
|
2892
|
+
};
|
|
2893
|
+
export declare type ConfluenceMutationApiConfluenceCreatePageArgs = {
|
|
2894
|
+
cloudId: Scalars['ID'];
|
|
2895
|
+
pageInput: ConfluenceCreatePageInput;
|
|
2896
|
+
};
|
|
2805
2897
|
export declare type ConfluenceMutationApiConfluenceCreateSpaceArgs = {
|
|
2806
2898
|
input: ConfluenceCreateSpaceInput;
|
|
2807
2899
|
};
|
|
2900
|
+
export declare type ConfluenceMutationApiConfluenceDeleteBlogPostArgs = {
|
|
2901
|
+
deletBlogPostInput: ConfluenceDeleteBlogPostInput;
|
|
2902
|
+
};
|
|
2903
|
+
export declare type ConfluenceMutationApiConfluenceDeletePageArgs = {
|
|
2904
|
+
deletPageInput: ConfluenceDeletePageInput;
|
|
2905
|
+
};
|
|
2906
|
+
export declare type ConfluenceMutationApiConfluencePublishBlogPostArgs = {
|
|
2907
|
+
publishBlogPostInput: ConfluencePublishBlogPostInput;
|
|
2908
|
+
};
|
|
2909
|
+
export declare type ConfluenceMutationApiConfluencePublishPageArgs = {
|
|
2910
|
+
publishPageInput: ConfluencePublishPageInput;
|
|
2911
|
+
};
|
|
2912
|
+
export declare type ConfluenceMutationApiConfluencePurgeBlogPostArgs = {
|
|
2913
|
+
purgeBlogPostInput: ConfluencePurgeBlogPostInput;
|
|
2914
|
+
};
|
|
2915
|
+
export declare type ConfluenceMutationApiConfluencePurgePageArgs = {
|
|
2916
|
+
purgePageInput: ConfluencePurgePageInput;
|
|
2917
|
+
};
|
|
2918
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentBlogPostArgs = {
|
|
2919
|
+
updateBlogPostInput: ConfluenceUpdateCurrentBlogPostInput;
|
|
2920
|
+
};
|
|
2921
|
+
export declare type ConfluenceMutationApiConfluenceUpdateCurrentPageArgs = {
|
|
2922
|
+
updatePageInput: ConfluenceUpdateCurrentPageInput;
|
|
2923
|
+
};
|
|
2924
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftBlogPostArgs = {
|
|
2925
|
+
updateBlogPostInput: ConfluenceUpdateDraftBlogPostInput;
|
|
2926
|
+
};
|
|
2927
|
+
export declare type ConfluenceMutationApiConfluenceUpdateDraftPageArgs = {
|
|
2928
|
+
updatePageInput: ConfluenceUpdateDraftPageInput;
|
|
2929
|
+
};
|
|
2808
2930
|
export declare type ConfluenceMutationApiConfluenceUpdateSpaceArgs = {
|
|
2809
2931
|
input: ConfluenceUpdateSpaceInput;
|
|
2810
2932
|
};
|
|
2933
|
+
export declare enum ConfluenceMutationContentStatus {
|
|
2934
|
+
Current = "CURRENT",
|
|
2935
|
+
Draft = "DRAFT"
|
|
2936
|
+
}
|
|
2811
2937
|
export declare type ConfluenceOperationCheck = {
|
|
2812
2938
|
__typename?: 'ConfluenceOperationCheck';
|
|
2813
2939
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -2855,18 +2981,72 @@ export declare type ConfluencePageLinks = {
|
|
|
2855
2981
|
base?: Maybe<Scalars['String']>;
|
|
2856
2982
|
webUi?: Maybe<Scalars['String']>;
|
|
2857
2983
|
};
|
|
2984
|
+
export declare type ConfluencePublishBlogPostInput = {
|
|
2985
|
+
id: Scalars['String'];
|
|
2986
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2987
|
+
};
|
|
2988
|
+
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
2989
|
+
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
2990
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
2991
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2992
|
+
success: Scalars['Boolean'];
|
|
2993
|
+
};
|
|
2994
|
+
export declare type ConfluencePublishPageInput = {
|
|
2995
|
+
id: Scalars['String'];
|
|
2996
|
+
publishTitle?: Maybe<Scalars['String']>;
|
|
2997
|
+
};
|
|
2998
|
+
export declare type ConfluencePublishPagePayload = Payload & {
|
|
2999
|
+
__typename?: 'ConfluencePublishPagePayload';
|
|
3000
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3001
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3002
|
+
success: Scalars['Boolean'];
|
|
3003
|
+
};
|
|
3004
|
+
export declare type ConfluencePurgeBlogPostInput = {
|
|
3005
|
+
id: Scalars['ID'];
|
|
3006
|
+
};
|
|
3007
|
+
export declare type ConfluencePurgeBlogPostPayload = Payload & {
|
|
3008
|
+
__typename?: 'ConfluencePurgeBlogPostPayload';
|
|
3009
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3010
|
+
success: Scalars['Boolean'];
|
|
3011
|
+
};
|
|
3012
|
+
export declare type ConfluencePurgePageInput = {
|
|
3013
|
+
id: Scalars['ID'];
|
|
3014
|
+
};
|
|
3015
|
+
export declare type ConfluencePurgePagePayload = Payload & {
|
|
3016
|
+
__typename?: 'ConfluencePurgePagePayload';
|
|
3017
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3018
|
+
success: Scalars['Boolean'];
|
|
3019
|
+
};
|
|
2858
3020
|
export declare type ConfluenceQueryApi = {
|
|
2859
3021
|
__typename?: 'ConfluenceQueryApi';
|
|
3022
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3023
|
+
confluenceBlogPostWithFilters?: Maybe<ConfluenceBlogPost>;
|
|
3024
|
+
confluenceBlogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
3025
|
+
confluenceBlogPostsWithFilters?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
2860
3026
|
confluenceComment?: Maybe<ConfluenceComment>;
|
|
2861
3027
|
confluenceComments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
2862
3028
|
confluenceInlineTask?: Maybe<ConfluenceInlineTask>;
|
|
2863
|
-
confluencePage?: Maybe<
|
|
2864
|
-
confluencePageWithFilters?: Maybe<
|
|
2865
|
-
confluencePages?: Maybe<Array<Maybe<
|
|
2866
|
-
confluencePagesWithFilters?: Maybe<Array<Maybe<
|
|
3029
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3030
|
+
confluencePageWithFilters?: Maybe<ConfluencePage>;
|
|
3031
|
+
confluencePages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
3032
|
+
confluencePagesWithFilters?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
2867
3033
|
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
2868
3034
|
confluenceSpaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
2869
3035
|
};
|
|
3036
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostArgs = {
|
|
3037
|
+
id: Scalars['ID'];
|
|
3038
|
+
};
|
|
3039
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostWithFiltersArgs = {
|
|
3040
|
+
id: Scalars['ID'];
|
|
3041
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3042
|
+
};
|
|
3043
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsArgs = {
|
|
3044
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3045
|
+
};
|
|
3046
|
+
export declare type ConfluenceQueryApiConfluenceBlogPostsWithFiltersArgs = {
|
|
3047
|
+
ids: Array<Maybe<Scalars['ID']>>;
|
|
3048
|
+
statuses?: Maybe<Array<Maybe<ConfluenceContentStatus>>>;
|
|
3049
|
+
};
|
|
2870
3050
|
export declare type ConfluenceQueryApiConfluenceCommentArgs = {
|
|
2871
3051
|
id: Scalars['ID'];
|
|
2872
3052
|
};
|
|
@@ -2951,6 +3131,50 @@ export declare enum ConfluenceSpaceType {
|
|
|
2951
3131
|
Global = "GLOBAL",
|
|
2952
3132
|
Personal = "PERSONAL"
|
|
2953
3133
|
}
|
|
3134
|
+
export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
3135
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3136
|
+
id: Scalars['ID'];
|
|
3137
|
+
title?: Maybe<Scalars['String']>;
|
|
3138
|
+
};
|
|
3139
|
+
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3140
|
+
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3141
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3142
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3143
|
+
success: Scalars['Boolean'];
|
|
3144
|
+
};
|
|
3145
|
+
export declare type ConfluenceUpdateCurrentPageInput = {
|
|
3146
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3147
|
+
id: Scalars['ID'];
|
|
3148
|
+
title?: Maybe<Scalars['String']>;
|
|
3149
|
+
};
|
|
3150
|
+
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3151
|
+
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3152
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3153
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3154
|
+
success: Scalars['Boolean'];
|
|
3155
|
+
};
|
|
3156
|
+
export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
3157
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3158
|
+
id: Scalars['ID'];
|
|
3159
|
+
title?: Maybe<Scalars['String']>;
|
|
3160
|
+
};
|
|
3161
|
+
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3162
|
+
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3163
|
+
confluenceBlogPost?: Maybe<ConfluenceBlogPost>;
|
|
3164
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3165
|
+
success: Scalars['Boolean'];
|
|
3166
|
+
};
|
|
3167
|
+
export declare type ConfluenceUpdateDraftPageInput = {
|
|
3168
|
+
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3169
|
+
id: Scalars['ID'];
|
|
3170
|
+
title?: Maybe<Scalars['String']>;
|
|
3171
|
+
};
|
|
3172
|
+
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3173
|
+
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3174
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
3175
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3176
|
+
success: Scalars['Boolean'];
|
|
3177
|
+
};
|
|
2954
3178
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
2955
3179
|
id: Scalars['ID'];
|
|
2956
3180
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3158,6 +3382,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
3158
3382
|
releaseNoteFlagOffValue?: Maybe<Scalars['String']>;
|
|
3159
3383
|
publishStatus?: Maybe<Scalars['String']>;
|
|
3160
3384
|
benefitsList?: Maybe<Scalars['JSON']>;
|
|
3385
|
+
getStarted?: Maybe<Scalars['JSON']>;
|
|
3161
3386
|
};
|
|
3162
3387
|
export declare type ContentPlatformReleaseNoteEntry = {
|
|
3163
3388
|
__typename?: 'ContentPlatformReleaseNoteEntry';
|
|
@@ -3186,6 +3411,7 @@ export declare type ContentPlatformReleaseNoteEntry = {
|
|
|
3186
3411
|
updatedAt: Scalars['String'];
|
|
3187
3412
|
url: Scalars['String'];
|
|
3188
3413
|
benefitsList: Scalars['JSON'];
|
|
3414
|
+
getStarted: Scalars['JSON'];
|
|
3189
3415
|
};
|
|
3190
3416
|
export declare type ContentPlatformReleaseNoteFilterOptions = {
|
|
3191
3417
|
fdIssueLinks?: Maybe<Array<Scalars['String']>>;
|
|
@@ -3802,6 +4028,7 @@ export declare type CustomUiTunnelDefinitionInput = {
|
|
|
3802
4028
|
export declare type CustomerUser = User & LocalizationContext & {
|
|
3803
4029
|
__typename?: 'CustomerUser';
|
|
3804
4030
|
accountId: Scalars['ID'];
|
|
4031
|
+
canonicalAccountId: Scalars['ID'];
|
|
3805
4032
|
accountStatus: AccountStatus;
|
|
3806
4033
|
name: Scalars['String'];
|
|
3807
4034
|
picture: Scalars['URL'];
|
|
@@ -4876,9 +5103,12 @@ export declare enum EventKnownAvIs {
|
|
|
4876
5103
|
AviBitbucketPrCreated = "AVI_BITBUCKET_PR_CREATED"
|
|
4877
5104
|
}
|
|
4878
5105
|
export declare enum EventMatchingStrategies {
|
|
5106
|
+
JiraByCloud = "JIRA_BY_CLOUD",
|
|
4879
5107
|
JiraByProject = "JIRA_BY_PROJECT",
|
|
4880
5108
|
JiraByIssue = "JIRA_BY_ISSUE",
|
|
4881
|
-
BitbucketByRepo = "BITBUCKET_BY_REPO"
|
|
5109
|
+
BitbucketByRepo = "BITBUCKET_BY_REPO",
|
|
5110
|
+
ByAccount = "BY_ACCOUNT",
|
|
5111
|
+
JiraByCloudByProjectTypeByAccount = "JIRA_BY_CLOUD_BY_PROJECT_TYPE_BY_ACCOUNT"
|
|
4882
5112
|
}
|
|
4883
5113
|
export declare type EventSource = {
|
|
4884
5114
|
__typename?: 'EventSource';
|
|
@@ -4886,6 +5116,10 @@ export declare type EventSource = {
|
|
|
4886
5116
|
externalEventSourceId: Scalars['ID'];
|
|
4887
5117
|
eventType: CompassEventType;
|
|
4888
5118
|
forgeAppId?: Maybe<Scalars['ID']>;
|
|
5119
|
+
events?: Maybe<CompassEventsQueryResult>;
|
|
5120
|
+
};
|
|
5121
|
+
export declare type EventSourceEventsArgs = {
|
|
5122
|
+
query?: Maybe<CompassEventsInEventSourceQuery>;
|
|
4889
5123
|
};
|
|
4890
5124
|
export declare type Extension = {
|
|
4891
5125
|
__typename?: 'Extension';
|
|
@@ -4951,6 +5185,7 @@ export declare type ForgeMetricsData = {
|
|
|
4951
5185
|
name: Scalars['String'];
|
|
4952
5186
|
type: ForgeMetricsDataType;
|
|
4953
5187
|
series?: Maybe<Array<ForgeMetricsSeries>>;
|
|
5188
|
+
resolution: ForgeMetricsResolution;
|
|
4954
5189
|
};
|
|
4955
5190
|
export declare enum ForgeMetricsDataType {
|
|
4956
5191
|
DateTime = "DATE_TIME",
|
|
@@ -4962,6 +5197,7 @@ export declare type ForgeMetricsErrorsData = ForgeMetricsData & {
|
|
|
4962
5197
|
name: Scalars['String'];
|
|
4963
5198
|
type: ForgeMetricsDataType;
|
|
4964
5199
|
series: Array<ForgeMetricsErrorsSeries>;
|
|
5200
|
+
resolution: ForgeMetricsResolution;
|
|
4965
5201
|
};
|
|
4966
5202
|
export declare type ForgeMetricsErrorsDataPoint = {
|
|
4967
5203
|
__typename?: 'ForgeMetricsErrorsDataPoint';
|
|
@@ -4988,6 +5224,7 @@ export declare type ForgeMetricsInvocationData = ForgeMetricsData & {
|
|
|
4988
5224
|
name: Scalars['String'];
|
|
4989
5225
|
type: ForgeMetricsDataType;
|
|
4990
5226
|
series: Array<ForgeMetricsInvocationSeries>;
|
|
5227
|
+
resolution: ForgeMetricsResolution;
|
|
4991
5228
|
};
|
|
4992
5229
|
export declare type ForgeMetricsInvocationDataPoint = {
|
|
4993
5230
|
__typename?: 'ForgeMetricsInvocationDataPoint';
|
|
@@ -5033,6 +5270,15 @@ export declare type ForgeMetricsQueryInput = {
|
|
|
5033
5270
|
filters: ForgeMetricsQueryFilters;
|
|
5034
5271
|
groupBy?: Maybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
5035
5272
|
};
|
|
5273
|
+
export declare type ForgeMetricsResolution = {
|
|
5274
|
+
__typename?: 'ForgeMetricsResolution';
|
|
5275
|
+
size: Scalars['Int'];
|
|
5276
|
+
units: ForgeMetricsResolutionUnit;
|
|
5277
|
+
};
|
|
5278
|
+
export declare enum ForgeMetricsResolutionUnit {
|
|
5279
|
+
Hours = "HOURS",
|
|
5280
|
+
Minutes = "MINUTES"
|
|
5281
|
+
}
|
|
5036
5282
|
export declare type ForgeMetricsSeries = {
|
|
5037
5283
|
groups: Array<ForgeMetricsLabelGroup>;
|
|
5038
5284
|
};
|
|
@@ -5041,6 +5287,7 @@ export declare type ForgeMetricsSuccessRateData = ForgeMetricsData & {
|
|
|
5041
5287
|
name: Scalars['String'];
|
|
5042
5288
|
type: ForgeMetricsDataType;
|
|
5043
5289
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5290
|
+
resolution: ForgeMetricsResolution;
|
|
5044
5291
|
};
|
|
5045
5292
|
export declare type ForgeMetricsSuccessRateDataPoint = {
|
|
5046
5293
|
__typename?: 'ForgeMetricsSuccessRateDataPoint';
|
|
@@ -5058,6 +5305,7 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
5058
5305
|
name: Scalars['String'];
|
|
5059
5306
|
type: ForgeMetricsDataType;
|
|
5060
5307
|
series: Array<ForgeMetricsSuccessRateSeries>;
|
|
5308
|
+
resolution: ForgeMetricsResolution;
|
|
5061
5309
|
};
|
|
5062
5310
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
5063
5311
|
export declare type FunctionDescription = {
|
|
@@ -5195,6 +5443,11 @@ export declare type InvokePolarisObjectPayload = Payload & {
|
|
|
5195
5443
|
errors?: Maybe<Array<MutationError>>;
|
|
5196
5444
|
response?: Maybe<ResolvedPolarisObject>;
|
|
5197
5445
|
};
|
|
5446
|
+
export declare type IssueAndProject = {
|
|
5447
|
+
__typename?: 'IssueAndProject';
|
|
5448
|
+
issueId: Scalars['ID'];
|
|
5449
|
+
projectId: Scalars['ID'];
|
|
5450
|
+
};
|
|
5198
5451
|
export declare type IssueDevOpsBranchDetails = {
|
|
5199
5452
|
__typename?: 'IssueDevOpsBranchDetails';
|
|
5200
5453
|
name: Scalars['String'];
|
|
@@ -8489,6 +8742,8 @@ export declare type JiraQuery = {
|
|
|
8489
8742
|
issueSearchView?: Maybe<JiraIssueSearchView>;
|
|
8490
8743
|
issueByKey?: Maybe<JiraIssue>;
|
|
8491
8744
|
issueById?: Maybe<JiraIssue>;
|
|
8745
|
+
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
8746
|
+
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
8492
8747
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
8493
8748
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
8494
8749
|
allGrantTypeKeys: Array<JiraGrantTypeKey>;
|
|
@@ -8546,6 +8801,12 @@ export declare type JiraQueryIssueByKeyArgs = {
|
|
|
8546
8801
|
export declare type JiraQueryIssueByIdArgs = {
|
|
8547
8802
|
id: Scalars['ID'];
|
|
8548
8803
|
};
|
|
8804
|
+
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
8805
|
+
issueId: Scalars['ID'];
|
|
8806
|
+
};
|
|
8807
|
+
export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
8808
|
+
issueKey: Scalars['String'];
|
|
8809
|
+
};
|
|
8549
8810
|
export declare type JiraQueryApplicationPropertiesByKeyArgs = {
|
|
8550
8811
|
cloudId: Scalars['ID'];
|
|
8551
8812
|
keys: Array<Scalars['String']>;
|
|
@@ -10896,6 +11157,7 @@ export declare type NewCardParent = {
|
|
|
10896
11157
|
export declare type Node = {
|
|
10897
11158
|
id: Scalars['ID'];
|
|
10898
11159
|
};
|
|
11160
|
+
export declare type OnJiraIssueCreatedForUserResponseType = JiraProjectConnection | IssueAndProject;
|
|
10899
11161
|
export declare type OpsgenieAlertCountByPriority = {
|
|
10900
11162
|
__typename?: 'OpsgenieAlertCountByPriority';
|
|
10901
11163
|
priority?: Maybe<Scalars['String']>;
|
|
@@ -12711,6 +12973,7 @@ export declare type RoadmapUserConfiguration = {
|
|
|
12711
12973
|
timelineMode: RoadmapTimelineMode;
|
|
12712
12974
|
epicView: RoadmapEpicView;
|
|
12713
12975
|
levelOneView: RoadmapLevelOneView;
|
|
12976
|
+
levelOneViewSettings: RoadmapViewSettings;
|
|
12714
12977
|
};
|
|
12715
12978
|
export declare type RoadmapVersion = {
|
|
12716
12979
|
__typename?: 'RoadmapVersion';
|
|
@@ -12723,6 +12986,11 @@ export declare enum RoadmapVersionStatus {
|
|
|
12723
12986
|
Unreleased = "UNRELEASED",
|
|
12724
12987
|
Archived = "ARCHIVED"
|
|
12725
12988
|
}
|
|
12989
|
+
export declare type RoadmapViewSettings = {
|
|
12990
|
+
__typename?: 'RoadmapViewSettings';
|
|
12991
|
+
period: Scalars['Int'];
|
|
12992
|
+
showCompleted: Scalars['Boolean'];
|
|
12993
|
+
};
|
|
12726
12994
|
export declare type RoadmapsQuery = {
|
|
12727
12995
|
__typename?: 'RoadmapsQuery';
|
|
12728
12996
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -12753,6 +13021,8 @@ export declare enum Scope {
|
|
|
12753
13021
|
WriteCompassScorecard = "WRITE_COMPASS_SCORECARD",
|
|
12754
13022
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
12755
13023
|
WriteCompassEvent = "WRITE_COMPASS_EVENT",
|
|
13024
|
+
ReadCompassMetric = "READ_COMPASS_METRIC",
|
|
13025
|
+
WriteCompassMetric = "WRITE_COMPASS_METRIC",
|
|
12756
13026
|
ConfluenceAtlassianExternal = "CONFLUENCE_ATLASSIAN_EXTERNAL",
|
|
12757
13027
|
ReadConfluenceContentAll = "READ_CONFLUENCE_CONTENT_ALL",
|
|
12758
13028
|
ReadConfluenceContentSummary = "READ_CONFLUENCE_CONTENT_SUMMARY",
|
|
@@ -13351,6 +13621,16 @@ export declare type Storage = {
|
|
|
13351
13621
|
hosted?: Maybe<HostedStorage>;
|
|
13352
13622
|
remotes?: Maybe<Array<Remote>>;
|
|
13353
13623
|
};
|
|
13624
|
+
export declare type Subscription = {
|
|
13625
|
+
__typename?: 'Subscription';
|
|
13626
|
+
onJiraIssueCreatedForUser?: Maybe<OnJiraIssueCreatedForUserResponseType>;
|
|
13627
|
+
};
|
|
13628
|
+
export declare type SubscriptionOnJiraIssueCreatedForUserArgs = {
|
|
13629
|
+
cloudId: Scalars['ID'];
|
|
13630
|
+
accountId: Scalars['ID'];
|
|
13631
|
+
projectType?: JiraProjectType;
|
|
13632
|
+
filter?: JiraProjectFilterInput;
|
|
13633
|
+
};
|
|
13354
13634
|
export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
13355
13635
|
__typename?: 'SupportRequest';
|
|
13356
13636
|
id: Scalars['ID'];
|
|
@@ -13394,7 +13674,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
13394
13674
|
addComment?: Maybe<SupportRequestComment>;
|
|
13395
13675
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
13396
13676
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13397
|
-
|
|
13677
|
+
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
13678
|
+
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
13398
13679
|
};
|
|
13399
13680
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
13400
13681
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -13403,7 +13684,10 @@ export declare type SupportRequestCatalogMutationApiStatusTransitionArgs = {
|
|
|
13403
13684
|
input?: Maybe<SupportRequestTransitionInput>;
|
|
13404
13685
|
};
|
|
13405
13686
|
export declare type SupportRequestCatalogMutationApiRemoveRequestParticipantsArgs = {
|
|
13406
|
-
input
|
|
13687
|
+
input: SupportRequestParticipantsInput;
|
|
13688
|
+
};
|
|
13689
|
+
export declare type SupportRequestCatalogMutationApiAddRequestParticipantsArgs = {
|
|
13690
|
+
input: SupportRequestParticipantsInput;
|
|
13407
13691
|
};
|
|
13408
13692
|
export declare type SupportRequestCatalogMutationApiCreateNamedContactOperationRequestArgs = {
|
|
13409
13693
|
emails: Array<Scalars['String']>;
|
|
@@ -13415,6 +13699,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
13415
13699
|
__typename?: 'SupportRequestCatalogQueryApi';
|
|
13416
13700
|
me?: Maybe<SupportRequestPage>;
|
|
13417
13701
|
supportRequest?: Maybe<SupportRequest>;
|
|
13702
|
+
users?: Maybe<SupportRequestUsers>;
|
|
13418
13703
|
};
|
|
13419
13704
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
13420
13705
|
key: Scalars['ID'];
|
|
@@ -13599,6 +13884,17 @@ export declare type SupportRequestUser = {
|
|
|
13599
13884
|
email?: Maybe<Scalars['String']>;
|
|
13600
13885
|
displayName?: Maybe<Scalars['String']>;
|
|
13601
13886
|
};
|
|
13887
|
+
export declare type SupportRequestUsers = {
|
|
13888
|
+
__typename?: 'SupportRequestUsers';
|
|
13889
|
+
searchUsers: Array<SupportRequestUser>;
|
|
13890
|
+
};
|
|
13891
|
+
export declare type SupportRequestUsersSearchUsersArgs = {
|
|
13892
|
+
query?: Maybe<Scalars['String']>;
|
|
13893
|
+
startAt?: Maybe<Scalars['Int']>;
|
|
13894
|
+
maxResults?: Maybe<Scalars['Int']>;
|
|
13895
|
+
includeActive?: Maybe<Scalars['Boolean']>;
|
|
13896
|
+
includeInactive?: Maybe<Scalars['Boolean']>;
|
|
13897
|
+
};
|
|
13602
13898
|
export declare type SupportRequests = {
|
|
13603
13899
|
__typename?: 'SupportRequests';
|
|
13604
13900
|
total: Scalars['Int'];
|
|
@@ -14345,6 +14641,7 @@ export declare type UpdatePolarisViewTimestampPayload = Payload & {
|
|
|
14345
14641
|
};
|
|
14346
14642
|
export declare type User = {
|
|
14347
14643
|
accountId: Scalars['ID'];
|
|
14644
|
+
canonicalAccountId: Scalars['ID'];
|
|
14348
14645
|
accountStatus: AccountStatus;
|
|
14349
14646
|
name: Scalars['String'];
|
|
14350
14647
|
picture: Scalars['URL'];
|