@forge/cli-shared 5.0.2-next.0 → 5.1.0-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
|
@@ -29869,6 +29869,7 @@ export declare type JiraArchivedIssueEdge = {
|
|
|
29869
29869
|
node?: Maybe<JiraArchivedIssue>;
|
|
29870
29870
|
};
|
|
29871
29871
|
export declare type JiraArchivedIssuesFilterInput = {
|
|
29872
|
+
byArchivalDateRange?: InputMaybe<JiraArchivedOnDateRange>;
|
|
29872
29873
|
byArchivedBy?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
29873
29874
|
byAssignee?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
29874
29875
|
byCreatedOn?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -29876,6 +29877,22 @@ export declare type JiraArchivedIssuesFilterInput = {
|
|
|
29876
29877
|
byProject?: InputMaybe<Scalars['String']['input']>;
|
|
29877
29878
|
byReporter?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
29878
29879
|
};
|
|
29880
|
+
export declare type JiraArchivedIssuesFilterOptions = {
|
|
29881
|
+
__typename?: 'JiraArchivedIssuesFilterOptions';
|
|
29882
|
+
projectId: Scalars['ID']['output'];
|
|
29883
|
+
reporters: JiraUserConnection;
|
|
29884
|
+
};
|
|
29885
|
+
export declare type JiraArchivedIssuesFilterOptionsReportersArgs = {
|
|
29886
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29887
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
29888
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29889
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29890
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
29891
|
+
};
|
|
29892
|
+
export declare type JiraArchivedOnDateRange = {
|
|
29893
|
+
from?: InputMaybe<Scalars['Date']['input']>;
|
|
29894
|
+
to?: InputMaybe<Scalars['Date']['input']>;
|
|
29895
|
+
};
|
|
29879
29896
|
export declare type JiraAsset = {
|
|
29880
29897
|
__typename?: 'JiraAsset';
|
|
29881
29898
|
appKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -35224,6 +35241,7 @@ export declare type JiraMutation = {
|
|
|
35224
35241
|
updateProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
35225
35242
|
updateRadioSelectField?: Maybe<JiraRadioSelectFieldPayload>;
|
|
35226
35243
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
35244
|
+
updateRemainingTimeEstimateField?: Maybe<JiraRemainingTimeEstimateFieldPayload>;
|
|
35227
35245
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
35228
35246
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
35229
35247
|
updateSecurityLevelField?: Maybe<JiraSecurityLevelFieldPayload>;
|
|
@@ -35620,6 +35638,9 @@ export declare type JiraMutationUpdateRadioSelectFieldArgs = {
|
|
|
35620
35638
|
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
35621
35639
|
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
35622
35640
|
};
|
|
35641
|
+
export declare type JiraMutationUpdateRemainingTimeEstimateFieldArgs = {
|
|
35642
|
+
input: JiraRemainingTimeEstimateFieldInput;
|
|
35643
|
+
};
|
|
35623
35644
|
export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
35624
35645
|
input: JiraUpdateResolutionFieldInput;
|
|
35625
35646
|
};
|
|
@@ -37352,6 +37373,7 @@ export declare type JiraQuery = {
|
|
|
37352
37373
|
filters?: Maybe<Array<Maybe<JiraFilter>>>;
|
|
37353
37374
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
37354
37375
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
37376
|
+
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
37355
37377
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
37356
37378
|
getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
|
|
37357
37379
|
getIssueTransitionByIssueKey?: Maybe<JiraIssueTransitionModal>;
|
|
@@ -37657,6 +37679,9 @@ export declare type JiraQueryGetArchivedIssuesArgs = {
|
|
|
37657
37679
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
37658
37680
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
37659
37681
|
};
|
|
37682
|
+
export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
37683
|
+
projectId: Scalars['ID']['input'];
|
|
37684
|
+
};
|
|
37660
37685
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
37661
37686
|
cloudId: Scalars['ID']['input'];
|
|
37662
37687
|
};
|
|
@@ -38065,6 +38090,7 @@ export declare type JiraQueryRecentItemsArgs = {
|
|
|
38065
38090
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38066
38091
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38067
38092
|
cloudId: Scalars['ID']['input'];
|
|
38093
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
38068
38094
|
filter?: InputMaybe<JiraRecentItemsFilter>;
|
|
38069
38095
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38070
38096
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -38431,6 +38457,29 @@ export declare type JiraReleasesTimeWindowInput = {
|
|
|
38431
38457
|
after: Scalars['DateTime']['input'];
|
|
38432
38458
|
before: Scalars['DateTime']['input'];
|
|
38433
38459
|
};
|
|
38460
|
+
export declare type JiraRemainingTimeEstimateField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38461
|
+
__typename?: 'JiraRemainingTimeEstimateField';
|
|
38462
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
38463
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
38464
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
38465
|
+
fieldId: Scalars['String']['output'];
|
|
38466
|
+
id: Scalars['ID']['output'];
|
|
38467
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38468
|
+
name: Scalars['String']['output'];
|
|
38469
|
+
remainingEstimate?: Maybe<JiraEstimate>;
|
|
38470
|
+
type: Scalars['String']['output'];
|
|
38471
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38472
|
+
};
|
|
38473
|
+
export declare type JiraRemainingTimeEstimateFieldInput = {
|
|
38474
|
+
id: Scalars['ID']['input'];
|
|
38475
|
+
remainingEstimate: JiraEstimateInput;
|
|
38476
|
+
};
|
|
38477
|
+
export declare type JiraRemainingTimeEstimateFieldPayload = Payload & {
|
|
38478
|
+
__typename?: 'JiraRemainingTimeEstimateFieldPayload';
|
|
38479
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38480
|
+
field?: Maybe<JiraRemainingTimeEstimateField>;
|
|
38481
|
+
success: Scalars['Boolean']['output'];
|
|
38482
|
+
};
|
|
38434
38483
|
export declare type JiraRemoteIssueLink = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
38435
38484
|
export declare type JiraRemoveActiveBackgroundInput = {
|
|
38436
38485
|
entityId: Scalars['ID']['input'];
|
|
@@ -43764,6 +43813,7 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
43764
43813
|
atlassianAccountId: Scalars['ID']['output'];
|
|
43765
43814
|
canManageAppDetails: Scalars['Boolean']['output'];
|
|
43766
43815
|
canManageAppPricing: Scalars['Boolean']['output'];
|
|
43816
|
+
canManageMarketing: Scalars['Boolean']['output'];
|
|
43767
43817
|
canManagePartnerDetails: Scalars['Boolean']['output'];
|
|
43768
43818
|
canManagePartnerPaymentDetails: Scalars['Boolean']['output'];
|
|
43769
43819
|
canManagePartnerSecurity: Scalars['Boolean']['output'];
|
|
@@ -51300,6 +51350,7 @@ export declare enum ShepherdClassificationLevelColor {
|
|
|
51300
51350
|
BlueBold = "BLUE_BOLD",
|
|
51301
51351
|
Green = "GREEN",
|
|
51302
51352
|
Grey = "GREY",
|
|
51353
|
+
Lime = "LIME",
|
|
51303
51354
|
Navy = "NAVY",
|
|
51304
51355
|
None = "NONE",
|
|
51305
51356
|
Orange = "ORANGE",
|
|
@@ -52129,6 +52180,7 @@ export declare type ShepherdWorkspaceUpdateInput = {
|
|
|
52129
52180
|
};
|
|
52130
52181
|
export declare type SignupProvisioningStatus = {
|
|
52131
52182
|
__typename?: 'SignupProvisioningStatus';
|
|
52183
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
52132
52184
|
orchestrationId: Scalars['String']['output'];
|
|
52133
52185
|
provisionComplete: Scalars['Boolean']['output'];
|
|
52134
52186
|
};
|
|
@@ -53525,6 +53577,19 @@ export declare type ToolchainContainerWorkspaceDetails = {
|
|
|
53525
53577
|
id: Scalars['ID']['output'];
|
|
53526
53578
|
name: Scalars['String']['output'];
|
|
53527
53579
|
};
|
|
53580
|
+
export declare enum ToolchainCreateContainerErrorCode {
|
|
53581
|
+
ProviderContainerAlreadyExists = "PROVIDER_CONTAINER_ALREADY_EXISTS",
|
|
53582
|
+
ProviderContainerCreateForbidden = "PROVIDER_CONTAINER_CREATE_FORBIDDEN",
|
|
53583
|
+
ProviderError = "PROVIDER_ERROR",
|
|
53584
|
+
ProviderInputInvalid = "PROVIDER_INPUT_INVALID",
|
|
53585
|
+
ProviderWorkspaceNotFound = "PROVIDER_WORKSPACE_NOT_FOUND"
|
|
53586
|
+
}
|
|
53587
|
+
export declare type ToolchainCreateContainerErrorExtension = MutationErrorExtension & {
|
|
53588
|
+
__typename?: 'ToolchainCreateContainerErrorExtension';
|
|
53589
|
+
errorCode?: Maybe<ToolchainCreateContainerErrorCode>;
|
|
53590
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53591
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53592
|
+
};
|
|
53528
53593
|
export declare type ToolchainCreateContainerInput = {
|
|
53529
53594
|
cloudId: Scalars['ID']['input'];
|
|
53530
53595
|
name: Scalars['String']['input'];
|
|
@@ -53821,6 +53886,7 @@ export declare type TownsquareMutationApiUnarchiveGoalArgs = {
|
|
|
53821
53886
|
export declare type TownsquareProject = Node & {
|
|
53822
53887
|
__typename?: 'TownsquareProject';
|
|
53823
53888
|
archived: Scalars['Boolean']['output'];
|
|
53889
|
+
description?: Maybe<TownsquareProjectDescription>;
|
|
53824
53890
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
53825
53891
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
53826
53892
|
id: Scalars['ID']['output'];
|
|
@@ -53838,6 +53904,12 @@ export declare type TownsquareProjectConnection = {
|
|
|
53838
53904
|
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
53839
53905
|
pageInfo: PageInfo;
|
|
53840
53906
|
};
|
|
53907
|
+
export declare type TownsquareProjectDescription = {
|
|
53908
|
+
__typename?: 'TownsquareProjectDescription';
|
|
53909
|
+
measurement?: Maybe<Scalars['String']['output']>;
|
|
53910
|
+
what?: Maybe<Scalars['String']['output']>;
|
|
53911
|
+
why?: Maybe<Scalars['String']['output']>;
|
|
53912
|
+
};
|
|
53841
53913
|
export declare type TownsquareProjectEdge = {
|
|
53842
53914
|
__typename?: 'TownsquareProjectEdge';
|
|
53843
53915
|
cursor: Scalars['String']['output'];
|