@forge/cli-shared 3.21.1-next.2 → 3.21.1-next.3
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
|
@@ -1221,6 +1221,7 @@ export type AppRecContext = {
|
|
|
1221
1221
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
1222
1222
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
1223
1223
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
1224
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1224
1225
|
};
|
|
1225
1226
|
export type AppRecDismissRecommendationInput = {
|
|
1226
1227
|
context?: InputMaybe<AppRecContext>;
|
|
@@ -12830,6 +12831,7 @@ export type GrowthRecContext = {
|
|
|
12830
12831
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
12831
12832
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
12832
12833
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
12834
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
12833
12835
|
};
|
|
12834
12836
|
export type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendation & {
|
|
12835
12837
|
__typename?: 'GrowthRecJiraTemplateRecommendation';
|
|
@@ -14872,6 +14874,29 @@ export type JiraAnswerApprovalDecisionPayload = Payload & {
|
|
|
14872
14874
|
errors?: Maybe<Array<MutationError>>;
|
|
14873
14875
|
success: Scalars['Boolean']['output'];
|
|
14874
14876
|
};
|
|
14877
|
+
export type JiraAppConfigState = Node & {
|
|
14878
|
+
__typename?: 'JiraAppConfigState';
|
|
14879
|
+
appDisplayName?: Maybe<Scalars['String']['output']>;
|
|
14880
|
+
appIconLink?: Maybe<Scalars['String']['output']>;
|
|
14881
|
+
config?: Maybe<JiraConfigStateConnection>;
|
|
14882
|
+
id: Scalars['ID']['output'];
|
|
14883
|
+
providerTypes?: Maybe<Array<JiraConfigStateProviderType>>;
|
|
14884
|
+
};
|
|
14885
|
+
export type JiraAppConfigStateConfigArgs = {
|
|
14886
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14888
|
+
};
|
|
14889
|
+
export type JiraAppConfigStateConnection = {
|
|
14890
|
+
__typename?: 'JiraAppConfigStateConnection';
|
|
14891
|
+
edges?: Maybe<Array<JiraAppConfigStateEdge>>;
|
|
14892
|
+
nodes?: Maybe<Array<JiraAppConfigState>>;
|
|
14893
|
+
pageInfo: PageInfo;
|
|
14894
|
+
};
|
|
14895
|
+
export type JiraAppConfigStateEdge = {
|
|
14896
|
+
__typename?: 'JiraAppConfigStateEdge';
|
|
14897
|
+
cursor: Scalars['String']['output'];
|
|
14898
|
+
node?: Maybe<JiraAppConfigState>;
|
|
14899
|
+
};
|
|
14875
14900
|
export type JiraApplicationProperty = Node & {
|
|
14876
14901
|
__typename?: 'JiraApplicationProperty';
|
|
14877
14902
|
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -15768,17 +15793,18 @@ export type JiraComponentsFieldPayload = Payload & {
|
|
|
15768
15793
|
};
|
|
15769
15794
|
export type JiraConfigState = {
|
|
15770
15795
|
__typename?: 'JiraConfigState';
|
|
15771
|
-
|
|
15796
|
+
appId: Scalars['ID']['output'];
|
|
15772
15797
|
configureLink?: Maybe<Scalars['String']['output']>;
|
|
15773
15798
|
configureText?: Maybe<Scalars['String']['output']>;
|
|
15774
15799
|
status?: Maybe<JiraConfigStateConfigurationStatus>;
|
|
15775
15800
|
workspaceId: Scalars['ID']['output'];
|
|
15776
15801
|
};
|
|
15777
15802
|
export declare enum JiraConfigStateConfigurationStatus {
|
|
15778
|
-
|
|
15803
|
+
Configured = "CONFIGURED",
|
|
15779
15804
|
NotConfigured = "NOT_CONFIGURED",
|
|
15780
15805
|
NotSet = "NOT_SET",
|
|
15781
|
-
ProviderActionConfigured = "PROVIDER_ACTION_CONFIGURED"
|
|
15806
|
+
ProviderActionConfigured = "PROVIDER_ACTION_CONFIGURED",
|
|
15807
|
+
ProviderActionNotConfigured = "PROVIDER_ACTION_NOT_CONFIGURED"
|
|
15782
15808
|
}
|
|
15783
15809
|
export type JiraConfigStateConnection = {
|
|
15784
15810
|
__typename?: 'JiraConfigStateConnection';
|
|
@@ -15791,6 +15817,16 @@ export type JiraConfigStateEdge = {
|
|
|
15791
15817
|
cursor: Scalars['String']['output'];
|
|
15792
15818
|
node?: Maybe<JiraConfigState>;
|
|
15793
15819
|
};
|
|
15820
|
+
export declare enum JiraConfigStateProviderType {
|
|
15821
|
+
Builds = "BUILDS",
|
|
15822
|
+
Deployments = "DEPLOYMENTS",
|
|
15823
|
+
Designs = "DESIGNS",
|
|
15824
|
+
DevelopmentInfo = "DEVELOPMENT_INFO",
|
|
15825
|
+
FeatureFlags = "FEATURE_FLAGS",
|
|
15826
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
15827
|
+
Security = "SECURITY",
|
|
15828
|
+
Unknown = "UNKNOWN"
|
|
15829
|
+
}
|
|
15794
15830
|
export type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
15795
15831
|
__typename?: 'JiraConnectDateTimeField';
|
|
15796
15832
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -16203,7 +16239,8 @@ export type JiraDevOpsPullRequestDetails = {
|
|
|
16203
16239
|
export type JiraDevOpsQuery = {
|
|
16204
16240
|
__typename?: 'JiraDevOpsQuery';
|
|
16205
16241
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
16206
|
-
configState?: Maybe<
|
|
16242
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
16243
|
+
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
16207
16244
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
16208
16245
|
toolchain?: Maybe<JiraToolchain>;
|
|
16209
16246
|
};
|
|
@@ -16216,6 +16253,10 @@ export type JiraDevOpsQueryConfigStateArgs = {
|
|
|
16216
16253
|
cloudId: Scalars['ID']['input'];
|
|
16217
16254
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16218
16255
|
};
|
|
16256
|
+
export type JiraDevOpsQueryConfigStatesArgs = {
|
|
16257
|
+
cloudId: Scalars['ID']['input'];
|
|
16258
|
+
providerTypeFilter?: InputMaybe<Array<JiraConfigStateProviderType>>;
|
|
16259
|
+
};
|
|
16219
16260
|
export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
16220
16261
|
issueId: Scalars['ID']['input'];
|
|
16221
16262
|
};
|