@forge/cli-shared 3.17.0 → 3.17.1-next.1
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 +15 -0
- package/out/graphql/graphql-types.d.ts +150 -52
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +21 -11
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.17.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bdbea8e1: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- @sentry/node
|
|
10
|
+
|
|
11
|
+
## 3.17.1-next.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [484f907]
|
|
16
|
+
- @forge/manifest@4.18.1-next.0
|
|
17
|
+
|
|
3
18
|
## 3.17.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -685,7 +685,7 @@ export type AppContributor = {
|
|
|
685
685
|
status: Scalars['String'];
|
|
686
686
|
isOwner?: Maybe<Scalars['Boolean']>;
|
|
687
687
|
avatarUrl?: Maybe<Scalars['String']>;
|
|
688
|
-
role?: Maybe<Scalars['String']
|
|
688
|
+
role?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
689
689
|
};
|
|
690
690
|
export declare enum AppContributorRole {
|
|
691
691
|
Admin = "ADMIN",
|
|
@@ -1104,6 +1104,7 @@ export type AppPrincipal = {
|
|
|
1104
1104
|
export type AppRecContext = {
|
|
1105
1105
|
userId?: Maybe<Scalars['ID']>;
|
|
1106
1106
|
tenantId?: Maybe<Scalars['ID']>;
|
|
1107
|
+
orgId?: Maybe<Scalars['ID']>;
|
|
1107
1108
|
product?: Maybe<Scalars['String']>;
|
|
1108
1109
|
subproduct?: Maybe<Scalars['String']>;
|
|
1109
1110
|
containers?: Maybe<Scalars['JSON']>;
|
|
@@ -2182,7 +2183,8 @@ export type CcpAccountDetails = {
|
|
|
2182
2183
|
};
|
|
2183
2184
|
export declare enum CcpActivationReason {
|
|
2184
2185
|
DefaultPricing = "DEFAULT_PRICING",
|
|
2185
|
-
AdvantagePricing = "ADVANTAGE_PRICING"
|
|
2186
|
+
AdvantagePricing = "ADVANTAGE_PRICING",
|
|
2187
|
+
ExperimentalPricing = "EXPERIMENTAL_PRICING"
|
|
2186
2188
|
}
|
|
2187
2189
|
export type CcpApplicationReason = {
|
|
2188
2190
|
__typename?: 'CcpApplicationReason';
|
|
@@ -2210,8 +2212,9 @@ export type CcpChargeDetails = {
|
|
|
2210
2212
|
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
2211
2213
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
2212
2214
|
};
|
|
2213
|
-
export type
|
|
2214
|
-
__typename?: '
|
|
2215
|
+
export type CcpChargeElement = {
|
|
2216
|
+
__typename?: 'CcpChargeElement';
|
|
2217
|
+
unit?: Maybe<Scalars['String']>;
|
|
2215
2218
|
ceiling?: Maybe<Scalars['Int']>;
|
|
2216
2219
|
};
|
|
2217
2220
|
export type CcpChargeQuantity = {
|
|
@@ -2334,7 +2337,7 @@ export type CcpOffering = Node & {
|
|
|
2334
2337
|
status?: Maybe<CcpOfferingStatus>;
|
|
2335
2338
|
supportedBillingSystems?: Maybe<Array<Maybe<CcpSupportedBillingSystems>>>;
|
|
2336
2339
|
version?: Maybe<Scalars['Int']>;
|
|
2337
|
-
chargeElements?: Maybe<Array<Maybe<
|
|
2340
|
+
chargeElements?: Maybe<Array<Maybe<CcpChargeElement>>>;
|
|
2338
2341
|
syntheticTemplates?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
2339
2342
|
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
2340
2343
|
expiryDate?: Maybe<Scalars['Float']>;
|
|
@@ -3010,6 +3013,7 @@ export type CompassCatalogQueryApi = {
|
|
|
3010
3013
|
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
3011
3014
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
3012
3015
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
3016
|
+
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
3013
3017
|
};
|
|
3014
3018
|
export type CompassCatalogQueryApiComponentArgs = {
|
|
3015
3019
|
id: Scalars['ID'];
|
|
@@ -3086,6 +3090,11 @@ export type CompassCatalogQueryApiStarredComponentsArgs = {
|
|
|
3086
3090
|
export type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
|
|
3087
3091
|
query: CompassApplicationManagedComponentsQuery;
|
|
3088
3092
|
};
|
|
3093
|
+
export type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
3094
|
+
componentId: Scalars['ID'];
|
|
3095
|
+
first?: Maybe<Scalars['Int']>;
|
|
3096
|
+
after?: Maybe<Scalars['String']>;
|
|
3097
|
+
};
|
|
3089
3098
|
export type CompassChangeMetadata = {
|
|
3090
3099
|
__typename?: 'CompassChangeMetadata';
|
|
3091
3100
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -3903,7 +3912,7 @@ export type CompassFlagEventProperties = {
|
|
|
3903
3912
|
id: Scalars['ID'];
|
|
3904
3913
|
status?: Maybe<Scalars['String']>;
|
|
3905
3914
|
};
|
|
3906
|
-
export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & {
|
|
3915
|
+
export type CompassFreeformUserDefinedParameter = CompassUserDefinedParameter & Node & {
|
|
3907
3916
|
__typename?: 'CompassFreeformUserDefinedParameter';
|
|
3908
3917
|
id: Scalars['ID'];
|
|
3909
3918
|
name: Scalars['String'];
|
|
@@ -4747,6 +4756,17 @@ export type CompassUserDefinedParameters = {
|
|
|
4747
4756
|
componentId: Scalars['ID'];
|
|
4748
4757
|
parameters?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
4749
4758
|
};
|
|
4759
|
+
export type CompassUserDefinedParametersConnection = {
|
|
4760
|
+
__typename?: 'CompassUserDefinedParametersConnection';
|
|
4761
|
+
nodes?: Maybe<Array<CompassUserDefinedParameter>>;
|
|
4762
|
+
edges?: Maybe<Array<CompassUserDefinedParametersEdge>>;
|
|
4763
|
+
pageInfo?: Maybe<PageInfo>;
|
|
4764
|
+
};
|
|
4765
|
+
export type CompassUserDefinedParametersEdge = {
|
|
4766
|
+
__typename?: 'CompassUserDefinedParametersEdge';
|
|
4767
|
+
cursor: Scalars['String'];
|
|
4768
|
+
node?: Maybe<CompassUserDefinedParameter>;
|
|
4769
|
+
};
|
|
4750
4770
|
export type CompassViewerSubscription = {
|
|
4751
4771
|
__typename?: 'CompassViewerSubscription';
|
|
4752
4772
|
subscribed: Scalars['Boolean'];
|
|
@@ -5845,46 +5865,6 @@ export type ConnectAppScope = {
|
|
|
5845
5865
|
capability: Scalars['String'];
|
|
5846
5866
|
atlassianProductName: Scalars['String'];
|
|
5847
5867
|
};
|
|
5848
|
-
export type ConnectedAppsAppVersion = {
|
|
5849
|
-
__typename?: 'ConnectedAppsAppVersion';
|
|
5850
|
-
id: Scalars['ID'];
|
|
5851
|
-
version?: Maybe<Scalars['String']>;
|
|
5852
|
-
permissions?: Maybe<ConnectedAppsPermissions>;
|
|
5853
|
-
};
|
|
5854
|
-
export type ConnectedAppsConnectApp = {
|
|
5855
|
-
__typename?: 'ConnectedAppsConnectApp';
|
|
5856
|
-
id: Scalars['ID'];
|
|
5857
|
-
name?: Maybe<Scalars['String']>;
|
|
5858
|
-
description?: Maybe<Scalars['String']>;
|
|
5859
|
-
vendorName?: Maybe<Scalars['String']>;
|
|
5860
|
-
installationsByContext?: Maybe<Array<ConnectedAppsConnectInstallations>>;
|
|
5861
|
-
};
|
|
5862
|
-
export type ConnectedAppsConnectAppInstallationsByContextArgs = {
|
|
5863
|
-
contexts: Array<Scalars['ID']>;
|
|
5864
|
-
};
|
|
5865
|
-
export type ConnectedAppsConnectInstallations = {
|
|
5866
|
-
__typename?: 'ConnectedAppsConnectInstallations';
|
|
5867
|
-
id: Scalars['String'];
|
|
5868
|
-
appId: Scalars['String'];
|
|
5869
|
-
context: Scalars['String'];
|
|
5870
|
-
appVersion?: Maybe<ConnectedAppsAppVersion>;
|
|
5871
|
-
};
|
|
5872
|
-
export type ConnectedAppsPermissions = {
|
|
5873
|
-
__typename?: 'ConnectedAppsPermissions';
|
|
5874
|
-
scopes?: Maybe<Array<ConnectedAppsScope>>;
|
|
5875
|
-
egress?: Maybe<Array<ConnectedAppsScopeAppNetworkEgressPermission>>;
|
|
5876
|
-
};
|
|
5877
|
-
export type ConnectedAppsScope = {
|
|
5878
|
-
__typename?: 'ConnectedAppsScope';
|
|
5879
|
-
key: Scalars['String'];
|
|
5880
|
-
name?: Maybe<Scalars['String']>;
|
|
5881
|
-
description?: Maybe<Scalars['String']>;
|
|
5882
|
-
};
|
|
5883
|
-
export type ConnectedAppsScopeAppNetworkEgressPermission = {
|
|
5884
|
-
__typename?: 'ConnectedAppsScopeAppNetworkEgressPermission';
|
|
5885
|
-
type?: Maybe<Scalars['String']>;
|
|
5886
|
-
addresses?: Maybe<Array<Scalars['String']>>;
|
|
5887
|
-
};
|
|
5888
5868
|
export type ContainerEventObject = {
|
|
5889
5869
|
__typename?: 'ContainerEventObject';
|
|
5890
5870
|
id: Scalars['ID'];
|
|
@@ -6681,6 +6661,42 @@ export type CreatedSprint = {
|
|
|
6681
6661
|
sprintState?: Maybe<SprintState>;
|
|
6682
6662
|
canUpdateSprint?: Maybe<Scalars['Boolean']>;
|
|
6683
6663
|
};
|
|
6664
|
+
export type CsApp = App | CsConnectApp;
|
|
6665
|
+
export type CsAppIdsInstalledInContextsEdge = {
|
|
6666
|
+
__typename?: 'CsAppIdsInstalledInContextsEdge';
|
|
6667
|
+
node?: Maybe<CsApp>;
|
|
6668
|
+
cursor: Scalars['String'];
|
|
6669
|
+
};
|
|
6670
|
+
export type CsAppIdsInstalledInContextsEdgeNodeArgs = {
|
|
6671
|
+
contextIds: Array<Scalars['ID']>;
|
|
6672
|
+
};
|
|
6673
|
+
export type CsAppIdsInstalledInContextsFilter = {
|
|
6674
|
+
type: CsAppIdsInstalledInContextsFilterType;
|
|
6675
|
+
values: Array<Scalars['String']>;
|
|
6676
|
+
};
|
|
6677
|
+
export declare enum CsAppIdsInstalledInContextsFilterType {
|
|
6678
|
+
ExcludeAppIds = "EXCLUDE_APP_IDS",
|
|
6679
|
+
IncludeAppIds = "INCLUDE_APP_IDS"
|
|
6680
|
+
}
|
|
6681
|
+
export type CsAppIdsInstalledInContextsOrderBy = {
|
|
6682
|
+
sortKey: CsAppIdsInstalledInContextsSortKey;
|
|
6683
|
+
direction: SortDirection;
|
|
6684
|
+
};
|
|
6685
|
+
export declare enum CsAppIdsInstalledInContextsSortKey {
|
|
6686
|
+
Name = "NAME"
|
|
6687
|
+
}
|
|
6688
|
+
export type CsAppsInstalledInContextsConnection = {
|
|
6689
|
+
__typename?: 'CsAppsInstalledInContextsConnection';
|
|
6690
|
+
edges: Array<CsAppIdsInstalledInContextsEdge>;
|
|
6691
|
+
pageInfo: PageInfo;
|
|
6692
|
+
};
|
|
6693
|
+
export type CsConnectApp = {
|
|
6694
|
+
__typename?: 'CsConnectApp';
|
|
6695
|
+
id: Scalars['ID'];
|
|
6696
|
+
name: Scalars['String'];
|
|
6697
|
+
distributionStatus: Scalars['String'];
|
|
6698
|
+
vendorName?: Maybe<Scalars['String']>;
|
|
6699
|
+
};
|
|
6684
6700
|
export type CumulativeFlowDiagram = {
|
|
6685
6701
|
__typename?: 'CumulativeFlowDiagram';
|
|
6686
6702
|
chart: CfdChartConnection;
|
|
@@ -8756,7 +8772,7 @@ export type EcosystemQuery = {
|
|
|
8756
8772
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
8757
8773
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
8758
8774
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
8759
|
-
|
|
8775
|
+
appsInstalledInContexts: CsAppsInstalledInContextsConnection;
|
|
8760
8776
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
8761
8777
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
8762
8778
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
@@ -8792,9 +8808,14 @@ export type EcosystemQueryAppInstallationsByAppArgs = {
|
|
|
8792
8808
|
export type EcosystemQueryFortifiedMetricsArgs = {
|
|
8793
8809
|
appKey: Scalars['ID'];
|
|
8794
8810
|
};
|
|
8795
|
-
export type
|
|
8796
|
-
|
|
8797
|
-
|
|
8811
|
+
export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
8812
|
+
contextIds: Array<Scalars['ID']>;
|
|
8813
|
+
filters?: Maybe<Array<CsAppIdsInstalledInContextsFilter>>;
|
|
8814
|
+
orderBy?: Maybe<Array<CsAppIdsInstalledInContextsOrderBy>>;
|
|
8815
|
+
first?: Maybe<Scalars['Int']>;
|
|
8816
|
+
last?: Maybe<Scalars['Int']>;
|
|
8817
|
+
before?: Maybe<Scalars['String']>;
|
|
8818
|
+
after?: Maybe<Scalars['String']>;
|
|
8798
8819
|
};
|
|
8799
8820
|
export type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
8800
8821
|
oauthClientIds: Array<Scalars['ID']>;
|
|
@@ -8922,6 +8943,7 @@ export type Extension = {
|
|
|
8922
8943
|
currentUserConsent?: Maybe<UserConsentExtension>;
|
|
8923
8944
|
requiresUserConsent?: Maybe<Scalars['Boolean']>;
|
|
8924
8945
|
requiresAutoConsent?: Maybe<Scalars['Boolean']>;
|
|
8946
|
+
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']>;
|
|
8925
8947
|
dataClassificationPolicyDecision: DataClassificationPolicyDecision;
|
|
8926
8948
|
};
|
|
8927
8949
|
export type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
@@ -10158,6 +10180,21 @@ export type HelpCenter = Node & {
|
|
|
10158
10180
|
slug?: Maybe<Scalars['String']>;
|
|
10159
10181
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
10160
10182
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
10183
|
+
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
10184
|
+
};
|
|
10185
|
+
export type HelpCenterBranding = {
|
|
10186
|
+
__typename?: 'HelpCenterBranding';
|
|
10187
|
+
colors?: Maybe<HelpCenterBrandingColors>;
|
|
10188
|
+
};
|
|
10189
|
+
export type HelpCenterBrandingColors = {
|
|
10190
|
+
__typename?: 'HelpCenterBrandingColors';
|
|
10191
|
+
primary?: Maybe<Scalars['String']>;
|
|
10192
|
+
};
|
|
10193
|
+
export type HelpCenterBrandingColorsInput = {
|
|
10194
|
+
primary?: Maybe<Scalars['String']>;
|
|
10195
|
+
};
|
|
10196
|
+
export type HelpCenterBrandingInput = {
|
|
10197
|
+
colors?: Maybe<HelpCenterBrandingColorsInput>;
|
|
10161
10198
|
};
|
|
10162
10199
|
export type HelpCenterBulkCreateTopicsInput = {
|
|
10163
10200
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -10305,6 +10342,7 @@ export type HelpCenterUpdateInput = {
|
|
|
10305
10342
|
helpCenterAri: Scalars['String'];
|
|
10306
10343
|
name?: Maybe<HelpCenterNameInput>;
|
|
10307
10344
|
slug?: Maybe<Scalars['String']>;
|
|
10345
|
+
helpCenterBranding?: Maybe<HelpCenterBrandingInput>;
|
|
10308
10346
|
};
|
|
10309
10347
|
export type HelpCenterUpdatePayload = Payload & {
|
|
10310
10348
|
__typename?: 'HelpCenterUpdatePayload';
|
|
@@ -11446,6 +11484,7 @@ export type JiraAnswerApprovalDecisionInput = {
|
|
|
11446
11484
|
};
|
|
11447
11485
|
export type JiraAnswerApprovalDecisionPayload = Payload & {
|
|
11448
11486
|
__typename?: 'JiraAnswerApprovalDecisionPayload';
|
|
11487
|
+
completedDate?: Maybe<Scalars['Long']>;
|
|
11449
11488
|
success: Scalars['Boolean'];
|
|
11450
11489
|
errors?: Maybe<Array<MutationError>>;
|
|
11451
11490
|
};
|
|
@@ -12786,6 +12825,11 @@ export type JiraFieldNonEditableReason = {
|
|
|
12786
12825
|
__typename?: 'JiraFieldNonEditableReason';
|
|
12787
12826
|
message?: Maybe<Scalars['String']>;
|
|
12788
12827
|
};
|
|
12828
|
+
export type JiraFieldType = {
|
|
12829
|
+
__typename?: 'JiraFieldType';
|
|
12830
|
+
name: Scalars['String'];
|
|
12831
|
+
displayName?: Maybe<Scalars['String']>;
|
|
12832
|
+
};
|
|
12789
12833
|
export type JiraFilter = {
|
|
12790
12834
|
id: Scalars['ID'];
|
|
12791
12835
|
filterId: Scalars['String'];
|
|
@@ -13794,6 +13838,11 @@ export type JiraIssueLinkTypeRelationEdge = {
|
|
|
13794
13838
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
13795
13839
|
cursor: Scalars['String'];
|
|
13796
13840
|
};
|
|
13841
|
+
export type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
13842
|
+
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
13843
|
+
success: Scalars['Boolean'];
|
|
13844
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13845
|
+
};
|
|
13797
13846
|
export type JiraIssueNavigatorPageInfo = {
|
|
13798
13847
|
__typename?: 'JiraIssueNavigatorPageInfo';
|
|
13799
13848
|
firstIssuePosition?: Maybe<Scalars['Int']>;
|
|
@@ -13936,6 +13985,7 @@ export type JiraIssueSearchFieldSet = {
|
|
|
13936
13985
|
fieldSetId?: Maybe<Scalars['String']>;
|
|
13937
13986
|
displayName?: Maybe<Scalars['String']>;
|
|
13938
13987
|
type?: Maybe<Scalars['String']>;
|
|
13988
|
+
fieldType?: Maybe<JiraFieldType>;
|
|
13939
13989
|
jqlTerm?: Maybe<Scalars['String']>;
|
|
13940
13990
|
isSortable?: Maybe<Scalars['Boolean']>;
|
|
13941
13991
|
isSelected?: Maybe<Scalars['Boolean']>;
|
|
@@ -14036,6 +14086,7 @@ export type JiraIssueTransitionModal = {
|
|
|
14036
14086
|
title?: Maybe<Scalars['String']>;
|
|
14037
14087
|
description?: Maybe<Scalars['String']>;
|
|
14038
14088
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
14089
|
+
issue?: Maybe<JiraIssue>;
|
|
14039
14090
|
};
|
|
14040
14091
|
export type JiraIssueType = Node & {
|
|
14041
14092
|
__typename?: 'JiraIssueType';
|
|
@@ -14119,6 +14170,22 @@ export type JiraJqlFromNaturalLanguage = {
|
|
|
14119
14170
|
generatedJQLError?: Maybe<JiraJqlGenerationError>;
|
|
14120
14171
|
};
|
|
14121
14172
|
export type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError;
|
|
14173
|
+
export type JiraJqlHistory = Node & {
|
|
14174
|
+
__typename?: 'JiraJQLHistory';
|
|
14175
|
+
id: Scalars['ID'];
|
|
14176
|
+
lastViewed?: Maybe<Scalars['DateTime']>;
|
|
14177
|
+
jql?: Maybe<Scalars['String']>;
|
|
14178
|
+
};
|
|
14179
|
+
export type JiraJqlHistoryConnection = {
|
|
14180
|
+
__typename?: 'JiraJQLHistoryConnection';
|
|
14181
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
14182
|
+
pageInfo: PageInfo;
|
|
14183
|
+
edges?: Maybe<Array<Maybe<JiraJqlHistoryEdge>>>;
|
|
14184
|
+
};
|
|
14185
|
+
export type JiraJqlHistoryEdge = {
|
|
14186
|
+
__typename?: 'JiraJQLHistoryEdge';
|
|
14187
|
+
node?: Maybe<JiraJqlHistory>;
|
|
14188
|
+
};
|
|
14122
14189
|
export declare enum JiraJqlAutocompleteType {
|
|
14123
14190
|
None = "NONE",
|
|
14124
14191
|
Component = "COMPONENT",
|
|
@@ -14258,6 +14325,7 @@ export type JiraJqlField = {
|
|
|
14258
14325
|
searchTemplate?: Maybe<JiraJqlSearchTemplate>;
|
|
14259
14326
|
autoCompleteTemplate?: Maybe<JiraJqlAutocompleteType>;
|
|
14260
14327
|
jqlFieldType?: Maybe<JiraJqlFieldType>;
|
|
14328
|
+
fieldType?: Maybe<JiraFieldType>;
|
|
14261
14329
|
shouldShowInContext?: Maybe<Scalars['Boolean']>;
|
|
14262
14330
|
};
|
|
14263
14331
|
export type JiraJqlFieldConnection = {
|
|
@@ -14945,6 +15013,7 @@ export type JiraMutation = {
|
|
|
14945
15013
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
14946
15014
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
14947
15015
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
15016
|
+
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
14948
15017
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
14949
15018
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
14950
15019
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -15166,6 +15235,9 @@ export type JiraMutationSubmitBulkOperationArgs = {
|
|
|
15166
15235
|
cloudId: Scalars['ID'];
|
|
15167
15236
|
input: JiraSubmitBulkOperationInput;
|
|
15168
15237
|
};
|
|
15238
|
+
export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
15239
|
+
cloudId: Scalars['ID'];
|
|
15240
|
+
};
|
|
15169
15241
|
export type JiraMutationCreateProjectShortcutArgs = {
|
|
15170
15242
|
input: JiraCreateShortcutInput;
|
|
15171
15243
|
};
|
|
@@ -16361,6 +16433,7 @@ export type JiraQuery = {
|
|
|
16361
16433
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
16362
16434
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
16363
16435
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
16436
|
+
issueNavigatorUserJQLHistory?: Maybe<JiraJqlHistoryConnection>;
|
|
16364
16437
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
16365
16438
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
16366
16439
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
@@ -16485,6 +16558,7 @@ export type JiraQueryIssueSearchStableArgs = {
|
|
|
16485
16558
|
after?: Maybe<Scalars['String']>;
|
|
16486
16559
|
last?: Maybe<Scalars['Int']>;
|
|
16487
16560
|
before?: Maybe<Scalars['String']>;
|
|
16561
|
+
saveJQLToUserHistory?: Maybe<Scalars['Boolean']>;
|
|
16488
16562
|
};
|
|
16489
16563
|
export type JiraQueryIssueSearchTotalCountArgs = {
|
|
16490
16564
|
cloudId: Scalars['ID'];
|
|
@@ -16741,6 +16815,13 @@ export type JiraQueryFieldsArgs = {
|
|
|
16741
16815
|
after?: Maybe<Scalars['String']>;
|
|
16742
16816
|
viewContext?: Maybe<JiraJqlViewContext>;
|
|
16743
16817
|
};
|
|
16818
|
+
export type JiraQueryIssueNavigatorUserJqlHistoryArgs = {
|
|
16819
|
+
cloudId: Scalars['ID'];
|
|
16820
|
+
first?: Maybe<Scalars['Int']>;
|
|
16821
|
+
after?: Maybe<Scalars['String']>;
|
|
16822
|
+
last?: Maybe<Scalars['Int']>;
|
|
16823
|
+
before?: Maybe<Scalars['String']>;
|
|
16824
|
+
};
|
|
16744
16825
|
export type JiraQueryBulkOperationProgressArgs = {
|
|
16745
16826
|
cloudId: Scalars['ID'];
|
|
16746
16827
|
taskId: Scalars['ID'];
|
|
@@ -26246,7 +26327,7 @@ export declare enum TeamMembershipRole {
|
|
|
26246
26327
|
Regular = "REGULAR",
|
|
26247
26328
|
Admin = "ADMIN"
|
|
26248
26329
|
}
|
|
26249
|
-
export declare enum
|
|
26330
|
+
export declare enum TeamMembershipSettings {
|
|
26250
26331
|
Open = "OPEN",
|
|
26251
26332
|
MemberInvite = "MEMBER_INVITE"
|
|
26252
26333
|
}
|
|
@@ -26352,7 +26433,7 @@ export type TeamV2 = Node & {
|
|
|
26352
26433
|
state?: Maybe<TeamStateV2>;
|
|
26353
26434
|
displayName?: Maybe<Scalars['String']>;
|
|
26354
26435
|
description?: Maybe<Scalars['String']>;
|
|
26355
|
-
|
|
26436
|
+
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
26356
26437
|
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
26357
26438
|
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
26358
26439
|
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
@@ -26987,13 +27068,17 @@ export type TrelloBoardListsLimits = {
|
|
|
26987
27068
|
export type TrelloBoardPrefs = {
|
|
26988
27069
|
__typename?: 'TrelloBoardPrefs';
|
|
26989
27070
|
background?: Maybe<TrelloBoardBackground>;
|
|
27071
|
+
calendarFeedEnabled?: Maybe<Scalars['Boolean']>;
|
|
26990
27072
|
canInvite?: Maybe<Scalars['Boolean']>;
|
|
27073
|
+
cardAging?: Maybe<Scalars['String']>;
|
|
27074
|
+
cardCovers?: Maybe<Scalars['Boolean']>;
|
|
26991
27075
|
comments?: Maybe<Scalars['String']>;
|
|
26992
27076
|
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
26993
27077
|
invitations?: Maybe<Scalars['String']>;
|
|
26994
27078
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
26995
27079
|
permissionLevel?: Maybe<Scalars['String']>;
|
|
26996
27080
|
selfJoin?: Maybe<Scalars['Boolean']>;
|
|
27081
|
+
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
26997
27082
|
voting?: Maybe<Scalars['String']>;
|
|
26998
27083
|
};
|
|
26999
27084
|
export type TrelloBoardPrefsUpdatedDeltas = {
|
|
@@ -27459,8 +27544,16 @@ export type TrelloListViewer = {
|
|
|
27459
27544
|
};
|
|
27460
27545
|
export type TrelloMember = Node & {
|
|
27461
27546
|
__typename?: 'TrelloMember';
|
|
27547
|
+
activityBlocked?: Maybe<Scalars['Boolean']>;
|
|
27548
|
+
avatarSource?: Maybe<Scalars['String']>;
|
|
27549
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
27550
|
+
bio?: Maybe<Scalars['String']>;
|
|
27551
|
+
confirmed?: Maybe<Scalars['Boolean']>;
|
|
27552
|
+
fullName?: Maybe<Scalars['String']>;
|
|
27462
27553
|
id: Scalars['ID'];
|
|
27554
|
+
initials?: Maybe<Scalars['String']>;
|
|
27463
27555
|
objectId: Scalars['ID'];
|
|
27556
|
+
url?: Maybe<Scalars['String']>;
|
|
27464
27557
|
user?: Maybe<User>;
|
|
27465
27558
|
username?: Maybe<Scalars['String']>;
|
|
27466
27559
|
};
|
|
@@ -27629,6 +27722,11 @@ export type TrelloSubscriptionApi = {
|
|
|
27629
27722
|
export type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
27630
27723
|
id: Scalars['ID'];
|
|
27631
27724
|
};
|
|
27725
|
+
export type TrelloSwitcherViewsInfo = {
|
|
27726
|
+
__typename?: 'TrelloSwitcherViewsInfo';
|
|
27727
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
27728
|
+
viewType?: Maybe<Scalars['String']>;
|
|
27729
|
+
};
|
|
27632
27730
|
export type TrelloTemplateGalleryCategory = {
|
|
27633
27731
|
__typename?: 'TrelloTemplateGalleryCategory';
|
|
27634
27732
|
key: Scalars['String'];
|