@forge/cli-shared 6.11.0-next.17 → 6.11.0-next.18

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,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.11.0-next.18
4
+
5
+ ### Patch Changes
6
+
7
+ - 0081dd2: Fixed warning message
8
+
3
9
  ## 6.11.0-next.17
4
10
 
5
11
  ### Patch Changes
@@ -1878,7 +1878,7 @@ export declare type AppLogsWithMetaData = {
1878
1878
  environmentId: Scalars['String']['output'];
1879
1879
  error?: Maybe<Scalars['String']['output']>;
1880
1880
  functionKey?: Maybe<Scalars['String']['output']>;
1881
- installationContext: Scalars['String']['output'];
1881
+ installationContext?: Maybe<Scalars['String']['output']>;
1882
1882
  invocationId: Scalars['String']['output'];
1883
1883
  licenseState?: Maybe<LicenseValue>;
1884
1884
  lvl?: Maybe<Scalars['String']['output']>;
@@ -4161,6 +4161,7 @@ export declare type CcpQueryApi = {
4161
4161
  product?: Maybe<CcpProduct>;
4162
4162
  quotes?: Maybe<Array<Maybe<CcpQuote>>>;
4163
4163
  transactionAccount?: Maybe<CcpTransactionAccount>;
4164
+ transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
4164
4165
  };
4165
4166
  export declare type CcpQueryApiEntitlementArgs = {
4166
4167
  id: Scalars['ID']['input'];
@@ -4186,6 +4187,9 @@ export declare type CcpQueryApiQuotesArgs = {
4186
4187
  export declare type CcpQueryApiTransactionAccountArgs = {
4187
4188
  id: Scalars['ID']['input'];
4188
4189
  };
4190
+ export declare type CcpQueryApiTransactionAccountsArgs = {
4191
+ ids: Array<Scalars['ID']['input']>;
4192
+ };
4189
4193
  export declare type CcpQuote = Node & {
4190
4194
  __typename?: 'CcpQuote';
4191
4195
  autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
@@ -4566,14 +4570,20 @@ export declare enum CcpTiersMode {
4566
4570
  Graduated = "GRADUATED",
4567
4571
  Volume = "VOLUME"
4568
4572
  }
4569
- export declare type CcpTransactionAccount = CommerceTransactionAccount & {
4573
+ export declare type CcpTransactionAccount = CommerceTransactionAccount & Node & {
4570
4574
  __typename?: 'CcpTransactionAccount';
4575
+ description?: Maybe<Scalars['String']['output']>;
4571
4576
  experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
4572
4577
  id: Scalars['ID']['output'];
4578
+ isActive?: Maybe<Scalars['Boolean']['output']>;
4573
4579
  isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
4574
4580
  isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
4575
4581
  isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
4582
+ isMonetized?: Maybe<Scalars['Boolean']['output']>;
4576
4583
  key?: Maybe<Scalars['String']['output']>;
4584
+ name?: Maybe<Scalars['String']['output']>;
4585
+ number?: Maybe<Scalars['String']['output']>;
4586
+ type?: Maybe<CcpTransactionAccountType>;
4577
4587
  };
4578
4588
  export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
4579
4589
  __typename?: 'CcpTransactionAccountExperienceCapabilities';
@@ -4581,6 +4591,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
4581
4591
  addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
4582
4592
  multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
4583
4593
  };
4594
+ export declare enum CcpTransactionAccountType {
4595
+ Direct = "DIRECT",
4596
+ Partner = "PARTNER",
4597
+ UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
4598
+ }
4584
4599
  export declare type CcpTrial = CommerceTrial & {
4585
4600
  __typename?: 'CcpTrial';
4586
4601
  endBehaviour?: Maybe<CcpTrialEndBehaviour>;
@@ -20752,6 +20767,11 @@ export declare type CsmAiAuthenticationInput = {
20752
20767
  export declare enum CsmAiAuthenticationType {
20753
20768
  NoAuth = "NO_AUTH"
20754
20769
  }
20770
+ export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
20771
+ export declare type CsmAiConnectorConfigurationInput = {
20772
+ messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
20773
+ ticketingHandoff?: InputMaybe<CsmAiTicketingHandoffInput>;
20774
+ };
20755
20775
  export declare type CsmAiCreateActionInput = {
20756
20776
  actionType: CsmAiActionType;
20757
20777
  apiOperation: CsmAiApiOperationInput;
@@ -20772,6 +20792,22 @@ export declare type CsmAiDeleteActionPayload = Payload & {
20772
20792
  errors?: Maybe<Array<MutationError>>;
20773
20793
  success: Scalars['Boolean']['output'];
20774
20794
  };
20795
+ export declare type CsmAiHandoffConfig = {
20796
+ __typename?: 'CsmAiHandoffConfig';
20797
+ connectorConfiguration: CsmAiConnectorConfiguration;
20798
+ enabled: Scalars['Boolean']['output'];
20799
+ id: Scalars['ID']['output'];
20800
+ type: CsmAiHandoffType;
20801
+ };
20802
+ export declare type CsmAiHandoffConfigResult = CsmAiHandoffConfig | QueryError;
20803
+ export declare enum CsmAiHandoffType {
20804
+ Csm = "CSM",
20805
+ Message = "MESSAGE"
20806
+ }
20807
+ export declare enum CsmAiHandoffTypeInput {
20808
+ Csm = "CSM",
20809
+ Message = "MESSAGE"
20810
+ }
20775
20811
  export declare enum CsmAiHttpMethod {
20776
20812
  Delete = "DELETE",
20777
20813
  Get = "GET",
@@ -20783,6 +20819,7 @@ export declare type CsmAiHub = {
20783
20819
  __typename?: 'CsmAiHub';
20784
20820
  actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
20785
20821
  agent?: Maybe<CsmAiAgentResult>;
20822
+ handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
20786
20823
  id: Scalars['ID']['output'];
20787
20824
  };
20788
20825
  export declare type CsmAiHubResult = CsmAiHub | QueryError;
@@ -20795,6 +20832,20 @@ export declare type CsmAiKeyValuePair = {
20795
20832
  key?: Maybe<Scalars['String']['output']>;
20796
20833
  value?: Maybe<Scalars['String']['output']>;
20797
20834
  };
20835
+ export declare type CsmAiMessageHandoff = {
20836
+ __typename?: 'CsmAiMessageHandoff';
20837
+ message: Scalars['String']['output'];
20838
+ };
20839
+ export declare type CsmAiMessageHandoffInput = {
20840
+ message: Scalars['String']['input'];
20841
+ };
20842
+ export declare type CsmAiTicketingHandoff = {
20843
+ __typename?: 'CsmAiTicketingHandoff';
20844
+ formId: Scalars['ID']['output'];
20845
+ };
20846
+ export declare type CsmAiTicketingHandoffInput = {
20847
+ formId: Scalars['ID']['input'];
20848
+ };
20798
20849
  export declare type CsmAiUpdateActionInput = {
20799
20850
  actionType?: InputMaybe<CsmAiActionType>;
20800
20851
  apiOperation?: InputMaybe<CsmAiApiOperationInput>;
@@ -20830,6 +20881,17 @@ export declare type CsmAiUpdateAgentPayload = Payload & {
20830
20881
  errors?: Maybe<Array<MutationError>>;
20831
20882
  success: Scalars['Boolean']['output'];
20832
20883
  };
20884
+ export declare type CsmAiUpdateHandoffConfigInput = {
20885
+ connectorConfiguration: CsmAiConnectorConfigurationInput;
20886
+ enabled: Scalars['Boolean']['input'];
20887
+ type: CsmAiHandoffTypeInput;
20888
+ };
20889
+ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
20890
+ __typename?: 'CsmAiUpdateHandoffConfigPayload';
20891
+ errors?: Maybe<Array<MutationError>>;
20892
+ handoffConfig?: Maybe<CsmAiHandoffConfig>;
20893
+ success: Scalars['Boolean']['output'];
20894
+ };
20833
20895
  export declare type CumulativeFlowDiagram = {
20834
20896
  __typename?: 'CumulativeFlowDiagram';
20835
20897
  chart: CfdChartConnection;
@@ -57218,6 +57280,20 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
57218
57280
  RemoveAll = "REMOVE_ALL",
57219
57281
  Replace = "REPLACE"
57220
57282
  }
57283
+ export declare type JiraBulkLabelColorUpdateInput = {
57284
+ labelColorUpdate: Array<JiraBulkLabelColorUpdateInputItem>;
57285
+ projectId: Scalars['ID']['input'];
57286
+ };
57287
+ export declare type JiraBulkLabelColorUpdateInputItem = {
57288
+ color?: InputMaybe<JiraOptionColorInput>;
57289
+ fieldId: Scalars['ID']['input'];
57290
+ label: Scalars['String']['input'];
57291
+ };
57292
+ export declare type JiraBulkLabelColorUpdatePayload = Payload & {
57293
+ __typename?: 'JiraBulkLabelColorUpdatePayload';
57294
+ errors?: Maybe<Array<MutationError>>;
57295
+ success: Scalars['Boolean']['output'];
57296
+ };
57221
57297
  export declare type JiraBulkOperationInput = {
57222
57298
  bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
57223
57299
  bulkEditInput?: InputMaybe<JiraBulkEditInput>;
@@ -59995,6 +60071,7 @@ export declare type JiraField = {
59995
60071
  export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
59996
60072
  __typename?: 'JiraFieldAssociationWithIssueTypes';
59997
60073
  field?: Maybe<JiraField>;
60074
+ fieldFormatConfig?: Maybe<JiraFieldFormatConfig>;
59998
60075
  fieldOperation?: Maybe<JiraFieldOperation>;
59999
60076
  fieldOptions?: Maybe<JiraFieldOptionConnection>;
60000
60077
  hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
@@ -60098,6 +60175,7 @@ export declare type JiraFieldEdge = {
60098
60175
  cursor?: Maybe<Scalars['String']['output']>;
60099
60176
  node?: Maybe<JiraField>;
60100
60177
  };
60178
+ export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
60101
60179
  export declare type JiraFieldKeyValueInput = {
60102
60180
  key?: InputMaybe<Scalars['String']['input']>;
60103
60181
  value?: InputMaybe<Scalars['String']['input']>;
@@ -64251,6 +64329,7 @@ export declare type JiraMutation = {
64251
64329
  assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
64252
64330
  attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
64253
64331
  bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
64332
+ bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
64254
64333
  cloneIssue?: Maybe<JiraCloneIssueResponse>;
64255
64334
  createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
64256
64335
  createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
@@ -64482,6 +64561,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
64482
64561
  export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
64483
64562
  input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
64484
64563
  };
64564
+ export declare type JiraMutationBulkUpdateLabelColorArgs = {
64565
+ input: JiraBulkLabelColorUpdateInput;
64566
+ };
64485
64567
  export declare type JiraMutationCloneIssueArgs = {
64486
64568
  input: JiraCloneIssueInput;
64487
64569
  };
@@ -81430,6 +81512,7 @@ export declare type Mutation = {
81430
81512
  csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
81431
81513
  csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
81432
81514
  csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
81515
+ csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
81433
81516
  customerService?: Maybe<CustomerServiceMutationApi>;
81434
81517
  customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
81435
81518
  deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
@@ -82711,6 +82794,12 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
82711
82794
  helpCenterAri: Scalars['ID']['input'];
82712
82795
  input?: InputMaybe<CsmAiUpdateAgentInput>;
82713
82796
  };
82797
+ export declare type MutationCsmAi_UpdateHandoffConfigArgs = {
82798
+ configId: Scalars['ID']['input'];
82799
+ csmAiHubId: Scalars['ID']['input'];
82800
+ helpCenterAri: Scalars['ID']['input'];
82801
+ input: CsmAiUpdateHandoffConfigInput;
82802
+ };
82714
82803
  export declare type MutationCustomerServiceArgs = {
82715
82804
  cloudId: Scalars['ID']['input'];
82716
82805
  };
@@ -87001,6 +87090,7 @@ export declare type Query = {
87001
87090
  publicLinksByCriteria?: Maybe<PublicLinkConnection>;
87002
87091
  publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
87003
87092
  pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
87093
+ queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
87004
87094
  quickReload?: Maybe<QuickReload>;
87005
87095
  radar_connectors?: Maybe<Array<RadarConnector>>;
87006
87096
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
@@ -89518,6 +89608,9 @@ export declare type QueryPublicLinksByCriteriaArgs = {
89518
89608
  export declare type QueryPublishConditionsArgs = {
89519
89609
  contentId: Scalars['ID']['input'];
89520
89610
  };
89611
+ export declare type QueryQueuesprioritygroups_PriorityGroupsArgs = {
89612
+ projectId: Scalars['ID']['input'];
89613
+ };
89521
89614
  export declare type QueryQuickReloadArgs = {
89522
89615
  pageId: Scalars['Long']['input'];
89523
89616
  since: Scalars['Long']['input'];
@@ -90051,6 +90144,20 @@ export declare enum QueryType {
90051
90144
  Select = "SELECT",
90052
90145
  Update = "UPDATE"
90053
90146
  }
90147
+ export declare type QueuesPriorityGroupsResults = {
90148
+ __typename?: 'QueuesPriorityGroupsResults';
90149
+ results?: Maybe<Array<Maybe<QueuesPriorityGroupsResultsGroup>>>;
90150
+ };
90151
+ export declare type QueuesPriorityGroupsResultsGroup = {
90152
+ __typename?: 'QueuesPriorityGroupsResultsGroup';
90153
+ category?: Maybe<Scalars['String']['output']>;
90154
+ creationMethod?: Maybe<Scalars['String']['output']>;
90155
+ id?: Maybe<Scalars['String']['output']>;
90156
+ name?: Maybe<Scalars['String']['output']>;
90157
+ projectId?: Maybe<Scalars['String']['output']>;
90158
+ queueIds?: Maybe<Array<Maybe<Scalars['Int']['output']>>>;
90159
+ version?: Maybe<Scalars['Int']['output']>;
90160
+ };
90054
90161
  export declare type QuickReload = {
90055
90162
  __typename?: 'QuickReload';
90056
90163
  comments: Array<QuickReloadComment>;