@forge/cli-shared 6.11.0-next.16 → 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 +17 -0
- package/out/graphql/graphql-types.d.ts +172 -4
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +48 -24
- package/out/ui/text.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.11.0-next.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0081dd2: Fixed warning message
|
|
8
|
+
|
|
9
|
+
## 6.11.0-next.17
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 984c454: Forcing patch bump to update internal registry
|
|
14
|
+
- Updated dependencies [984c454]
|
|
15
|
+
- Updated dependencies [4ced2b2]
|
|
16
|
+
- @forge/i18n@0.0.6-next.0
|
|
17
|
+
- @forge/manifest@9.3.0-next.8
|
|
18
|
+
- @forge/util@1.4.9-next.0
|
|
19
|
+
|
|
3
20
|
## 6.11.0-next.16
|
|
4
21
|
|
|
5
22
|
### 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
|
|
1881
|
+
installationContext?: Maybe<Scalars['String']['output']>;
|
|
1882
1882
|
invocationId: Scalars['String']['output'];
|
|
1883
1883
|
licenseState?: Maybe<LicenseValue>;
|
|
1884
1884
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
@@ -4156,10 +4156,12 @@ export declare type CcpQueryApi = {
|
|
|
4156
4156
|
entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
|
|
4157
4157
|
experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
|
|
4158
4158
|
offering?: Maybe<CcpOffering>;
|
|
4159
|
+
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
4159
4160
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
4160
4161
|
product?: Maybe<CcpProduct>;
|
|
4161
4162
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
4162
4163
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4164
|
+
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4163
4165
|
};
|
|
4164
4166
|
export declare type CcpQueryApiEntitlementArgs = {
|
|
4165
4167
|
id: Scalars['ID']['input'];
|
|
@@ -4170,6 +4172,9 @@ export declare type CcpQueryApiEntitlementsArgs = {
|
|
|
4170
4172
|
export declare type CcpQueryApiOfferingArgs = {
|
|
4171
4173
|
key: Scalars['ID']['input'];
|
|
4172
4174
|
};
|
|
4175
|
+
export declare type CcpQueryApiOfferingsArgs = {
|
|
4176
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4177
|
+
};
|
|
4173
4178
|
export declare type CcpQueryApiPricingPlanArgs = {
|
|
4174
4179
|
id: Scalars['ID']['input'];
|
|
4175
4180
|
};
|
|
@@ -4182,6 +4187,9 @@ export declare type CcpQueryApiQuotesArgs = {
|
|
|
4182
4187
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
4183
4188
|
id: Scalars['ID']['input'];
|
|
4184
4189
|
};
|
|
4190
|
+
export declare type CcpQueryApiTransactionAccountsArgs = {
|
|
4191
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4192
|
+
};
|
|
4185
4193
|
export declare type CcpQuote = Node & {
|
|
4186
4194
|
__typename?: 'CcpQuote';
|
|
4187
4195
|
autoRefresh?: Maybe<CcpQuoteAutoRefresh>;
|
|
@@ -4562,14 +4570,20 @@ export declare enum CcpTiersMode {
|
|
|
4562
4570
|
Graduated = "GRADUATED",
|
|
4563
4571
|
Volume = "VOLUME"
|
|
4564
4572
|
}
|
|
4565
|
-
export declare type CcpTransactionAccount = CommerceTransactionAccount & {
|
|
4573
|
+
export declare type CcpTransactionAccount = CommerceTransactionAccount & Node & {
|
|
4566
4574
|
__typename?: 'CcpTransactionAccount';
|
|
4575
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4567
4576
|
experienceCapabilities?: Maybe<CcpTransactionAccountExperienceCapabilities>;
|
|
4568
4577
|
id: Scalars['ID']['output'];
|
|
4578
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
4569
4579
|
isBillToPresent?: Maybe<Scalars['Boolean']['output']>;
|
|
4570
4580
|
isCurrentUserBillingAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
4571
4581
|
isManagedByPartner?: Maybe<Scalars['Boolean']['output']>;
|
|
4582
|
+
isMonetized?: Maybe<Scalars['Boolean']['output']>;
|
|
4572
4583
|
key?: Maybe<Scalars['String']['output']>;
|
|
4584
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4585
|
+
number?: Maybe<Scalars['String']['output']>;
|
|
4586
|
+
type?: Maybe<CcpTransactionAccountType>;
|
|
4573
4587
|
};
|
|
4574
4588
|
export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransactionAccountExperienceCapabilities & {
|
|
4575
4589
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
@@ -4577,6 +4591,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
4577
4591
|
addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
|
|
4578
4592
|
multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
|
|
4579
4593
|
};
|
|
4594
|
+
export declare enum CcpTransactionAccountType {
|
|
4595
|
+
Direct = "DIRECT",
|
|
4596
|
+
Partner = "PARTNER",
|
|
4597
|
+
UnaffiliatedReseller = "UNAFFILIATED_RESELLER"
|
|
4598
|
+
}
|
|
4580
4599
|
export declare type CcpTrial = CommerceTrial & {
|
|
4581
4600
|
__typename?: 'CcpTrial';
|
|
4582
4601
|
endBehaviour?: Maybe<CcpTrialEndBehaviour>;
|
|
@@ -20748,6 +20767,11 @@ export declare type CsmAiAuthenticationInput = {
|
|
|
20748
20767
|
export declare enum CsmAiAuthenticationType {
|
|
20749
20768
|
NoAuth = "NO_AUTH"
|
|
20750
20769
|
}
|
|
20770
|
+
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
20771
|
+
export declare type CsmAiConnectorConfigurationInput = {
|
|
20772
|
+
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
20773
|
+
ticketingHandoff?: InputMaybe<CsmAiTicketingHandoffInput>;
|
|
20774
|
+
};
|
|
20751
20775
|
export declare type CsmAiCreateActionInput = {
|
|
20752
20776
|
actionType: CsmAiActionType;
|
|
20753
20777
|
apiOperation: CsmAiApiOperationInput;
|
|
@@ -20768,6 +20792,22 @@ export declare type CsmAiDeleteActionPayload = Payload & {
|
|
|
20768
20792
|
errors?: Maybe<Array<MutationError>>;
|
|
20769
20793
|
success: Scalars['Boolean']['output'];
|
|
20770
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
|
+
}
|
|
20771
20811
|
export declare enum CsmAiHttpMethod {
|
|
20772
20812
|
Delete = "DELETE",
|
|
20773
20813
|
Get = "GET",
|
|
@@ -20779,6 +20819,7 @@ export declare type CsmAiHub = {
|
|
|
20779
20819
|
__typename?: 'CsmAiHub';
|
|
20780
20820
|
actions?: Maybe<Array<Maybe<CsmAiActionResult>>>;
|
|
20781
20821
|
agent?: Maybe<CsmAiAgentResult>;
|
|
20822
|
+
handoffConfigs?: Maybe<Array<Maybe<CsmAiHandoffConfigResult>>>;
|
|
20782
20823
|
id: Scalars['ID']['output'];
|
|
20783
20824
|
};
|
|
20784
20825
|
export declare type CsmAiHubResult = CsmAiHub | QueryError;
|
|
@@ -20791,6 +20832,20 @@ export declare type CsmAiKeyValuePair = {
|
|
|
20791
20832
|
key?: Maybe<Scalars['String']['output']>;
|
|
20792
20833
|
value?: Maybe<Scalars['String']['output']>;
|
|
20793
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
|
+
};
|
|
20794
20849
|
export declare type CsmAiUpdateActionInput = {
|
|
20795
20850
|
actionType?: InputMaybe<CsmAiActionType>;
|
|
20796
20851
|
apiOperation?: InputMaybe<CsmAiApiOperationInput>;
|
|
@@ -20826,6 +20881,17 @@ export declare type CsmAiUpdateAgentPayload = Payload & {
|
|
|
20826
20881
|
errors?: Maybe<Array<MutationError>>;
|
|
20827
20882
|
success: Scalars['Boolean']['output'];
|
|
20828
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
|
+
};
|
|
20829
20895
|
export declare type CumulativeFlowDiagram = {
|
|
20830
20896
|
__typename?: 'CumulativeFlowDiagram';
|
|
20831
20897
|
chart: CfdChartConnection;
|
|
@@ -21829,6 +21895,7 @@ export declare type CustomerServiceRequest = {
|
|
|
21829
21895
|
key?: Maybe<Scalars['String']['output']>;
|
|
21830
21896
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
21831
21897
|
summary?: Maybe<Scalars['String']['output']>;
|
|
21898
|
+
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
21832
21899
|
};
|
|
21833
21900
|
export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
|
|
21834
21901
|
export declare type CustomerServiceRequestConnection = {
|
|
@@ -23750,6 +23817,7 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
23750
23817
|
};
|
|
23751
23818
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
23752
23819
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
23820
|
+
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
23753
23821
|
medianPRCycleTime: Scalars['Float']['output'];
|
|
23754
23822
|
perDayPRMetrics: Array<Maybe<DevOpsMetricsDailyReviewTimeData>>;
|
|
23755
23823
|
};
|
|
@@ -56689,6 +56757,13 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
56689
56757
|
job?: Maybe<JiraAutodevJob>;
|
|
56690
56758
|
success: Scalars['Boolean']['output'];
|
|
56691
56759
|
};
|
|
56760
|
+
export declare enum JiraAutodevCreatePullRequestOptionEnumType {
|
|
56761
|
+
Always = "ALWAYS",
|
|
56762
|
+
Draft = "DRAFT",
|
|
56763
|
+
DraftOnBuildPass = "DRAFT_ON_BUILD_PASS",
|
|
56764
|
+
Never = "NEVER",
|
|
56765
|
+
OnBuildPass = "ON_BUILD_PASS"
|
|
56766
|
+
}
|
|
56692
56767
|
export declare type JiraAutodevDeletedPayload = Payload & {
|
|
56693
56768
|
__typename?: 'JiraAutodevDeletedPayload';
|
|
56694
56769
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -56703,6 +56778,7 @@ export declare type JiraAutodevJob = {
|
|
|
56703
56778
|
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
56704
56779
|
changesSummary?: Maybe<Scalars['String']['output']>;
|
|
56705
56780
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
56781
|
+
createPullRequestOption?: Maybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
56706
56782
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
56707
56783
|
error?: Maybe<JiraAutodevJobPermissionError>;
|
|
56708
56784
|
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
@@ -57204,6 +57280,20 @@ export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
|
57204
57280
|
RemoveAll = "REMOVE_ALL",
|
|
57205
57281
|
Replace = "REPLACE"
|
|
57206
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
|
+
};
|
|
57207
57297
|
export declare type JiraBulkOperationInput = {
|
|
57208
57298
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
57209
57299
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
@@ -59467,6 +59557,7 @@ export declare type JiraDevOpsMutationApproveJiraBitbucketWorkspaceAccessRequest
|
|
|
59467
59557
|
input: JiraApproveJiraBitbucketWorkspaceAccessRequestInput;
|
|
59468
59558
|
};
|
|
59469
59559
|
export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
59560
|
+
createPullRequestOption?: InputMaybe<JiraAutodevCreatePullRequestOptionEnumType>;
|
|
59470
59561
|
issueAri: Scalars['ID']['input'];
|
|
59471
59562
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
59472
59563
|
repoUrl: Scalars['String']['input'];
|
|
@@ -59980,6 +60071,7 @@ export declare type JiraField = {
|
|
|
59980
60071
|
export declare type JiraFieldAssociationWithIssueTypes = JiraProjectFieldAssociationInterface & {
|
|
59981
60072
|
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
59982
60073
|
field?: Maybe<JiraField>;
|
|
60074
|
+
fieldFormatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
59983
60075
|
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
59984
60076
|
fieldOptions?: Maybe<JiraFieldOptionConnection>;
|
|
59985
60077
|
hasMissingConfiguration?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60083,6 +60175,7 @@ export declare type JiraFieldEdge = {
|
|
|
60083
60175
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
60084
60176
|
node?: Maybe<JiraField>;
|
|
60085
60177
|
};
|
|
60178
|
+
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
60086
60179
|
export declare type JiraFieldKeyValueInput = {
|
|
60087
60180
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
60088
60181
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -64236,6 +64329,7 @@ export declare type JiraMutation = {
|
|
|
64236
64329
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
64237
64330
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
64238
64331
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
64332
|
+
bulkUpdateLabelColor?: Maybe<JiraBulkLabelColorUpdatePayload>;
|
|
64239
64333
|
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
64240
64334
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
64241
64335
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
@@ -64467,6 +64561,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
64467
64561
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
64468
64562
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
64469
64563
|
};
|
|
64564
|
+
export declare type JiraMutationBulkUpdateLabelColorArgs = {
|
|
64565
|
+
input: JiraBulkLabelColorUpdateInput;
|
|
64566
|
+
};
|
|
64470
64567
|
export declare type JiraMutationCloneIssueArgs = {
|
|
64471
64568
|
input: JiraCloneIssueInput;
|
|
64472
64569
|
};
|
|
@@ -69012,6 +69109,7 @@ export declare type JiraRestoreGlobalCustomFieldsPayload = Payload & {
|
|
|
69012
69109
|
__typename?: 'JiraRestoreGlobalCustomFieldsPayload';
|
|
69013
69110
|
errors?: Maybe<Array<MutationError>>;
|
|
69014
69111
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
69112
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
69015
69113
|
success: Scalars['Boolean']['output'];
|
|
69016
69114
|
};
|
|
69017
69115
|
export declare type JiraRestoreJourneyConfigurationInput = {
|
|
@@ -71857,6 +71955,7 @@ export declare type JiraTrashGlobalCustomFieldsPayload = Payload & {
|
|
|
71857
71955
|
__typename?: 'JiraTrashGlobalCustomFieldsPayload';
|
|
71858
71956
|
errors?: Maybe<Array<MutationError>>;
|
|
71859
71957
|
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
71958
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
71860
71959
|
success: Scalars['Boolean']['output'];
|
|
71861
71960
|
};
|
|
71862
71961
|
export declare type JiraUiExposedError = {
|
|
@@ -76387,6 +76486,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
76387
76486
|
appSoftwareId: Scalars['ID']['output'];
|
|
76388
76487
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
76389
76488
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76489
|
+
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76490
|
+
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76390
76491
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76391
76492
|
hosting: MarketplaceConsoleHosting;
|
|
76392
76493
|
isLatestActiveVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -76786,6 +76887,7 @@ export declare type MarketplaceConsoleFeatureInput = {
|
|
|
76786
76887
|
};
|
|
76787
76888
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
76788
76889
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
76890
|
+
appAccess: Array<Scalars['String']['output']>;
|
|
76789
76891
|
appId: Scalars['ID']['output'];
|
|
76790
76892
|
envId: Scalars['ID']['output'];
|
|
76791
76893
|
scopes: Array<Scalars['String']['output']>;
|
|
@@ -78707,7 +78809,6 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
78707
78809
|
};
|
|
78708
78810
|
export declare type MercuryChangeProposalFundSummary = {
|
|
78709
78811
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
78710
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78711
78812
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78712
78813
|
nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
78713
78814
|
};
|
|
@@ -78725,7 +78826,6 @@ export declare type MercuryChangeProposalPositionDetails = {
|
|
|
78725
78826
|
};
|
|
78726
78827
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
78727
78828
|
__typename?: 'MercuryChangeProposalPositionSummary';
|
|
78728
|
-
changeProposalId: Scalars['ID']['output'];
|
|
78729
78829
|
movedCount?: Maybe<Scalars['Int']['output']>;
|
|
78730
78830
|
newCount?: Maybe<Scalars['Int']['output']>;
|
|
78731
78831
|
};
|
|
@@ -81412,6 +81512,7 @@ export declare type Mutation = {
|
|
|
81412
81512
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
81413
81513
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
81414
81514
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
81515
|
+
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
81415
81516
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
81416
81517
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
81417
81518
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -82693,6 +82794,12 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
|
|
|
82693
82794
|
helpCenterAri: Scalars['ID']['input'];
|
|
82694
82795
|
input?: InputMaybe<CsmAiUpdateAgentInput>;
|
|
82695
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
|
+
};
|
|
82696
82803
|
export declare type MutationCustomerServiceArgs = {
|
|
82697
82804
|
cloudId: Scalars['ID']['input'];
|
|
82698
82805
|
};
|
|
@@ -86983,6 +87090,7 @@ export declare type Query = {
|
|
|
86983
87090
|
publicLinksByCriteria?: Maybe<PublicLinkConnection>;
|
|
86984
87091
|
publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
|
|
86985
87092
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
87093
|
+
queuesprioritygroups_priorityGroups?: Maybe<QueuesPriorityGroupsResults>;
|
|
86986
87094
|
quickReload?: Maybe<QuickReload>;
|
|
86987
87095
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
86988
87096
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
@@ -89500,6 +89608,9 @@ export declare type QueryPublicLinksByCriteriaArgs = {
|
|
|
89500
89608
|
export declare type QueryPublishConditionsArgs = {
|
|
89501
89609
|
contentId: Scalars['ID']['input'];
|
|
89502
89610
|
};
|
|
89611
|
+
export declare type QueryQueuesprioritygroups_PriorityGroupsArgs = {
|
|
89612
|
+
projectId: Scalars['ID']['input'];
|
|
89613
|
+
};
|
|
89503
89614
|
export declare type QueryQuickReloadArgs = {
|
|
89504
89615
|
pageId: Scalars['Long']['input'];
|
|
89505
89616
|
since: Scalars['Long']['input'];
|
|
@@ -90033,6 +90144,20 @@ export declare enum QueryType {
|
|
|
90033
90144
|
Select = "SELECT",
|
|
90034
90145
|
Update = "UPDATE"
|
|
90035
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
|
+
};
|
|
90036
90161
|
export declare type QuickReload = {
|
|
90037
90162
|
__typename?: 'QuickReload';
|
|
90038
90163
|
comments: Array<QuickReloadComment>;
|
|
@@ -103230,6 +103355,9 @@ export declare type VirtualAgentAutoCloseConfig = {
|
|
|
103230
103355
|
__typename?: 'VirtualAgentAutoCloseConfig';
|
|
103231
103356
|
autoCloseMessage?: Maybe<Scalars['String']['output']>;
|
|
103232
103357
|
};
|
|
103358
|
+
export declare type VirtualAgentAutoCloseConfigInput = {
|
|
103359
|
+
autoCloseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103360
|
+
};
|
|
103233
103361
|
export declare type VirtualAgentCsatConfig = {
|
|
103234
103362
|
__typename?: 'VirtualAgentCSATConfig';
|
|
103235
103363
|
askForCSATMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -103237,6 +103365,12 @@ export declare type VirtualAgentCsatConfig = {
|
|
|
103237
103365
|
requestAdditionalFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103238
103366
|
thanksForFeedbackMessage?: Maybe<Scalars['String']['output']>;
|
|
103239
103367
|
};
|
|
103368
|
+
export declare type VirtualAgentCsatConfigInput = {
|
|
103369
|
+
askForCSATMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103370
|
+
noFeedbackProvidedMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103371
|
+
requestAdditionalFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103372
|
+
thanksForFeedbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103373
|
+
};
|
|
103240
103374
|
export declare type VirtualAgentChannelConfig = {
|
|
103241
103375
|
__typename?: 'VirtualAgentChannelConfig';
|
|
103242
103376
|
aiAnswersProductionStatus?: Maybe<Array<Maybe<VirtualAgentAiAnswerStatusForChannel>>>;
|
|
@@ -103467,6 +103601,9 @@ export declare type VirtualAgentGreetingConfig = {
|
|
|
103467
103601
|
__typename?: 'VirtualAgentGreetingConfig';
|
|
103468
103602
|
greetingMessage?: Maybe<Scalars['String']['output']>;
|
|
103469
103603
|
};
|
|
103604
|
+
export declare type VirtualAgentGreetingConfigInput = {
|
|
103605
|
+
greetingMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103606
|
+
};
|
|
103470
103607
|
export declare type VirtualAgentIntent = Node & {
|
|
103471
103608
|
__typename?: 'VirtualAgentIntent';
|
|
103472
103609
|
confirmationMessage?: Maybe<Scalars['String']['output']>;
|
|
@@ -103600,6 +103737,11 @@ export declare type VirtualAgentMatchIntentConfig = {
|
|
|
103600
103737
|
rephraseMessage?: Maybe<Scalars['String']['output']>;
|
|
103601
103738
|
suggestMultipleIntentsMessage?: Maybe<Scalars['String']['output']>;
|
|
103602
103739
|
};
|
|
103740
|
+
export declare type VirtualAgentMatchIntentConfigInput = {
|
|
103741
|
+
askToRephraseAgainMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103742
|
+
rephraseMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103743
|
+
suggestMultipleIntentsMessage?: InputMaybe<Scalars['String']['input']>;
|
|
103744
|
+
};
|
|
103603
103745
|
export declare type VirtualAgentMutationApi = {
|
|
103604
103746
|
__typename?: 'VirtualAgentMutationApi';
|
|
103605
103747
|
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
@@ -103609,10 +103751,14 @@ export declare type VirtualAgentMutationApi = {
|
|
|
103609
103751
|
deleteIntentRuleProjection?: Maybe<VirtualAgentDeleteIntentRuleProjectionPayload>;
|
|
103610
103752
|
handleFlowEditorActions?: Maybe<VirtualAgentFlowEditorActionPayload>;
|
|
103611
103753
|
updateAiAnswerForSlackChannel?: Maybe<VirtualAgentUpdateAiAnswerForSlackChannelPayload>;
|
|
103754
|
+
updateAutoCloseConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103755
|
+
updateCSATConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103612
103756
|
updateChatChannel?: Maybe<VirtualAgentUpdateChatChannelPayload>;
|
|
103613
103757
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
103758
|
+
updateGreetingConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103614
103759
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
103615
103760
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
103761
|
+
updateMatchIntentConfig?: Maybe<VirtualAgentStandardConfigUpdatePayload>;
|
|
103616
103762
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
103617
103763
|
};
|
|
103618
103764
|
export declare type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
|
|
@@ -103641,6 +103787,14 @@ export declare type VirtualAgentMutationApiUpdateAiAnswerForSlackChannelArgs = {
|
|
|
103641
103787
|
input: VirtualAgentUpdateAiAnswerForSlackChannelInput;
|
|
103642
103788
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103643
103789
|
};
|
|
103790
|
+
export declare type VirtualAgentMutationApiUpdateAutoCloseConfigArgs = {
|
|
103791
|
+
input: VirtualAgentAutoCloseConfigInput;
|
|
103792
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103793
|
+
};
|
|
103794
|
+
export declare type VirtualAgentMutationApiUpdateCsatConfigArgs = {
|
|
103795
|
+
input: VirtualAgentCsatConfigInput;
|
|
103796
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103797
|
+
};
|
|
103644
103798
|
export declare type VirtualAgentMutationApiUpdateChatChannelArgs = {
|
|
103645
103799
|
input: VirtualAgentUpdateChatChannelInput;
|
|
103646
103800
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -103649,6 +103803,10 @@ export declare type VirtualAgentMutationApiUpdateFlowEditorFlowArgs = {
|
|
|
103649
103803
|
input: VirtualAgentFlowEditorInput;
|
|
103650
103804
|
virtualAgentFlowEditorId: Scalars['ID']['input'];
|
|
103651
103805
|
};
|
|
103806
|
+
export declare type VirtualAgentMutationApiUpdateGreetingConfigArgs = {
|
|
103807
|
+
input: VirtualAgentGreetingConfigInput;
|
|
103808
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103809
|
+
};
|
|
103652
103810
|
export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionArgs = {
|
|
103653
103811
|
input: VirtualAgentUpdateIntentRuleProjectionInput;
|
|
103654
103812
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
@@ -103657,6 +103815,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
103657
103815
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
103658
103816
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
103659
103817
|
};
|
|
103818
|
+
export declare type VirtualAgentMutationApiUpdateMatchIntentConfigArgs = {
|
|
103819
|
+
input: VirtualAgentMatchIntentConfigInput;
|
|
103820
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
103821
|
+
};
|
|
103660
103822
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
103661
103823
|
input: VirtualAgentUpdateConfigurationInput;
|
|
103662
103824
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -103745,6 +103907,12 @@ export declare type VirtualAgentStandardConfig = {
|
|
|
103745
103907
|
greetingConfig?: Maybe<VirtualAgentGreetingConfig>;
|
|
103746
103908
|
matchIntentConfig?: Maybe<VirtualAgentMatchIntentConfig>;
|
|
103747
103909
|
};
|
|
103910
|
+
export declare type VirtualAgentStandardConfigUpdatePayload = Payload & {
|
|
103911
|
+
__typename?: 'VirtualAgentStandardConfigUpdatePayload';
|
|
103912
|
+
errors?: Maybe<Array<MutationError>>;
|
|
103913
|
+
success: Scalars['Boolean']['output'];
|
|
103914
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
103915
|
+
};
|
|
103748
103916
|
export declare type VirtualAgentStatisticsPercentageChangeProjection = {
|
|
103749
103917
|
__typename?: 'VirtualAgentStatisticsPercentageChangeProjection';
|
|
103750
103918
|
aiResolution?: Maybe<Scalars['Float']['output']>;
|