@forge/cli-shared 6.10.0-next.0-experimental-62dde2c → 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
|
@@ -57732,6 +57732,17 @@ export declare type JiraCreateFormattingRulePayload = Payload & {
|
|
|
57732
57732
|
errors?: Maybe<Array<MutationError>>;
|
|
57733
57733
|
success: Scalars['Boolean']['output'];
|
|
57734
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
|
+
};
|
|
57735
57746
|
export declare type JiraCreateJourneyConfigurationInput = {
|
|
57736
57747
|
createActivityConfigurations?: InputMaybe<Array<InputMaybe<JiraCreateActivityConfigurationInput>>>;
|
|
57737
57748
|
name: Scalars['String']['input'];
|
|
@@ -79863,6 +79874,7 @@ export declare type Mutation = {
|
|
|
79863
79874
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
79864
79875
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
79865
79876
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
79877
|
+
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
79866
79878
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
79867
79879
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
79868
79880
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -81207,6 +81219,10 @@ export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
|
81207
81219
|
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
81208
81220
|
input: JiraCreateCustomBackgroundInput;
|
|
81209
81221
|
};
|
|
81222
|
+
export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
81223
|
+
cloudId: Scalars['ID']['input'];
|
|
81224
|
+
input: JiraCreateGlobalCustomFieldInput;
|
|
81225
|
+
};
|
|
81210
81226
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
81211
81227
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
81212
81228
|
};
|