@forge/cli-shared 3.17.1-next.0 → 3.17.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 +15 -0
- package/out/graphql/graphql-types.d.ts +160 -54
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -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.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [4640d4f]
|
|
8
|
+
- @forge/manifest@4.18.1-next.1
|
|
9
|
+
|
|
10
|
+
## 3.17.1-next.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- bdbea8e1: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- @sentry/node
|
|
17
|
+
|
|
3
18
|
## 3.17.1-next.0
|
|
4
19
|
|
|
5
20
|
### Patch 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;
|
|
@@ -7760,6 +7776,7 @@ export type DevOpsMetricsCycleTime = {
|
|
|
7760
7776
|
phase?: Maybe<DevOpsMetricsCycleTimePhase>;
|
|
7761
7777
|
hasPermissionForAllContributingIssues?: Maybe<Scalars['Boolean']>;
|
|
7762
7778
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
7779
|
+
hasPermission?: Maybe<Scalars['Boolean']>;
|
|
7763
7780
|
};
|
|
7764
7781
|
export type DevOpsMetricsCycleTimeData = {
|
|
7765
7782
|
__typename?: 'DevOpsMetricsCycleTimeData';
|
|
@@ -7793,6 +7810,7 @@ export type DevOpsMetricsDeploymentFrequency = {
|
|
|
7793
7810
|
environmentType?: Maybe<DevOpsEnvironmentCategory>;
|
|
7794
7811
|
aggregateData?: Maybe<Scalars['Float']>;
|
|
7795
7812
|
data?: Maybe<Array<Maybe<DevOpsMetricsDeploymentFrequencyData>>>;
|
|
7813
|
+
hasPermission?: Maybe<Scalars['Boolean']>;
|
|
7796
7814
|
};
|
|
7797
7815
|
export type DevOpsMetricsDeploymentFrequencyData = {
|
|
7798
7816
|
__typename?: 'DevOpsMetricsDeploymentFrequencyData';
|
|
@@ -8756,7 +8774,7 @@ export type EcosystemQuery = {
|
|
|
8756
8774
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
8757
8775
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
8758
8776
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
8759
|
-
|
|
8777
|
+
appsInstalledInContexts: CsAppsInstalledInContextsConnection;
|
|
8760
8778
|
appEnvironmentsByOAuthClientIds?: Maybe<Array<AppEnvironment>>;
|
|
8761
8779
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
8762
8780
|
forgeAuditLogs?: Maybe<ForgeAuditLogsQuery>;
|
|
@@ -8792,9 +8810,14 @@ export type EcosystemQueryAppInstallationsByAppArgs = {
|
|
|
8792
8810
|
export type EcosystemQueryFortifiedMetricsArgs = {
|
|
8793
8811
|
appKey: Scalars['ID'];
|
|
8794
8812
|
};
|
|
8795
|
-
export type
|
|
8796
|
-
|
|
8797
|
-
|
|
8813
|
+
export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
8814
|
+
contextIds: Array<Scalars['ID']>;
|
|
8815
|
+
filters?: Maybe<Array<CsAppIdsInstalledInContextsFilter>>;
|
|
8816
|
+
orderBy?: Maybe<Array<CsAppIdsInstalledInContextsOrderBy>>;
|
|
8817
|
+
first?: Maybe<Scalars['Int']>;
|
|
8818
|
+
last?: Maybe<Scalars['Int']>;
|
|
8819
|
+
before?: Maybe<Scalars['String']>;
|
|
8820
|
+
after?: Maybe<Scalars['String']>;
|
|
8798
8821
|
};
|
|
8799
8822
|
export type EcosystemQueryAppEnvironmentsByOAuthClientIdsArgs = {
|
|
8800
8823
|
oauthClientIds: Array<Scalars['ID']>;
|
|
@@ -8922,6 +8945,7 @@ export type Extension = {
|
|
|
8922
8945
|
currentUserConsent?: Maybe<UserConsentExtension>;
|
|
8923
8946
|
requiresUserConsent?: Maybe<Scalars['Boolean']>;
|
|
8924
8947
|
requiresAutoConsent?: Maybe<Scalars['Boolean']>;
|
|
8948
|
+
manuallyAddedReadMeScope?: Maybe<Scalars['Boolean']>;
|
|
8925
8949
|
dataClassificationPolicyDecision: DataClassificationPolicyDecision;
|
|
8926
8950
|
};
|
|
8927
8951
|
export type ExtensionDataClassificationPolicyDecisionArgs = {
|
|
@@ -8983,14 +9007,17 @@ export type ExternalAuthProvider = {
|
|
|
8983
9007
|
};
|
|
8984
9008
|
export type FeatureRelease = {
|
|
8985
9009
|
__typename?: 'FeatureRelease';
|
|
8986
|
-
latestTransition:
|
|
9010
|
+
latestTransition: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8987
9011
|
transitionsByCloudId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8988
9012
|
transitionsByFeatureFlagId: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8989
9013
|
transitionsByMonth: FeatureReleaseFeatureFlagTransitionConnection;
|
|
8990
9014
|
};
|
|
8991
9015
|
export type FeatureReleaseLatestTransitionArgs = {
|
|
8992
|
-
|
|
9016
|
+
after?: Maybe<Scalars['String']>;
|
|
9017
|
+
cloudIds: Array<Scalars['ID']>;
|
|
8993
9018
|
featureFlagId: Scalars['ID'];
|
|
9019
|
+
first?: Maybe<Scalars['Int']>;
|
|
9020
|
+
timeRange?: Maybe<FeatureReleaseTimeRangeInput>;
|
|
8994
9021
|
};
|
|
8995
9022
|
export type FeatureReleaseTransitionsByCloudIdArgs = {
|
|
8996
9023
|
after?: Maybe<Scalars['String']>;
|
|
@@ -10158,6 +10185,21 @@ export type HelpCenter = Node & {
|
|
|
10158
10185
|
slug?: Maybe<Scalars['String']>;
|
|
10159
10186
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
10160
10187
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
10188
|
+
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
10189
|
+
};
|
|
10190
|
+
export type HelpCenterBranding = {
|
|
10191
|
+
__typename?: 'HelpCenterBranding';
|
|
10192
|
+
colors?: Maybe<HelpCenterBrandingColors>;
|
|
10193
|
+
};
|
|
10194
|
+
export type HelpCenterBrandingColors = {
|
|
10195
|
+
__typename?: 'HelpCenterBrandingColors';
|
|
10196
|
+
primary?: Maybe<Scalars['String']>;
|
|
10197
|
+
};
|
|
10198
|
+
export type HelpCenterBrandingColorsInput = {
|
|
10199
|
+
primary?: Maybe<Scalars['String']>;
|
|
10200
|
+
};
|
|
10201
|
+
export type HelpCenterBrandingInput = {
|
|
10202
|
+
colors?: Maybe<HelpCenterBrandingColorsInput>;
|
|
10161
10203
|
};
|
|
10162
10204
|
export type HelpCenterBulkCreateTopicsInput = {
|
|
10163
10205
|
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
@@ -10305,6 +10347,7 @@ export type HelpCenterUpdateInput = {
|
|
|
10305
10347
|
helpCenterAri: Scalars['String'];
|
|
10306
10348
|
name?: Maybe<HelpCenterNameInput>;
|
|
10307
10349
|
slug?: Maybe<Scalars['String']>;
|
|
10350
|
+
helpCenterBranding?: Maybe<HelpCenterBrandingInput>;
|
|
10308
10351
|
};
|
|
10309
10352
|
export type HelpCenterUpdatePayload = Payload & {
|
|
10310
10353
|
__typename?: 'HelpCenterUpdatePayload';
|
|
@@ -11446,6 +11489,7 @@ export type JiraAnswerApprovalDecisionInput = {
|
|
|
11446
11489
|
};
|
|
11447
11490
|
export type JiraAnswerApprovalDecisionPayload = Payload & {
|
|
11448
11491
|
__typename?: 'JiraAnswerApprovalDecisionPayload';
|
|
11492
|
+
completedDate?: Maybe<Scalars['Long']>;
|
|
11449
11493
|
success: Scalars['Boolean'];
|
|
11450
11494
|
errors?: Maybe<Array<MutationError>>;
|
|
11451
11495
|
};
|
|
@@ -12786,6 +12830,11 @@ export type JiraFieldNonEditableReason = {
|
|
|
12786
12830
|
__typename?: 'JiraFieldNonEditableReason';
|
|
12787
12831
|
message?: Maybe<Scalars['String']>;
|
|
12788
12832
|
};
|
|
12833
|
+
export type JiraFieldType = {
|
|
12834
|
+
__typename?: 'JiraFieldType';
|
|
12835
|
+
name: Scalars['String'];
|
|
12836
|
+
displayName?: Maybe<Scalars['String']>;
|
|
12837
|
+
};
|
|
12789
12838
|
export type JiraFilter = {
|
|
12790
12839
|
id: Scalars['ID'];
|
|
12791
12840
|
filterId: Scalars['String'];
|
|
@@ -13794,6 +13843,11 @@ export type JiraIssueLinkTypeRelationEdge = {
|
|
|
13794
13843
|
node?: Maybe<JiraIssueLinkTypeRelation>;
|
|
13795
13844
|
cursor: Scalars['String'];
|
|
13796
13845
|
};
|
|
13846
|
+
export type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
13847
|
+
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
13848
|
+
success: Scalars['Boolean'];
|
|
13849
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13850
|
+
};
|
|
13797
13851
|
export type JiraIssueNavigatorPageInfo = {
|
|
13798
13852
|
__typename?: 'JiraIssueNavigatorPageInfo';
|
|
13799
13853
|
firstIssuePosition?: Maybe<Scalars['Int']>;
|
|
@@ -13936,6 +13990,7 @@ export type JiraIssueSearchFieldSet = {
|
|
|
13936
13990
|
fieldSetId?: Maybe<Scalars['String']>;
|
|
13937
13991
|
displayName?: Maybe<Scalars['String']>;
|
|
13938
13992
|
type?: Maybe<Scalars['String']>;
|
|
13993
|
+
fieldType?: Maybe<JiraFieldType>;
|
|
13939
13994
|
jqlTerm?: Maybe<Scalars['String']>;
|
|
13940
13995
|
isSortable?: Maybe<Scalars['Boolean']>;
|
|
13941
13996
|
isSelected?: Maybe<Scalars['Boolean']>;
|
|
@@ -14036,6 +14091,7 @@ export type JiraIssueTransitionModal = {
|
|
|
14036
14091
|
title?: Maybe<Scalars['String']>;
|
|
14037
14092
|
description?: Maybe<Scalars['String']>;
|
|
14038
14093
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
14094
|
+
issue?: Maybe<JiraIssue>;
|
|
14039
14095
|
};
|
|
14040
14096
|
export type JiraIssueType = Node & {
|
|
14041
14097
|
__typename?: 'JiraIssueType';
|
|
@@ -14119,6 +14175,22 @@ export type JiraJqlFromNaturalLanguage = {
|
|
|
14119
14175
|
generatedJQLError?: Maybe<JiraJqlGenerationError>;
|
|
14120
14176
|
};
|
|
14121
14177
|
export type JiraJqlGenerationError = JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError | JiraUiExposedError;
|
|
14178
|
+
export type JiraJqlHistory = Node & {
|
|
14179
|
+
__typename?: 'JiraJQLHistory';
|
|
14180
|
+
id: Scalars['ID'];
|
|
14181
|
+
lastViewed?: Maybe<Scalars['DateTime']>;
|
|
14182
|
+
jql?: Maybe<Scalars['String']>;
|
|
14183
|
+
};
|
|
14184
|
+
export type JiraJqlHistoryConnection = {
|
|
14185
|
+
__typename?: 'JiraJQLHistoryConnection';
|
|
14186
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
14187
|
+
pageInfo: PageInfo;
|
|
14188
|
+
edges?: Maybe<Array<Maybe<JiraJqlHistoryEdge>>>;
|
|
14189
|
+
};
|
|
14190
|
+
export type JiraJqlHistoryEdge = {
|
|
14191
|
+
__typename?: 'JiraJQLHistoryEdge';
|
|
14192
|
+
node?: Maybe<JiraJqlHistory>;
|
|
14193
|
+
};
|
|
14122
14194
|
export declare enum JiraJqlAutocompleteType {
|
|
14123
14195
|
None = "NONE",
|
|
14124
14196
|
Component = "COMPONENT",
|
|
@@ -14258,6 +14330,7 @@ export type JiraJqlField = {
|
|
|
14258
14330
|
searchTemplate?: Maybe<JiraJqlSearchTemplate>;
|
|
14259
14331
|
autoCompleteTemplate?: Maybe<JiraJqlAutocompleteType>;
|
|
14260
14332
|
jqlFieldType?: Maybe<JiraJqlFieldType>;
|
|
14333
|
+
fieldType?: Maybe<JiraFieldType>;
|
|
14261
14334
|
shouldShowInContext?: Maybe<Scalars['Boolean']>;
|
|
14262
14335
|
};
|
|
14263
14336
|
export type JiraJqlFieldConnection = {
|
|
@@ -14945,6 +15018,7 @@ export type JiraMutation = {
|
|
|
14945
15018
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
14946
15019
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
14947
15020
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
15021
|
+
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
14948
15022
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
14949
15023
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
14950
15024
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
@@ -15166,6 +15240,9 @@ export type JiraMutationSubmitBulkOperationArgs = {
|
|
|
15166
15240
|
cloudId: Scalars['ID'];
|
|
15167
15241
|
input: JiraSubmitBulkOperationInput;
|
|
15168
15242
|
};
|
|
15243
|
+
export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
15244
|
+
cloudId: Scalars['ID'];
|
|
15245
|
+
};
|
|
15169
15246
|
export type JiraMutationCreateProjectShortcutArgs = {
|
|
15170
15247
|
input: JiraCreateShortcutInput;
|
|
15171
15248
|
};
|
|
@@ -16361,6 +16438,7 @@ export type JiraQuery = {
|
|
|
16361
16438
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
16362
16439
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
16363
16440
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
16441
|
+
issueNavigatorUserJQLHistory?: Maybe<JiraJqlHistoryConnection>;
|
|
16364
16442
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
16365
16443
|
bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
|
|
16366
16444
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
@@ -16390,6 +16468,7 @@ export type JiraQueryUserSegmentationArgs = {
|
|
|
16390
16468
|
export type JiraQueryFirst100JsmWorkflowTemplatesArgs = {
|
|
16391
16469
|
cloudId: Scalars['ID'];
|
|
16392
16470
|
projectStyle?: Maybe<JiraProjectStyle>;
|
|
16471
|
+
templateId?: Maybe<Scalars['String']>;
|
|
16393
16472
|
keywords?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
16394
16473
|
tags?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
16395
16474
|
};
|
|
@@ -16485,6 +16564,7 @@ export type JiraQueryIssueSearchStableArgs = {
|
|
|
16485
16564
|
after?: Maybe<Scalars['String']>;
|
|
16486
16565
|
last?: Maybe<Scalars['Int']>;
|
|
16487
16566
|
before?: Maybe<Scalars['String']>;
|
|
16567
|
+
saveJQLToUserHistory?: Maybe<Scalars['Boolean']>;
|
|
16488
16568
|
};
|
|
16489
16569
|
export type JiraQueryIssueSearchTotalCountArgs = {
|
|
16490
16570
|
cloudId: Scalars['ID'];
|
|
@@ -16741,6 +16821,13 @@ export type JiraQueryFieldsArgs = {
|
|
|
16741
16821
|
after?: Maybe<Scalars['String']>;
|
|
16742
16822
|
viewContext?: Maybe<JiraJqlViewContext>;
|
|
16743
16823
|
};
|
|
16824
|
+
export type JiraQueryIssueNavigatorUserJqlHistoryArgs = {
|
|
16825
|
+
cloudId: Scalars['ID'];
|
|
16826
|
+
first?: Maybe<Scalars['Int']>;
|
|
16827
|
+
after?: Maybe<Scalars['String']>;
|
|
16828
|
+
last?: Maybe<Scalars['Int']>;
|
|
16829
|
+
before?: Maybe<Scalars['String']>;
|
|
16830
|
+
};
|
|
16744
16831
|
export type JiraQueryBulkOperationProgressArgs = {
|
|
16745
16832
|
cloudId: Scalars['ID'];
|
|
16746
16833
|
taskId: Scalars['ID'];
|
|
@@ -17848,6 +17935,7 @@ export type JiraServiceManagementWorkflowTemplateMetadata = {
|
|
|
17848
17935
|
name?: Maybe<Scalars['String']>;
|
|
17849
17936
|
description?: Maybe<Scalars['String']>;
|
|
17850
17937
|
tags?: Maybe<Array<Scalars['String']>>;
|
|
17938
|
+
workflowTemplateJsonData?: Maybe<Scalars['JSON']>;
|
|
17851
17939
|
groups?: Maybe<Array<Maybe<JiraServiceManagementWorkflowTemplateGroup>>>;
|
|
17852
17940
|
defaultIssueTypeName?: Maybe<Scalars['String']>;
|
|
17853
17941
|
defaultWorkflowName?: Maybe<Scalars['String']>;
|
|
@@ -24921,6 +25009,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
24921
25009
|
EcosystemAuditLogInstallationCreated = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_CREATED",
|
|
24922
25010
|
EcosystemAuditLogInstallationDeleted = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_DELETED",
|
|
24923
25011
|
EcosystemAuditLogUserGrantCreated = "ECOSYSTEM_AUDIT_LOG_USER_GRANT_CREATED",
|
|
25012
|
+
EducationalAlert = "EDUCATIONAL_ALERT",
|
|
24924
25013
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
24925
25014
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
24926
25015
|
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
@@ -26246,7 +26335,7 @@ export declare enum TeamMembershipRole {
|
|
|
26246
26335
|
Regular = "REGULAR",
|
|
26247
26336
|
Admin = "ADMIN"
|
|
26248
26337
|
}
|
|
26249
|
-
export declare enum
|
|
26338
|
+
export declare enum TeamMembershipSettings {
|
|
26250
26339
|
Open = "OPEN",
|
|
26251
26340
|
MemberInvite = "MEMBER_INVITE"
|
|
26252
26341
|
}
|
|
@@ -26352,7 +26441,7 @@ export type TeamV2 = Node & {
|
|
|
26352
26441
|
state?: Maybe<TeamStateV2>;
|
|
26353
26442
|
displayName?: Maybe<Scalars['String']>;
|
|
26354
26443
|
description?: Maybe<Scalars['String']>;
|
|
26355
|
-
|
|
26444
|
+
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
26356
26445
|
smallHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
26357
26446
|
largeHeaderImageUrl?: Maybe<Scalars['String']>;
|
|
26358
26447
|
smallAvatarImageUrl?: Maybe<Scalars['String']>;
|
|
@@ -26987,13 +27076,17 @@ export type TrelloBoardListsLimits = {
|
|
|
26987
27076
|
export type TrelloBoardPrefs = {
|
|
26988
27077
|
__typename?: 'TrelloBoardPrefs';
|
|
26989
27078
|
background?: Maybe<TrelloBoardBackground>;
|
|
27079
|
+
calendarFeedEnabled?: Maybe<Scalars['Boolean']>;
|
|
26990
27080
|
canInvite?: Maybe<Scalars['Boolean']>;
|
|
27081
|
+
cardAging?: Maybe<Scalars['String']>;
|
|
27082
|
+
cardCovers?: Maybe<Scalars['Boolean']>;
|
|
26991
27083
|
comments?: Maybe<Scalars['String']>;
|
|
26992
27084
|
hideVotes?: Maybe<Scalars['Boolean']>;
|
|
26993
27085
|
invitations?: Maybe<Scalars['String']>;
|
|
26994
27086
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
26995
27087
|
permissionLevel?: Maybe<Scalars['String']>;
|
|
26996
27088
|
selfJoin?: Maybe<Scalars['Boolean']>;
|
|
27089
|
+
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
26997
27090
|
voting?: Maybe<Scalars['String']>;
|
|
26998
27091
|
};
|
|
26999
27092
|
export type TrelloBoardPrefsUpdatedDeltas = {
|
|
@@ -27459,8 +27552,16 @@ export type TrelloListViewer = {
|
|
|
27459
27552
|
};
|
|
27460
27553
|
export type TrelloMember = Node & {
|
|
27461
27554
|
__typename?: 'TrelloMember';
|
|
27555
|
+
activityBlocked?: Maybe<Scalars['Boolean']>;
|
|
27556
|
+
avatarSource?: Maybe<Scalars['String']>;
|
|
27557
|
+
avatarUrl?: Maybe<Scalars['String']>;
|
|
27558
|
+
bio?: Maybe<Scalars['String']>;
|
|
27559
|
+
confirmed?: Maybe<Scalars['Boolean']>;
|
|
27560
|
+
fullName?: Maybe<Scalars['String']>;
|
|
27462
27561
|
id: Scalars['ID'];
|
|
27562
|
+
initials?: Maybe<Scalars['String']>;
|
|
27463
27563
|
objectId: Scalars['ID'];
|
|
27564
|
+
url?: Maybe<Scalars['String']>;
|
|
27464
27565
|
user?: Maybe<User>;
|
|
27465
27566
|
username?: Maybe<Scalars['String']>;
|
|
27466
27567
|
};
|
|
@@ -27629,6 +27730,11 @@ export type TrelloSubscriptionApi = {
|
|
|
27629
27730
|
export type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
27630
27731
|
id: Scalars['ID'];
|
|
27631
27732
|
};
|
|
27733
|
+
export type TrelloSwitcherViewsInfo = {
|
|
27734
|
+
__typename?: 'TrelloSwitcherViewsInfo';
|
|
27735
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
27736
|
+
viewType?: Maybe<Scalars['String']>;
|
|
27737
|
+
};
|
|
27632
27738
|
export type TrelloTemplateGalleryCategory = {
|
|
27633
27739
|
__typename?: 'TrelloTemplateGalleryCategory';
|
|
27634
27740
|
key: Scalars['String'];
|