@forge/cli-shared 3.20.5-next.0 → 3.20.5-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
CHANGED
|
@@ -3001,6 +3001,7 @@ export type CompassCatalogMutationApi = {
|
|
|
3001
3001
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
3002
3002
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
3003
3003
|
createIncomingWebhook?: Maybe<CompassCreateIncomingWebhookPayload>;
|
|
3004
|
+
createIncomingWebhookToken?: Maybe<CompassCreateIncomingWebhookTokenPayload>;
|
|
3004
3005
|
createMetricDefinition?: Maybe<CompassCreateMetricDefinitionPayload>;
|
|
3005
3006
|
createMetricSource?: Maybe<CompassCreateMetricSourcePayload>;
|
|
3006
3007
|
createRelationship?: Maybe<CreateCompassRelationshipPayload>;
|
|
@@ -3100,6 +3101,9 @@ export type CompassCatalogMutationApiCreateEventSourceArgs = {
|
|
|
3100
3101
|
export type CompassCatalogMutationApiCreateIncomingWebhookArgs = {
|
|
3101
3102
|
input: CompassCreateIncomingWebhookInput;
|
|
3102
3103
|
};
|
|
3104
|
+
export type CompassCatalogMutationApiCreateIncomingWebhookTokenArgs = {
|
|
3105
|
+
input: CompassCreateIncomingWebhookTokenInput;
|
|
3106
|
+
};
|
|
3103
3107
|
export type CompassCatalogMutationApiCreateMetricDefinitionArgs = {
|
|
3104
3108
|
input: CompassCreateMetricDefinitionInput;
|
|
3105
3109
|
};
|
|
@@ -3686,6 +3690,16 @@ export type CompassCreateIncomingWebhookPayload = Payload & {
|
|
|
3686
3690
|
success: Scalars['Boolean']['output'];
|
|
3687
3691
|
webhookDetails?: Maybe<CompassIncomingWebhook>;
|
|
3688
3692
|
};
|
|
3693
|
+
export type CompassCreateIncomingWebhookTokenInput = {
|
|
3694
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3695
|
+
webhookId: Scalars['ID']['input'];
|
|
3696
|
+
};
|
|
3697
|
+
export type CompassCreateIncomingWebhookTokenPayload = Payload & {
|
|
3698
|
+
__typename?: 'CompassCreateIncomingWebhookTokenPayload';
|
|
3699
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3700
|
+
success: Scalars['Boolean']['output'];
|
|
3701
|
+
token?: Maybe<CreateIncomingWebhookToken>;
|
|
3702
|
+
};
|
|
3689
3703
|
export type CompassCreateLifecycleEventInput = {
|
|
3690
3704
|
description: Scalars['String']['input'];
|
|
3691
3705
|
displayName: Scalars['String']['input'];
|
|
@@ -6867,6 +6881,12 @@ export type CreateHostedResourceUploadUrlPayload = Payload & {
|
|
|
6867
6881
|
success: Scalars['Boolean']['output'];
|
|
6868
6882
|
uploadId: Scalars['ID']['output'];
|
|
6869
6883
|
};
|
|
6884
|
+
export type CreateIncomingWebhookToken = {
|
|
6885
|
+
__typename?: 'CreateIncomingWebhookToken';
|
|
6886
|
+
id: Scalars['ID']['output'];
|
|
6887
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
6888
|
+
value: Scalars['String']['output'];
|
|
6889
|
+
};
|
|
6870
6890
|
export type CreateJiraProjectAndOpsgenieTeamRelationshipInput = {
|
|
6871
6891
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
6872
6892
|
jiraProjectId: Scalars['ID']['input'];
|
|
@@ -17728,6 +17748,20 @@ export type JiraLinkIssueToVersionRelatedWorkPayload = Payload & {
|
|
|
17728
17748
|
relatedWork?: Maybe<JiraVersionRelatedWorkV2>;
|
|
17729
17749
|
success: Scalars['Boolean']['output'];
|
|
17730
17750
|
};
|
|
17751
|
+
export declare enum JiraLinkIssuesToIncidentIssueLinkTypeName {
|
|
17752
|
+
PostIncidentReviews = "POST_INCIDENT_REVIEWS",
|
|
17753
|
+
Relates = "RELATES"
|
|
17754
|
+
}
|
|
17755
|
+
export type JiraLinkIssuesToIncidentMutationInput = {
|
|
17756
|
+
incidentId: Scalars['ID']['input'];
|
|
17757
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
17758
|
+
issueLinkTypeName: JiraLinkIssuesToIncidentIssueLinkTypeName;
|
|
17759
|
+
};
|
|
17760
|
+
export type JiraLinkIssuesToIncidentMutationPayload = Payload & {
|
|
17761
|
+
__typename?: 'JiraLinkIssuesToIncidentMutationPayload';
|
|
17762
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17763
|
+
success: Scalars['Boolean']['output'];
|
|
17764
|
+
};
|
|
17731
17765
|
export type JiraLongRunningTaskProgress = {
|
|
17732
17766
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
17733
17767
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -17947,6 +17981,7 @@ export type JiraMutation = {
|
|
|
17947
17981
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
17948
17982
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
17949
17983
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
17984
|
+
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
17950
17985
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
17951
17986
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
17952
17987
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
@@ -17962,6 +17997,7 @@ export type JiraMutation = {
|
|
|
17962
17997
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
17963
17998
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
17964
17999
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
18000
|
+
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
17965
18001
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
17966
18002
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
17967
18003
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
@@ -18076,6 +18112,9 @@ export type JiraMutationGrantGlobalPermissionArgs = {
|
|
|
18076
18112
|
export type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
18077
18113
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
18078
18114
|
};
|
|
18115
|
+
export type JiraMutationLinkIssuesToIncidentArgs = {
|
|
18116
|
+
input: JiraLinkIssuesToIncidentMutationInput;
|
|
18117
|
+
};
|
|
18079
18118
|
export type JiraMutationMakeTransitionArgs = {
|
|
18080
18119
|
input: JiraUpdateIssueTransitionInput;
|
|
18081
18120
|
};
|
|
@@ -18126,6 +18165,9 @@ export type JiraMutationSubmitBulkOperationArgs = {
|
|
|
18126
18165
|
cloudId: Scalars['ID']['input'];
|
|
18127
18166
|
input: JiraSubmitBulkOperationInput;
|
|
18128
18167
|
};
|
|
18168
|
+
export type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
18169
|
+
input: JiraUnlinkIssuesFromIncidentMutationInput;
|
|
18170
|
+
};
|
|
18129
18171
|
export type JiraMutationUpdateCascadingSelectFieldArgs = {
|
|
18130
18172
|
input: JiraUpdateCascadingSelectFieldInput;
|
|
18131
18173
|
};
|
|
@@ -22096,6 +22138,15 @@ export type JiraUiExposedError = {
|
|
|
22096
22138
|
__typename?: 'JiraUIExposedError';
|
|
22097
22139
|
message?: Maybe<Scalars['String']['output']>;
|
|
22098
22140
|
};
|
|
22141
|
+
export type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
22142
|
+
incidentId: Scalars['ID']['input'];
|
|
22143
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
22144
|
+
};
|
|
22145
|
+
export type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
22146
|
+
__typename?: 'JiraUnlinkIssuesFromIncidentMutationPayload';
|
|
22147
|
+
errors?: Maybe<Array<MutationError>>;
|
|
22148
|
+
success: Scalars['Boolean']['output'];
|
|
22149
|
+
};
|
|
22099
22150
|
export type JiraUpdateCascadingSelectFieldInput = {
|
|
22100
22151
|
id: Scalars['ID']['input'];
|
|
22101
22152
|
operation: JiraCascadingSelectFieldOperationInput;
|
|
@@ -28828,6 +28879,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
28828
28879
|
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
28829
28880
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
28830
28881
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
28882
|
+
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
28831
28883
|
ConfluenceDataDiscoveryCreditCard = "CONFLUENCE_DATA_DISCOVERY_CREDIT_CARD",
|
|
28832
28884
|
ConfluenceDataDiscoveryCrypto = "CONFLUENCE_DATA_DISCOVERY_CRYPTO",
|
|
28833
28885
|
ConfluenceDataDiscoveryIban = "CONFLUENCE_DATA_DISCOVERY_IBAN",
|
|
@@ -29288,6 +29340,10 @@ export type ShepherdUser = {
|
|
|
29288
29340
|
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
29289
29341
|
user?: Maybe<User>;
|
|
29290
29342
|
};
|
|
29343
|
+
export declare enum ShepherdVortexModeStatus {
|
|
29344
|
+
Disabled = "DISABLED",
|
|
29345
|
+
Enabled = "ENABLED"
|
|
29346
|
+
}
|
|
29291
29347
|
export declare enum ShepherdWebhookDestinationType {
|
|
29292
29348
|
Default = "DEFAULT",
|
|
29293
29349
|
MicrosoftTeams = "MICROSOFT_TEAMS"
|
|
@@ -29325,6 +29381,7 @@ export type ShepherdWorkspace = {
|
|
|
29325
29381
|
orgId: Scalars['ID']['output'];
|
|
29326
29382
|
shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
|
|
29327
29383
|
sites?: Maybe<Array<Maybe<ShepherdSite>>>;
|
|
29384
|
+
vortexMode?: Maybe<ShepherdVortexModeStatus>;
|
|
29328
29385
|
};
|
|
29329
29386
|
export type ShepherdWorkspaceDetectionsArgs = {
|
|
29330
29387
|
detectionId?: InputMaybe<Scalars['ID']['input']>;
|