@forge/cli-shared 3.10.2-next.1 → 3.10.3-next.0
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
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.10.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [59c693e]
|
|
8
|
+
- @forge/manifest@4.9.3-next.0
|
|
9
|
+
|
|
10
|
+
## 3.10.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- f8cf2b8: Bumping dependencies via Renovate:
|
|
15
|
+
|
|
16
|
+
- env-paths
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [44c6dad]
|
|
19
|
+
- @forge/util@1.2.3
|
|
20
|
+
- @forge/manifest@4.9.2
|
|
21
|
+
|
|
3
22
|
## 3.10.2-next.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -1243,7 +1243,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1243
1243
|
id: Scalars['ID'];
|
|
1244
1244
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1245
1245
|
};
|
|
1246
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1246
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | ThirdPartySecurityWorkspace | ThirdPartySecurityContainer | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsSecurityVulnerabilityDetails | JiraIssue | OpsgenieTeam | TownsquareGoal | TownsquareProject | TownsquareComment;
|
|
1247
1247
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1248
1248
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1249
1249
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -3574,6 +3574,7 @@ export declare type CompassScorecardCriteriaScore = {
|
|
|
3574
3574
|
maxScore: Scalars['Int'];
|
|
3575
3575
|
explanation?: Maybe<Scalars['String']>;
|
|
3576
3576
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
3577
|
+
status?: Maybe<Scalars['String']>;
|
|
3577
3578
|
};
|
|
3578
3579
|
export declare type CompassScorecardCriteriaScoreQuery = {
|
|
3579
3580
|
componentId: Scalars['ID'];
|
|
@@ -5845,8 +5846,13 @@ export declare type CustomerServiceIndividualDeletePayload = Payload & {
|
|
|
5845
5846
|
errors?: Maybe<Array<MutationError>>;
|
|
5846
5847
|
};
|
|
5847
5848
|
export declare type CustomerServiceIndividualQueryResult = CustomerServiceIndividual | QueryError;
|
|
5849
|
+
export declare type CustomerServiceIndividualUpdateAttributeByNameInput = {
|
|
5850
|
+
accountId: Scalars['String'];
|
|
5851
|
+
attributeName: Scalars['String'];
|
|
5852
|
+
attributeValue: Scalars['String'];
|
|
5853
|
+
};
|
|
5848
5854
|
export declare type CustomerServiceIndividualUpdateAttributeInput = {
|
|
5849
|
-
|
|
5855
|
+
accountId: Scalars['String'];
|
|
5850
5856
|
attributeId: Scalars['String'];
|
|
5851
5857
|
attributeValue: Scalars['String'];
|
|
5852
5858
|
};
|
|
@@ -5868,6 +5874,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
5868
5874
|
createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
|
|
5869
5875
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
5870
5876
|
deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
|
|
5877
|
+
updateIndividualAttributeValueByName?: Maybe<CustomerServiceIndividualUpdateAttributeValuePayload>;
|
|
5871
5878
|
};
|
|
5872
5879
|
export declare type CustomerServiceMutationApiCreateOrganizationArgs = {
|
|
5873
5880
|
input: CustomerServiceOrganizationCreateInput;
|
|
@@ -5902,6 +5909,9 @@ export declare type CustomerServiceMutationApiUpdateIndividualAttributeArgs = {
|
|
|
5902
5909
|
export declare type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
|
|
5903
5910
|
input: CustomerServiceAttributeDeleteInput;
|
|
5904
5911
|
};
|
|
5912
|
+
export declare type CustomerServiceMutationApiUpdateIndividualAttributeValueByNameArgs = {
|
|
5913
|
+
input: CustomerServiceIndividualUpdateAttributeByNameInput;
|
|
5914
|
+
};
|
|
5905
5915
|
export declare type CustomerServiceOrganization = Node & {
|
|
5906
5916
|
__typename?: 'CustomerServiceOrganization';
|
|
5907
5917
|
id: Scalars['ID'];
|
|
@@ -7499,6 +7509,14 @@ export declare type DvcsQueryBitbucketWorkspacesLinkedToSiteArgs = {
|
|
|
7499
7509
|
first?: Maybe<Scalars['Int']>;
|
|
7500
7510
|
after?: Maybe<Scalars['String']>;
|
|
7501
7511
|
};
|
|
7512
|
+
export declare type EarliestOnboardedProjectForCloudId = {
|
|
7513
|
+
__typename?: 'EarliestOnboardedProjectForCloudId';
|
|
7514
|
+
datetime?: Maybe<Scalars['String']>;
|
|
7515
|
+
};
|
|
7516
|
+
export declare type EarliestViewViewedForUser = {
|
|
7517
|
+
__typename?: 'EarliestViewViewedForUser';
|
|
7518
|
+
datetime?: Maybe<Scalars['String']>;
|
|
7519
|
+
};
|
|
7502
7520
|
export declare type EcosystemMutation = {
|
|
7503
7521
|
__typename?: 'EcosystemMutation';
|
|
7504
7522
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -13410,6 +13428,7 @@ export declare type JiraQuery = {
|
|
|
13410
13428
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
13411
13429
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
13412
13430
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
13431
|
+
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
13413
13432
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
13414
13433
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
13415
13434
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
@@ -13656,6 +13675,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
13656
13675
|
export declare type JiraQueryEpicLinkFieldKeyArgs = {
|
|
13657
13676
|
cloudId?: Maybe<Scalars['ID']>;
|
|
13658
13677
|
};
|
|
13678
|
+
export declare type JiraQueryChildIssuesLimitArgs = {
|
|
13679
|
+
cloudId: Scalars['ID'];
|
|
13680
|
+
};
|
|
13659
13681
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
13660
13682
|
cloudId: Scalars['ID'];
|
|
13661
13683
|
};
|
|
@@ -17625,6 +17647,14 @@ export declare type PartnerBtfProductNode = {
|
|
|
17625
17647
|
productDescription?: Maybe<Scalars['String']>;
|
|
17626
17648
|
productKey: Scalars['ID'];
|
|
17627
17649
|
};
|
|
17650
|
+
export declare type PartnerCatalogApi = {
|
|
17651
|
+
__typename?: 'PartnerCatalogApi';
|
|
17652
|
+
partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
|
|
17653
|
+
partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
|
|
17654
|
+
};
|
|
17655
|
+
export declare type PartnerCatalogApiPartnerOfferingDetailsArgs = {
|
|
17656
|
+
where?: Maybe<PartnerOfferingFilter>;
|
|
17657
|
+
};
|
|
17628
17658
|
export declare enum PartnerCloudLicenseType {
|
|
17629
17659
|
Academic = "ACADEMIC",
|
|
17630
17660
|
Commercial = "COMMERCIAL",
|
|
@@ -17657,14 +17687,6 @@ export declare type PartnerOfferingBtfInput = {
|
|
|
17657
17687
|
licenseType?: Maybe<Array<Maybe<PartnerBtfLicenseType>>>;
|
|
17658
17688
|
productKey: Scalars['ID'];
|
|
17659
17689
|
};
|
|
17660
|
-
export declare type PartnerOfferingCatalogApi = {
|
|
17661
|
-
__typename?: 'PartnerOfferingCatalogApi';
|
|
17662
|
-
partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
|
|
17663
|
-
partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
|
|
17664
|
-
};
|
|
17665
|
-
export declare type PartnerOfferingCatalogApiPartnerOfferingDetailsArgs = {
|
|
17666
|
-
where?: Maybe<PartnerOfferingFilter>;
|
|
17667
|
-
};
|
|
17668
17690
|
export declare type PartnerOfferingCloudInput = {
|
|
17669
17691
|
currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
|
|
17670
17692
|
key: Scalars['ID'];
|
|
@@ -19058,7 +19080,7 @@ export declare type Query = {
|
|
|
19058
19080
|
opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
19059
19081
|
jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
|
|
19060
19082
|
codeInJira?: Maybe<CodeInJira>;
|
|
19061
|
-
partnerCatalogApi?: Maybe<
|
|
19083
|
+
partnerCatalogApi?: Maybe<PartnerCatalogApi>;
|
|
19062
19084
|
jira?: Maybe<JiraQuery>;
|
|
19063
19085
|
team?: Maybe<TeamQuery>;
|
|
19064
19086
|
testing?: Maybe<Testing>;
|
|
@@ -19070,6 +19092,8 @@ export declare type Query = {
|
|
|
19070
19092
|
ersLifecycle?: Maybe<ErsLifecycleQuery>;
|
|
19071
19093
|
appAdmin?: Maybe<AppAdminQuery>;
|
|
19072
19094
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
19095
|
+
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
19096
|
+
polarisGetEarliestViewViewedForUser?: Maybe<EarliestViewViewedForUser>;
|
|
19073
19097
|
polarisProject?: Maybe<PolarisProject>;
|
|
19074
19098
|
polarisView?: Maybe<PolarisView>;
|
|
19075
19099
|
polarisInsights?: Maybe<Array<PolarisInsight>>;
|
|
@@ -19296,6 +19320,12 @@ export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
|
19296
19320
|
export declare type QueryAppAdminArgs = {
|
|
19297
19321
|
appId: Scalars['ID'];
|
|
19298
19322
|
};
|
|
19323
|
+
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
19324
|
+
id: Scalars['ID'];
|
|
19325
|
+
};
|
|
19326
|
+
export declare type QueryPolarisGetEarliestViewViewedForUserArgs = {
|
|
19327
|
+
id: Scalars['ID'];
|
|
19328
|
+
};
|
|
19299
19329
|
export declare type QueryPolarisProjectArgs = {
|
|
19300
19330
|
id: Scalars['ID'];
|
|
19301
19331
|
skipRefresh?: Maybe<Scalars['Boolean']>;
|
|
@@ -20648,7 +20678,8 @@ export declare enum Scope {
|
|
|
20648
20678
|
WriteContainer = "WRITE_CONTAINER",
|
|
20649
20679
|
MigrateConfluence = "MIGRATE_CONFLUENCE",
|
|
20650
20680
|
ReadTeam = "READ_TEAM",
|
|
20651
|
-
ReadTeamMembers = "READ_TEAM_MEMBERS"
|
|
20681
|
+
ReadTeamMembers = "READ_TEAM_MEMBERS",
|
|
20682
|
+
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL"
|
|
20652
20683
|
}
|
|
20653
20684
|
export declare type ScopeSprintIssue = {
|
|
20654
20685
|
__typename?: 'ScopeSprintIssue';
|
|
@@ -21087,6 +21118,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
21087
21118
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|
|
21088
21119
|
template?: Maybe<ShepherdAlertTemplateType>;
|
|
21089
21120
|
title: Scalars['String'];
|
|
21121
|
+
updatedBy?: Maybe<ShepherdUser>;
|
|
21090
21122
|
updatedOn?: Maybe<Scalars['DateTime']>;
|
|
21091
21123
|
workspaceId?: Maybe<Scalars['ID']>;
|
|
21092
21124
|
};
|
|
@@ -21122,6 +21154,7 @@ export declare type ShepherdAlertSupportingData = {
|
|
|
21122
21154
|
export declare enum ShepherdAlertTemplateType {
|
|
21123
21155
|
AddedConfluenceGlobalPermission = "ADDED_CONFLUENCE_GLOBAL_PERMISSION",
|
|
21124
21156
|
AddedConfluenceSpacePermission = "ADDED_CONFLUENCE_SPACE_PERMISSION",
|
|
21157
|
+
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
21125
21158
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
21126
21159
|
ConfluencePageCrawling = "CONFLUENCE_PAGE_CRAWLING",
|
|
21127
21160
|
ConfluencePageExports = "CONFLUENCE_PAGE_EXPORTS",
|
|
@@ -21142,6 +21175,7 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
21142
21175
|
EcosystemAuditLogUserGrantCreated = "ECOSYSTEM_AUDIT_LOG_USER_GRANT_CREATED",
|
|
21143
21176
|
EnableScimSync = "ENABLE_SCIM_SYNC",
|
|
21144
21177
|
ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
|
|
21178
|
+
GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
|
|
21145
21179
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
21146
21180
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
21147
21181
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
@@ -23143,6 +23177,9 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
23143
23177
|
importance?: Maybe<CompassScorecardImportance>;
|
|
23144
23178
|
componentLabelNames?: Maybe<Array<Scalars['String']>>;
|
|
23145
23179
|
componentTierValues?: Maybe<Array<Scalars['String']>>;
|
|
23180
|
+
createCriteria?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
23181
|
+
updateCriteria?: Maybe<Array<UpdateCompassScorecardCriteriaInput>>;
|
|
23182
|
+
deleteCriteria?: Maybe<Array<DeleteCompassScorecardCriteriaInput>>;
|
|
23146
23183
|
};
|
|
23147
23184
|
export declare type UpdateCompassScorecardPayload = Payload & {
|
|
23148
23185
|
__typename?: 'UpdateCompassScorecardPayload';
|