@forge/cli-shared 3.10.2-next.0 → 3.10.2

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,25 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 3.10.2
4
+
5
+ ### Patch Changes
6
+
7
+ - f8cf2b8: Bumping dependencies via Renovate:
8
+
9
+ - env-paths
10
+
11
+ - Updated dependencies [44c6dad]
12
+ - @forge/util@1.2.3
13
+ - @forge/manifest@4.9.2
14
+
15
+ ## 3.10.2-next.1
16
+
17
+ ### Patch Changes
18
+
19
+ - f8cf2b8: Bumping dependencies via Renovate:
20
+
21
+ - env-paths
22
+
3
23
  ## 3.10.2-next.0
4
24
 
5
25
  ### 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'];
@@ -5864,6 +5865,7 @@ export declare type CustomerServiceMutationApi = {
5864
5865
  updateOrganizationAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
5865
5866
  deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
5866
5867
  updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
5868
+ updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
5867
5869
  createIndividualAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
5868
5870
  updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
5869
5871
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
@@ -5889,6 +5891,9 @@ export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs =
5889
5891
  export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueArgs = {
5890
5892
  input: CustomerServiceOrganizationUpdateAttributeInput;
5891
5893
  };
5894
+ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueByNameArgs = {
5895
+ input: CustomerServiceOrganizationUpdateAttributeByNameInput;
5896
+ };
5892
5897
  export declare type CustomerServiceMutationApiCreateIndividualAttributeArgs = {
5893
5898
  input: CustomerServiceAttributeCreateInput;
5894
5899
  };
@@ -5923,6 +5928,11 @@ export declare type CustomerServiceOrganizationDeletePayload = Payload & {
5923
5928
  errors?: Maybe<Array<MutationError>>;
5924
5929
  };
5925
5930
  export declare type CustomerServiceOrganizationQueryResult = CustomerServiceOrganization | QueryError;
5931
+ export declare type CustomerServiceOrganizationUpdateAttributeByNameInput = {
5932
+ organizationId: Scalars['String'];
5933
+ attributeName: Scalars['String'];
5934
+ attributeValue: Scalars['String'];
5935
+ };
5926
5936
  export declare type CustomerServiceOrganizationUpdateAttributeInput = {
5927
5937
  organizationId: Scalars['String'];
5928
5938
  attributeId: Scalars['String'];
@@ -7470,48 +7480,6 @@ export declare type DeveloperLogAccessResult = {
7470
7480
  developerHasAccess: Scalars['Boolean'];
7471
7481
  contextId: Scalars['ID'];
7472
7482
  };
7473
- export declare type DirectoryMutation = {
7474
- __typename?: 'DirectoryMutation';
7475
- removeUserAccess?: Maybe<DirectoryRemoveUserAccessPayload>;
7476
- restoreUserAccess?: Maybe<DirectoryRestoreUserAccessPayload>;
7477
- suspendUserAccess?: Maybe<DirectorySuspendUserAccessPayload>;
7478
- };
7479
- export declare type DirectoryMutationRemoveUserAccessArgs = {
7480
- input?: Maybe<DirectoryRemoveUserInput>;
7481
- };
7482
- export declare type DirectoryMutationRestoreUserAccessArgs = {
7483
- input?: Maybe<DirectoryRestoreUserInput>;
7484
- };
7485
- export declare type DirectoryMutationSuspendUserAccessArgs = {
7486
- input?: Maybe<DirectorySuspendUserInput>;
7487
- };
7488
- export declare type DirectoryRemoveUserAccessPayload = Payload & {
7489
- __typename?: 'DirectoryRemoveUserAccessPayload';
7490
- success: Scalars['Boolean'];
7491
- errors?: Maybe<Array<MutationError>>;
7492
- };
7493
- export declare type DirectoryRemoveUserInput = {
7494
- orgId: Scalars['ID'];
7495
- accountId: Scalars['ID'];
7496
- };
7497
- export declare type DirectoryRestoreUserAccessPayload = Payload & {
7498
- __typename?: 'DirectoryRestoreUserAccessPayload';
7499
- success: Scalars['Boolean'];
7500
- errors?: Maybe<Array<MutationError>>;
7501
- };
7502
- export declare type DirectoryRestoreUserInput = {
7503
- orgId: Scalars['ID'];
7504
- accountId: Scalars['ID'];
7505
- };
7506
- export declare type DirectorySuspendUserAccessPayload = Payload & {
7507
- __typename?: 'DirectorySuspendUserAccessPayload';
7508
- success: Scalars['Boolean'];
7509
- errors?: Maybe<Array<MutationError>>;
7510
- };
7511
- export declare type DirectorySuspendUserInput = {
7512
- orgId: Scalars['ID'];
7513
- accountId: Scalars['ID'];
7514
- };
7515
7483
  export declare type DvcsBitbucketWorkspaceConnection = {
7516
7484
  __typename?: 'DvcsBitbucketWorkspaceConnection';
7517
7485
  edges?: Maybe<Array<Maybe<DvcsBitbucketWorkspaceEdge>>>;
@@ -13443,6 +13411,7 @@ export declare type JiraQuery = {
13443
13411
  screenIdByIssueId?: Maybe<Scalars['Long']>;
13444
13412
  screenIdByIssueKey?: Maybe<Scalars['Long']>;
13445
13413
  epicLinkFieldKey?: Maybe<Scalars['String']>;
13414
+ childIssuesLimit?: Maybe<Scalars['Long']>;
13446
13415
  getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
13447
13416
  jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
13448
13417
  allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
@@ -13689,6 +13658,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
13689
13658
  export declare type JiraQueryEpicLinkFieldKeyArgs = {
13690
13659
  cloudId?: Maybe<Scalars['ID']>;
13691
13660
  };
13661
+ export declare type JiraQueryChildIssuesLimitArgs = {
13662
+ cloudId: Scalars['ID'];
13663
+ };
13692
13664
  export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
13693
13665
  cloudId: Scalars['ID'];
13694
13666
  };
@@ -16138,7 +16110,6 @@ export declare type JiraWorklog = Node & {
16138
16110
  author?: Maybe<User>;
16139
16111
  updateAuthor?: Maybe<User>;
16140
16112
  timeSpent?: Maybe<JiraEstimate>;
16141
- remainingEstimate?: Maybe<JiraEstimate>;
16142
16113
  created: Scalars['DateTime'];
16143
16114
  updated?: Maybe<Scalars['DateTime']>;
16144
16115
  startDate?: Maybe<Scalars['DateTime']>;
@@ -16758,7 +16729,6 @@ export declare type Mutation = {
16758
16729
  compass?: Maybe<CompassCatalogMutationApi>;
16759
16730
  customerService?: Maybe<CustomerServiceMutationApi>;
16760
16731
  shepherd?: Maybe<ShepherdMutation>;
16761
- directory?: Maybe<DirectoryMutation>;
16762
16732
  helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
16763
16733
  jsw?: Maybe<JswMutation>;
16764
16734
  createColumn?: Maybe<CreateColumnOutput>;
@@ -17660,6 +17630,14 @@ export declare type PartnerBtfProductNode = {
17660
17630
  productDescription?: Maybe<Scalars['String']>;
17661
17631
  productKey: Scalars['ID'];
17662
17632
  };
17633
+ export declare type PartnerCatalogApi = {
17634
+ __typename?: 'PartnerCatalogApi';
17635
+ partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
17636
+ partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
17637
+ };
17638
+ export declare type PartnerCatalogApiPartnerOfferingDetailsArgs = {
17639
+ where?: Maybe<PartnerOfferingFilter>;
17640
+ };
17663
17641
  export declare enum PartnerCloudLicenseType {
17664
17642
  Academic = "ACADEMIC",
17665
17643
  Commercial = "COMMERCIAL",
@@ -17692,14 +17670,6 @@ export declare type PartnerOfferingBtfInput = {
17692
17670
  licenseType?: Maybe<Array<Maybe<PartnerBtfLicenseType>>>;
17693
17671
  productKey: Scalars['ID'];
17694
17672
  };
17695
- export declare type PartnerOfferingCatalogApi = {
17696
- __typename?: 'PartnerOfferingCatalogApi';
17697
- partnerOfferingCatalog?: Maybe<PartnerOfferingListResponse>;
17698
- partnerOfferingDetails?: Maybe<PartnerOfferingDetailsResponse>;
17699
- };
17700
- export declare type PartnerOfferingCatalogApiPartnerOfferingDetailsArgs = {
17701
- where?: Maybe<PartnerOfferingFilter>;
17702
- };
17703
17673
  export declare type PartnerOfferingCloudInput = {
17704
17674
  currency?: Maybe<Array<Maybe<PartnerCurrency>>>;
17705
17675
  key: Scalars['ID'];
@@ -19093,7 +19063,7 @@ export declare type Query = {
19093
19063
  opsgenieTeamRelationshipsForJiraProject?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
19094
19064
  jiraProjectAndOpsgenieTeamRelationship?: Maybe<JiraProjectAndOpsgenieTeamRelationship>;
19095
19065
  codeInJira?: Maybe<CodeInJira>;
19096
- partnerCatalogApi?: Maybe<PartnerOfferingCatalogApi>;
19066
+ partnerCatalogApi?: Maybe<PartnerCatalogApi>;
19097
19067
  jira?: Maybe<JiraQuery>;
19098
19068
  team?: Maybe<TeamQuery>;
19099
19069
  testing?: Maybe<Testing>;
@@ -19594,7 +19564,6 @@ export declare enum RateLimitingCurrency {
19594
19564
  TeamSearchCurrency = "TEAM_SEARCH_CURRENCY",
19595
19565
  PolarisCurrency = "POLARIS_CURRENCY",
19596
19566
  CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
19597
- DirectoryCurrency = "DIRECTORY_CURRENCY",
19598
19567
  HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
19599
19568
  ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
19600
19569
  DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
@@ -20684,7 +20653,8 @@ export declare enum Scope {
20684
20653
  WriteContainer = "WRITE_CONTAINER",
20685
20654
  MigrateConfluence = "MIGRATE_CONFLUENCE",
20686
20655
  ReadTeam = "READ_TEAM",
20687
- ReadTeamMembers = "READ_TEAM_MEMBERS"
20656
+ ReadTeamMembers = "READ_TEAM_MEMBERS",
20657
+ TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL"
20688
20658
  }
20689
20659
  export declare type ScopeSprintIssue = {
20690
20660
  __typename?: 'ScopeSprintIssue';
@@ -23179,6 +23149,9 @@ export declare type UpdateCompassScorecardInput = {
23179
23149
  importance?: Maybe<CompassScorecardImportance>;
23180
23150
  componentLabelNames?: Maybe<Array<Scalars['String']>>;
23181
23151
  componentTierValues?: Maybe<Array<Scalars['String']>>;
23152
+ createCriteria?: Maybe<Array<CreateCompassScorecardCriteriaInput>>;
23153
+ updateCriteria?: Maybe<Array<UpdateCompassScorecardCriteriaInput>>;
23154
+ deleteCriteria?: Maybe<Array<DeleteCompassScorecardCriteriaInput>>;
23182
23155
  };
23183
23156
  export declare type UpdateCompassScorecardPayload = Payload & {
23184
23157
  __typename?: 'UpdateCompassScorecardPayload';