@forge/cli-shared 9.4.0 → 9.4.1-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,12 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.4.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [40260f5]
8
+ - @forge/manifest@13.3.2-next.0
9
+
3
10
  ## 9.4.0
4
11
 
5
12
  ### Minor Changes
@@ -40289,6 +40289,26 @@ export type CplsAddWorkScopeAssociationsPayload = Payload & {
40289
40289
  workDataIds?: Maybe<Array<CplsWorkDataIdEdge>>;
40290
40290
  works?: Maybe<Array<CplsWorkEdge>>;
40291
40291
  };
40292
+ export type CplsAllocateCapacityInput = {
40293
+ allocations: Array<CplsAllocationInput>;
40294
+ cloudId: Scalars['ID']['input'];
40295
+ contributorDataIds: Array<Scalars['ID']['input']>;
40296
+ workId: Scalars['ID']['input'];
40297
+ };
40298
+ export type CplsAllocateCapacityPayload = Payload & {
40299
+ __typename?: 'CplsAllocateCapacityPayload';
40300
+ contributorContributionAggregations?: Maybe<Array<CplsContributorContributionAggregations>>;
40301
+ contributorWorkAssociations?: Maybe<Array<CplsContributorWorkAssociationNode>>;
40302
+ errors?: Maybe<Array<MutationError>>;
40303
+ success: Scalars['Boolean']['output'];
40304
+ workContributionAggregations?: Maybe<Array<CplsWorkContributionAggregations>>;
40305
+ };
40306
+ export type CplsAllocationInput = {
40307
+ endDate: Scalars['Date']['input'];
40308
+ startDate: Scalars['Date']['input'];
40309
+ value: Scalars['Float']['input'];
40310
+ valueType: CplsContributionValueType;
40311
+ };
40292
40312
  export type CplsAtlasProject = {
40293
40313
  __typename?: 'CplsAtlasProject';
40294
40314
  atlasProject?: Maybe<TownsquareProject>;
@@ -42821,6 +42841,14 @@ export type CustomerServiceAcceptEscalationPayload = Payload & {
42821
42841
  errors?: Maybe<Array<MutationError>>;
42822
42842
  success: Scalars['Boolean']['output'];
42823
42843
  };
42844
+ export type CustomerServiceAccessibleCustomerExperience = {
42845
+ __typename?: 'CustomerServiceAccessibleCustomerExperience';
42846
+ accessControlType: Scalars['String']['output'];
42847
+ helpCenterId: Scalars['ID']['output'];
42848
+ hoistedProjectId?: Maybe<Scalars['ID']['output']>;
42849
+ icon?: Maybe<CustomerServiceBrandingIcon>;
42850
+ name: Scalars['String']['output'];
42851
+ };
42824
42852
  export type CustomerServiceAddConversationNoteInput = {
42825
42853
  body: Scalars['String']['input'];
42826
42854
  };
@@ -43569,6 +43597,7 @@ export type CustomerServiceHelpCenterMetadataUpsertPayload = {
43569
43597
  };
43570
43598
  export type CustomerServiceIndividual = Node & {
43571
43599
  __typename?: 'CustomerServiceIndividual';
43600
+ accessibleCustomerExperiences?: Maybe<Array<CustomerServiceAccessibleCustomerExperience>>;
43572
43601
  attributes: Array<CustomerServiceAttributeValue>;
43573
43602
  details: CustomerServiceCustomDetailValuesQueryResult;
43574
43603
  entitlementList: Array<CustomerServiceEntitlement>;
@@ -49722,7 +49751,8 @@ export type EcosystemRealtimeSubscriptionBody = {
49722
49751
  export declare enum EcosystemRequiredProduct {
49723
49752
  Compass = "COMPASS",
49724
49753
  Confluence = "CONFLUENCE",
49725
- Jira = "JIRA"
49754
+ Jira = "JIRA",
49755
+ Platform = "PLATFORM"
49726
49756
  }
49727
49757
  export type EcosystemRollingRelease = {
49728
49758
  __typename?: 'EcosystemRollingRelease';
@@ -55691,6 +55721,11 @@ export declare enum GraphIntegrationAppCapability {
55691
55721
  Action = "ACTION",
55692
55722
  DataConnector = "DATA_CONNECTOR"
55693
55723
  }
55724
+ export type GraphIntegrationCloneCandidateSkillInput = {
55725
+ cloneToken: Scalars['String']['input'];
55726
+ contextAri: Scalars['ID']['input'];
55727
+ skillAri: Scalars['ID']['input'];
55728
+ };
55694
55729
  export type GraphIntegrationConsentInput = {
55695
55730
  agreement: Scalars['String']['input'];
55696
55731
  formUrlReferer: Scalars['URL']['input'];
@@ -134002,6 +134037,8 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
134002
134037
  securityLevelField?: Maybe<JiraSecurityLevelField>;
134003
134038
  securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
134004
134039
  servicedeskPractices?: Maybe<JiraServiceManagementPractice>;
134040
+ servicedeskRequestChannel?: Maybe<Scalars['String']['output']>;
134041
+ servicedeskRequestPortalUrl?: Maybe<Scalars['String']['output']>;
134005
134042
  shouldShowIncidentCommandCenter?: Maybe<Scalars['Boolean']['output']>;
134006
134043
  shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
134007
134044
  smartSummary?: Maybe<JiraAdf>;
@@ -176469,6 +176506,7 @@ export type Mutation = {
176469
176506
  cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
176470
176507
  cpls_addContributorWorkAssociation?: Maybe<CplsAddContributorWorkAssociationPayload>;
176471
176508
  cpls_addWorkScopeAssociations?: Maybe<CplsAddWorkScopeAssociationsPayload>;
176509
+ cpls_allocateCapacity?: Maybe<CplsAllocateCapacityPayload>;
176472
176510
  cpls_copyContributorToWorks?: Maybe<CplsCopyContributorToWorksPayload>;
176473
176511
  cpls_copyWorkToContributors?: Maybe<CplsCopyWorkToContributorsPayload>;
176474
176512
  cpls_createCustomContributionTarget?: Maybe<CplsCreateCustomContributionTargetPayload>;
@@ -179815,6 +179853,9 @@ export type MutationCpls_AddContributorWorkAssociationArgs = {
179815
179853
  export type MutationCpls_AddWorkScopeAssociationsArgs = {
179816
179854
  input: CplsAddWorkScopeAssociationsInput;
179817
179855
  };
179856
+ export type MutationCpls_AllocateCapacityArgs = {
179857
+ input: CplsAllocateCapacityInput;
179858
+ };
179818
179859
  export type MutationCpls_CopyContributorToWorksArgs = {
179819
179860
  input: CplsCopyContributorToWorksInput;
179820
179861
  };
@@ -188449,6 +188490,7 @@ export type Query = {
188449
188490
  graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
188450
188491
  graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
188451
188492
  graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
188493
+ graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
188452
188494
  graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
188453
188495
  graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
188454
188496
  graphIntegration_customAuth?: Maybe<GraphIntegrationCustomAuthNode>;
@@ -195995,6 +196037,9 @@ export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
195995
196037
  contextAri: Scalars['ID']['input'];
195996
196038
  includeEnabledToolCount?: Scalars['Boolean']['input'];
195997
196039
  };
196040
+ export type QueryGraphIntegration_CloneCandidateSkillArgs = {
196041
+ input: GraphIntegrationCloneCandidateSkillInput;
196042
+ };
195998
196043
  export type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
195999
196044
  after?: InputMaybe<Scalars['String']['input']>;
196000
196045
  cloudId: Scalars['ID']['input'];