@forge/cli-shared 6.10.0-next.0-experimental-01f8230 → 6.10.0-next.0-experimental-5364136
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
|
@@ -1159,6 +1159,7 @@ export declare enum ApiGroup {
|
|
|
1159
1159
|
ConfluenceUser = "CONFLUENCE_USER",
|
|
1160
1160
|
ConfluenceV2 = "CONFLUENCE_V2",
|
|
1161
1161
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
1162
|
+
CsmAi = "CSM_AI",
|
|
1162
1163
|
CustomerService = "CUSTOMER_SERVICE",
|
|
1163
1164
|
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
1164
1165
|
DevopsContainerRelationship = "DEVOPS_CONTAINER_RELATIONSHIP",
|
|
@@ -19694,6 +19695,7 @@ export declare type CreateAppDeploymentResponse = Payload & {
|
|
|
19694
19695
|
};
|
|
19695
19696
|
export declare type CreateAppDeploymentUrlInput = {
|
|
19696
19697
|
appId: Scalars['ID']['input'];
|
|
19698
|
+
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
19697
19699
|
};
|
|
19698
19700
|
export declare type CreateAppDeploymentUrlResponse = Payload & {
|
|
19699
19701
|
__typename?: 'CreateAppDeploymentUrlResponse';
|
|
@@ -20094,7 +20096,8 @@ export declare type CreateFaviconFilesPayload = Payload & {
|
|
|
20094
20096
|
};
|
|
20095
20097
|
export declare type CreateHostedResourceUploadUrlInput = {
|
|
20096
20098
|
appId: Scalars['ID']['input'];
|
|
20097
|
-
|
|
20099
|
+
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
20100
|
+
environmentKey?: InputMaybe<Scalars['String']['input']>;
|
|
20098
20101
|
resourceKeys: Array<Scalars['String']['input']>;
|
|
20099
20102
|
};
|
|
20100
20103
|
export declare type CreateHostedResourceUploadUrlPayload = Payload & {
|
|
@@ -57729,6 +57732,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
57729
57732
|
errors?: Maybe<Array<MutationError>>;
|
|
57730
57733
|
success: Scalars['Boolean']['output'];
|
|
57731
57734
|
};
|
|
57735
|
+
export declare type JiraCreateGlobalCustomFieldInput = {
|
|
57736
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
57737
|
+
name: Scalars['String']['input'];
|
|
57738
|
+
type: JiraConfigFieldType;
|
|
57739
|
+
};
|
|
57740
|
+
export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
57741
|
+
__typename?: 'JiraCreateGlobalCustomFieldPayload';
|
|
57742
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57743
|
+
field?: Maybe<JiraIssueFieldConfig>;
|
|
57744
|
+
success: Scalars['Boolean']['output'];
|
|
57745
|
+
};
|
|
57732
57746
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
57733
57747
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
57734
57748
|
name: Scalars['String']['input'];
|
|
@@ -79860,6 +79874,7 @@ export declare type Mutation = {
|
|
|
79860
79874
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
79861
79875
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
79862
79876
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
79877
|
+
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79863
79878
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79864
79879
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
79865
79880
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -81204,6 +81219,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
81204
81219
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
81205
81220
|
input: JiraCreateCustomBackgroundInput;
|
|
81206
81221
|
};
|
|
81222
|
+
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
81223
|
+
cloudId: Scalars['ID']['input'];
|
|
81224
|
+
input: JiraCreateGlobalCustomFieldInput;
|
|
81225
|
+
};
|
|
81207
81226
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
81208
81227
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
81209
81228
|
};
|