@forge/cli-shared 9.4.1-next.4 → 9.4.1-next.5-experimental-d477002
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 +20 -0
- package/out/graphql/graphql-types.d.ts +1570 -101
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +246 -77
- package/out/ui/text.d.ts +0 -6
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -8
- package/package.json +2 -2
|
@@ -1531,6 +1531,7 @@ export type AvpAnalyticsModelDataRowValue = {
|
|
|
1531
1531
|
columnId?: Maybe<Scalars['ID']['output']>;
|
|
1532
1532
|
columnName?: Maybe<Scalars['String']['output']>;
|
|
1533
1533
|
columnValue?: Maybe<Scalars['String']['output']>;
|
|
1534
|
+
valueUrl?: Maybe<Scalars['String']['output']>;
|
|
1534
1535
|
};
|
|
1535
1536
|
export type AvpAnalyticsModelDataSort = {
|
|
1536
1537
|
columnRef: AvpAnalyticsColumnReferenceInput;
|
|
@@ -2108,6 +2109,19 @@ export type AvpCopyChartPayload = Payload & {
|
|
|
2108
2109
|
errors?: Maybe<Array<MutationError>>;
|
|
2109
2110
|
success: Scalars['Boolean']['output'];
|
|
2110
2111
|
};
|
|
2112
|
+
export type AvpCopyDashboardInput = {
|
|
2113
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
2114
|
+
containerAri?: InputMaybe<Scalars['ID']['input']>;
|
|
2115
|
+
dashboardAri: Scalars['ID']['input'];
|
|
2116
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
2117
|
+
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
2118
|
+
};
|
|
2119
|
+
export type AvpCopyDashboardPayload = Payload & {
|
|
2120
|
+
__typename?: 'AVPCopyDashboardPayload';
|
|
2121
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
2122
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2123
|
+
success: Scalars['Boolean']['output'];
|
|
2124
|
+
};
|
|
2111
2125
|
export type AvpCopyDashboardRowInput = {
|
|
2112
2126
|
dashboardAri: Scalars['ID']['input'];
|
|
2113
2127
|
rowId: Scalars['ID']['input'];
|
|
@@ -3977,14 +3991,6 @@ export type AdminActivateAppPayload = AdminPayload & {
|
|
|
3977
3991
|
shouldPoll?: Maybe<Scalars['Boolean']['output']>;
|
|
3978
3992
|
success: Scalars['Boolean']['output'];
|
|
3979
3993
|
};
|
|
3980
|
-
export type AdminActivateOrgForUnitsInput = {
|
|
3981
|
-
orgId: Scalars['ID']['input'];
|
|
3982
|
-
};
|
|
3983
|
-
export type AdminActivateOrgForUnitsPayload = {
|
|
3984
|
-
__typename?: 'AdminActivateOrgForUnitsPayload';
|
|
3985
|
-
errors?: Maybe<Array<AdminMutationError>>;
|
|
3986
|
-
success: Scalars['Boolean']['output'];
|
|
3987
|
-
};
|
|
3988
3994
|
export type AdminActivateUserInput = {
|
|
3989
3995
|
accountId: Scalars['String']['input'];
|
|
3990
3996
|
directoryId: Scalars['String']['input'];
|
|
@@ -5063,6 +5069,14 @@ export type AdminIpAllowlistingFeature = {
|
|
|
5063
5069
|
__typename?: 'AdminIpAllowlistingFeature';
|
|
5064
5070
|
ip?: Maybe<Scalars['String']['output']>;
|
|
5065
5071
|
};
|
|
5072
|
+
export type AdminLaunchOrgForUnitsInput = {
|
|
5073
|
+
orgId: Scalars['ID']['input'];
|
|
5074
|
+
};
|
|
5075
|
+
export type AdminLaunchOrgForUnitsPayload = {
|
|
5076
|
+
__typename?: 'AdminLaunchOrgForUnitsPayload';
|
|
5077
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5078
|
+
success: Scalars['Boolean']['output'];
|
|
5079
|
+
};
|
|
5066
5080
|
export type AdminLicenseData = {
|
|
5067
5081
|
__typename?: 'AdminLicenseData';
|
|
5068
5082
|
capacity: Scalars['Int']['output'];
|
|
@@ -7043,6 +7057,11 @@ export type AgentStudioDeleteScenarioPayload = Payload & {
|
|
|
7043
7057
|
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
7044
7058
|
success: Scalars['Boolean']['output'];
|
|
7045
7059
|
};
|
|
7060
|
+
export type AgentStudioDeleteThirdPartyConnectionPayload = Payload & {
|
|
7061
|
+
__typename?: 'AgentStudioDeleteThirdPartyConnectionPayload';
|
|
7062
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7063
|
+
success: Scalars['Boolean']['output'];
|
|
7064
|
+
};
|
|
7046
7065
|
export type AgentStudioDeleteWidgetPayload = Payload & {
|
|
7047
7066
|
__typename?: 'AgentStudioDeleteWidgetPayload';
|
|
7048
7067
|
deletedWidgetId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -8538,6 +8557,11 @@ export type AgentWorkspaceConfusionMatrix = {
|
|
|
8538
8557
|
trueNegatives: Scalars['Int']['output'];
|
|
8539
8558
|
truePositives: Scalars['Int']['output'];
|
|
8540
8559
|
};
|
|
8560
|
+
export declare enum AgentWorkspaceConnectedTeamsScope {
|
|
8561
|
+
AllConnected = "ALL_CONNECTED",
|
|
8562
|
+
CanAdminister = "CAN_ADMINISTER",
|
|
8563
|
+
MemberOf = "MEMBER_OF"
|
|
8564
|
+
}
|
|
8541
8565
|
export type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
8542
8566
|
agentId: Scalars['ID']['input'];
|
|
8543
8567
|
coveringShiftId: Scalars['ID']['input'];
|
|
@@ -15030,6 +15054,7 @@ export declare enum AssetsDmSortByInputOrder {
|
|
|
15030
15054
|
}
|
|
15031
15055
|
export type AssetsDmStep = {
|
|
15032
15056
|
__typename?: 'AssetsDMStep';
|
|
15057
|
+
isManuallyCancelled?: Maybe<Scalars['Boolean']['output']>;
|
|
15033
15058
|
lastFetched: Scalars['String']['output'];
|
|
15034
15059
|
machineName?: Maybe<Scalars['String']['output']>;
|
|
15035
15060
|
status: AssetsDmStepStatus;
|
|
@@ -15781,6 +15806,7 @@ export type AssetsVerticalAllInsightsResponse = {
|
|
|
15781
15806
|
__typename?: 'AssetsVerticalAllInsightsResponse';
|
|
15782
15807
|
items: Array<AssetsVerticalInsightItem>;
|
|
15783
15808
|
pageInfo: PageInfo;
|
|
15809
|
+
shouldShowGetInsights?: Maybe<Scalars['Boolean']['output']>;
|
|
15784
15810
|
};
|
|
15785
15811
|
export type AssetsVerticalAllInsightsResult = AssetsVerticalAllInsightsResponse | QueryError;
|
|
15786
15812
|
export type AssetsVerticalArchiveInsightInput = {
|
|
@@ -16223,6 +16249,21 @@ export declare enum AssetsVerticalDepreciationRuleErrorCode {
|
|
|
16223
16249
|
UsefulLifeYearsInvalid = "USEFUL_LIFE_YEARS_INVALID",
|
|
16224
16250
|
ValidationFailed = "VALIDATION_FAILED"
|
|
16225
16251
|
}
|
|
16252
|
+
export type AssetsVerticalDepreciationRuleHardwareFilterOption = {
|
|
16253
|
+
__typename?: 'AssetsVerticalDepreciationRuleHardwareFilterOption';
|
|
16254
|
+
objSchema?: Maybe<AssetsSchema>;
|
|
16255
|
+
objType?: Maybe<AssetsObjectType>;
|
|
16256
|
+
};
|
|
16257
|
+
export type AssetsVerticalDepreciationRuleHardwareFilterOptionConnection = {
|
|
16258
|
+
__typename?: 'AssetsVerticalDepreciationRuleHardwareFilterOptionConnection';
|
|
16259
|
+
edges: Array<AssetsVerticalDepreciationRuleHardwareFilterOptionEdge>;
|
|
16260
|
+
pageInfo: PageInfo;
|
|
16261
|
+
};
|
|
16262
|
+
export type AssetsVerticalDepreciationRuleHardwareFilterOptionEdge = {
|
|
16263
|
+
__typename?: 'AssetsVerticalDepreciationRuleHardwareFilterOptionEdge';
|
|
16264
|
+
cursor: Scalars['String']['output'];
|
|
16265
|
+
node: AssetsVerticalDepreciationRuleHardwareFilterOption;
|
|
16266
|
+
};
|
|
16226
16267
|
export type AssetsVerticalDepreciationRuleMutationErrorExtension = MutationErrorExtension & {
|
|
16227
16268
|
__typename?: 'AssetsVerticalDepreciationRuleMutationErrorExtension';
|
|
16228
16269
|
code?: Maybe<AssetsVerticalDepreciationRuleErrorCode>;
|
|
@@ -16348,6 +16389,21 @@ export type AssetsVerticalHardwareObjectsTotalCount = {
|
|
|
16348
16389
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16349
16390
|
};
|
|
16350
16391
|
export type AssetsVerticalHardwareObjectsTotalCountResult = AssetsVerticalHardwareObjectsTotalCount | QueryError;
|
|
16392
|
+
export type AssetsVerticalHardwareParentFilterOption = {
|
|
16393
|
+
__typename?: 'AssetsVerticalHardwareParentFilterOption';
|
|
16394
|
+
objSchema?: Maybe<AssetsSchema>;
|
|
16395
|
+
parentObjectType?: Maybe<AssetsObjectType>;
|
|
16396
|
+
};
|
|
16397
|
+
export type AssetsVerticalHardwareParentFilterOptionConnection = {
|
|
16398
|
+
__typename?: 'AssetsVerticalHardwareParentFilterOptionConnection';
|
|
16399
|
+
edges: Array<AssetsVerticalHardwareParentFilterOptionEdge>;
|
|
16400
|
+
pageInfo: PageInfo;
|
|
16401
|
+
};
|
|
16402
|
+
export type AssetsVerticalHardwareParentFilterOptionEdge = {
|
|
16403
|
+
__typename?: 'AssetsVerticalHardwareParentFilterOptionEdge';
|
|
16404
|
+
cursor: Scalars['String']['output'];
|
|
16405
|
+
node: AssetsVerticalHardwareParentFilterOption;
|
|
16406
|
+
};
|
|
16351
16407
|
export type AssetsVerticalInsightCard = {
|
|
16352
16408
|
__typename?: 'AssetsVerticalInsightCard';
|
|
16353
16409
|
category: Scalars['String']['output'];
|
|
@@ -16377,6 +16433,7 @@ export type AssetsVerticalInsightDefinition = {
|
|
|
16377
16433
|
export type AssetsVerticalInsightDefinitionPayload = {
|
|
16378
16434
|
__typename?: 'AssetsVerticalInsightDefinitionPayload';
|
|
16379
16435
|
insights: Array<AssetsVerticalInsightDefinition>;
|
|
16436
|
+
shouldShowGetInsights?: Maybe<Scalars['Boolean']['output']>;
|
|
16380
16437
|
};
|
|
16381
16438
|
export type AssetsVerticalInsightDefinitionResult = AssetsVerticalInsightDefinitionPayload | QueryError;
|
|
16382
16439
|
export type AssetsVerticalInsightDetail = {
|
|
@@ -16392,6 +16449,7 @@ export type AssetsVerticalInsightDetailsByDefinitionResult = AssetsVerticalInsig
|
|
|
16392
16449
|
export type AssetsVerticalInsightDetailsPayload = {
|
|
16393
16450
|
__typename?: 'AssetsVerticalInsightDetailsPayload';
|
|
16394
16451
|
insights: Array<AssetsVerticalInsightDetail>;
|
|
16452
|
+
shouldShowGetInsights?: Maybe<Scalars['Boolean']['output']>;
|
|
16395
16453
|
};
|
|
16396
16454
|
export type AssetsVerticalInsightDetailsResult = AssetsVerticalInsightDetailsPayload | QueryError;
|
|
16397
16455
|
export type AssetsVerticalInsightGenerationError = {
|
|
@@ -16424,6 +16482,7 @@ export type AssetsVerticalInsights = {
|
|
|
16424
16482
|
__typename?: 'AssetsVerticalInsights';
|
|
16425
16483
|
error?: Maybe<AssetsVerticalInsightGenerationError>;
|
|
16426
16484
|
insights: Array<AssetsVerticalInsightCard>;
|
|
16485
|
+
insightsUnavailableReason?: Maybe<AssetsVerticalInsightsUnavailableReason>;
|
|
16427
16486
|
lastGeneratedAt?: Maybe<Scalars['Long']['output']>;
|
|
16428
16487
|
shouldShowGetInsights?: Maybe<Scalars['Boolean']['output']>;
|
|
16429
16488
|
status: AssetsVerticalInsightsStatus;
|
|
@@ -16438,6 +16497,14 @@ export declare enum AssetsVerticalInsightsStatus {
|
|
|
16438
16497
|
Pending = "PENDING",
|
|
16439
16498
|
Uninstantiated = "UNINSTANTIATED"
|
|
16440
16499
|
}
|
|
16500
|
+
export declare enum AssetsVerticalInsightsUnavailableReason {
|
|
16501
|
+
CmdbAiDisabled = "CMDB_AI_DISABLED",
|
|
16502
|
+
CmkEnabled = "CMK_ENABLED",
|
|
16503
|
+
JsmAiDisabled = "JSM_AI_DISABLED",
|
|
16504
|
+
NotEntitled = "NOT_ENTITLED",
|
|
16505
|
+
RovoInactive = "ROVO_INACTIVE",
|
|
16506
|
+
Unknown = "UNKNOWN"
|
|
16507
|
+
}
|
|
16441
16508
|
export type AssetsVerticalInstantiateBundleByTypeInput = {
|
|
16442
16509
|
cloudId: Scalars['ID']['input'];
|
|
16443
16510
|
type: AssetsVerticalBundleType;
|
|
@@ -16848,6 +16915,7 @@ export type AssetsVerticalTenantContext = {
|
|
|
16848
16915
|
__typename?: 'AssetsVerticalTenantContext';
|
|
16849
16916
|
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
16850
16917
|
compliance: AssetsVerticalCompliance;
|
|
16918
|
+
isDareSuspended: Scalars['Boolean']['output'];
|
|
16851
16919
|
provisioningState: AssetsVerticalProvisioningState;
|
|
16852
16920
|
};
|
|
16853
16921
|
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
@@ -19393,6 +19461,7 @@ export type CcpOffering = CommerceOffering & Node & {
|
|
|
19393
19461
|
extensions?: Maybe<Array<Maybe<CcpExtension>>>;
|
|
19394
19462
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
19395
19463
|
id: Scalars['ID']['output'];
|
|
19464
|
+
isJsmCompatible?: Maybe<Scalars['Boolean']['output']>;
|
|
19396
19465
|
isPromocodeApplicable?: Maybe<CommerceExpOfferingIsPromocodeApplicable>;
|
|
19397
19466
|
key?: Maybe<Scalars['ID']['output']>;
|
|
19398
19467
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -19405,6 +19474,7 @@ export type CcpOffering = CommerceOffering & Node & {
|
|
|
19405
19474
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
19406
19475
|
productListing?: Maybe<ProductListingResult>;
|
|
19407
19476
|
requiredRelationships?: Maybe<Array<Maybe<CcpOfferingRelationship>>>;
|
|
19477
|
+
resultingEntitlementType?: Maybe<CommerceExpEntitlementType>;
|
|
19408
19478
|
sku?: Maybe<Scalars['String']['output']>;
|
|
19409
19479
|
slugs?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19410
19480
|
status?: Maybe<CcpOfferingStatus>;
|
|
@@ -20932,6 +21002,7 @@ export type ChannelPlatformChatEntry = {
|
|
|
20932
21002
|
chatStatus: ChannelPlatformChatStatus;
|
|
20933
21003
|
initialConversationId: Scalars['String']['output'];
|
|
20934
21004
|
issueId: Scalars['String']['output'];
|
|
21005
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
20935
21006
|
latestConversationDisconnectReason?: Maybe<Scalars['String']['output']>;
|
|
20936
21007
|
latestConversationId: Scalars['String']['output'];
|
|
20937
21008
|
};
|
|
@@ -20944,11 +21015,6 @@ export declare enum ChannelPlatformChatStatus {
|
|
|
20944
21015
|
Active = "ACTIVE",
|
|
20945
21016
|
Closed = "CLOSED"
|
|
20946
21017
|
}
|
|
20947
|
-
export type ChannelPlatformCheckOtpVerifiedResponse = {
|
|
20948
|
-
__typename?: 'ChannelPlatformCheckOtpVerifiedResponse';
|
|
20949
|
-
success: Scalars['Boolean']['output'];
|
|
20950
|
-
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
20951
|
-
};
|
|
20952
21018
|
export type ChannelPlatformClientConfigDetailsResponse = {
|
|
20953
21019
|
__typename?: 'ChannelPlatformClientConfigDetailsResponse';
|
|
20954
21020
|
showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -21183,11 +21249,9 @@ export type ChannelPlatformSendOtpResponse = {
|
|
|
21183
21249
|
export type ChannelPlatformSubmitRequestInput = {
|
|
21184
21250
|
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
21185
21251
|
customerIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
21186
|
-
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
21187
21252
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
21188
21253
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
21189
21254
|
payload?: InputMaybe<Scalars['JSON']['input']>;
|
|
21190
|
-
resumeChat?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21191
21255
|
};
|
|
21192
21256
|
export type ChannelPlatformSubmitRequestResponse = {
|
|
21193
21257
|
__typename?: 'ChannelPlatformSubmitRequestResponse';
|
|
@@ -21230,7 +21294,6 @@ export type ChannelPlatformTranscriptEntry = {
|
|
|
21230
21294
|
export type ChannelPlatformTranscriptRequest = {
|
|
21231
21295
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
21232
21296
|
isStaleTolerant?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21233
|
-
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
21234
21297
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
21235
21298
|
startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
|
|
21236
21299
|
};
|
|
@@ -22912,6 +22975,7 @@ export type CommerceExpCcpQuery = {
|
|
|
22912
22975
|
entitlements?: Maybe<Array<Maybe<CommerceExpCcpEntitlement>>>;
|
|
22913
22976
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
22914
22977
|
invoiceGroups?: Maybe<Array<Maybe<CommerceExpCcpInvoiceGroup>>>;
|
|
22978
|
+
isOfferingJsmCompatible?: Maybe<Scalars['Boolean']['output']>;
|
|
22915
22979
|
isPromocodeApplicable?: Maybe<CommerceExpOfferingIsPromocodeApplicable>;
|
|
22916
22980
|
lateTrialDowngradeContent?: Maybe<CommerceExpLateTrialDowngradeContent>;
|
|
22917
22981
|
order?: Maybe<CommerceExpCcpOrder>;
|
|
@@ -22926,6 +22990,7 @@ export type CommerceExpCcpQuery = {
|
|
|
22926
22990
|
products?: Maybe<Array<Maybe<CommerceExpCcpProduct>>>;
|
|
22927
22991
|
quote?: Maybe<CommerceExpCcpQuote>;
|
|
22928
22992
|
quoteOperations?: Maybe<CommerceExpCcpQuoteOperations>;
|
|
22993
|
+
resultingEntitlementTypeFromOffering?: Maybe<CommerceExpEntitlementType>;
|
|
22929
22994
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
22930
22995
|
transactionAccounts?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
22931
22996
|
transactionAccountsForUser?: Maybe<Array<Maybe<CommerceExpCcpTransactionAccount>>>;
|
|
@@ -22942,6 +23007,9 @@ export type CommerceExpCcpQueryInvoiceGroupArgs = {
|
|
|
22942
23007
|
export type CommerceExpCcpQueryInvoiceGroupsArgs = {
|
|
22943
23008
|
ids: Array<Scalars['ID']['input']>;
|
|
22944
23009
|
};
|
|
23010
|
+
export type CommerceExpCcpQueryIsOfferingJsmCompatibleArgs = {
|
|
23011
|
+
key: Scalars['ID']['input'];
|
|
23012
|
+
};
|
|
22945
23013
|
export type CommerceExpCcpQueryIsPromocodeApplicableArgs = {
|
|
22946
23014
|
applicationType?: InputMaybe<CommerceExpPromotionApplicationType>;
|
|
22947
23015
|
code: Scalars['String']['input'];
|
|
@@ -23001,6 +23069,9 @@ export type CommerceExpCcpQueryQuoteArgs = {
|
|
|
23001
23069
|
export type CommerceExpCcpQueryQuoteOperationsArgs = {
|
|
23002
23070
|
quoteOperationsInput: CommerceExpQuoteOperationsInput;
|
|
23003
23071
|
};
|
|
23072
|
+
export type CommerceExpCcpQueryResultingEntitlementTypeFromOfferingArgs = {
|
|
23073
|
+
key: Scalars['ID']['input'];
|
|
23074
|
+
};
|
|
23004
23075
|
export type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
23005
23076
|
id: Scalars['ID']['input'];
|
|
23006
23077
|
};
|
|
@@ -24711,6 +24782,7 @@ export type CommerceExpOrderBuilderInput = {
|
|
|
24711
24782
|
orderBuilderType: CommerceExpOrderBuilderType;
|
|
24712
24783
|
orderId?: InputMaybe<Scalars['String']['input']>;
|
|
24713
24784
|
promotionsInput?: InputMaybe<CommerceExpPromotionsInput>;
|
|
24785
|
+
reactivationOrderInput?: InputMaybe<CommerceExpReactivationOrderInput>;
|
|
24714
24786
|
transactionAccountId: Scalars['ID']['input'];
|
|
24715
24787
|
unbundleCollectionOrderInput?: InputMaybe<CommerceExpUnbundleCollectionOrderInput>;
|
|
24716
24788
|
undoScheduledDeactivationInput?: InputMaybe<CommerceExpUndoScheduledDeactivationInput>;
|
|
@@ -24726,6 +24798,7 @@ export declare enum CommerceExpOrderBuilderType {
|
|
|
24726
24798
|
OpsgenieMigration = "OPSGENIE_MIGRATION",
|
|
24727
24799
|
OptOutTrial = "OPT_OUT_TRIAL",
|
|
24728
24800
|
Promotions = "PROMOTIONS",
|
|
24801
|
+
ReactivationOrder = "REACTIVATION_ORDER",
|
|
24729
24802
|
UnbundleCollection = "UNBUNDLE_COLLECTION",
|
|
24730
24803
|
UndoScheduledDeactivation = "UNDO_SCHEDULED_DEACTIVATION"
|
|
24731
24804
|
}
|
|
@@ -25455,6 +25528,9 @@ export type CommerceExpRange = {
|
|
|
25455
25528
|
upperBound?: Maybe<Scalars['Int']['output']>;
|
|
25456
25529
|
};
|
|
25457
25530
|
export type CommerceExpReEstimateQuoteResult = CommerceExpCcpQuote | CommerceExpErrorResponse;
|
|
25531
|
+
export type CommerceExpReactivationOrderInput = {
|
|
25532
|
+
entitlementId: Scalars['String']['input'];
|
|
25533
|
+
};
|
|
25458
25534
|
export type CommerceExpRebillOptions = {
|
|
25459
25535
|
__typename?: 'CommerceExpRebillOptions';
|
|
25460
25536
|
billFromTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
@@ -25547,6 +25623,11 @@ export type CommerceExpSendNotificationPayload = CommerceExpMutationPayload & {
|
|
|
25547
25623
|
notification?: Maybe<Array<Maybe<CommerceExpNotification>>>;
|
|
25548
25624
|
success: Scalars['Boolean']['output'];
|
|
25549
25625
|
};
|
|
25626
|
+
export declare enum CommerceExpServCoUpgradeAction {
|
|
25627
|
+
DirectBuy = "DIRECT_BUY",
|
|
25628
|
+
NoAction = "NO_ACTION",
|
|
25629
|
+
RequirePaymentDetails = "REQUIRE_PAYMENT_DETAILS"
|
|
25630
|
+
}
|
|
25550
25631
|
export type CommerceExpSetDefaultPaymentMethodPayload = CommerceExpMutationPayload & {
|
|
25551
25632
|
__typename?: 'CommerceExpSetDefaultPaymentMethodPayload';
|
|
25552
25633
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26017,6 +26098,7 @@ export type CommerceExpValidOrderSuccess = {
|
|
|
26017
26098
|
orderPreview?: Maybe<CommerceExpCcpOrderPreview>;
|
|
26018
26099
|
recurringEstimate?: Maybe<CommerceExpOrderIntentEstimate>;
|
|
26019
26100
|
shouldAddPaymentBeforeUpgrade?: Maybe<Scalars['Boolean']['output']>;
|
|
26101
|
+
upgradeServCoProductsAction?: Maybe<CommerceExpServCoUpgradeAction>;
|
|
26020
26102
|
validOrderItems?: Maybe<Array<Maybe<CommerceExpValidOrderItem>>>;
|
|
26021
26103
|
};
|
|
26022
26104
|
export type CommerceExpValidationErrorMessage = {
|
|
@@ -35056,6 +35138,7 @@ export type ConfluenceNbmScanSummary = {
|
|
|
35056
35138
|
completedSpaces?: Maybe<Scalars['Int']['output']>;
|
|
35057
35139
|
endTime?: Maybe<Scalars['String']['output']>;
|
|
35058
35140
|
id: Scalars['ID']['output'];
|
|
35141
|
+
initiatorAccountId?: Maybe<Scalars['ID']['output']>;
|
|
35059
35142
|
shouldDisplayOnUI: Scalars['Boolean']['output'];
|
|
35060
35143
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
35061
35144
|
status?: Maybe<ConfluenceNbmScanStatus>;
|
|
@@ -35150,6 +35233,7 @@ export type ConfluenceNbmTransformationJobSummary = {
|
|
|
35150
35233
|
__typename?: 'ConfluenceNbmTransformationJobSummary';
|
|
35151
35234
|
endTime?: Maybe<Scalars['String']['output']>;
|
|
35152
35235
|
id: Scalars['ID']['output'];
|
|
35236
|
+
initiatorAccountId?: Maybe<Scalars['ID']['output']>;
|
|
35153
35237
|
runMode?: Maybe<ConfluenceNbmTransformationRunMode>;
|
|
35154
35238
|
scanId?: Maybe<Scalars['ID']['output']>;
|
|
35155
35239
|
shouldDisplayOnUI: Scalars['Boolean']['output'];
|
|
@@ -40124,6 +40208,29 @@ export type ConvoAiAvailableSkillsResult = {
|
|
|
40124
40208
|
pageInfo: PageInfo;
|
|
40125
40209
|
totalCount: Scalars['Int']['output'];
|
|
40126
40210
|
};
|
|
40211
|
+
export type ConvoAiConfluenceAgentSession = {
|
|
40212
|
+
__typename?: 'ConvoAiConfluenceAgentSession';
|
|
40213
|
+
agentAccountId?: Maybe<Scalars['ID']['output']>;
|
|
40214
|
+
agentId?: Maybe<Scalars['ID']['output']>;
|
|
40215
|
+
id: Scalars['ID']['output'];
|
|
40216
|
+
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
40217
|
+
lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
|
|
40218
|
+
sessionAri?: Maybe<Scalars['ID']['output']>;
|
|
40219
|
+
startedAt?: Maybe<Scalars['Long']['output']>;
|
|
40220
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
40221
|
+
title: Scalars['String']['output'];
|
|
40222
|
+
};
|
|
40223
|
+
export type ConvoAiConfluenceAgentSessionConnection = {
|
|
40224
|
+
__typename?: 'ConvoAiConfluenceAgentSessionConnection';
|
|
40225
|
+
errors?: Maybe<Array<QueryError>>;
|
|
40226
|
+
nodes: Array<ConvoAiConfluenceAgentSession>;
|
|
40227
|
+
pageInfo: ConvoAiConfluenceAgentSessionsPageInfo;
|
|
40228
|
+
};
|
|
40229
|
+
export type ConvoAiConfluenceAgentSessionsPageInfo = {
|
|
40230
|
+
__typename?: 'ConvoAiConfluenceAgentSessionsPageInfo';
|
|
40231
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
40232
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
40233
|
+
};
|
|
40127
40234
|
export type ConvoAiConfluenceSpaceRecommendation = {
|
|
40128
40235
|
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
40129
40236
|
id: Scalars['ID']['output'];
|
|
@@ -40631,6 +40738,24 @@ export type CplsAcceptAllSuggestionsPayload = Payload & {
|
|
|
40631
40738
|
errors?: Maybe<Array<MutationError>>;
|
|
40632
40739
|
success: Scalars['Boolean']['output'];
|
|
40633
40740
|
};
|
|
40741
|
+
export type CplsAddAllContributorScopeAssociationsFromWorkViewInput = {
|
|
40742
|
+
cloudId: Scalars['ID']['input'];
|
|
40743
|
+
scopeId: Scalars['ID']['input'];
|
|
40744
|
+
};
|
|
40745
|
+
export type CplsAddAllContributorScopeAssociationsFromWorkViewPayload = Payload & {
|
|
40746
|
+
__typename?: 'CplsAddAllContributorScopeAssociationsFromWorkViewPayload';
|
|
40747
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40748
|
+
success: Scalars['Boolean']['output'];
|
|
40749
|
+
};
|
|
40750
|
+
export type CplsAddAllWorkScopeAssociationsFromPeopleViewInput = {
|
|
40751
|
+
cloudId: Scalars['ID']['input'];
|
|
40752
|
+
scopeId: Scalars['ID']['input'];
|
|
40753
|
+
};
|
|
40754
|
+
export type CplsAddAllWorkScopeAssociationsFromPeopleViewPayload = Payload & {
|
|
40755
|
+
__typename?: 'CplsAddAllWorkScopeAssociationsFromPeopleViewPayload';
|
|
40756
|
+
errors?: Maybe<Array<MutationError>>;
|
|
40757
|
+
success: Scalars['Boolean']['output'];
|
|
40758
|
+
};
|
|
40634
40759
|
export type CplsAddContributionInput = {
|
|
40635
40760
|
contributorDataId: Scalars['ID']['input'];
|
|
40636
40761
|
endDate: Scalars['Date']['input'];
|
|
@@ -44464,8 +44589,17 @@ export type CustomerServiceOmniInteractionMatchedIdentifier = {
|
|
|
44464
44589
|
lastObservedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
44465
44590
|
lastWorkItemId?: Maybe<Scalars['ID']['output']>;
|
|
44466
44591
|
recentMatchCount: Scalars['Int']['output'];
|
|
44592
|
+
recentObservations?: Maybe<Array<CustomerServiceOmniInteractionRecentObservation>>;
|
|
44467
44593
|
};
|
|
44468
44594
|
export type CustomerServiceOmniInteractionQueryResult = CustomerServiceOmniInteraction | QueryError;
|
|
44595
|
+
export type CustomerServiceOmniInteractionRecentObservation = {
|
|
44596
|
+
__typename?: 'CustomerServiceOmniInteractionRecentObservation';
|
|
44597
|
+
interactionId: Scalars['ID']['output'];
|
|
44598
|
+
observedDate: Scalars['DateTime']['output'];
|
|
44599
|
+
workItem?: Maybe<JiraIssue>;
|
|
44600
|
+
workItemAri?: Maybe<Scalars['ID']['output']>;
|
|
44601
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
44602
|
+
};
|
|
44469
44603
|
export type CustomerServiceOmniInteractionRelatedHelpseeker = {
|
|
44470
44604
|
__typename?: 'CustomerServiceOmniInteractionRelatedHelpseeker';
|
|
44471
44605
|
helpseeker?: Maybe<User>;
|
|
@@ -47177,6 +47311,7 @@ export declare enum DevAiRovoDevSandboxStatus {
|
|
|
47177
47311
|
}
|
|
47178
47312
|
export type DevAiRovoDevSession = Node & {
|
|
47179
47313
|
__typename?: 'DevAiRovoDevSession';
|
|
47314
|
+
a2aUrl?: Maybe<Scalars['URL']['output']>;
|
|
47180
47315
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
47181
47316
|
automationInvokerId?: Maybe<Scalars['String']['output']>;
|
|
47182
47317
|
automationRuleId?: Maybe<Scalars['String']['output']>;
|
|
@@ -54345,6 +54480,7 @@ export type ForgeObservabilityPublishFrontendCustomMetricResponse = {
|
|
|
54345
54480
|
};
|
|
54346
54481
|
export type ForgeObservabilityPublishFrontendLogsInput = {
|
|
54347
54482
|
context: ForgeObservabilityFrontendLogContextInput;
|
|
54483
|
+
installationId: Scalars['ID']['input'];
|
|
54348
54484
|
logs: Array<ForgeObservabilityFrontendLogEntryInput>;
|
|
54349
54485
|
};
|
|
54350
54486
|
export type ForgeObservabilityPublishFrontendLogsResponse = {
|
|
@@ -55749,6 +55885,51 @@ export type GraphInferenceAiModelInput = {
|
|
|
55749
55885
|
id: Scalars['String']['input'];
|
|
55750
55886
|
reasoningLevel: Scalars['String']['input'];
|
|
55751
55887
|
};
|
|
55888
|
+
export type GraphInferenceDecisionDetails = {
|
|
55889
|
+
__typename?: 'GraphInferenceDecisionDetails';
|
|
55890
|
+
decidedAt?: Maybe<Scalars['String']['output']>;
|
|
55891
|
+
kind: GraphInferenceDecisionKind;
|
|
55892
|
+
status?: Maybe<GraphInferenceDecisionStatus>;
|
|
55893
|
+
};
|
|
55894
|
+
export type GraphInferenceDecisionInsight = GraphInferenceInsight & {
|
|
55895
|
+
__typename?: 'GraphInferenceDecisionInsight';
|
|
55896
|
+
associatedEntities: Array<GraphInferenceInsightEntity>;
|
|
55897
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
55898
|
+
content: Scalars['String']['output'];
|
|
55899
|
+
contentFormat: GraphInferenceInsightContentFormat;
|
|
55900
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
55901
|
+
decision: GraphInferenceDecisionDetails;
|
|
55902
|
+
id: Scalars['ID']['output'];
|
|
55903
|
+
insightType: GraphInferenceInsightType;
|
|
55904
|
+
sources: Array<GraphInferenceInsightSource>;
|
|
55905
|
+
subtype?: Maybe<GraphInferenceInsightSubtype>;
|
|
55906
|
+
title: Scalars['String']['output'];
|
|
55907
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
55908
|
+
};
|
|
55909
|
+
export declare enum GraphInferenceDecisionKind {
|
|
55910
|
+
Decided = "DECIDED",
|
|
55911
|
+
Open = "OPEN"
|
|
55912
|
+
}
|
|
55913
|
+
export declare enum GraphInferenceDecisionStatus {
|
|
55914
|
+
Accepted = "ACCEPTED",
|
|
55915
|
+
Proposed = "PROPOSED",
|
|
55916
|
+
Reversed = "REVERSED",
|
|
55917
|
+
Unknown = "UNKNOWN"
|
|
55918
|
+
}
|
|
55919
|
+
export type GraphInferenceDecisionSubtype = {
|
|
55920
|
+
__typename?: 'GraphInferenceDecisionSubtype';
|
|
55921
|
+
value: GraphInferenceDecisionSubtypeValue;
|
|
55922
|
+
};
|
|
55923
|
+
export declare enum GraphInferenceDecisionSubtypeValue {
|
|
55924
|
+
Commitment = "COMMITMENT",
|
|
55925
|
+
Design = "DESIGN",
|
|
55926
|
+
Other = "OTHER",
|
|
55927
|
+
Prioritization = "PRIORITIZATION",
|
|
55928
|
+
Process = "PROCESS",
|
|
55929
|
+
Scope = "SCOPE",
|
|
55930
|
+
Staffing = "STAFFING",
|
|
55931
|
+
Technical = "TECHNICAL"
|
|
55932
|
+
}
|
|
55752
55933
|
export declare enum GraphInferenceDestinationMode {
|
|
55753
55934
|
Graph = "GRAPH",
|
|
55754
55935
|
Shadow = "SHADOW"
|
|
@@ -55872,9 +56053,11 @@ export type GraphInferenceGraphclawOptionV2 = {
|
|
|
55872
56053
|
export type GraphInferenceGraphclawSourceOptionV2 = {
|
|
55873
56054
|
__typename?: 'GraphInferenceGraphclawSourceOptionV2';
|
|
55874
56055
|
enabled: Scalars['Boolean']['output'];
|
|
56056
|
+
graphAvailable: Scalars['Boolean']['output'];
|
|
55875
56057
|
id: Scalars['String']['output'];
|
|
55876
56058
|
matchers: Array<GraphInferenceGraphclawMatcherOptionV2>;
|
|
55877
56059
|
name: Scalars['String']['output'];
|
|
56060
|
+
supportedDestinations: Array<Scalars['String']['output']>;
|
|
55878
56061
|
};
|
|
55879
56062
|
export type GraphInferenceInferenceApp = {
|
|
55880
56063
|
__typename?: 'GraphInferenceInferenceApp';
|
|
@@ -56039,8 +56222,17 @@ export type GraphInferenceInferenceAppV3 = {
|
|
|
56039
56222
|
};
|
|
56040
56223
|
export type GraphInferenceInferenceEvalInput = {
|
|
56041
56224
|
appId: Scalars['String']['input'];
|
|
56225
|
+
promptTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
56042
56226
|
sourceAri: Scalars['String']['input'];
|
|
56043
56227
|
};
|
|
56228
|
+
export type GraphInferenceInferenceEvalPromptPreviewInput = {
|
|
56229
|
+
appId: Scalars['String']['input'];
|
|
56230
|
+
};
|
|
56231
|
+
export type GraphInferenceInferenceEvalPromptPreviewResponse = {
|
|
56232
|
+
__typename?: 'GraphInferenceInferenceEvalPromptPreviewResponse';
|
|
56233
|
+
promptTemplate: Scalars['String']['output'];
|
|
56234
|
+
promptVersion: Scalars['String']['output'];
|
|
56235
|
+
};
|
|
56044
56236
|
export type GraphInferenceInferenceEvalResponse = {
|
|
56045
56237
|
__typename?: 'GraphInferenceInferenceEvalResponse';
|
|
56046
56238
|
appId: Scalars['String']['output'];
|
|
@@ -56056,6 +56248,7 @@ export type GraphInferenceInferenceEvalRunResponse = {
|
|
|
56056
56248
|
result?: Maybe<Scalars['JSON']['output']>;
|
|
56057
56249
|
runId: Scalars['ID']['output'];
|
|
56058
56250
|
status: Scalars['String']['output'];
|
|
56251
|
+
tokenUsage?: Maybe<GraphInferenceInferenceEvalTokenUsage>;
|
|
56059
56252
|
};
|
|
56060
56253
|
export type GraphInferenceInferenceEvalStartResponse = {
|
|
56061
56254
|
__typename?: 'GraphInferenceInferenceEvalStartResponse';
|
|
@@ -56064,6 +56257,19 @@ export type GraphInferenceInferenceEvalStartResponse = {
|
|
|
56064
56257
|
runId: Scalars['ID']['output'];
|
|
56065
56258
|
status: Scalars['String']['output'];
|
|
56066
56259
|
};
|
|
56260
|
+
export type GraphInferenceInferenceEvalTokenUsage = {
|
|
56261
|
+
__typename?: 'GraphInferenceInferenceEvalTokenUsage';
|
|
56262
|
+
cachedReadTokens?: Maybe<Scalars['Long']['output']>;
|
|
56263
|
+
cachedReadTokensReportedProviderAttempts: Scalars['Int']['output'];
|
|
56264
|
+
cachedWriteTokens?: Maybe<Scalars['Long']['output']>;
|
|
56265
|
+
cachedWriteTokensReportedProviderAttempts: Scalars['Int']['output'];
|
|
56266
|
+
inputTokens: Scalars['Long']['output'];
|
|
56267
|
+
outputTokens: Scalars['Long']['output'];
|
|
56268
|
+
reportedProviderAttempts: Scalars['Int']['output'];
|
|
56269
|
+
thoughtTokens?: Maybe<Scalars['Long']['output']>;
|
|
56270
|
+
thoughtTokensReportedProviderAttempts: Scalars['Int']['output'];
|
|
56271
|
+
totalTokens: Scalars['Long']['output'];
|
|
56272
|
+
};
|
|
56067
56273
|
export type GraphInferenceInferenceModelChoice = {
|
|
56068
56274
|
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
56069
56275
|
id: Scalars['String']['output'];
|
|
@@ -56193,6 +56399,52 @@ export type GraphInferenceInferredProjectViewer = {
|
|
|
56193
56399
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
56194
56400
|
accountId: Scalars['String']['output'];
|
|
56195
56401
|
};
|
|
56402
|
+
export type GraphInferenceInsight = {
|
|
56403
|
+
associatedEntities: Array<GraphInferenceInsightEntity>;
|
|
56404
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
56405
|
+
content: Scalars['String']['output'];
|
|
56406
|
+
contentFormat: GraphInferenceInsightContentFormat;
|
|
56407
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
56408
|
+
id: Scalars['ID']['output'];
|
|
56409
|
+
insightType: GraphInferenceInsightType;
|
|
56410
|
+
sources: Array<GraphInferenceInsightSource>;
|
|
56411
|
+
subtype?: Maybe<GraphInferenceInsightSubtype>;
|
|
56412
|
+
title: Scalars['String']['output'];
|
|
56413
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
56414
|
+
};
|
|
56415
|
+
export declare enum GraphInferenceInsightContentFormat {
|
|
56416
|
+
PlainText = "PLAIN_TEXT"
|
|
56417
|
+
}
|
|
56418
|
+
export type GraphInferenceInsightDateRangeInput = {
|
|
56419
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
56420
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
56421
|
+
};
|
|
56422
|
+
export type GraphInferenceInsightEntity = {
|
|
56423
|
+
__typename?: 'GraphInferenceInsightEntity';
|
|
56424
|
+
entityType: GraphInferenceInsightTargetKind;
|
|
56425
|
+
id: Scalars['ID']['output'];
|
|
56426
|
+
};
|
|
56427
|
+
export type GraphInferenceInsightSource = {
|
|
56428
|
+
__typename?: 'GraphInferenceInsightSource';
|
|
56429
|
+
id: Scalars['ID']['output'];
|
|
56430
|
+
};
|
|
56431
|
+
export type GraphInferenceInsightSubtype = GraphInferenceDecisionSubtype;
|
|
56432
|
+
export declare enum GraphInferenceInsightTargetKind {
|
|
56433
|
+
InferredProject = "INFERRED_PROJECT",
|
|
56434
|
+
JiraWorkItem = "JIRA_WORK_ITEM",
|
|
56435
|
+
TownsquareGoal = "TOWNSQUARE_GOAL",
|
|
56436
|
+
TownsquareProject = "TOWNSQUARE_PROJECT"
|
|
56437
|
+
}
|
|
56438
|
+
export declare enum GraphInferenceInsightType {
|
|
56439
|
+
Decision = "DECISION",
|
|
56440
|
+
Momentum = "MOMENTUM",
|
|
56441
|
+
Risk = "RISK"
|
|
56442
|
+
}
|
|
56443
|
+
export type GraphInferenceInsightsResponse = {
|
|
56444
|
+
__typename?: 'GraphInferenceInsightsResponse';
|
|
56445
|
+
apiVersion: Scalars['String']['output'];
|
|
56446
|
+
insights: Array<GraphInferenceInsight>;
|
|
56447
|
+
};
|
|
56196
56448
|
export type GraphInferenceJiraEntityContextCandidate = {
|
|
56197
56449
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
56198
56450
|
ari: Scalars['String']['output'];
|
|
@@ -56324,6 +56576,11 @@ export type GraphInferenceSimilarJiraItemsRoot = {
|
|
|
56324
56576
|
__typename?: 'GraphInferenceSimilarJiraItemsRoot';
|
|
56325
56577
|
ari: Scalars['String']['output'];
|
|
56326
56578
|
};
|
|
56579
|
+
export type GraphInferenceTargetInsightsInput = {
|
|
56580
|
+
dateRange?: InputMaybe<GraphInferenceInsightDateRangeInput>;
|
|
56581
|
+
insightTypes?: InputMaybe<Array<GraphInferenceInsightType>>;
|
|
56582
|
+
targetAri: Scalars['String']['input'];
|
|
56583
|
+
};
|
|
56327
56584
|
export type GraphIntegrationActionAdminManagementActionConfiguration = {
|
|
56328
56585
|
__typename?: 'GraphIntegrationActionAdminManagementActionConfiguration';
|
|
56329
56586
|
readonly: Scalars['Boolean']['output'];
|
|
@@ -60573,6 +60830,10 @@ export type GraphStore = {
|
|
|
60573
60830
|
focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
60574
60831
|
focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
60575
60832
|
focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
60833
|
+
focusAreaStatusUpdateHasUpdates?: Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesConnection>;
|
|
60834
|
+
focusAreaStatusUpdateHasUpdatesBatch?: Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesConnection>;
|
|
60835
|
+
focusAreaStatusUpdateHasUpdatesInverse?: Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseConnection>;
|
|
60836
|
+
focusAreaStatusUpdateHasUpdatesInverseBatch?: Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesConnection>;
|
|
60576
60837
|
getDynamicNodeTypes?: Maybe<GraphStoreDynamicNodeTypeConnection>;
|
|
60577
60838
|
getDynamicRelationshipTypes?: Maybe<GraphStoreDynamicRelationshipTypeConnection>;
|
|
60578
60839
|
graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
@@ -64586,6 +64847,36 @@ export type GraphStoreFocusAreaHasWatcherInverseBatchArgs = {
|
|
|
64586
64847
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64587
64848
|
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
64588
64849
|
};
|
|
64850
|
+
export type GraphStoreFocusAreaStatusUpdateHasUpdatesArgs = {
|
|
64851
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64852
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64853
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64854
|
+
id: Scalars['ID']['input'];
|
|
64855
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64856
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
64857
|
+
};
|
|
64858
|
+
export type GraphStoreFocusAreaStatusUpdateHasUpdatesBatchArgs = {
|
|
64859
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64861
|
+
ids: Array<Scalars['ID']['input']>;
|
|
64862
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64863
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
64864
|
+
};
|
|
64865
|
+
export type GraphStoreFocusAreaStatusUpdateHasUpdatesInverseArgs = {
|
|
64866
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64867
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64868
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64869
|
+
id: Scalars['ID']['input'];
|
|
64870
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64871
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
64872
|
+
};
|
|
64873
|
+
export type GraphStoreFocusAreaStatusUpdateHasUpdatesInverseBatchArgs = {
|
|
64874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64876
|
+
ids: Array<Scalars['ID']['input']>;
|
|
64877
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
64878
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
64879
|
+
};
|
|
64589
64880
|
export type GraphStoreGetDynamicNodeTypesArgs = {
|
|
64590
64881
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64591
64882
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -72111,6 +72402,47 @@ export type GraphStoreBatchFocusAreaHasWatcherStartNode = {
|
|
|
72111
72402
|
id: Scalars['ID']['output'];
|
|
72112
72403
|
};
|
|
72113
72404
|
export type GraphStoreBatchFocusAreaHasWatcherStartUnion = MercuryFocusArea;
|
|
72405
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesConnection = HasPageInfo & {
|
|
72406
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesConnection';
|
|
72407
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEdge>>;
|
|
72408
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesNode>>;
|
|
72409
|
+
pageInfo: PageInfo;
|
|
72410
|
+
};
|
|
72411
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEdge = {
|
|
72412
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEdge';
|
|
72413
|
+
node: GraphStoreBatchFocusAreaStatusUpdateHasUpdatesInnerConnection;
|
|
72414
|
+
};
|
|
72415
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEndNode = {
|
|
72416
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEndNode';
|
|
72417
|
+
data?: Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEndUnion>;
|
|
72418
|
+
id: Scalars['ID']['output'];
|
|
72419
|
+
};
|
|
72420
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEndUnion = MercuryFocusAreaStatusUpdate | TownsquareGoalUpdate | TownsquareProjectUpdate;
|
|
72421
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesInnerConnection = {
|
|
72422
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesInnerConnection';
|
|
72423
|
+
edges: Array<Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesInnerEdge>>;
|
|
72424
|
+
nodes: Array<Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesNode>>;
|
|
72425
|
+
requestedId: Scalars['ID']['output'];
|
|
72426
|
+
};
|
|
72427
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesInnerEdge = {
|
|
72428
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesInnerEdge';
|
|
72429
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72430
|
+
node: GraphStoreBatchFocusAreaStatusUpdateHasUpdatesNode;
|
|
72431
|
+
};
|
|
72432
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesNode = Node & {
|
|
72433
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesNode';
|
|
72434
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72435
|
+
from: GraphStoreBatchFocusAreaStatusUpdateHasUpdatesStartNode;
|
|
72436
|
+
id: Scalars['ID']['output'];
|
|
72437
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72438
|
+
to: GraphStoreBatchFocusAreaStatusUpdateHasUpdatesEndNode;
|
|
72439
|
+
};
|
|
72440
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesStartNode = {
|
|
72441
|
+
__typename?: 'GraphStoreBatchFocusAreaStatusUpdateHasUpdatesStartNode';
|
|
72442
|
+
data?: Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesStartUnion>;
|
|
72443
|
+
id: Scalars['ID']['output'];
|
|
72444
|
+
};
|
|
72445
|
+
export type GraphStoreBatchFocusAreaStatusUpdateHasUpdatesStartUnion = MercuryFocusAreaStatusUpdate;
|
|
72114
72446
|
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & {
|
|
72115
72447
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection';
|
|
72116
72448
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -75164,6 +75496,9 @@ export type GraphStoreFocusAreaHasThirdPartyDocumentSortInput = {
|
|
|
75164
75496
|
export type GraphStoreFocusAreaHasWatcherSortInput = {
|
|
75165
75497
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75166
75498
|
};
|
|
75499
|
+
export type GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput = {
|
|
75500
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75501
|
+
};
|
|
75167
75502
|
export type GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection = HasPageInfo & {
|
|
75168
75503
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection';
|
|
75169
75504
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceEdge>>;
|
|
@@ -85180,6 +85515,34 @@ export type GraphStoreSimplifiedFocusAreaHasWatcherInverseEdge = {
|
|
|
85180
85515
|
};
|
|
85181
85516
|
export type GraphStoreSimplifiedFocusAreaHasWatcherInverseUnion = MercuryFocusArea;
|
|
85182
85517
|
export type GraphStoreSimplifiedFocusAreaHasWatcherUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
85518
|
+
export type GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesConnection = HasPageInfo & {
|
|
85519
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesConnection';
|
|
85520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesEdge>>>;
|
|
85521
|
+
pageInfo: PageInfo;
|
|
85522
|
+
};
|
|
85523
|
+
export type GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesEdge = {
|
|
85524
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesEdge';
|
|
85525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85527
|
+
id: Scalars['ID']['output'];
|
|
85528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85529
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesUnion>;
|
|
85530
|
+
};
|
|
85531
|
+
export type GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseConnection = HasPageInfo & {
|
|
85532
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseConnection';
|
|
85533
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseEdge>>>;
|
|
85534
|
+
pageInfo: PageInfo;
|
|
85535
|
+
};
|
|
85536
|
+
export type GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseEdge = {
|
|
85537
|
+
__typename?: 'GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseEdge';
|
|
85538
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85539
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85540
|
+
id: Scalars['ID']['output'];
|
|
85541
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85542
|
+
node?: Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseUnion>;
|
|
85543
|
+
};
|
|
85544
|
+
export type GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseUnion = MercuryFocusAreaStatusUpdate;
|
|
85545
|
+
export type GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesUnion = MercuryFocusAreaStatusUpdate | TownsquareGoalUpdate | TownsquareProjectUpdate;
|
|
85183
85546
|
export type GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection = HasPageInfo & {
|
|
85184
85547
|
__typename?: 'GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection';
|
|
85185
85548
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseEdge>>>;
|
|
@@ -95805,6 +96168,8 @@ export type GraphStoreV2 = {
|
|
|
95805
96168
|
focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
95806
96169
|
focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
95807
96170
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
96171
|
+
focusFocusAreaStatusUpdateHasUpdateEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityConnection>;
|
|
96172
|
+
focusFocusAreaStatusUpdateHasUpdateEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseConnection>;
|
|
95808
96173
|
focusOrganizationHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection>;
|
|
95809
96174
|
focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
95810
96175
|
focusOrganizationHasChildFocusOrganization?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection>;
|
|
@@ -100825,6 +101190,20 @@ export type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
|
|
|
100825
101190
|
id: Scalars['ID']['input'];
|
|
100826
101191
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
|
|
100827
101192
|
};
|
|
101193
|
+
export type GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntityArgs = {
|
|
101194
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101195
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101196
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101197
|
+
id: Scalars['ID']['input'];
|
|
101198
|
+
sort?: InputMaybe<GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntitySortInput>;
|
|
101199
|
+
};
|
|
101200
|
+
export type GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntityInverseArgs = {
|
|
101201
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
101202
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101203
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101204
|
+
id: Scalars['ID']['input'];
|
|
101205
|
+
sort?: InputMaybe<GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntitySortInput>;
|
|
101206
|
+
};
|
|
100828
101207
|
export type GraphStoreV2FocusOrganizationHasAtlassianGoalArgs = {
|
|
100829
101208
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
100830
101209
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -104839,6 +105218,9 @@ export type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
|
|
|
104839
105218
|
export type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
104840
105219
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104841
105220
|
};
|
|
105221
|
+
export type GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntitySortInput = {
|
|
105222
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
105223
|
+
};
|
|
104842
105224
|
export type GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput = {
|
|
104843
105225
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
104844
105226
|
};
|
|
@@ -116111,6 +116493,34 @@ export type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge = {
|
|
|
116111
116493
|
};
|
|
116112
116494
|
export type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
|
|
116113
116495
|
export type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
116496
|
+
export type GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityConnection = HasPageInfo & {
|
|
116497
|
+
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityConnection';
|
|
116498
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityEdge>>>;
|
|
116499
|
+
pageInfo: PageInfo;
|
|
116500
|
+
};
|
|
116501
|
+
export type GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityEdge = {
|
|
116502
|
+
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityEdge';
|
|
116503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
116504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
116505
|
+
id: Scalars['ID']['output'];
|
|
116506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
116507
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityUnion>;
|
|
116508
|
+
};
|
|
116509
|
+
export type GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseConnection = HasPageInfo & {
|
|
116510
|
+
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseConnection';
|
|
116511
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseEdge>>>;
|
|
116512
|
+
pageInfo: PageInfo;
|
|
116513
|
+
};
|
|
116514
|
+
export type GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseEdge = {
|
|
116515
|
+
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseEdge';
|
|
116516
|
+
createdAt: Scalars['DateTime']['output'];
|
|
116517
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
116518
|
+
id: Scalars['ID']['output'];
|
|
116519
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
116520
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseUnion>;
|
|
116521
|
+
};
|
|
116522
|
+
export type GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseUnion = MercuryFocusAreaStatusUpdate;
|
|
116523
|
+
export type GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityUnion = MercuryFocusAreaStatusUpdate | TownsquareGoalUpdate | TownsquareProjectUpdate;
|
|
116114
116524
|
export type GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection = HasPageInfo & {
|
|
116115
116525
|
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection';
|
|
116116
116526
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalEdge>>>;
|
|
@@ -120072,7 +120482,6 @@ export type GravityViewArrangementPayload = Payload & {
|
|
|
120072
120482
|
errors?: Maybe<Array<MutationError>>;
|
|
120073
120483
|
success: Scalars['Boolean']['output'];
|
|
120074
120484
|
};
|
|
120075
|
-
export type GravityViewArrangementResult = GravityViewArrangement | QueryError;
|
|
120076
120485
|
export declare enum GravityViewColorStyle {
|
|
120077
120486
|
Background = "BACKGROUND",
|
|
120078
120487
|
Highlight = "HIGHLIGHT"
|
|
@@ -120433,6 +120842,20 @@ export declare enum GrowthUnifiedProfileAnchorType {
|
|
|
120433
120842
|
Pfm = "PFM",
|
|
120434
120843
|
Seo = "SEO"
|
|
120435
120844
|
}
|
|
120845
|
+
export type GrowthUnifiedProfileAvailableCollectionSegmentResult = {
|
|
120846
|
+
__typename?: 'GrowthUnifiedProfileAvailableCollectionSegmentResult';
|
|
120847
|
+
billingCycle?: Maybe<Scalars['String']['output']>;
|
|
120848
|
+
cannibalisationRiskSegment?: Maybe<Scalars['String']['output']>;
|
|
120849
|
+
collectionChargeElementsEstimate: Array<GrowthUnifiedProfileCollectionSegmentChargeElementResult>;
|
|
120850
|
+
collectionOfferingId?: Maybe<Scalars['String']['output']>;
|
|
120851
|
+
collectionPriceEstimate?: Maybe<Scalars['Float']['output']>;
|
|
120852
|
+
existingStandaloneApps: Array<GrowthUnifiedProfileCollectionSegmentStandaloneAppResult>;
|
|
120853
|
+
pricingSegment?: Maybe<Scalars['String']['output']>;
|
|
120854
|
+
totalStandalonePriceEstimate?: Maybe<Scalars['Float']['output']>;
|
|
120855
|
+
};
|
|
120856
|
+
export type GrowthUnifiedProfileAvailableCollectionSegmentsFilterInput = {
|
|
120857
|
+
collectionOfferingId?: InputMaybe<Scalars['String']['input']>;
|
|
120858
|
+
};
|
|
120436
120859
|
export type GrowthUnifiedProfileAvgResourceEngagementSeries = {
|
|
120437
120860
|
__typename?: 'GrowthUnifiedProfileAvgResourceEngagementSeries';
|
|
120438
120861
|
date?: Maybe<Scalars['String']['output']>;
|
|
@@ -120474,6 +120897,19 @@ export declare enum GrowthUnifiedProfileChannel {
|
|
|
120474
120897
|
PaidSearch = "PAID_SEARCH",
|
|
120475
120898
|
PaidSocial = "PAID_SOCIAL"
|
|
120476
120899
|
}
|
|
120900
|
+
export type GrowthUnifiedProfileCollectionSegmentChargeElementResult = {
|
|
120901
|
+
__typename?: 'GrowthUnifiedProfileCollectionSegmentChargeElementResult';
|
|
120902
|
+
element?: Maybe<Scalars['String']['output']>;
|
|
120903
|
+
unitCount?: Maybe<Scalars['Float']['output']>;
|
|
120904
|
+
};
|
|
120905
|
+
export type GrowthUnifiedProfileCollectionSegmentStandaloneAppResult = {
|
|
120906
|
+
__typename?: 'GrowthUnifiedProfileCollectionSegmentStandaloneAppResult';
|
|
120907
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
120908
|
+
isAutoProvisionedUnactivated?: Maybe<Scalars['Boolean']['output']>;
|
|
120909
|
+
isInTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
120910
|
+
isPaid?: Maybe<Scalars['Boolean']['output']>;
|
|
120911
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
120912
|
+
};
|
|
120477
120913
|
export type GrowthUnifiedProfileCompany = {
|
|
120478
120914
|
__typename?: 'GrowthUnifiedProfileCompany';
|
|
120479
120915
|
accountStatus?: Maybe<GrowthUnifiedProfileEnterpriseAccountStatus>;
|
|
@@ -120622,12 +121058,16 @@ export type GrowthUnifiedProfileEntitlementContextTrialResult = {
|
|
|
120622
121058
|
export type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
120623
121059
|
__typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
|
|
120624
121060
|
autoProvisioningEditionParityDialogDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
121061
|
+
availableCollectionSegments: Array<GrowthUnifiedProfileAvailableCollectionSegmentResult>;
|
|
120625
121062
|
entitlementId: Scalars['ID']['output'];
|
|
120626
121063
|
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
120627
121064
|
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
120628
121065
|
paidFeatureUsage: Array<GrowthUnifiedProfilePaidFeatureUsageResult>;
|
|
120629
121066
|
trialHistory: Array<GrowthUnifiedProfileTrialHistoryResult>;
|
|
120630
121067
|
};
|
|
121068
|
+
export type GrowthUnifiedProfileEntitlementProfileResultAvailableCollectionSegmentsArgs = {
|
|
121069
|
+
filter?: InputMaybe<GrowthUnifiedProfileAvailableCollectionSegmentsFilterInput>;
|
|
121070
|
+
};
|
|
120631
121071
|
export type GrowthUnifiedProfileEntitlementProfileResultPaidFeatureUsageArgs = {
|
|
120632
121072
|
filter?: InputMaybe<GrowthUnifiedProfilePaidFeatureUsageFilterInput>;
|
|
120633
121073
|
};
|
|
@@ -122367,6 +122807,7 @@ export type HelpCenterQueryApiHelpCentersArgs = {
|
|
|
122367
122807
|
};
|
|
122368
122808
|
export type HelpCenterQueryApiHelpCentersByProjectIdArgs = {
|
|
122369
122809
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
122810
|
+
filter?: InputMaybe<HelpCenterFilter>;
|
|
122370
122811
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122371
122812
|
projectId: Scalars['String']['input'];
|
|
122372
122813
|
sortOrder: HelpCenterSortOrder;
|
|
@@ -124554,6 +124995,24 @@ export declare enum InstallationEditionInput {
|
|
|
124554
124995
|
Advanced = "ADVANCED",
|
|
124555
124996
|
Standard = "STANDARD"
|
|
124556
124997
|
}
|
|
124998
|
+
export declare enum InstallationFacetFilter {
|
|
124999
|
+
Version = "VERSION"
|
|
125000
|
+
}
|
|
125001
|
+
export type InstallationFacetsResponse = {
|
|
125002
|
+
__typename?: 'InstallationFacetsResponse';
|
|
125003
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
125004
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
125005
|
+
values: Array<Scalars['String']['output']>;
|
|
125006
|
+
};
|
|
125007
|
+
export declare enum InstallationSortField {
|
|
125008
|
+
InstalledOn = "INSTALLED_ON",
|
|
125009
|
+
Site = "SITE",
|
|
125010
|
+
Version = "VERSION"
|
|
125011
|
+
}
|
|
125012
|
+
export type InstallationSortInput = {
|
|
125013
|
+
field: InstallationSortField;
|
|
125014
|
+
order?: InputMaybe<SortDirectionInstallations>;
|
|
125015
|
+
};
|
|
124557
125016
|
export declare enum InstallationStatus {
|
|
124558
125017
|
OutOfDate = "OUT_OF_DATE",
|
|
124559
125018
|
UpToDate = "UP_TO_DATE"
|
|
@@ -130010,6 +130469,7 @@ export declare enum JiraCollapsibleSection {
|
|
|
130010
130469
|
IncidentSuggestedResourcesServicedesk = "INCIDENT_SUGGESTED_RESOURCES_SERVICEDESK",
|
|
130011
130470
|
IncidentSummaryServicedesk = "INCIDENT_SUMMARY_SERVICEDESK",
|
|
130012
130471
|
IncidentTimelineServicedesk = "INCIDENT_TIMELINE_SERVICEDESK",
|
|
130472
|
+
JsmPreventionCenterOverviewSummaryServicedesk = "JSM_PREVENTION_CENTER_OVERVIEW_SUMMARY_SERVICEDESK",
|
|
130013
130473
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
130014
130474
|
ProformaForms = "PROFORMA_FORMS",
|
|
130015
130475
|
SimilarIssues = "SIMILAR_ISSUES",
|
|
@@ -133928,6 +134388,16 @@ export type JiraForgeUsersFieldInput = {
|
|
|
133928
134388
|
fieldId: Scalars['ID']['input'];
|
|
133929
134389
|
users: Array<JiraUserInput>;
|
|
133930
134390
|
};
|
|
134391
|
+
export type JiraForgeUsersFieldOperationInput = {
|
|
134392
|
+
ids: Array<Scalars['ID']['input']>;
|
|
134393
|
+
operation: JiraMultiValueFieldOperations;
|
|
134394
|
+
};
|
|
134395
|
+
export type JiraForgeUsersFieldPayload = Payload & {
|
|
134396
|
+
__typename?: 'JiraForgeUsersFieldPayload';
|
|
134397
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134398
|
+
field?: Maybe<JiraForgeUsersField>;
|
|
134399
|
+
success: Scalars['Boolean']['output'];
|
|
134400
|
+
};
|
|
133931
134401
|
export type JiraForgeWorkItemPanel = {
|
|
133932
134402
|
__typename?: 'JiraForgeWorkItemPanel';
|
|
133933
134403
|
id: Scalars['ID']['output'];
|
|
@@ -136917,6 +137387,7 @@ export type JiraIssueNavigationDragAndDropGroupInput = {
|
|
|
136917
137387
|
multipleStringValueField?: InputMaybe<JiraIssueNavigationDragAndDropMultipleStringValueFieldInput>;
|
|
136918
137388
|
numberField?: InputMaybe<JiraIssueNavigationDragAndDropNumberFieldInput>;
|
|
136919
137389
|
singleStringValueField?: InputMaybe<JiraIssueNavigationDragAndDropSingleStringValueFieldInput>;
|
|
137390
|
+
statusField?: InputMaybe<JiraIssueNavigationDragAndDropStatusFieldInput>;
|
|
136920
137391
|
};
|
|
136921
137392
|
export type JiraIssueNavigationDragAndDropInput = {
|
|
136922
137393
|
group?: InputMaybe<JiraIssueNavigationDragAndDropGroupInput>;
|
|
@@ -136949,6 +137420,11 @@ export type JiraIssueNavigationDragAndDropSingleStringValueFieldInput = {
|
|
|
136949
137420
|
fieldId: Scalars['ID']['input'];
|
|
136950
137421
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
136951
137422
|
};
|
|
137423
|
+
export type JiraIssueNavigationDragAndDropStatusFieldInput = {
|
|
137424
|
+
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
137425
|
+
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
137426
|
+
transitionId: Scalars['ID']['input'];
|
|
137427
|
+
};
|
|
136952
137428
|
export type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
136953
137429
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
136954
137430
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -140213,6 +140689,7 @@ export type JiraMutation = {
|
|
|
140213
140689
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
140214
140690
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
140215
140691
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
140692
|
+
renameAttachment?: Maybe<JiraRenameAttachmentPayload>;
|
|
140216
140693
|
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
140217
140694
|
replaceSpreadsheetViewFieldSets?: Maybe<JiraSpreadsheetViewPayload>;
|
|
140218
140695
|
requestCancelIssueExportTask?: Maybe<JiraIssueExportTaskCancellationResult>;
|
|
@@ -140265,6 +140742,7 @@ export type JiraMutation = {
|
|
|
140265
140742
|
updateForgeStringField?: Maybe<JiraForgeStringFieldPayload>;
|
|
140266
140743
|
updateForgeStringsField?: Maybe<JiraForgeStringsFieldPayload>;
|
|
140267
140744
|
updateForgeUserField?: Maybe<JiraForgeUserFieldPayload>;
|
|
140745
|
+
updateForgeUsersField?: Maybe<JiraForgeUsersFieldPayload>;
|
|
140268
140746
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
140269
140747
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
140270
140748
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
@@ -140760,6 +141238,9 @@ export type JiraMutationRemovePostIncidentReviewLinkArgs = {
|
|
|
140760
141238
|
export type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
140761
141239
|
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
140762
141240
|
};
|
|
141241
|
+
export type JiraMutationRenameAttachmentArgs = {
|
|
141242
|
+
input: JiraRenameAttachmentInput;
|
|
141243
|
+
};
|
|
140763
141244
|
export type JiraMutationRenameNavigationItemArgs = {
|
|
140764
141245
|
input: JiraRenameNavigationItemInput;
|
|
140765
141246
|
};
|
|
@@ -140939,6 +141420,9 @@ export type JiraMutationUpdateForgeUserFieldArgs = {
|
|
|
140939
141420
|
cloudId: Scalars['ID']['input'];
|
|
140940
141421
|
input: JiraUpdateForgeSingleUserPickerFieldInput;
|
|
140941
141422
|
};
|
|
141423
|
+
export type JiraMutationUpdateForgeUsersFieldArgs = {
|
|
141424
|
+
input: JiraUpdateForgeUsersFieldInput;
|
|
141425
|
+
};
|
|
140942
141426
|
export type JiraMutationUpdateFormattingRuleArgs = {
|
|
140943
141427
|
input: JiraUpdateFormattingRuleInput;
|
|
140944
141428
|
};
|
|
@@ -141332,6 +141816,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
141332
141816
|
Shortcuts = "SHORTCUTS",
|
|
141333
141817
|
Summary = "SUMMARY",
|
|
141334
141818
|
Teams = "TEAMS",
|
|
141819
|
+
TeamActivity = "TEAM_ACTIVITY",
|
|
141335
141820
|
Timeline = "TIMELINE"
|
|
141336
141821
|
}
|
|
141337
141822
|
export type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
@@ -144043,6 +144528,7 @@ export type JiraProjectPolicyRuleViolationEdge = {
|
|
|
144043
144528
|
};
|
|
144044
144529
|
export type JiraProjectPolicyRuleViolationFilter = {
|
|
144045
144530
|
domains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
144531
|
+
entityAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144046
144532
|
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144047
144533
|
};
|
|
144048
144534
|
export type JiraProjectPolicyViolatingProjectsFilter = {
|
|
@@ -146964,6 +147450,18 @@ export type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
146964
147450
|
export type JiraRemoveTimelineIssueLinkInput = {
|
|
146965
147451
|
id: Scalars['ID']['input'];
|
|
146966
147452
|
};
|
|
147453
|
+
export type JiraRenameAttachmentInput = {
|
|
147454
|
+
attachmentId: Scalars['ID']['input'];
|
|
147455
|
+
newFileName: Scalars['String']['input'];
|
|
147456
|
+
oldFileName?: InputMaybe<Scalars['String']['input']>;
|
|
147457
|
+
};
|
|
147458
|
+
export type JiraRenameAttachmentPayload = Payload & {
|
|
147459
|
+
__typename?: 'JiraRenameAttachmentPayload';
|
|
147460
|
+
attachmentId?: Maybe<Scalars['ID']['output']>;
|
|
147461
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
147462
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147463
|
+
success: Scalars['Boolean']['output'];
|
|
147464
|
+
};
|
|
146967
147465
|
export type JiraRenameBoardViewStatusColumnInput = {
|
|
146968
147466
|
columnId: Scalars['ID']['input'];
|
|
146969
147467
|
name: Scalars['String']['input'];
|
|
@@ -152502,6 +153000,10 @@ export type JiraUpdateForgeStringsFieldInput = {
|
|
|
152502
153000
|
id: Scalars['ID']['input'];
|
|
152503
153001
|
operation: JiraForgeStringsFieldOperationInput;
|
|
152504
153002
|
};
|
|
153003
|
+
export type JiraUpdateForgeUsersFieldInput = {
|
|
153004
|
+
id: Scalars['ID']['input'];
|
|
153005
|
+
operation: JiraForgeUsersFieldOperationInput;
|
|
153006
|
+
};
|
|
152505
153007
|
export type JiraUpdateFormattingRuleInput = {
|
|
152506
153008
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
152507
153009
|
color?: InputMaybe<JiraFormattingColor>;
|
|
@@ -154753,6 +155255,56 @@ export type JpdCreateViewInput = {
|
|
|
154753
155255
|
viewType: JpdViewType;
|
|
154754
155256
|
viewTypeConfig?: InputMaybe<JpdViewTypeConfigInput>;
|
|
154755
155257
|
};
|
|
155258
|
+
export type JpdEmptyIntervalFilter = JpdFieldFilter & {
|
|
155259
|
+
__typename?: 'JpdEmptyIntervalFilter';
|
|
155260
|
+
field: Scalars['String']['output'];
|
|
155261
|
+
};
|
|
155262
|
+
export type JpdEmptyIntervalFilterInput = {
|
|
155263
|
+
field: Scalars['String']['input'];
|
|
155264
|
+
};
|
|
155265
|
+
export type JpdFieldExcludesFilter = JpdFieldFilter & {
|
|
155266
|
+
__typename?: 'JpdFieldExcludesFilter';
|
|
155267
|
+
field: Scalars['String']['output'];
|
|
155268
|
+
values: Array<JpdStringFilterValue>;
|
|
155269
|
+
};
|
|
155270
|
+
export type JpdFieldExcludesFilterInput = {
|
|
155271
|
+
field: Scalars['String']['input'];
|
|
155272
|
+
values: Array<JpdStringFilterValueInput>;
|
|
155273
|
+
};
|
|
155274
|
+
export type JpdFieldFilter = {
|
|
155275
|
+
field: Scalars['String']['output'];
|
|
155276
|
+
};
|
|
155277
|
+
export type JpdFieldIncludesFilter = JpdFieldFilter & {
|
|
155278
|
+
__typename?: 'JpdFieldIncludesFilter';
|
|
155279
|
+
field: Scalars['String']['output'];
|
|
155280
|
+
values: Array<JpdStringFilterValue>;
|
|
155281
|
+
};
|
|
155282
|
+
export type JpdFieldIncludesFilterInput = {
|
|
155283
|
+
field: Scalars['String']['input'];
|
|
155284
|
+
values: Array<JpdStringFilterValueInput>;
|
|
155285
|
+
};
|
|
155286
|
+
export type JpdFixedDateIntervalFilter = JpdFieldFilter & {
|
|
155287
|
+
__typename?: 'JpdFixedDateIntervalFilter';
|
|
155288
|
+
field: Scalars['String']['output'];
|
|
155289
|
+
values: Array<JpdFixedDateIntervalFilterValue>;
|
|
155290
|
+
};
|
|
155291
|
+
export type JpdFixedDateIntervalFilterInput = {
|
|
155292
|
+
field: Scalars['String']['input'];
|
|
155293
|
+
values: Array<JpdFixedDateIntervalFilterValueInput>;
|
|
155294
|
+
};
|
|
155295
|
+
export declare enum JpdFixedDateIntervalFilterOperator {
|
|
155296
|
+
ItemEndsAfter = "ITEM_ENDS_AFTER",
|
|
155297
|
+
ItemStartsBefore = "ITEM_STARTS_BEFORE"
|
|
155298
|
+
}
|
|
155299
|
+
export type JpdFixedDateIntervalFilterValue = {
|
|
155300
|
+
__typename?: 'JpdFixedDateIntervalFilterValue';
|
|
155301
|
+
operator: JpdFixedDateIntervalFilterOperator;
|
|
155302
|
+
value: Scalars['String']['output'];
|
|
155303
|
+
};
|
|
155304
|
+
export type JpdFixedDateIntervalFilterValueInput = {
|
|
155305
|
+
operator: JpdFixedDateIntervalFilterOperator;
|
|
155306
|
+
value: Scalars['String']['input'];
|
|
155307
|
+
};
|
|
154756
155308
|
export type JpdInsightDeletedEvent = {
|
|
154757
155309
|
__typename?: 'JpdInsightDeletedEvent';
|
|
154758
155310
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -154761,6 +155313,12 @@ export type JpdInsightDeletedEvent = {
|
|
|
154761
155313
|
performedAt: Scalars['String']['output'];
|
|
154762
155314
|
projectAri: Scalars['ID']['output'];
|
|
154763
155315
|
};
|
|
155316
|
+
export declare enum JpdIntervalPeriod {
|
|
155317
|
+
Days = "DAYS",
|
|
155318
|
+
Months = "MONTHS",
|
|
155319
|
+
Weeks = "WEEKS",
|
|
155320
|
+
Years = "YEARS"
|
|
155321
|
+
}
|
|
154764
155322
|
export type JpdMatrixViewConfig = {
|
|
154765
155323
|
__typename?: 'JpdMatrixViewConfig';
|
|
154766
155324
|
axes?: Maybe<JpdViewMatrixAxes>;
|
|
@@ -154784,6 +155342,32 @@ export type JpdMatrixViewConfigInput = {
|
|
|
154784
155342
|
issueLayout?: InputMaybe<JpdViewIssueLayoutTypeSimple>;
|
|
154785
155343
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
154786
155344
|
};
|
|
155345
|
+
export type JpdNumericFilter = JpdFieldFilter & {
|
|
155346
|
+
__typename?: 'JpdNumericFilter';
|
|
155347
|
+
field: Scalars['String']['output'];
|
|
155348
|
+
values: Array<JpdNumericFilterValue>;
|
|
155349
|
+
};
|
|
155350
|
+
export type JpdNumericFilterInput = {
|
|
155351
|
+
field: Scalars['String']['input'];
|
|
155352
|
+
values: Array<JpdNumericFilterValueInput>;
|
|
155353
|
+
};
|
|
155354
|
+
export declare enum JpdNumericFilterOperator {
|
|
155355
|
+
Eq = "EQ",
|
|
155356
|
+
Gt = "GT",
|
|
155357
|
+
Gte = "GTE",
|
|
155358
|
+
Lt = "LT",
|
|
155359
|
+
Lte = "LTE",
|
|
155360
|
+
Neq = "NEQ"
|
|
155361
|
+
}
|
|
155362
|
+
export type JpdNumericFilterValue = {
|
|
155363
|
+
__typename?: 'JpdNumericFilterValue';
|
|
155364
|
+
operator: JpdNumericFilterOperator;
|
|
155365
|
+
value: Scalars['Float']['output'];
|
|
155366
|
+
};
|
|
155367
|
+
export type JpdNumericFilterValueInput = {
|
|
155368
|
+
operator: JpdNumericFilterOperator;
|
|
155369
|
+
value: Scalars['Float']['input'];
|
|
155370
|
+
};
|
|
154787
155371
|
export type JpdPlayContributionDeletedEvent = {
|
|
154788
155372
|
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
154789
155373
|
contributionAri: Scalars['ID']['output'];
|
|
@@ -154805,6 +155389,68 @@ export type JpdPlayParameters = {
|
|
|
154805
155389
|
__typename?: 'JpdPlayParameters';
|
|
154806
155390
|
maxSpend?: Maybe<Scalars['Int']['output']>;
|
|
154807
155391
|
};
|
|
155392
|
+
export type JpdRelativeIntervalFilter = JpdFieldFilter & {
|
|
155393
|
+
__typename?: 'JpdRelativeIntervalFilter';
|
|
155394
|
+
field: Scalars['String']['output'];
|
|
155395
|
+
values: Array<JpdRelativeIntervalFilterValue>;
|
|
155396
|
+
};
|
|
155397
|
+
export type JpdRelativeIntervalFilterInput = {
|
|
155398
|
+
field: Scalars['String']['input'];
|
|
155399
|
+
values: Array<JpdRelativeIntervalFilterValueInput>;
|
|
155400
|
+
};
|
|
155401
|
+
export declare enum JpdRelativeIntervalFilterOperator {
|
|
155402
|
+
EndAfterNow = "END_AFTER_NOW",
|
|
155403
|
+
EndBeforeNow = "END_BEFORE_NOW",
|
|
155404
|
+
StartAfterNow = "START_AFTER_NOW",
|
|
155405
|
+
StartBeforeNow = "START_BEFORE_NOW"
|
|
155406
|
+
}
|
|
155407
|
+
export type JpdRelativeIntervalFilterValue = {
|
|
155408
|
+
__typename?: 'JpdRelativeIntervalFilterValue';
|
|
155409
|
+
operator: JpdRelativeIntervalFilterOperator;
|
|
155410
|
+
value: Scalars['Float']['output'];
|
|
155411
|
+
};
|
|
155412
|
+
export type JpdRelativeIntervalFilterValueInput = {
|
|
155413
|
+
operator: JpdRelativeIntervalFilterOperator;
|
|
155414
|
+
value: Scalars['Float']['input'];
|
|
155415
|
+
};
|
|
155416
|
+
export type JpdRollingDateIntervalFilter = JpdFieldFilter & {
|
|
155417
|
+
__typename?: 'JpdRollingDateIntervalFilter';
|
|
155418
|
+
field: Scalars['String']['output'];
|
|
155419
|
+
values: Array<JpdRollingDateIntervalFilterValue>;
|
|
155420
|
+
};
|
|
155421
|
+
export type JpdRollingDateIntervalFilterInput = {
|
|
155422
|
+
field: Scalars['String']['input'];
|
|
155423
|
+
values: Array<JpdRollingDateIntervalFilterValueInput>;
|
|
155424
|
+
};
|
|
155425
|
+
export declare enum JpdRollingDateIntervalFilterOperator {
|
|
155426
|
+
ItemEndsAfterPast = "ITEM_ENDS_AFTER_PAST",
|
|
155427
|
+
ItemStartsBeforeNext = "ITEM_STARTS_BEFORE_NEXT"
|
|
155428
|
+
}
|
|
155429
|
+
export type JpdRollingDateIntervalFilterValue = {
|
|
155430
|
+
__typename?: 'JpdRollingDateIntervalFilterValue';
|
|
155431
|
+
operator: JpdRollingDateIntervalFilterOperator;
|
|
155432
|
+
value: JpdRollingDateIntervalValue;
|
|
155433
|
+
};
|
|
155434
|
+
export type JpdRollingDateIntervalFilterValueInput = {
|
|
155435
|
+
operator: JpdRollingDateIntervalFilterOperator;
|
|
155436
|
+
value: JpdRollingDateIntervalValueInput;
|
|
155437
|
+
};
|
|
155438
|
+
export type JpdRollingDateIntervalValue = {
|
|
155439
|
+
__typename?: 'JpdRollingDateIntervalValue';
|
|
155440
|
+
number: Scalars['Int']['output'];
|
|
155441
|
+
period: JpdIntervalPeriod;
|
|
155442
|
+
};
|
|
155443
|
+
export type JpdRollingDateIntervalValueInput = {
|
|
155444
|
+
number: Scalars['Int']['input'];
|
|
155445
|
+
period: JpdIntervalPeriod;
|
|
155446
|
+
};
|
|
155447
|
+
export type JpdStringFilterValue = {
|
|
155448
|
+
__typename?: 'JpdStringFilterValue';
|
|
155449
|
+
value: Scalars['String']['output'];
|
|
155450
|
+
};
|
|
155451
|
+
export type JpdStringFilterValueInput = {
|
|
155452
|
+
value: Scalars['String']['input'];
|
|
155453
|
+
};
|
|
154808
155454
|
export type JpdSubscriptions = {
|
|
154809
155455
|
__typename?: 'JpdSubscriptions';
|
|
154810
155456
|
onInsightCreated?: Maybe<PolarisInsight>;
|
|
@@ -154914,6 +155560,13 @@ export type JpdTableViewConfigInput = {
|
|
|
154914
155560
|
rankingConfig?: InputMaybe<JpdViewRankingConfigInput>;
|
|
154915
155561
|
swimlanes?: InputMaybe<JpdViewLayoutConfigInput>;
|
|
154916
155562
|
};
|
|
155563
|
+
export type JpdTextFilter = {
|
|
155564
|
+
__typename?: 'JpdTextFilter';
|
|
155565
|
+
values: Array<JpdStringFilterValue>;
|
|
155566
|
+
};
|
|
155567
|
+
export type JpdTextFilterInput = {
|
|
155568
|
+
values: Array<JpdStringFilterValueInput>;
|
|
155569
|
+
};
|
|
154917
155570
|
export type JpdTimelineViewConfig = {
|
|
154918
155571
|
__typename?: 'JpdTimelineViewConfig';
|
|
154919
155572
|
colorConfig?: Maybe<JpdViewColorConfigWithBold>;
|
|
@@ -155096,60 +155749,23 @@ export declare enum JpdViewFieldRollupType {
|
|
|
155096
155749
|
Min = "MIN",
|
|
155097
155750
|
Sum = "SUM"
|
|
155098
155751
|
}
|
|
155099
|
-
export type
|
|
155100
|
-
|
|
155101
|
-
|
|
155102
|
-
|
|
155103
|
-
|
|
155104
|
-
|
|
155105
|
-
|
|
155106
|
-
|
|
155107
|
-
|
|
155108
|
-
|
|
155109
|
-
};
|
|
155110
|
-
export declare enum JpdViewFilterConjunctType {
|
|
155111
|
-
FieldExcludes = "FIELD_EXCLUDES",
|
|
155112
|
-
FieldHasValue = "FIELD_HAS_VALUE",
|
|
155113
|
-
FieldIncludes = "FIELD_INCLUDES",
|
|
155114
|
-
FieldNumeric = "FIELD_NUMERIC",
|
|
155115
|
-
Interval = "INTERVAL",
|
|
155116
|
-
Text = "TEXT"
|
|
155117
|
-
}
|
|
155118
|
-
export declare enum JpdViewFilterEnumType {
|
|
155119
|
-
BoardColumn = "BOARD_COLUMN",
|
|
155120
|
-
ViewGroup = "VIEW_GROUP"
|
|
155121
|
-
}
|
|
155122
|
-
export declare enum JpdViewFilterOperator {
|
|
155123
|
-
Eq = "EQ",
|
|
155124
|
-
Gt = "GT",
|
|
155125
|
-
Gte = "GTE",
|
|
155126
|
-
In = "IN",
|
|
155127
|
-
IsEmpty = "IS_EMPTY",
|
|
155128
|
-
IsNotEmpty = "IS_NOT_EMPTY",
|
|
155129
|
-
Lt = "LT",
|
|
155130
|
-
Lte = "LTE",
|
|
155131
|
-
Neq = "NEQ",
|
|
155132
|
-
NotIn = "NOT_IN"
|
|
155133
|
-
}
|
|
155134
|
-
export type JpdViewFilterValue = {
|
|
155135
|
-
__typename?: 'JpdViewFilterValue';
|
|
155136
|
-
enumValue?: Maybe<JpdViewFilterEnumType>;
|
|
155137
|
-
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
155138
|
-
operator?: Maybe<JpdViewFilterOperator>;
|
|
155139
|
-
stringValue?: Maybe<Scalars['String']['output']>;
|
|
155140
|
-
};
|
|
155141
|
-
export type JpdViewFilterValueInput = {
|
|
155142
|
-
enumValue?: InputMaybe<JpdViewFilterEnumType>;
|
|
155143
|
-
numericValue?: InputMaybe<Scalars['Float']['input']>;
|
|
155144
|
-
operator?: InputMaybe<JpdViewFilterOperator>;
|
|
155145
|
-
stringValue?: InputMaybe<Scalars['String']['input']>;
|
|
155752
|
+
export type JpdViewFilter = JpdEmptyIntervalFilter | JpdFieldExcludesFilter | JpdFieldIncludesFilter | JpdFixedDateIntervalFilter | JpdNumericFilter | JpdRelativeIntervalFilter | JpdRollingDateIntervalFilter | JpdTextFilter;
|
|
155753
|
+
export type JpdViewFilterInput = {
|
|
155754
|
+
emptyInterval?: InputMaybe<JpdEmptyIntervalFilterInput>;
|
|
155755
|
+
fieldExcludes?: InputMaybe<JpdFieldExcludesFilterInput>;
|
|
155756
|
+
fieldIncludes?: InputMaybe<JpdFieldIncludesFilterInput>;
|
|
155757
|
+
fixedDateInterval?: InputMaybe<JpdFixedDateIntervalFilterInput>;
|
|
155758
|
+
numeric?: InputMaybe<JpdNumericFilterInput>;
|
|
155759
|
+
relativeInterval?: InputMaybe<JpdRelativeIntervalFilterInput>;
|
|
155760
|
+
rollingDateInterval?: InputMaybe<JpdRollingDateIntervalFilterInput>;
|
|
155761
|
+
text?: InputMaybe<JpdTextFilterInput>;
|
|
155146
155762
|
};
|
|
155147
155763
|
export type JpdViewFilters = {
|
|
155148
155764
|
__typename?: 'JpdViewFilters';
|
|
155149
|
-
conjuncts?: Maybe<Array<
|
|
155765
|
+
conjuncts?: Maybe<Array<JpdViewFilter>>;
|
|
155150
155766
|
};
|
|
155151
155767
|
export type JpdViewFiltersInput = {
|
|
155152
|
-
conjuncts?: InputMaybe<Array<
|
|
155768
|
+
conjuncts?: InputMaybe<Array<JpdViewFilterInput>>;
|
|
155153
155769
|
};
|
|
155154
155770
|
export declare enum JpdViewIssueLayoutTypeSimple {
|
|
155155
155771
|
Compact = "COMPACT",
|
|
@@ -155871,10 +156487,146 @@ export type JsmAdaptiveLanguageQueryApi = {
|
|
|
155871
156487
|
export type JsmAdaptiveLanguageQueryApiGlossaryForProjectArgs = {
|
|
155872
156488
|
projectAri: Scalars['ID']['input'];
|
|
155873
156489
|
};
|
|
156490
|
+
export declare enum JsmAnalyticsAnomalyTrend {
|
|
156491
|
+
Drop = "DROP",
|
|
156492
|
+
Flat = "FLAT",
|
|
156493
|
+
Spike = "SPIKE"
|
|
156494
|
+
}
|
|
156495
|
+
export type JsmAnalyticsCause = {
|
|
156496
|
+
__typename?: 'JsmAnalyticsCause';
|
|
156497
|
+
chart: JsmAnalyticsChart;
|
|
156498
|
+
confidence: JsmAnalyticsConfidence;
|
|
156499
|
+
statement: JsmAnalyticsStatement;
|
|
156500
|
+
};
|
|
156501
|
+
export type JsmAnalyticsChart = {
|
|
156502
|
+
__typename?: 'JsmAnalyticsChart';
|
|
156503
|
+
additionalDescription?: Maybe<Scalars['String']['output']>;
|
|
156504
|
+
data: Array<Array<Scalars['JSON']['output']>>;
|
|
156505
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
156506
|
+
headers: Array<JsmAnalyticsChartHeader>;
|
|
156507
|
+
isLast: Scalars['Boolean']['output'];
|
|
156508
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
156509
|
+
total: Scalars['Int']['output'];
|
|
156510
|
+
};
|
|
156511
|
+
export type JsmAnalyticsChartHeader = {
|
|
156512
|
+
__typename?: 'JsmAnalyticsChartHeader';
|
|
156513
|
+
fieldType: JsmAnalyticsDataType;
|
|
156514
|
+
isNullable?: Maybe<Scalars['Boolean']['output']>;
|
|
156515
|
+
name: Scalars['String']['output'];
|
|
156516
|
+
};
|
|
156517
|
+
export declare enum JsmAnalyticsConfidence {
|
|
156518
|
+
High = "HIGH",
|
|
156519
|
+
Medium = "MEDIUM"
|
|
156520
|
+
}
|
|
156521
|
+
export declare enum JsmAnalyticsDataType {
|
|
156522
|
+
Datetime = "DATETIME",
|
|
156523
|
+
Day = "DAY",
|
|
156524
|
+
Integer = "INTEGER",
|
|
156525
|
+
Month = "MONTH",
|
|
156526
|
+
String = "STRING",
|
|
156527
|
+
Week = "WEEK",
|
|
156528
|
+
Year = "YEAR"
|
|
156529
|
+
}
|
|
156530
|
+
export declare enum JsmAnalyticsGranularity {
|
|
156531
|
+
Day = "DAY",
|
|
156532
|
+
Hour = "HOUR",
|
|
156533
|
+
Week = "WEEK"
|
|
156534
|
+
}
|
|
156535
|
+
export type JsmAnalyticsImpact = {
|
|
156536
|
+
__typename?: 'JsmAnalyticsImpact';
|
|
156537
|
+
deviation: JsmAnalyticsMetric;
|
|
156538
|
+
trend: JsmAnalyticsAnomalyTrend;
|
|
156539
|
+
};
|
|
156540
|
+
export type JsmAnalyticsInputOptions = {
|
|
156541
|
+
timeZone: Scalars['String']['input'];
|
|
156542
|
+
};
|
|
156543
|
+
export type JsmAnalyticsInsight = {
|
|
156544
|
+
__typename?: 'JsmAnalyticsInsight';
|
|
156545
|
+
category: JsmAnalyticsInsightCategory;
|
|
156546
|
+
causeOverview: JsmAnalyticsStatement;
|
|
156547
|
+
chart: JsmAnalyticsChart;
|
|
156548
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
156549
|
+
id: Scalars['ID']['output'];
|
|
156550
|
+
impact: JsmAnalyticsImpact;
|
|
156551
|
+
likelyCauses: Array<JsmAnalyticsCause>;
|
|
156552
|
+
primaryMetric: JsmAnalyticsMetric;
|
|
156553
|
+
statement: JsmAnalyticsStatement;
|
|
156554
|
+
status: JsmAnalyticsInsightStatus;
|
|
156555
|
+
steps: Array<JsmAnalyticsStatement>;
|
|
156556
|
+
timeRange: JsmAnalyticsTimeRange;
|
|
156557
|
+
};
|
|
156558
|
+
export declare enum JsmAnalyticsInsightCategory {
|
|
156559
|
+
SlaTrend = "SLA_TREND",
|
|
156560
|
+
TicketTrend = "TICKET_TREND"
|
|
156561
|
+
}
|
|
156562
|
+
export type JsmAnalyticsInsightSection = {
|
|
156563
|
+
__typename?: 'JsmAnalyticsInsightSection';
|
|
156564
|
+
category: JsmAnalyticsInsightCategory;
|
|
156565
|
+
description: Scalars['String']['output'];
|
|
156566
|
+
displayOrder?: Maybe<Scalars['Int']['output']>;
|
|
156567
|
+
insights: Array<JsmAnalyticsInsight>;
|
|
156568
|
+
title: Scalars['String']['output'];
|
|
156569
|
+
};
|
|
156570
|
+
export declare enum JsmAnalyticsInsightStatus {
|
|
156571
|
+
Open = "OPEN",
|
|
156572
|
+
Resolved = "RESOLVED"
|
|
156573
|
+
}
|
|
156574
|
+
export type JsmAnalyticsInsightSummary = {
|
|
156575
|
+
__typename?: 'JsmAnalyticsInsightSummary';
|
|
156576
|
+
total: Scalars['Int']['output'];
|
|
156577
|
+
};
|
|
156578
|
+
export type JsmAnalyticsInsightsDetailInput = {
|
|
156579
|
+
insightId: Scalars['ID']['input'];
|
|
156580
|
+
options: JsmAnalyticsInputOptions;
|
|
156581
|
+
projectId: Scalars['String']['input'];
|
|
156582
|
+
};
|
|
156583
|
+
export type JsmAnalyticsInsightsQueryInput = {
|
|
156584
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
156585
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
156586
|
+
options: JsmAnalyticsInputOptions;
|
|
156587
|
+
projectId: Scalars['String']['input'];
|
|
156588
|
+
};
|
|
156589
|
+
export type JsmAnalyticsInsightsQueryResponse = {
|
|
156590
|
+
__typename?: 'JsmAnalyticsInsightsQueryResponse';
|
|
156591
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
156592
|
+
pageInfo: PageInfo;
|
|
156593
|
+
sections: Array<JsmAnalyticsInsightSection>;
|
|
156594
|
+
summary: JsmAnalyticsInsightSummary;
|
|
156595
|
+
timeRange: JsmAnalyticsTimeRange;
|
|
156596
|
+
};
|
|
156597
|
+
export type JsmAnalyticsMetric = {
|
|
156598
|
+
__typename?: 'JsmAnalyticsMetric';
|
|
156599
|
+
formatted?: Maybe<Scalars['String']['output']>;
|
|
156600
|
+
unit: JsmAnalyticsMetricUnit;
|
|
156601
|
+
value: Scalars['Float']['output'];
|
|
156602
|
+
};
|
|
156603
|
+
export declare enum JsmAnalyticsMetricUnit {
|
|
156604
|
+
Count = "COUNT",
|
|
156605
|
+
Duration = "DURATION",
|
|
156606
|
+
Percent = "PERCENT"
|
|
156607
|
+
}
|
|
156608
|
+
export type JsmAnalyticsStatement = {
|
|
156609
|
+
__typename?: 'JsmAnalyticsStatement';
|
|
156610
|
+
narrative: Scalars['String']['output'];
|
|
156611
|
+
title: Scalars['String']['output'];
|
|
156612
|
+
};
|
|
156613
|
+
export type JsmAnalyticsTimeRange = {
|
|
156614
|
+
__typename?: 'JsmAnalyticsTimeRange';
|
|
156615
|
+
end: Scalars['DateTime']['output'];
|
|
156616
|
+
granularity: JsmAnalyticsGranularity;
|
|
156617
|
+
start: Scalars['DateTime']['output'];
|
|
156618
|
+
timeZone: Scalars['String']['output'];
|
|
156619
|
+
};
|
|
155874
156620
|
export declare enum JsmChannelsAuthMode {
|
|
155875
156621
|
Application = "APPLICATION",
|
|
155876
156622
|
Delegated = "DELEGATED"
|
|
155877
156623
|
}
|
|
156624
|
+
export type JsmChannelsCancelExecutingResolutionPlansPayload = Payload & {
|
|
156625
|
+
__typename?: 'JsmChannelsCancelExecutingResolutionPlansPayload';
|
|
156626
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156627
|
+
results?: Maybe<Array<JsmChannelsResolutionPlanCancellationResult>>;
|
|
156628
|
+
success: Scalars['Boolean']['output'];
|
|
156629
|
+
};
|
|
155878
156630
|
export type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
155879
156631
|
__typename?: 'JsmChannelsConditionNode';
|
|
155880
156632
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -156179,6 +156931,18 @@ export declare enum JsmChannelsResolutionPlanAssigneeType {
|
|
|
156179
156931
|
Human = "HUMAN",
|
|
156180
156932
|
TaskAgent = "TASK_AGENT"
|
|
156181
156933
|
}
|
|
156934
|
+
export type JsmChannelsResolutionPlanCancellationResult = {
|
|
156935
|
+
__typename?: 'JsmChannelsResolutionPlanCancellationResult';
|
|
156936
|
+
jiraIssueAri: Scalars['ID']['output'];
|
|
156937
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
156938
|
+
status: JsmChannelsResolutionPlanCancellationStatus;
|
|
156939
|
+
};
|
|
156940
|
+
export declare enum JsmChannelsResolutionPlanCancellationStatus {
|
|
156941
|
+
Cancelled = "CANCELLED",
|
|
156942
|
+
Failed = "FAILED",
|
|
156943
|
+
NotFound = "NOT_FOUND",
|
|
156944
|
+
SkippedNotExecuting = "SKIPPED_NOT_EXECUTING"
|
|
156945
|
+
}
|
|
156182
156946
|
export type JsmChannelsResolutionPlanGraph = {
|
|
156183
156947
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
156184
156948
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -159813,6 +160577,10 @@ export type KnowledgeBaseArticleEdge = {
|
|
|
159813
160577
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
159814
160578
|
node?: Maybe<KnowledgeBaseArticle>;
|
|
159815
160579
|
};
|
|
160580
|
+
export type KnowledgeBaseArticleHydrationInput = {
|
|
160581
|
+
articleAris: Array<Scalars['ID']['input']>;
|
|
160582
|
+
projectIdentifier: Scalars['String']['input'];
|
|
160583
|
+
};
|
|
159816
160584
|
export type KnowledgeBaseArticleMetadata = {
|
|
159817
160585
|
__typename?: 'KnowledgeBaseArticleMetadata';
|
|
159818
160586
|
categoryDetails?: Maybe<Array<KnowledgeBaseCategoryDetail>>;
|
|
@@ -159851,6 +160619,17 @@ export type KnowledgeBaseArticleUrl = {
|
|
|
159851
160619
|
__typename?: 'KnowledgeBaseArticleUrl';
|
|
159852
160620
|
view?: Maybe<Scalars['String']['output']>;
|
|
159853
160621
|
};
|
|
160622
|
+
export type KnowledgeBaseAvailableThirdPartyDataSource = {
|
|
160623
|
+
__typename?: 'KnowledgeBaseAvailableThirdPartyDataSource';
|
|
160624
|
+
dataSourceId: Scalars['ID']['output'];
|
|
160625
|
+
health: KnowledgeBaseThirdPartyDataSourceHealth;
|
|
160626
|
+
oAuth: KnowledgeBaseThirdPartyDataSourceOAuth;
|
|
160627
|
+
};
|
|
160628
|
+
export type KnowledgeBaseCapabilities = {
|
|
160629
|
+
__typename?: 'KnowledgeBaseCapabilities';
|
|
160630
|
+
isRovoAIEnabled?: Maybe<KnowledgeBaseRovoAiEnabledResponse>;
|
|
160631
|
+
};
|
|
160632
|
+
export type KnowledgeBaseCapabilitiesResponse = KnowledgeBaseCapabilities | QueryError;
|
|
159854
160633
|
export type KnowledgeBaseCategoryDetail = {
|
|
159855
160634
|
__typename?: 'KnowledgeBaseCategoryDetail';
|
|
159856
160635
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -159862,6 +160641,10 @@ export type KnowledgeBaseConfluenceAppLinkDetails = {
|
|
|
159862
160641
|
isConfluenceServerLinked: Scalars['Boolean']['output'];
|
|
159863
160642
|
};
|
|
159864
160643
|
export type KnowledgeBaseConfluenceAppLinkDetailsResponse = KnowledgeBaseConfluenceAppLinkDetails | QueryError;
|
|
160644
|
+
export type KnowledgeBaseConfluenceAvailability = {
|
|
160645
|
+
__typename?: 'KnowledgeBaseConfluenceAvailability';
|
|
160646
|
+
isAvailable: Scalars['Boolean']['output'];
|
|
160647
|
+
};
|
|
159865
160648
|
export type KnowledgeBaseConfluenceFolderSuggestion = KnowledgeBaseSourceSuggestionInterface & {
|
|
159866
160649
|
__typename?: 'KnowledgeBaseConfluenceFolderSuggestion';
|
|
159867
160650
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -159902,6 +160685,27 @@ export type KnowledgeBaseCrossSiteSearchConnection = {
|
|
|
159902
160685
|
pageInfo: PageInfo;
|
|
159903
160686
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159904
160687
|
};
|
|
160688
|
+
export type KnowledgeBaseDataSourceStatus = KnowledgeBaseAvailableThirdPartyDataSource | KnowledgeBaseConfluenceAvailability | KnowledgeBaseNotAvailableThirdPartyDataSource | QueryError;
|
|
160689
|
+
export type KnowledgeBaseDataSourceStatusEntry = {
|
|
160690
|
+
__typename?: 'KnowledgeBaseDataSourceStatusEntry';
|
|
160691
|
+
status: KnowledgeBaseDataSourceStatus;
|
|
160692
|
+
type: KnowledgeBaseDataSourceType;
|
|
160693
|
+
};
|
|
160694
|
+
export type KnowledgeBaseDataSourceStatusList = {
|
|
160695
|
+
__typename?: 'KnowledgeBaseDataSourceStatusList';
|
|
160696
|
+
entries: Array<KnowledgeBaseDataSourceStatusEntry>;
|
|
160697
|
+
};
|
|
160698
|
+
export type KnowledgeBaseDataSourceStatusResponse = KnowledgeBaseDataSourceStatusList | QueryError;
|
|
160699
|
+
export declare enum KnowledgeBaseDataSourceType {
|
|
160700
|
+
Confluence = "CONFLUENCE",
|
|
160701
|
+
GoogleDrive = "GOOGLE_DRIVE",
|
|
160702
|
+
Sharepoint = "SHAREPOINT"
|
|
160703
|
+
}
|
|
160704
|
+
export type KnowledgeBaseEligibleDataSources = {
|
|
160705
|
+
__typename?: 'KnowledgeBaseEligibleDataSources';
|
|
160706
|
+
dataSources: Array<KnowledgeBaseDataSourceType>;
|
|
160707
|
+
};
|
|
160708
|
+
export type KnowledgeBaseEligibleDataSourcesResponse = KnowledgeBaseEligibleDataSources | QueryError;
|
|
159905
160709
|
export type KnowledgeBaseHealthDashboard = {
|
|
159906
160710
|
__typename?: 'KnowledgeBaseHealthDashboard';
|
|
159907
160711
|
articleCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -159930,6 +160734,19 @@ export declare enum KnowledgeBaseHealthDashboardMetricErrorType {
|
|
|
159930
160734
|
Transient = "TRANSIENT"
|
|
159931
160735
|
}
|
|
159932
160736
|
export type KnowledgeBaseHealthDashboardResponse = KnowledgeBaseHealthDashboard | QueryError;
|
|
160737
|
+
export type KnowledgeBaseHydrateArticlesConnection = {
|
|
160738
|
+
__typename?: 'KnowledgeBaseHydrateArticlesConnection';
|
|
160739
|
+
nodes?: Maybe<Array<KnowledgeBaseHydratedArticle>>;
|
|
160740
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
160741
|
+
};
|
|
160742
|
+
export type KnowledgeBaseHydrateArticlesResponse = KnowledgeBaseHydrateArticlesConnection | QueryError;
|
|
160743
|
+
export type KnowledgeBaseHydratedArticle = {
|
|
160744
|
+
__typename?: 'KnowledgeBaseHydratedArticle';
|
|
160745
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
160746
|
+
id: Scalars['ID']['output'];
|
|
160747
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
160748
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
160749
|
+
};
|
|
159933
160750
|
export type KnowledgeBaseInaccessibleLinkedSource = {
|
|
159934
160751
|
__typename?: 'KnowledgeBaseInaccessibleLinkedSource';
|
|
159935
160752
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -160011,6 +160828,10 @@ export type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
|
160011
160828
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
160012
160829
|
linkedSourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
160013
160830
|
};
|
|
160831
|
+
export type KnowledgeBaseNotAvailableThirdPartyDataSource = {
|
|
160832
|
+
__typename?: 'KnowledgeBaseNotAvailableThirdPartyDataSource';
|
|
160833
|
+
notAvailableMarker?: Maybe<Scalars['Boolean']['output']>;
|
|
160834
|
+
};
|
|
160014
160835
|
export type KnowledgeBasePermissionUpdateRequest = {
|
|
160015
160836
|
sourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
160016
160837
|
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160027,6 +160848,11 @@ export type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
|
160027
160848
|
sourceVisibility?: InputMaybe<Scalars['String']['input']>;
|
|
160028
160849
|
};
|
|
160029
160850
|
export type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
160851
|
+
export type KnowledgeBaseRovoAiEnabled = {
|
|
160852
|
+
__typename?: 'KnowledgeBaseRovoAiEnabled';
|
|
160853
|
+
enabled: Scalars['Boolean']['output'];
|
|
160854
|
+
};
|
|
160855
|
+
export type KnowledgeBaseRovoAiEnabledResponse = KnowledgeBaseRovoAiEnabled | QueryError;
|
|
160030
160856
|
export type KnowledgeBaseSearchConversionByMonth = {
|
|
160031
160857
|
__typename?: 'KnowledgeBaseSearchConversionByMonth';
|
|
160032
160858
|
conversionRate: Scalars['Float']['output'];
|
|
@@ -160161,6 +160987,21 @@ export type KnowledgeBaseThirdPartyConnection = {
|
|
|
160161
160987
|
nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
|
|
160162
160988
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
160163
160989
|
};
|
|
160990
|
+
export type KnowledgeBaseThirdPartyDataSourceHealth = {
|
|
160991
|
+
__typename?: 'KnowledgeBaseThirdPartyDataSourceHealth';
|
|
160992
|
+
lastCheckedAt?: Maybe<Scalars['String']['output']>;
|
|
160993
|
+
state: KnowledgeBaseThirdPartyDataSourceHealthState;
|
|
160994
|
+
};
|
|
160995
|
+
export declare enum KnowledgeBaseThirdPartyDataSourceHealthState {
|
|
160996
|
+
Healthy = "HEALTHY",
|
|
160997
|
+
Unhealthy = "UNHEALTHY",
|
|
160998
|
+
Unknown = "UNKNOWN"
|
|
160999
|
+
}
|
|
161000
|
+
export type KnowledgeBaseThirdPartyDataSourceOAuth = {
|
|
161001
|
+
__typename?: 'KnowledgeBaseThirdPartyDataSourceOAuth';
|
|
161002
|
+
isUserOAuthed: Scalars['Boolean']['output'];
|
|
161003
|
+
outboundAuthUrl?: Maybe<Scalars['String']['output']>;
|
|
161004
|
+
};
|
|
160164
161005
|
export type KnowledgeBaseThirdPartySuggestion = KnowledgeBaseSourceSuggestionInterface & {
|
|
160165
161006
|
__typename?: 'KnowledgeBaseThirdPartySuggestion';
|
|
160166
161007
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
@@ -165679,6 +166520,7 @@ export type MarketplaceStoreDataRetention = {
|
|
|
165679
166520
|
isDataRetentionSupported: Scalars['Boolean']['output'];
|
|
165680
166521
|
isRetentionDurationIndefinite?: Maybe<Scalars['Boolean']['output']>;
|
|
165681
166522
|
retentionDurationInDays?: Maybe<MarketplaceStoreRetentionDurationInDays>;
|
|
166523
|
+
retentionReason?: Maybe<Scalars['String']['output']>;
|
|
165682
166524
|
};
|
|
165683
166525
|
export type MarketplaceStoreDataTransfer = {
|
|
165684
166526
|
__typename?: 'MarketplaceStoreDataTransfer';
|
|
@@ -167672,7 +168514,7 @@ export type MercuryAskActivityHistoryConnection = {
|
|
|
167672
168514
|
pageInfo: PageInfo;
|
|
167673
168515
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
167674
168516
|
};
|
|
167675
|
-
export type MercuryAskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryOrganization | TeamV2 | TownsquareProject;
|
|
168517
|
+
export type MercuryAskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryAsk | MercuryOrganization | TeamV2 | TownsquareProject;
|
|
167676
168518
|
export type MercuryAskActivityHistoryEdge = {
|
|
167677
168519
|
__typename?: 'MercuryAskActivityHistoryEdge';
|
|
167678
168520
|
cursor: Scalars['String']['output'];
|
|
@@ -167834,10 +168676,12 @@ export type MercuryAskEdge = {
|
|
|
167834
168676
|
export declare enum MercuryAskEventType {
|
|
167835
168677
|
AcceptProposedDate = "ACCEPT_PROPOSED_DATE",
|
|
167836
168678
|
Create = "CREATE",
|
|
168679
|
+
Duplicate = "DUPLICATE",
|
|
167837
168680
|
RejectProposedDate = "REJECT_PROPOSED_DATE",
|
|
167838
168681
|
Update = "UPDATE"
|
|
167839
168682
|
}
|
|
167840
168683
|
export declare enum MercuryAskField {
|
|
168684
|
+
Ask = "ASK",
|
|
167841
168685
|
ConnectedWork = "CONNECTED_WORK",
|
|
167842
168686
|
CustomCheckbox = "CUSTOM_CHECKBOX",
|
|
167843
168687
|
CustomDate = "CUSTOM_DATE",
|
|
@@ -168217,20 +169061,30 @@ export type MercuryBooleanCustomField = MercuryCustomField & {
|
|
|
168217
169061
|
updatedBy?: Maybe<User>;
|
|
168218
169062
|
updatedDate: Scalars['DateTime']['output'];
|
|
168219
169063
|
};
|
|
168220
|
-
export type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
169064
|
+
export type MercuryBooleanCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
168221
169065
|
__typename?: 'MercuryBooleanCustomFieldDefinition';
|
|
169066
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
169067
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
168222
169068
|
createdBy?: Maybe<User>;
|
|
168223
169069
|
createdDate: Scalars['DateTime']['output'];
|
|
168224
169070
|
description?: Maybe<Scalars['String']['output']>;
|
|
168225
169071
|
fieldKind: MercuryCustomFieldKind;
|
|
169072
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
168226
169073
|
id: Scalars['ID']['output'];
|
|
168227
169074
|
name: Scalars['String']['output'];
|
|
168228
169075
|
scope: MercuryCustomFieldDefinitionScope;
|
|
168229
169076
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
169077
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
168230
169078
|
updatedBy?: Maybe<User>;
|
|
168231
169079
|
updatedDate: Scalars['DateTime']['output'];
|
|
168232
169080
|
visibility: MercuryCustomFieldVisibility;
|
|
168233
169081
|
};
|
|
169082
|
+
export type MercuryBooleanCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
169083
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
169084
|
+
};
|
|
169085
|
+
export type MercuryBooleanCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
169086
|
+
typeId: Scalars['ID']['input'];
|
|
169087
|
+
};
|
|
168234
169088
|
export type MercuryBooleanCustomFieldInput = {
|
|
168235
169089
|
booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
168236
169090
|
};
|
|
@@ -168704,6 +169558,9 @@ export declare enum MercuryCommentSortOrder {
|
|
|
168704
169558
|
export declare enum MercuryCommentType {
|
|
168705
169559
|
Funds = "FUNDS"
|
|
168706
169560
|
}
|
|
169561
|
+
export type MercuryConfiguration = {
|
|
169562
|
+
id: Scalars['ID']['output'];
|
|
169563
|
+
};
|
|
168707
169564
|
export type MercuryCostItem = Node & {
|
|
168708
169565
|
__typename?: 'MercuryCostItem';
|
|
168709
169566
|
costItemSummary?: Maybe<MercuryCostItemSummary>;
|
|
@@ -169437,18 +170294,28 @@ export type MercuryCustomFieldBase = {
|
|
|
169437
170294
|
providerKey: Scalars['String']['output'];
|
|
169438
170295
|
};
|
|
169439
170296
|
export type MercuryCustomFieldDefinition = {
|
|
170297
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
170298
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
169440
170299
|
createdBy?: Maybe<User>;
|
|
169441
170300
|
createdDate: Scalars['DateTime']['output'];
|
|
169442
170301
|
description?: Maybe<Scalars['String']['output']>;
|
|
169443
170302
|
fieldKind: MercuryCustomFieldKind;
|
|
170303
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
169444
170304
|
id: Scalars['ID']['output'];
|
|
169445
170305
|
name: Scalars['String']['output'];
|
|
169446
170306
|
scope: MercuryCustomFieldDefinitionScope;
|
|
169447
170307
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
170308
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
169448
170309
|
updatedBy?: Maybe<User>;
|
|
169449
170310
|
updatedDate: Scalars['DateTime']['output'];
|
|
169450
170311
|
visibility: MercuryCustomFieldVisibility;
|
|
169451
170312
|
};
|
|
170313
|
+
export type MercuryCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
170314
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
170315
|
+
};
|
|
170316
|
+
export type MercuryCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
170317
|
+
typeId: Scalars['ID']['input'];
|
|
170318
|
+
};
|
|
169452
170319
|
export type MercuryCustomFieldDefinitionConnection = {
|
|
169453
170320
|
__typename?: 'MercuryCustomFieldDefinitionConnection';
|
|
169454
170321
|
edges?: Maybe<Array<MercuryCustomFieldDefinitionEdge>>;
|
|
@@ -169534,20 +170401,30 @@ export type MercuryDateCustomField = MercuryCustomField & {
|
|
|
169534
170401
|
updatedBy?: Maybe<User>;
|
|
169535
170402
|
updatedDate: Scalars['DateTime']['output'];
|
|
169536
170403
|
};
|
|
169537
|
-
export type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
170404
|
+
export type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
169538
170405
|
__typename?: 'MercuryDateCustomFieldDefinition';
|
|
170406
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
170407
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
169539
170408
|
createdBy?: Maybe<User>;
|
|
169540
170409
|
createdDate: Scalars['DateTime']['output'];
|
|
169541
170410
|
description?: Maybe<Scalars['String']['output']>;
|
|
169542
170411
|
fieldKind: MercuryCustomFieldKind;
|
|
170412
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
169543
170413
|
id: Scalars['ID']['output'];
|
|
169544
170414
|
name: Scalars['String']['output'];
|
|
169545
170415
|
scope: MercuryCustomFieldDefinitionScope;
|
|
169546
170416
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
170417
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
169547
170418
|
updatedBy?: Maybe<User>;
|
|
169548
170419
|
updatedDate: Scalars['DateTime']['output'];
|
|
169549
170420
|
visibility: MercuryCustomFieldVisibility;
|
|
169550
170421
|
};
|
|
170422
|
+
export type MercuryDateCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
170423
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
170424
|
+
};
|
|
170425
|
+
export type MercuryDateCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
170426
|
+
typeId: Scalars['ID']['input'];
|
|
170427
|
+
};
|
|
169551
170428
|
export type MercuryDateCustomFieldInput = {
|
|
169552
170429
|
dateValue?: InputMaybe<Scalars['Date']['input']>;
|
|
169553
170430
|
};
|
|
@@ -170164,6 +171041,47 @@ export type MercuryExternalUser = {
|
|
|
170164
171041
|
email?: Maybe<Scalars['String']['output']>;
|
|
170165
171042
|
name?: Maybe<Scalars['String']['output']>;
|
|
170166
171043
|
};
|
|
171044
|
+
export type MercuryFieldCapability = {
|
|
171045
|
+
__typename?: 'MercuryFieldCapability';
|
|
171046
|
+
canHide?: Maybe<Scalars['Boolean']['output']>;
|
|
171047
|
+
canMarkAsRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
171048
|
+
canRelabel?: Maybe<Scalars['Boolean']['output']>;
|
|
171049
|
+
canShowOnGlobalCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
171050
|
+
};
|
|
171051
|
+
export type MercuryFieldConfigurationSettings = {
|
|
171052
|
+
__typename?: 'MercuryFieldConfigurationSettings';
|
|
171053
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
171054
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
171055
|
+
showOnGlobalCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
171056
|
+
visible?: Maybe<Scalars['Boolean']['output']>;
|
|
171057
|
+
};
|
|
171058
|
+
export type MercuryFieldDefinition = {
|
|
171059
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
171060
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
171061
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
171062
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
171063
|
+
id: Scalars['ID']['output'];
|
|
171064
|
+
name: Scalars['String']['output'];
|
|
171065
|
+
searchKey?: Maybe<Scalars['String']['output']>;
|
|
171066
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
171067
|
+
};
|
|
171068
|
+
export type MercuryFieldDefinitionConfigurationSettingsArgs = {
|
|
171069
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
171070
|
+
};
|
|
171071
|
+
export type MercuryFieldDefinitionTypeFieldConfigurationArgs = {
|
|
171072
|
+
typeId: Scalars['ID']['input'];
|
|
171073
|
+
};
|
|
171074
|
+
export type MercuryFieldDefinitionConnection = {
|
|
171075
|
+
__typename?: 'MercuryFieldDefinitionConnection';
|
|
171076
|
+
edges?: Maybe<Array<MercuryFieldDefinitionEdge>>;
|
|
171077
|
+
pageInfo: PageInfo;
|
|
171078
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
171079
|
+
};
|
|
171080
|
+
export type MercuryFieldDefinitionEdge = {
|
|
171081
|
+
__typename?: 'MercuryFieldDefinitionEdge';
|
|
171082
|
+
cursor: Scalars['String']['output'];
|
|
171083
|
+
node?: Maybe<MercuryFieldDefinition>;
|
|
171084
|
+
};
|
|
170167
171085
|
export type MercuryFinancialVersion = Node & {
|
|
170168
171086
|
__typename?: 'MercuryFinancialVersion';
|
|
170169
171087
|
id: Scalars['ID']['output'];
|
|
@@ -171481,6 +172399,16 @@ export declare enum MercuryFundsType {
|
|
|
171481
172399
|
Budget = "BUDGET",
|
|
171482
172400
|
Forecast = "FORECAST"
|
|
171483
172401
|
}
|
|
172402
|
+
export type MercuryGlobalFieldConfiguration = MercuryConfiguration & {
|
|
172403
|
+
__typename?: 'MercuryGlobalFieldConfiguration';
|
|
172404
|
+
fieldDefinition?: Maybe<MercuryFieldDefinition>;
|
|
172405
|
+
id: Scalars['ID']['output'];
|
|
172406
|
+
settings?: Maybe<MercuryGlobalFieldConfigurationSettings>;
|
|
172407
|
+
};
|
|
172408
|
+
export type MercuryGlobalFieldConfigurationSettings = {
|
|
172409
|
+
__typename?: 'MercuryGlobalFieldConfigurationSettings';
|
|
172410
|
+
visible?: Maybe<Scalars['Boolean']['output']>;
|
|
172411
|
+
};
|
|
171484
172412
|
export type MercuryGoalAggregatedStatusCount = {
|
|
171485
172413
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
171486
172414
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -172132,21 +173060,31 @@ export type MercuryMultiSelectCustomField = MercuryCustomField & {
|
|
|
172132
173060
|
updatedBy?: Maybe<User>;
|
|
172133
173061
|
updatedDate: Scalars['DateTime']['output'];
|
|
172134
173062
|
};
|
|
172135
|
-
export type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
173063
|
+
export type MercuryMultiSelectCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
172136
173064
|
__typename?: 'MercuryMultiSelectCustomFieldDefinition';
|
|
173065
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
173066
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
172137
173067
|
createdBy?: Maybe<User>;
|
|
172138
173068
|
createdDate: Scalars['DateTime']['output'];
|
|
172139
173069
|
description?: Maybe<Scalars['String']['output']>;
|
|
172140
173070
|
fieldKind: MercuryCustomFieldKind;
|
|
173071
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
172141
173072
|
id: Scalars['ID']['output'];
|
|
172142
173073
|
name: Scalars['String']['output'];
|
|
172143
173074
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
172144
173075
|
scope: MercuryCustomFieldDefinitionScope;
|
|
172145
173076
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
173077
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
172146
173078
|
updatedBy?: Maybe<User>;
|
|
172147
173079
|
updatedDate: Scalars['DateTime']['output'];
|
|
172148
173080
|
visibility: MercuryCustomFieldVisibility;
|
|
172149
173081
|
};
|
|
173082
|
+
export type MercuryMultiSelectCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
173083
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
173084
|
+
};
|
|
173085
|
+
export type MercuryMultiSelectCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
173086
|
+
typeId: Scalars['ID']['input'];
|
|
173087
|
+
};
|
|
172150
173088
|
export type MercuryMultiSelectCustomFieldInput = {
|
|
172151
173089
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
172152
173090
|
};
|
|
@@ -172159,20 +173097,30 @@ export type MercuryMultiUserCustomField = MercuryCustomField & {
|
|
|
172159
173097
|
updatedBy?: Maybe<User>;
|
|
172160
173098
|
updatedDate: Scalars['DateTime']['output'];
|
|
172161
173099
|
};
|
|
172162
|
-
export type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
173100
|
+
export type MercuryMultiUserCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
172163
173101
|
__typename?: 'MercuryMultiUserCustomFieldDefinition';
|
|
173102
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
173103
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
172164
173104
|
createdBy?: Maybe<User>;
|
|
172165
173105
|
createdDate: Scalars['DateTime']['output'];
|
|
172166
173106
|
description?: Maybe<Scalars['String']['output']>;
|
|
172167
173107
|
fieldKind: MercuryCustomFieldKind;
|
|
173108
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
172168
173109
|
id: Scalars['ID']['output'];
|
|
172169
173110
|
name: Scalars['String']['output'];
|
|
172170
173111
|
scope: MercuryCustomFieldDefinitionScope;
|
|
172171
173112
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
173113
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
172172
173114
|
updatedBy?: Maybe<User>;
|
|
172173
173115
|
updatedDate: Scalars['DateTime']['output'];
|
|
172174
173116
|
visibility: MercuryCustomFieldVisibility;
|
|
172175
173117
|
};
|
|
173118
|
+
export type MercuryMultiUserCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
173119
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
173120
|
+
};
|
|
173121
|
+
export type MercuryMultiUserCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
173122
|
+
typeId: Scalars['ID']['input'];
|
|
173123
|
+
};
|
|
172176
173124
|
export type MercuryMultiUserCustomFieldInput = {
|
|
172177
173125
|
userIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
172178
173126
|
};
|
|
@@ -172480,6 +173428,7 @@ export type MercuryNormalizedWorkProjectType = MercuryProjectType & {
|
|
|
172480
173428
|
export type MercuryNormalizedWorkResult = MercuryNormalizedWork | MercuryRestrictedWork;
|
|
172481
173429
|
export type MercuryNormalizedWorkSearchFiltersInput = {
|
|
172482
173430
|
applicationName?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
173431
|
+
cloudId?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
172483
173432
|
owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
172484
173433
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
172485
173434
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -172551,20 +173500,30 @@ export type MercuryNumberCustomField = MercuryCustomField & {
|
|
|
172551
173500
|
updatedBy?: Maybe<User>;
|
|
172552
173501
|
updatedDate: Scalars['DateTime']['output'];
|
|
172553
173502
|
};
|
|
172554
|
-
export type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
173503
|
+
export type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
172555
173504
|
__typename?: 'MercuryNumberCustomFieldDefinition';
|
|
173505
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
173506
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
172556
173507
|
createdBy?: Maybe<User>;
|
|
172557
173508
|
createdDate: Scalars['DateTime']['output'];
|
|
172558
173509
|
description?: Maybe<Scalars['String']['output']>;
|
|
172559
173510
|
fieldKind: MercuryCustomFieldKind;
|
|
173511
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
172560
173512
|
id: Scalars['ID']['output'];
|
|
172561
173513
|
name: Scalars['String']['output'];
|
|
172562
173514
|
scope: MercuryCustomFieldDefinitionScope;
|
|
172563
173515
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
173516
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
172564
173517
|
updatedBy?: Maybe<User>;
|
|
172565
173518
|
updatedDate: Scalars['DateTime']['output'];
|
|
172566
173519
|
visibility: MercuryCustomFieldVisibility;
|
|
172567
173520
|
};
|
|
173521
|
+
export type MercuryNumberCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
173522
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
173523
|
+
};
|
|
173524
|
+
export type MercuryNumberCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
173525
|
+
typeId: Scalars['ID']['input'];
|
|
173526
|
+
};
|
|
172568
173527
|
export type MercuryNumberCustomFieldInput = {
|
|
172569
173528
|
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
172570
173529
|
};
|
|
@@ -173186,8 +174145,7 @@ export type MercuryOrganizationsMutationApi = {
|
|
|
173186
174145
|
unStarOrganizationView?: Maybe<MercuryUnStarOrganizationViewPayload>;
|
|
173187
174146
|
unarchiveFunctionalRole?: Maybe<MercuryUnarchiveFunctionalRolePayload>;
|
|
173188
174147
|
unarchiveOrganization?: Maybe<MercuryUnarchiveOrganizationPayload>;
|
|
173189
|
-
|
|
173190
|
-
updateFunctionalRoleName?: Maybe<MercuryUpdateFunctionalRolePayload>;
|
|
174148
|
+
updateFunctionalRole?: Maybe<MercuryUpdateFunctionalRolePayload>;
|
|
173191
174149
|
updateOrganizationAboutContent?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
173192
174150
|
updateOrganizationCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
173193
174151
|
updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
@@ -173357,11 +174315,8 @@ export type MercuryOrganizationsMutationApiUnarchiveFunctionalRoleArgs = {
|
|
|
173357
174315
|
export type MercuryOrganizationsMutationApiUnarchiveOrganizationArgs = {
|
|
173358
174316
|
input: MercuryUnarchiveOrganizationInput;
|
|
173359
174317
|
};
|
|
173360
|
-
export type
|
|
173361
|
-
input:
|
|
173362
|
-
};
|
|
173363
|
-
export type MercuryOrganizationsMutationApiUpdateFunctionalRoleNameArgs = {
|
|
173364
|
-
input: MercuryUpdateFunctionalRoleNameInput;
|
|
174318
|
+
export type MercuryOrganizationsMutationApiUpdateFunctionalRoleArgs = {
|
|
174319
|
+
input: MercuryUpdateFunctionalRoleInput;
|
|
173365
174320
|
};
|
|
173366
174321
|
export type MercuryOrganizationsMutationApiUpdateOrganizationAboutContentArgs = {
|
|
173367
174322
|
input: MercuryUpdateOrganizationAboutContentInput;
|
|
@@ -175324,21 +176279,31 @@ export type MercurySingleSelectCustomField = MercuryCustomField & {
|
|
|
175324
176279
|
updatedBy?: Maybe<User>;
|
|
175325
176280
|
updatedDate: Scalars['DateTime']['output'];
|
|
175326
176281
|
};
|
|
175327
|
-
export type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
176282
|
+
export type MercurySingleSelectCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
175328
176283
|
__typename?: 'MercurySingleSelectCustomFieldDefinition';
|
|
176284
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
176285
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
175329
176286
|
createdBy?: Maybe<User>;
|
|
175330
176287
|
createdDate: Scalars['DateTime']['output'];
|
|
175331
176288
|
description?: Maybe<Scalars['String']['output']>;
|
|
175332
176289
|
fieldKind: MercuryCustomFieldKind;
|
|
176290
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
175333
176291
|
id: Scalars['ID']['output'];
|
|
175334
176292
|
name: Scalars['String']['output'];
|
|
175335
176293
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
175336
176294
|
scope: MercuryCustomFieldDefinitionScope;
|
|
175337
176295
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
176296
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
175338
176297
|
updatedBy?: Maybe<User>;
|
|
175339
176298
|
updatedDate: Scalars['DateTime']['output'];
|
|
175340
176299
|
visibility: MercuryCustomFieldVisibility;
|
|
175341
176300
|
};
|
|
176301
|
+
export type MercurySingleSelectCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
176302
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
176303
|
+
};
|
|
176304
|
+
export type MercurySingleSelectCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
176305
|
+
typeId: Scalars['ID']['input'];
|
|
176306
|
+
};
|
|
175342
176307
|
export type MercurySingleSelectCustomFieldInput = {
|
|
175343
176308
|
option?: InputMaybe<Scalars['ID']['input']>;
|
|
175344
176309
|
};
|
|
@@ -175351,20 +176316,30 @@ export type MercurySingleUserCustomField = MercuryCustomField & {
|
|
|
175351
176316
|
updatedBy?: Maybe<User>;
|
|
175352
176317
|
updatedDate: Scalars['DateTime']['output'];
|
|
175353
176318
|
};
|
|
175354
|
-
export type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
176319
|
+
export type MercurySingleUserCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
175355
176320
|
__typename?: 'MercurySingleUserCustomFieldDefinition';
|
|
176321
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
176322
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
175356
176323
|
createdBy?: Maybe<User>;
|
|
175357
176324
|
createdDate: Scalars['DateTime']['output'];
|
|
175358
176325
|
description?: Maybe<Scalars['String']['output']>;
|
|
175359
176326
|
fieldKind: MercuryCustomFieldKind;
|
|
176327
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
175360
176328
|
id: Scalars['ID']['output'];
|
|
175361
176329
|
name: Scalars['String']['output'];
|
|
175362
176330
|
scope: MercuryCustomFieldDefinitionScope;
|
|
175363
176331
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
176332
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
175364
176333
|
updatedBy?: Maybe<User>;
|
|
175365
176334
|
updatedDate: Scalars['DateTime']['output'];
|
|
175366
176335
|
visibility: MercuryCustomFieldVisibility;
|
|
175367
176336
|
};
|
|
176337
|
+
export type MercurySingleUserCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
176338
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
176339
|
+
};
|
|
176340
|
+
export type MercurySingleUserCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
176341
|
+
typeId: Scalars['ID']['input'];
|
|
176342
|
+
};
|
|
175368
176343
|
export type MercurySingleUserCustomFieldInput = {
|
|
175369
176344
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
175370
176345
|
};
|
|
@@ -175859,6 +176834,25 @@ export type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
|
175859
176834
|
export type MercurySubscriptionApiOnUpdateStrategicEventArgs = {
|
|
175860
176835
|
id: Scalars['ID']['input'];
|
|
175861
176836
|
};
|
|
176837
|
+
export type MercurySystemFieldDefinition = MercuryFieldDefinition & {
|
|
176838
|
+
__typename?: 'MercurySystemFieldDefinition';
|
|
176839
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
176840
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
176841
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
176842
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
176843
|
+
id: Scalars['ID']['output'];
|
|
176844
|
+
localizationKey?: Maybe<Scalars['String']['output']>;
|
|
176845
|
+
localizedName?: Maybe<Scalars['String']['output']>;
|
|
176846
|
+
name: Scalars['String']['output'];
|
|
176847
|
+
searchKey: Scalars['String']['output'];
|
|
176848
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
176849
|
+
};
|
|
176850
|
+
export type MercurySystemFieldDefinitionConfigurationSettingsArgs = {
|
|
176851
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
176852
|
+
};
|
|
176853
|
+
export type MercurySystemFieldDefinitionTypeFieldConfigurationArgs = {
|
|
176854
|
+
typeId: Scalars['ID']['input'];
|
|
176855
|
+
};
|
|
175862
176856
|
export type MercuryTagsMutationApi = {
|
|
175863
176857
|
__typename?: 'MercuryTagsMutationApi';
|
|
175864
176858
|
addTagsToEntity?: Maybe<MercuryAddTagsToEntityPayload>;
|
|
@@ -175898,20 +176892,30 @@ export type MercuryTextCustomField = MercuryCustomField & {
|
|
|
175898
176892
|
updatedBy?: Maybe<User>;
|
|
175899
176893
|
updatedDate: Scalars['DateTime']['output'];
|
|
175900
176894
|
};
|
|
175901
|
-
export type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & {
|
|
176895
|
+
export type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinition & MercuryFieldDefinition & {
|
|
175902
176896
|
__typename?: 'MercuryTextCustomFieldDefinition';
|
|
176897
|
+
capability?: Maybe<MercuryFieldCapability>;
|
|
176898
|
+
configurationSettings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
175903
176899
|
createdBy?: Maybe<User>;
|
|
175904
176900
|
createdDate: Scalars['DateTime']['output'];
|
|
175905
176901
|
description?: Maybe<Scalars['String']['output']>;
|
|
175906
176902
|
fieldKind: MercuryCustomFieldKind;
|
|
176903
|
+
globalConfiguration?: Maybe<MercuryGlobalFieldConfiguration>;
|
|
175907
176904
|
id: Scalars['ID']['output'];
|
|
175908
176905
|
name: Scalars['String']['output'];
|
|
175909
176906
|
scope: MercuryCustomFieldDefinitionScope;
|
|
175910
176907
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
176908
|
+
typeFieldConfiguration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
175911
176909
|
updatedBy?: Maybe<User>;
|
|
175912
176910
|
updatedDate: Scalars['DateTime']['output'];
|
|
175913
176911
|
visibility: MercuryCustomFieldVisibility;
|
|
175914
176912
|
};
|
|
176913
|
+
export type MercuryTextCustomFieldDefinitionConfigurationSettingsArgs = {
|
|
176914
|
+
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
176915
|
+
};
|
|
176916
|
+
export type MercuryTextCustomFieldDefinitionTypeFieldConfigurationArgs = {
|
|
176917
|
+
typeId: Scalars['ID']['input'];
|
|
176918
|
+
};
|
|
175915
176919
|
export type MercuryTextCustomFieldInput = {
|
|
175916
176920
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
175917
176921
|
};
|
|
@@ -176004,6 +177008,24 @@ export type MercuryTransitionStrategicEventStatusInput = {
|
|
|
176004
177008
|
id: Scalars['ID']['input'];
|
|
176005
177009
|
statusTransitionId: Scalars['ID']['input'];
|
|
176006
177010
|
};
|
|
177011
|
+
export type MercuryTypeFieldConfiguration = MercuryConfiguration & {
|
|
177012
|
+
__typename?: 'MercuryTypeFieldConfiguration';
|
|
177013
|
+
id: Scalars['ID']['output'];
|
|
177014
|
+
settings?: Maybe<MercuryFieldConfigurationSettings>;
|
|
177015
|
+
};
|
|
177016
|
+
export type MercuryTypeFieldConfigurationInput = {
|
|
177017
|
+
label: Scalars['String']['input'];
|
|
177018
|
+
required: Scalars['Boolean']['input'];
|
|
177019
|
+
searchKey: Scalars['ID']['input'];
|
|
177020
|
+
showOnCreate: Scalars['Boolean']['input'];
|
|
177021
|
+
visible: Scalars['Boolean']['input'];
|
|
177022
|
+
};
|
|
177023
|
+
export type MercuryTypeFieldConfigurationUpdateInput = {
|
|
177024
|
+
required?: InputMaybe<Scalars['Boolean']['input']>;
|
|
177025
|
+
searchKey: Scalars['ID']['input'];
|
|
177026
|
+
showOnGlobalCreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
177027
|
+
visible?: InputMaybe<Scalars['Boolean']['input']>;
|
|
177028
|
+
};
|
|
176007
177029
|
export type MercuryUnStarFocusAreaInput = {
|
|
176008
177030
|
focusAreaId: Scalars['ID']['input'];
|
|
176009
177031
|
};
|
|
@@ -176259,6 +177281,10 @@ export type MercuryUpdateAskTypeDescriptionPayload = Payload & {
|
|
|
176259
177281
|
errors?: Maybe<Array<MutationError>>;
|
|
176260
177282
|
success: Scalars['Boolean']['output'];
|
|
176261
177283
|
};
|
|
177284
|
+
export type MercuryUpdateAskTypeFieldConfigurationsInput = {
|
|
177285
|
+
configurations: Array<MercuryTypeFieldConfigurationUpdateInput>;
|
|
177286
|
+
typeId: Scalars['ID']['input'];
|
|
177287
|
+
};
|
|
176262
177288
|
export type MercuryUpdateAskTypeNameInput = {
|
|
176263
177289
|
id: Scalars['ID']['input'];
|
|
176264
177290
|
name: Scalars['String']['input'];
|
|
@@ -176519,6 +177545,18 @@ export type MercuryUpdateCustomFieldDefinitionVisibilityPayload = Payload & {
|
|
|
176519
177545
|
errors?: Maybe<Array<MutationError>>;
|
|
176520
177546
|
success: Scalars['Boolean']['output'];
|
|
176521
177547
|
};
|
|
177548
|
+
export type MercuryUpdateFieldConfigurationPayload = Payload & {
|
|
177549
|
+
__typename?: 'MercuryUpdateFieldConfigurationPayload';
|
|
177550
|
+
configuration?: Maybe<MercuryTypeFieldConfiguration>;
|
|
177551
|
+
errors?: Maybe<Array<MutationError>>;
|
|
177552
|
+
success: Scalars['Boolean']['output'];
|
|
177553
|
+
};
|
|
177554
|
+
export type MercuryUpdateFieldConfigurationsPayload = Payload & {
|
|
177555
|
+
__typename?: 'MercuryUpdateFieldConfigurationsPayload';
|
|
177556
|
+
configurations?: Maybe<Array<MercuryTypeFieldConfiguration>>;
|
|
177557
|
+
errors?: Maybe<Array<MutationError>>;
|
|
177558
|
+
success: Scalars['Boolean']['output'];
|
|
177559
|
+
};
|
|
176522
177560
|
export type MercuryUpdateFocusAreaAboutContentInput = {
|
|
176523
177561
|
aboutContent: Scalars['String']['input'];
|
|
176524
177562
|
cloudId: Scalars['ID']['input'];
|
|
@@ -176585,12 +177623,9 @@ export type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
176585
177623
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
176586
177624
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
176587
177625
|
};
|
|
176588
|
-
export type
|
|
177626
|
+
export type MercuryUpdateFunctionalRoleInput = {
|
|
176589
177627
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
176590
177628
|
id: Scalars['ID']['input'];
|
|
176591
|
-
};
|
|
176592
|
-
export type MercuryUpdateFunctionalRoleNameInput = {
|
|
176593
|
-
id: Scalars['ID']['input'];
|
|
176594
177629
|
name: Scalars['String']['input'];
|
|
176595
177630
|
};
|
|
176596
177631
|
export type MercuryUpdateFunctionalRolePayload = Payload & {
|
|
@@ -177498,7 +178533,6 @@ export type Mutation = {
|
|
|
177498
178533
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
177499
178534
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
177500
178535
|
admin_activateApp?: Maybe<AdminActivateAppPayload>;
|
|
177501
|
-
admin_activateOrgForUnits?: Maybe<AdminActivateOrgForUnitsPayload>;
|
|
177502
178536
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
177503
178537
|
admin_addConnector?: Maybe<AdminAddConnectorPayload>;
|
|
177504
178538
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
@@ -177517,6 +178551,7 @@ export type Mutation = {
|
|
|
177517
178551
|
admin_deleteInvitePolicy?: Maybe<AdminDeleteInvitePolicyResponsePayload>;
|
|
177518
178552
|
admin_impersonateUser?: Maybe<AdminImpersonationResponsePayload>;
|
|
177519
178553
|
admin_invite?: Maybe<AdminInviteResponsePayload>;
|
|
178554
|
+
admin_launchOrgForUnits?: Maybe<AdminLaunchOrgForUnitsPayload>;
|
|
177520
178555
|
admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
|
|
177521
178556
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
177522
178557
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
@@ -177545,6 +178580,7 @@ export type Mutation = {
|
|
|
177545
178580
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
177546
178581
|
agentStudio_deleteAgentValueConfig?: Maybe<AgentStudioDeleteAgentValueConfigPayload>;
|
|
177547
178582
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
178583
|
+
agentStudio_deleteThirdPartyConnection?: Maybe<AgentStudioDeleteThirdPartyConnectionPayload>;
|
|
177548
178584
|
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
|
|
177549
178585
|
agentStudio_duplicateAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
177550
178586
|
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
@@ -177757,6 +178793,7 @@ export type Mutation = {
|
|
|
177757
178793
|
avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
|
|
177758
178794
|
avp_cloneChart?: Maybe<AvpCloneChartPayload>;
|
|
177759
178795
|
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
178796
|
+
avp_copyDashboard?: Maybe<AvpCopyDashboardPayload>;
|
|
177760
178797
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
177761
178798
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
177762
178799
|
avp_createCharts?: Maybe<AvpCreateChartsPayload>;
|
|
@@ -178021,6 +179058,8 @@ export type Mutation = {
|
|
|
178021
179058
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
178022
179059
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
178023
179060
|
cpls_acceptAllSuggestions?: Maybe<CplsAcceptAllSuggestionsPayload>;
|
|
179061
|
+
cpls_addAllContributorScopeAssociationsFromWorkView?: Maybe<CplsAddAllContributorScopeAssociationsFromWorkViewPayload>;
|
|
179062
|
+
cpls_addAllWorkScopeAssociationsFromPeopleView?: Maybe<CplsAddAllWorkScopeAssociationsFromPeopleViewPayload>;
|
|
178024
179063
|
cpls_addContributions?: Maybe<CplsAddContributionsPayload>;
|
|
178025
179064
|
cpls_addContributorScopeAssociation?: Maybe<CplsAddContributorScopeAssociationPayload>;
|
|
178026
179065
|
cpls_addContributorScopeAssociationsByWork?: Maybe<CplsAddContributorScopeAssociationsByWorkPayload>;
|
|
@@ -178743,6 +179782,7 @@ export type Mutation = {
|
|
|
178743
179782
|
jpdViewsService_unassociateGlobalView?: Maybe<JpdViewsServiceUnassociateGlobalViewPayload>;
|
|
178744
179783
|
jpdViewsService_updateGlobalViewV3?: Maybe<JpdViewsServiceUpdateGlobalViewPayload2>;
|
|
178745
179784
|
jsmAgentWorkspace_dummy?: Maybe<Scalars['String']['output']>;
|
|
179785
|
+
jsmChannels_cancelExecutingResolutionPlans?: Maybe<JsmChannelsCancelExecutingResolutionPlansPayload>;
|
|
178746
179786
|
jsmChannels_connectRovoServiceSkill?: Maybe<JsmChannelsConnectRovoServiceSkillPayload>;
|
|
178747
179787
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
178748
179788
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -178945,6 +179985,7 @@ export type Mutation = {
|
|
|
178945
179985
|
mercury_updateAskSubmittingOrganization?: Maybe<MercuryUpsertAskPayload>;
|
|
178946
179986
|
mercury_updateAskSubmittingTeam?: Maybe<MercuryUpsertAskPayload>;
|
|
178947
179987
|
mercury_updateAskTypeDescription?: Maybe<MercuryUpdateAskTypeDescriptionPayload>;
|
|
179988
|
+
mercury_updateAskTypeFieldConfigurations?: Maybe<MercuryUpdateFieldConfigurationsPayload>;
|
|
178948
179989
|
mercury_updateAskTypeName?: Maybe<MercuryUpdateAskTypeNamePayload>;
|
|
178949
179990
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
178950
179991
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
@@ -179373,9 +180414,6 @@ export type MutationAddReactionArgs = {
|
|
|
179373
180414
|
export type MutationAdmin_ActivateAppArgs = {
|
|
179374
180415
|
input: AdminActivateAppInput;
|
|
179375
180416
|
};
|
|
179376
|
-
export type MutationAdmin_ActivateOrgForUnitsArgs = {
|
|
179377
|
-
input: AdminActivateOrgForUnitsInput;
|
|
179378
|
-
};
|
|
179379
180417
|
export type MutationAdmin_ActivateUserArgs = {
|
|
179380
180418
|
input: AdminActivateUserInput;
|
|
179381
180419
|
};
|
|
@@ -179454,6 +180492,9 @@ export type MutationAdmin_InviteArgs = {
|
|
|
179454
180492
|
inviteInput: AdminInviteInput;
|
|
179455
180493
|
orgId: Scalars['ID']['input'];
|
|
179456
180494
|
};
|
|
180495
|
+
export type MutationAdmin_LaunchOrgForUnitsArgs = {
|
|
180496
|
+
input: AdminLaunchOrgForUnitsInput;
|
|
180497
|
+
};
|
|
179457
180498
|
export type MutationAdmin_RegisterNewDataSourceIdArgs = {
|
|
179458
180499
|
connectorType: Scalars['String']['input'];
|
|
179459
180500
|
orgId: Scalars['ID']['input'];
|
|
@@ -179571,6 +180612,10 @@ export type MutationAgentStudio_DeleteAgentValueConfigArgs = {
|
|
|
179571
180612
|
export type MutationAgentStudio_DeleteScenarioArgs = {
|
|
179572
180613
|
id: Scalars['ID']['input'];
|
|
179573
180614
|
};
|
|
180615
|
+
export type MutationAgentStudio_DeleteThirdPartyConnectionArgs = {
|
|
180616
|
+
agentId: Scalars['ID']['input'];
|
|
180617
|
+
connectionAccountId: Scalars['ID']['input'];
|
|
180618
|
+
};
|
|
179574
180619
|
export type MutationAgentStudio_DeleteWidgetArgs = {
|
|
179575
180620
|
cloudId: Scalars['String']['input'];
|
|
179576
180621
|
widgetId: Scalars['ID']['input'];
|
|
@@ -180419,6 +181464,9 @@ export type MutationAvp_CloneChartArgs = {
|
|
|
180419
181464
|
export type MutationAvp_CopyChartArgs = {
|
|
180420
181465
|
input: AvpCopyChartInput;
|
|
180421
181466
|
};
|
|
181467
|
+
export type MutationAvp_CopyDashboardArgs = {
|
|
181468
|
+
input: AvpCopyDashboardInput;
|
|
181469
|
+
};
|
|
180422
181470
|
export type MutationAvp_CopyDashboardRowArgs = {
|
|
180423
181471
|
input: AvpCopyDashboardRowInput;
|
|
180424
181472
|
};
|
|
@@ -181392,6 +182440,12 @@ export type MutationCopySpacePermissionsArgs = {
|
|
|
181392
182440
|
export type MutationCpls_AcceptAllSuggestionsArgs = {
|
|
181393
182441
|
input: CplsAcceptAllSuggestionsInput;
|
|
181394
182442
|
};
|
|
182443
|
+
export type MutationCpls_AddAllContributorScopeAssociationsFromWorkViewArgs = {
|
|
182444
|
+
input: CplsAddAllContributorScopeAssociationsFromWorkViewInput;
|
|
182445
|
+
};
|
|
182446
|
+
export type MutationCpls_AddAllWorkScopeAssociationsFromPeopleViewArgs = {
|
|
182447
|
+
input: CplsAddAllWorkScopeAssociationsFromPeopleViewInput;
|
|
182448
|
+
};
|
|
181395
182449
|
export type MutationCpls_AddContributionsArgs = {
|
|
181396
182450
|
input: CplsAddContributionsInput;
|
|
181397
182451
|
};
|
|
@@ -183735,6 +184789,10 @@ export type MutationJpdViewsService_UnassociateGlobalViewArgs = {
|
|
|
183735
184789
|
export type MutationJpdViewsService_UpdateGlobalViewV3Args = {
|
|
183736
184790
|
input: JpdViewsServiceUpdateGlobalViewInput2;
|
|
183737
184791
|
};
|
|
184792
|
+
export type MutationJsmChannels_CancelExecutingResolutionPlansArgs = {
|
|
184793
|
+
jiraIssueAris: Array<Scalars['ID']['input']>;
|
|
184794
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
184795
|
+
};
|
|
183738
184796
|
export type MutationJsmChannels_ConnectRovoServiceSkillArgs = {
|
|
183739
184797
|
experience: JsmChannelsExperience;
|
|
183740
184798
|
input: JsmChannelsConnectRovoServiceSkillInput;
|
|
@@ -184457,6 +185515,9 @@ export type MutationMercury_UpdateAskSubmittingTeamArgs = {
|
|
|
184457
185515
|
export type MutationMercury_UpdateAskTypeDescriptionArgs = {
|
|
184458
185516
|
input: MercuryUpdateAskTypeDescriptionInput;
|
|
184459
185517
|
};
|
|
185518
|
+
export type MutationMercury_UpdateAskTypeFieldConfigurationsArgs = {
|
|
185519
|
+
input: MercuryUpdateAskTypeFieldConfigurationsInput;
|
|
185520
|
+
};
|
|
184460
185521
|
export type MutationMercury_UpdateAskTypeNameArgs = {
|
|
184461
185522
|
input: MercuryUpdateAskTypeNameInput;
|
|
184462
185523
|
};
|
|
@@ -188375,6 +189436,27 @@ export declare enum PsmConsentResponse {
|
|
|
188375
189436
|
Approve = "APPROVE",
|
|
188376
189437
|
Deny = "DENY"
|
|
188377
189438
|
}
|
|
189439
|
+
export type PsmConversationDetail = {
|
|
189440
|
+
__typename?: 'PsmConversationDetail';
|
|
189441
|
+
actions: Array<PsmSensorEventAction>;
|
|
189442
|
+
conversationId: Scalars['ID']['output'];
|
|
189443
|
+
readState?: Maybe<PsmConversationReadState>;
|
|
189444
|
+
remediationState?: Maybe<PsmRemediationState>;
|
|
189445
|
+
timeline: Array<PsmConversationEvent>;
|
|
189446
|
+
};
|
|
189447
|
+
export type PsmConversationDetailResult = {
|
|
189448
|
+
__typename?: 'PsmConversationDetailResult';
|
|
189449
|
+
conversation?: Maybe<PsmConversationDetail>;
|
|
189450
|
+
errors?: Maybe<Array<QueryError>>;
|
|
189451
|
+
};
|
|
189452
|
+
export type PsmConversationEvent = {
|
|
189453
|
+
__typename?: 'PsmConversationEvent';
|
|
189454
|
+
actor?: Maybe<PsmEventActor>;
|
|
189455
|
+
event?: Maybe<PsmSensorEventType>;
|
|
189456
|
+
eventId: Scalars['ID']['output'];
|
|
189457
|
+
message?: Maybe<PsmSensorEventMessage>;
|
|
189458
|
+
occurredAt?: Maybe<Scalars['DateTime']['output']>;
|
|
189459
|
+
};
|
|
188378
189460
|
export type PsmConversationHistoryConnection = {
|
|
188379
189461
|
__typename?: 'PsmConversationHistoryConnection';
|
|
188380
189462
|
edges?: Maybe<Array<PsmConversationHistoryEdge>>;
|
|
@@ -188762,6 +189844,8 @@ export type PsmRemediationBreakdownInput = {
|
|
|
188762
189844
|
export type PsmRemediationBreakdownResult = {
|
|
188763
189845
|
__typename?: 'PsmRemediationBreakdownResult';
|
|
188764
189846
|
buckets: Array<PsmRemediationBucket>;
|
|
189847
|
+
endTime: Scalars['DateTime']['output'];
|
|
189848
|
+
startTime: Scalars['DateTime']['output'];
|
|
188765
189849
|
};
|
|
188766
189850
|
export type PsmRemediationBucket = {
|
|
188767
189851
|
__typename?: 'PsmRemediationBucket';
|
|
@@ -189362,6 +190446,8 @@ export declare enum PushNotificationSettingGroup {
|
|
|
189362
190446
|
}
|
|
189363
190447
|
export type Query = {
|
|
189364
190448
|
__typename?: 'Query';
|
|
190449
|
+
JsmAnalytics_insightDetails?: Maybe<JsmAnalyticsInsight>;
|
|
190450
|
+
JsmAnalytics_insightsResult?: Maybe<JsmAnalyticsInsightsQueryResponse>;
|
|
189365
190451
|
abTestCohorts?: Maybe<Scalars['String']['output']>;
|
|
189366
190452
|
actions?: Maybe<Actions>;
|
|
189367
190453
|
activities?: Maybe<Activities>;
|
|
@@ -189540,6 +190626,7 @@ export type Query = {
|
|
|
189540
190626
|
agentWorkspace_teamRebalancingRecommendationsV2?: Maybe<AgentWorkspaceRebalancingRecommendationsPayload>;
|
|
189541
190627
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
189542
190628
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
190629
|
+
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
189543
190630
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
189544
190631
|
agentWorkspace_unmappedSkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
189545
190632
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
@@ -189683,11 +190770,13 @@ export type Query = {
|
|
|
189683
190770
|
assetsVertical_customInsights?: Maybe<AssetsVerticalCustomInsightsResult>;
|
|
189684
190771
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
189685
190772
|
assetsVertical_depreciationRuleByAssetTypesTracking?: Maybe<AssetsVerticalDepreciationRuleByAssetTypesTrackingResult>;
|
|
190773
|
+
assetsVertical_depreciationRuleHardwareFilterOptions?: Maybe<AssetsVerticalDepreciationRuleHardwareFilterOptionConnection>;
|
|
189686
190774
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
189687
190775
|
assetsVertical_hardwareCountByStatus?: Maybe<AssetsVerticalHardwareCountByStatusResult>;
|
|
189688
190776
|
assetsVertical_hardwareObjectTypes?: Maybe<AssetsVerticalHardwareObjectTypesResult>;
|
|
189689
190777
|
assetsVertical_hardwareObjects?: Maybe<AssetsVerticalHardwareObjectsResult>;
|
|
189690
190778
|
assetsVertical_hardwareObjectsTotalCount?: Maybe<AssetsVerticalHardwareObjectsTotalCountResult>;
|
|
190779
|
+
assetsVertical_hardwareParentFilterOptions?: Maybe<AssetsVerticalHardwareParentFilterOptionConnection>;
|
|
189691
190780
|
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
189692
190781
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
189693
190782
|
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
@@ -189820,7 +190909,6 @@ export type Query = {
|
|
|
189820
190909
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
189821
190910
|
changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
|
|
189822
190911
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
189823
|
-
channelPlatform_checkOtpVerified?: Maybe<ChannelPlatformCheckOtpVerifiedResponse>;
|
|
189824
190912
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
189825
190913
|
channelPlatform_downloadTranscript?: Maybe<ChannelPlatformDownloadTranscriptResponse>;
|
|
189826
190914
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -189828,7 +190916,6 @@ export type Query = {
|
|
|
189828
190916
|
channelPlatform_getAgentIdForAaid?: Maybe<Scalars['String']['output']>;
|
|
189829
190917
|
channelPlatform_getAgentStatus?: Maybe<ChannelPlatformAgentStatusResponse>;
|
|
189830
190918
|
channelPlatform_getAttachmentPreviewUrl?: Maybe<ChannelPlatformAttachmentPreviewUrlResponse>;
|
|
189831
|
-
channelPlatform_getChannelToken?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
189832
190919
|
channelPlatform_getClientConfigDetails?: Maybe<ChannelPlatformClientConfigDetailsResponse>;
|
|
189833
190920
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
189834
190921
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
@@ -190070,6 +191157,7 @@ export type Query = {
|
|
|
190070
191157
|
convoAiAgentSession_getById?: Maybe<ConvoAiAgentSession>;
|
|
190071
191158
|
convoAiAgentSession_getByIds?: Maybe<Array<Maybe<ConvoAiAgentSession>>>;
|
|
190072
191159
|
convoai_availableSkills?: Maybe<ConvoAiAvailableSkillsResult>;
|
|
191160
|
+
convoai_confluenceAgentSessions?: Maybe<ConvoAiConfluenceAgentSessionConnection>;
|
|
190073
191161
|
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
190074
191162
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
190075
191163
|
convoai_jiraDuplicateWorkItems?: Maybe<ConvoAiJiraDuplicateWorkItemsConnection>;
|
|
@@ -190277,6 +191365,7 @@ export type Query = {
|
|
|
190277
191365
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
190278
191366
|
futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
|
|
190279
191367
|
getAIConfig?: Maybe<AiConfigResponse>;
|
|
191368
|
+
getAppInstallationFacets?: Maybe<InstallationFacetsResponse>;
|
|
190280
191369
|
getAppInstallations?: Maybe<InstallationsResponse>;
|
|
190281
191370
|
getCommentReplySuggestions?: Maybe<CommentReplySuggestions>;
|
|
190282
191371
|
getCommentsSummary?: Maybe<SmartFeaturesCommentsSummary>;
|
|
@@ -190339,11 +191428,13 @@ export type Query = {
|
|
|
190339
191428
|
graphInference_inferenceAppListV2?: Maybe<Array<GraphInferenceInferenceAppV2>>;
|
|
190340
191429
|
graphInference_inferenceAppListV3?: Maybe<Array<GraphInferenceInferenceAppV3>>;
|
|
190341
191430
|
graphInference_inferenceAppStoredResults?: Maybe<Array<GraphInferenceInferenceAppStoredResult>>;
|
|
191431
|
+
graphInference_inferenceEvalPromptPreview?: Maybe<GraphInferenceInferenceEvalPromptPreviewResponse>;
|
|
190342
191432
|
graphInference_inferenceEvalRun?: Maybe<GraphInferenceInferenceEvalRunResponse>;
|
|
190343
191433
|
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
190344
191434
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
190345
191435
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
190346
191436
|
graphInference_inferredProjectSummaries?: Maybe<GraphInferenceInferredProjectSummariesResponse>;
|
|
191437
|
+
graphInference_insights?: Maybe<GraphInferenceInsightsResponse>;
|
|
190347
191438
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
190348
191439
|
graphIntegration_cloneCandidateSkill?: Maybe<GraphIntegrationSkill>;
|
|
190349
191440
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
@@ -191060,6 +192151,8 @@ export type Query = {
|
|
|
191060
192151
|
graphStoreV2_focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
191061
192152
|
graphStoreV2_focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
191062
192153
|
graphStoreV2_focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
192154
|
+
graphStoreV2_focusFocusAreaStatusUpdateHasUpdateEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityConnection>;
|
|
192155
|
+
graphStoreV2_focusFocusAreaStatusUpdateHasUpdateEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaStatusUpdateHasUpdateEntityInverseConnection>;
|
|
191063
192156
|
graphStoreV2_focusOrganizationHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection>;
|
|
191064
192157
|
graphStoreV2_focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
191065
192158
|
graphStoreV2_focusOrganizationHasChildFocusOrganization?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection>;
|
|
@@ -191689,6 +192782,10 @@ export type Query = {
|
|
|
191689
192782
|
graphStore_focusAreaHasWatcherBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
191690
192783
|
graphStore_focusAreaHasWatcherInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasWatcherInverseConnection>;
|
|
191691
192784
|
graphStore_focusAreaHasWatcherInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasWatcherConnection>;
|
|
192785
|
+
graphStore_focusAreaStatusUpdateHasUpdates?: Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesConnection>;
|
|
192786
|
+
graphStore_focusAreaStatusUpdateHasUpdatesBatch?: Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesConnection>;
|
|
192787
|
+
graphStore_focusAreaStatusUpdateHasUpdatesInverse?: Maybe<GraphStoreSimplifiedFocusAreaStatusUpdateHasUpdatesInverseConnection>;
|
|
192788
|
+
graphStore_focusAreaStatusUpdateHasUpdatesInverseBatch?: Maybe<GraphStoreBatchFocusAreaStatusUpdateHasUpdatesConnection>;
|
|
191692
192789
|
graphStore_getDynamicNodeTypes?: Maybe<GraphStoreDynamicNodeTypeConnection>;
|
|
191693
192790
|
graphStore_getDynamicRelationshipTypes?: Maybe<GraphStoreDynamicRelationshipTypeConnection>;
|
|
191694
192791
|
graphStore_graphDocument3pDocumentInverse?: Maybe<GraphStoreSimplifiedGraphDocument3pDocumentInverseConnection>;
|
|
@@ -192534,7 +193631,7 @@ export type Query = {
|
|
|
192534
193631
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
192535
193632
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
192536
193633
|
gravity_view?: Maybe<JpdView>;
|
|
192537
|
-
gravity_viewArrangement?: Maybe<
|
|
193634
|
+
gravity_viewArrangement?: Maybe<GravityViewArrangement>;
|
|
192538
193635
|
gravity_viewArrangementForEnrichment?: Maybe<GravityViewArrangementChangedEvent>;
|
|
192539
193636
|
gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
|
|
192540
193637
|
gravity_viewTemplates: GravityViewTemplatesResult;
|
|
@@ -192748,9 +193845,13 @@ export type Query = {
|
|
|
192748
193845
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
192749
193846
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
192750
193847
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
193848
|
+
knowledgeBase_capabilities?: Maybe<KnowledgeBaseCapabilitiesResponse>;
|
|
192751
193849
|
knowledgeBase_confluenceAppLinkDetails?: Maybe<KnowledgeBaseConfluenceAppLinkDetailsResponse>;
|
|
193850
|
+
knowledgeBase_dataSourceStatus?: Maybe<KnowledgeBaseDataSourceStatusResponse>;
|
|
193851
|
+
knowledgeBase_eligibleDataSources?: Maybe<KnowledgeBaseEligibleDataSourcesResponse>;
|
|
192752
193852
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
192753
193853
|
knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
|
|
193854
|
+
knowledgeBase_hydrateArticles?: Maybe<KnowledgeBaseHydrateArticlesResponse>;
|
|
192754
193855
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
192755
193856
|
knowledgeBase_monthlyActiveUsers?: Maybe<KnowledgeBaseMonthlyActiveUsersResponse>;
|
|
192756
193857
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
@@ -192837,6 +193938,7 @@ export type Query = {
|
|
|
192837
193938
|
mercury_askCountByStatusForFocusArea?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
192838
193939
|
mercury_askCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
192839
193940
|
mercury_askCustomFields?: Maybe<Array<MercuryAskCustomFieldValuesByAsk>>;
|
|
193941
|
+
mercury_askFieldDefinitions?: Maybe<MercuryFieldDefinitionConnection>;
|
|
192840
193942
|
mercury_askLinksByIds?: Maybe<Array<Maybe<MercuryAskLink>>>;
|
|
192841
193943
|
mercury_askTypes?: Maybe<MercuryAskTypeConnection>;
|
|
192842
193944
|
mercury_askTypesByIds?: Maybe<Array<Maybe<MercuryAskType>>>;
|
|
@@ -192964,6 +194066,7 @@ export type Query = {
|
|
|
192964
194066
|
psm_faultStatuses?: Maybe<PsmFaultStatusResult>;
|
|
192965
194067
|
psm_fetchNotificationTemplates?: Maybe<PsmNotificationTemplatesResult>;
|
|
192966
194068
|
psm_filters?: Maybe<PsmScreenFilterResult>;
|
|
194069
|
+
psm_getConversationById?: Maybe<PsmConversationDetailResult>;
|
|
192967
194070
|
psm_getConversationHistory?: Maybe<PsmConversationHistoryConnection>;
|
|
192968
194071
|
psm_onboardTenantStatus?: Maybe<PsmOnboardTenantStatusResult>;
|
|
192969
194072
|
psm_remediationBreakdown?: Maybe<PsmRemediationBreakdownResult>;
|
|
@@ -192993,6 +194096,7 @@ export type Query = {
|
|
|
192993
194096
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
192994
194097
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
192995
194098
|
radar_metricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
194099
|
+
radar_metricsSummary?: Maybe<RadarMetricsSummary>;
|
|
192996
194100
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
192997
194101
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
192998
194102
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
@@ -193172,6 +194276,7 @@ export type Query = {
|
|
|
193172
194276
|
statusUpdates_byTag?: Maybe<TownsquareUpdateConnection>;
|
|
193173
194277
|
statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
|
|
193174
194278
|
statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
|
|
194279
|
+
statusUpdates_watchedTags?: Maybe<TownsquareTagConnection>;
|
|
193175
194280
|
studio_solutionPlan?: Maybe<StudioSolutionPlan>;
|
|
193176
194281
|
studio_templateCategories?: Maybe<StudioTemplateCategoriesResponse>;
|
|
193177
194282
|
studio_templates?: Maybe<StudioTemplatesResponse>;
|
|
@@ -193252,6 +194357,12 @@ export type Query = {
|
|
|
193252
194357
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
193253
194358
|
workSuggestions?: Maybe<WorkSuggestions>;
|
|
193254
194359
|
};
|
|
194360
|
+
export type QueryJsmAnalytics_InsightDetailsArgs = {
|
|
194361
|
+
input: JsmAnalyticsInsightsDetailInput;
|
|
194362
|
+
};
|
|
194363
|
+
export type QueryJsmAnalytics_InsightsResultArgs = {
|
|
194364
|
+
input: JsmAnalyticsInsightsQueryInput;
|
|
194365
|
+
};
|
|
193255
194366
|
export type QueryAdminAnnouncementBannerSettingArgs = {
|
|
193256
194367
|
id: Scalars['String']['input'];
|
|
193257
194368
|
};
|
|
@@ -194224,6 +195335,11 @@ export type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
|
194224
195335
|
input: AgentWorkspaceTeamSchedulesQueryInput;
|
|
194225
195336
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194226
195337
|
};
|
|
195338
|
+
export type QueryAgentWorkspace_TeamsConnectedToProjectArgs = {
|
|
195339
|
+
cloudId: Scalars['ID']['input'];
|
|
195340
|
+
projectKey: Scalars['String']['input'];
|
|
195341
|
+
scope?: InputMaybe<AgentWorkspaceConnectedTeamsScope>;
|
|
195342
|
+
};
|
|
194227
195343
|
export type QueryAgentWorkspace_TeamsMappedToProjectArgs = {
|
|
194228
195344
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
194229
195345
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -195008,6 +196124,12 @@ export type QueryAssetsVertical_DepreciationRuleByAssetTypesTrackingArgs = {
|
|
|
195008
196124
|
assetTypesTrackingId: Scalars['ID']['input'];
|
|
195009
196125
|
cloudId: Scalars['ID']['input'];
|
|
195010
196126
|
};
|
|
196127
|
+
export type QueryAssetsVertical_DepreciationRuleHardwareFilterOptionsArgs = {
|
|
196128
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
196129
|
+
cloudId: Scalars['ID']['input'];
|
|
196130
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196131
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
196132
|
+
};
|
|
195011
196133
|
export type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
195012
196134
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
195013
196135
|
cloudId: Scalars['ID']['input'];
|
|
@@ -195033,6 +196155,12 @@ export type QueryAssetsVertical_HardwareObjectsTotalCountArgs = {
|
|
|
195033
196155
|
cloudId: Scalars['ID']['input'];
|
|
195034
196156
|
input: AssetsVerticalHardwareObjectsInput;
|
|
195035
196157
|
};
|
|
196158
|
+
export type QueryAssetsVertical_HardwareParentFilterOptionsArgs = {
|
|
196159
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
196160
|
+
cloudId: Scalars['ID']['input'];
|
|
196161
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
196162
|
+
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
196163
|
+
};
|
|
195036
196164
|
export type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
195037
196165
|
cloudId: Scalars['ID']['input'];
|
|
195038
196166
|
};
|
|
@@ -195562,9 +196690,6 @@ export type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs = {
|
|
|
195562
196690
|
export type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
195563
196691
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
195564
196692
|
};
|
|
195565
|
-
export type QueryChannelPlatform_CheckOtpVerifiedArgs = {
|
|
195566
|
-
conversationId: Scalars['String']['input'];
|
|
195567
|
-
};
|
|
195568
196693
|
export type QueryChannelPlatform_CreateContactArgs = {
|
|
195569
196694
|
anonymousId?: InputMaybe<Scalars['String']['input']>;
|
|
195570
196695
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
@@ -195591,9 +196716,6 @@ export type QueryChannelPlatform_GetAttachmentPreviewUrlArgs = {
|
|
|
195591
196716
|
attachmentId: Scalars['String']['input'];
|
|
195592
196717
|
issueId: Scalars['String']['input'];
|
|
195593
196718
|
};
|
|
195594
|
-
export type QueryChannelPlatform_GetChannelTokenArgs = {
|
|
195595
|
-
request?: InputMaybe<ChannelPlatformGetChannelTokenRequest>;
|
|
195596
|
-
};
|
|
195597
196719
|
export type QueryChannelPlatform_GetClientConfigDetailsArgs = {
|
|
195598
196720
|
issueAri?: InputMaybe<Scalars['ID']['input']>;
|
|
195599
196721
|
};
|
|
@@ -195619,7 +196741,6 @@ export type QueryChannelPlatform_GetQuickResponseArgs = {
|
|
|
195619
196741
|
};
|
|
195620
196742
|
export type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
195621
196743
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
195622
|
-
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
195623
196744
|
};
|
|
195624
196745
|
export type QueryChannelPlatform_GetTicketDetailsArgs = {
|
|
195625
196746
|
conversationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -196545,6 +197666,8 @@ export type QueryConfluence_UserContentAccessArgs = {
|
|
|
196545
197666
|
};
|
|
196546
197667
|
export type QueryConfluence_UserSetupArgs = {
|
|
196547
197668
|
cloudId: Scalars['ID']['input'];
|
|
197669
|
+
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
197670
|
+
startTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
196548
197671
|
};
|
|
196549
197672
|
export type QueryConfluence_UsersHavePermissionArgs = {
|
|
196550
197673
|
cloudId: Scalars['ID']['input'];
|
|
@@ -196766,6 +197889,12 @@ export type QueryConvoai_AvailableSkillsArgs = {
|
|
|
196766
197889
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
196767
197890
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
196768
197891
|
};
|
|
197892
|
+
export type QueryConvoai_ConfluenceAgentSessionsArgs = {
|
|
197893
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
197894
|
+
cloudId: Scalars['ID']['input'];
|
|
197895
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
197896
|
+
userAccountId: Scalars['ID']['input'];
|
|
197897
|
+
};
|
|
196769
197898
|
export type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
196770
197899
|
cloudId: Scalars['ID']['input'];
|
|
196771
197900
|
pageTitle: Scalars['String']['input'];
|
|
@@ -197696,6 +198825,11 @@ export type QueryGetAiConfigArgs = {
|
|
|
197696
198825
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
197697
198826
|
product: Product;
|
|
197698
198827
|
};
|
|
198828
|
+
export type QueryGetAppInstallationFacetsArgs = {
|
|
198829
|
+
appId: Scalars['ID']['input'];
|
|
198830
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
198831
|
+
filterName: InstallationFacetFilter;
|
|
198832
|
+
};
|
|
197699
198833
|
export type QueryGetAppInstallationsArgs = {
|
|
197700
198834
|
appId: Scalars['ID']['input'];
|
|
197701
198835
|
atlassianApp?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -197707,6 +198841,7 @@ export type QueryGetAppInstallationsArgs = {
|
|
|
197707
198841
|
license?: InputMaybe<Array<LicenseValue>>;
|
|
197708
198842
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
197709
198843
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
198844
|
+
sort?: InputMaybe<InstallationSortInput>;
|
|
197710
198845
|
status?: InputMaybe<InstallationStatus>;
|
|
197711
198846
|
version?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
197712
198847
|
};
|
|
@@ -197808,6 +198943,7 @@ export type QueryGoals_ByIdsArgs = {
|
|
|
197808
198943
|
export type QueryGoals_ByKeyArgs = {
|
|
197809
198944
|
containerId: Scalars['ID']['input'];
|
|
197810
198945
|
goalKey: Scalars['String']['input'];
|
|
198946
|
+
trackViewEvent?: InputMaybe<TownsquareTrackViewEvent>;
|
|
197811
198947
|
};
|
|
197812
198948
|
export type QueryGoals_CapabilitiesArgs = {
|
|
197813
198949
|
containerId: Scalars['ID']['input'];
|
|
@@ -197928,6 +199064,9 @@ export type QueryGraphInference_GraphclawInferV3Args = {
|
|
|
197928
199064
|
export type QueryGraphInference_InferenceAppStoredResultsArgs = {
|
|
197929
199065
|
input: GraphInferenceInferenceAppStoredResultsInput;
|
|
197930
199066
|
};
|
|
199067
|
+
export type QueryGraphInference_InferenceEvalPromptPreviewArgs = {
|
|
199068
|
+
input: GraphInferenceInferenceEvalPromptPreviewInput;
|
|
199069
|
+
};
|
|
197931
199070
|
export type QueryGraphInference_InferenceEvalRunArgs = {
|
|
197932
199071
|
runId: Scalars['ID']['input'];
|
|
197933
199072
|
};
|
|
@@ -197947,6 +199086,9 @@ export type QueryGraphInference_InferredProjectSummariesArgs = {
|
|
|
197947
199086
|
firstEntities?: InputMaybe<Scalars['Int']['input']>;
|
|
197948
199087
|
updatedAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
197949
199088
|
};
|
|
199089
|
+
export type QueryGraphInference_InsightsArgs = {
|
|
199090
|
+
input: GraphInferenceTargetInsightsInput;
|
|
199091
|
+
};
|
|
197950
199092
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
197951
199093
|
contextAri: Scalars['ID']['input'];
|
|
197952
199094
|
includeEnabledToolCount?: Scalars['Boolean']['input'];
|
|
@@ -202889,6 +204031,20 @@ export type QueryGraphStoreV2_FocusFocusAreaHasWorkEntityInverseArgs = {
|
|
|
202889
204031
|
id: Scalars['ID']['input'];
|
|
202890
204032
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
|
|
202891
204033
|
};
|
|
204034
|
+
export type QueryGraphStoreV2_FocusFocusAreaStatusUpdateHasUpdateEntityArgs = {
|
|
204035
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204036
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
204037
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204038
|
+
id: Scalars['ID']['input'];
|
|
204039
|
+
sort?: InputMaybe<GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntitySortInput>;
|
|
204040
|
+
};
|
|
204041
|
+
export type QueryGraphStoreV2_FocusFocusAreaStatusUpdateHasUpdateEntityInverseArgs = {
|
|
204042
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
204043
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
204044
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
204045
|
+
id: Scalars['ID']['input'];
|
|
204046
|
+
sort?: InputMaybe<GraphStoreV2FocusFocusAreaStatusUpdateHasUpdateEntitySortInput>;
|
|
204047
|
+
};
|
|
202892
204048
|
export type QueryGraphStoreV2_FocusOrganizationHasAtlassianGoalArgs = {
|
|
202893
204049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
202894
204050
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -207660,6 +208816,36 @@ export type QueryGraphStore_FocusAreaHasWatcherInverseBatchArgs = {
|
|
|
207660
208816
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
207661
208817
|
sort?: InputMaybe<GraphStoreFocusAreaHasWatcherSortInput>;
|
|
207662
208818
|
};
|
|
208819
|
+
export type QueryGraphStore_FocusAreaStatusUpdateHasUpdatesArgs = {
|
|
208820
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208821
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208822
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208823
|
+
id: Scalars['ID']['input'];
|
|
208824
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208825
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
208826
|
+
};
|
|
208827
|
+
export type QueryGraphStore_FocusAreaStatusUpdateHasUpdatesBatchArgs = {
|
|
208828
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208829
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208830
|
+
ids: Array<Scalars['ID']['input']>;
|
|
208831
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208832
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
208833
|
+
};
|
|
208834
|
+
export type QueryGraphStore_FocusAreaStatusUpdateHasUpdatesInverseArgs = {
|
|
208835
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208836
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
208837
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208838
|
+
id: Scalars['ID']['input'];
|
|
208839
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208840
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
208841
|
+
};
|
|
208842
|
+
export type QueryGraphStore_FocusAreaStatusUpdateHasUpdatesInverseBatchArgs = {
|
|
208843
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
208844
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208845
|
+
ids: Array<Scalars['ID']['input']>;
|
|
208846
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
208847
|
+
sort?: InputMaybe<GraphStoreFocusAreaStatusUpdateHasUpdatesSortInput>;
|
|
208848
|
+
};
|
|
207663
208849
|
export type QueryGraphStore_GetDynamicNodeTypesArgs = {
|
|
207664
208850
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
207665
208851
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -214603,6 +215789,7 @@ export type QueryJira_ReleaseDriversForProjectArgs = {
|
|
|
214603
215789
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
214604
215790
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
214605
215791
|
projectId: Scalars['ID']['input'];
|
|
215792
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
214606
215793
|
};
|
|
214607
215794
|
export type QueryJira_RovoEnablementStatusArgs = {
|
|
214608
215795
|
cloudId: Scalars['ID']['input'];
|
|
@@ -215063,10 +216250,20 @@ export type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
215063
216250
|
export type QueryKnowledgeBase_AgentSearchArgs = {
|
|
215064
216251
|
searchInput?: InputMaybe<KnowledgeBaseAgentArticleSearchInput>;
|
|
215065
216252
|
};
|
|
216253
|
+
export type QueryKnowledgeBase_CapabilitiesArgs = {
|
|
216254
|
+
cloudId: Scalars['ID']['input'];
|
|
216255
|
+
};
|
|
215066
216256
|
export type QueryKnowledgeBase_ConfluenceAppLinkDetailsArgs = {
|
|
215067
216257
|
cloudId: Scalars['ID']['input'];
|
|
215068
216258
|
projectIdentifier: Scalars['String']['input'];
|
|
215069
216259
|
};
|
|
216260
|
+
export type QueryKnowledgeBase_DataSourceStatusArgs = {
|
|
216261
|
+
cloudId: Scalars['ID']['input'];
|
|
216262
|
+
types: Array<KnowledgeBaseDataSourceType>;
|
|
216263
|
+
};
|
|
216264
|
+
export type QueryKnowledgeBase_EligibleDataSourcesArgs = {
|
|
216265
|
+
cloudId: Scalars['ID']['input'];
|
|
216266
|
+
};
|
|
215070
216267
|
export type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
|
|
215071
216268
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
215072
216269
|
};
|
|
@@ -215074,6 +216271,10 @@ export type QueryKnowledgeBase_HealthDashboardArgs = {
|
|
|
215074
216271
|
cloudId: Scalars['ID']['input'];
|
|
215075
216272
|
projectIdentifier: Scalars['String']['input'];
|
|
215076
216273
|
};
|
|
216274
|
+
export type QueryKnowledgeBase_HydrateArticlesArgs = {
|
|
216275
|
+
cloudId: Scalars['ID']['input'];
|
|
216276
|
+
hydrationInput: KnowledgeBaseArticleHydrationInput;
|
|
216277
|
+
};
|
|
215077
216278
|
export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
215078
216279
|
cloudId: Scalars['ID']['input'];
|
|
215079
216280
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -215348,6 +216549,9 @@ export type QueryMercury_AskCustomFieldsArgs = {
|
|
|
215348
216549
|
cloudId: Scalars['ID']['input'];
|
|
215349
216550
|
customFieldDefinitionIds: Array<Scalars['ID']['input']>;
|
|
215350
216551
|
};
|
|
216552
|
+
export type QueryMercury_AskFieldDefinitionsArgs = {
|
|
216553
|
+
cloudId: Scalars['ID']['input'];
|
|
216554
|
+
};
|
|
215351
216555
|
export type QueryMercury_AskLinksByIdsArgs = {
|
|
215352
216556
|
ids: Array<Scalars['ID']['input']>;
|
|
215353
216557
|
};
|
|
@@ -215819,6 +217023,12 @@ export type QueryPsm_FiltersArgs = {
|
|
|
215819
217023
|
screen: PsmFilterScreen;
|
|
215820
217024
|
spaceId: Scalars['ID']['input'];
|
|
215821
217025
|
};
|
|
217026
|
+
export type QueryPsm_GetConversationByIdArgs = {
|
|
217027
|
+
accountId: Scalars['ID']['input'];
|
|
217028
|
+
cloudId: Scalars['ID']['input'];
|
|
217029
|
+
conversationId: Scalars['ID']['input'];
|
|
217030
|
+
deviceId: Scalars['ID']['input'];
|
|
217031
|
+
};
|
|
215822
217032
|
export type QueryPsm_GetConversationHistoryArgs = {
|
|
215823
217033
|
accountId: Scalars['ID']['input'];
|
|
215824
217034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -215954,6 +217164,9 @@ export type QueryRadar_MetricsSettingsArgs = {
|
|
|
215954
217164
|
cloudId: Scalars['ID']['input'];
|
|
215955
217165
|
metricKey?: InputMaybe<RadarOrgMetric>;
|
|
215956
217166
|
};
|
|
217167
|
+
export type QueryRadar_MetricsSummaryArgs = {
|
|
217168
|
+
input: RadarMetricsSummaryInput;
|
|
217169
|
+
};
|
|
215957
217170
|
export type QueryRadar_NotificationSettingsArgs = {
|
|
215958
217171
|
cloudId: Scalars['ID']['input'];
|
|
215959
217172
|
};
|
|
@@ -216724,6 +217937,11 @@ export type QueryStatusUpdates_ForSavedViewArgs = {
|
|
|
216724
217937
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
216725
217938
|
viewUuid: Scalars['UUID']['input'];
|
|
216726
217939
|
};
|
|
217940
|
+
export type QueryStatusUpdates_WatchedTagsArgs = {
|
|
217941
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
217942
|
+
containerId: Scalars['ID']['input'];
|
|
217943
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
217944
|
+
};
|
|
216727
217945
|
export type QueryStudio_SolutionPlanArgs = {
|
|
216728
217946
|
solutionId: Scalars['String']['input'];
|
|
216729
217947
|
solutionVersion: Scalars['Int']['input'];
|
|
@@ -217149,6 +218367,14 @@ export type RadarAiConnectorsEdge = RadarEdge & {
|
|
|
217149
218367
|
cursor: Scalars['String']['output'];
|
|
217150
218368
|
node: RadarAiConnector;
|
|
217151
218369
|
};
|
|
218370
|
+
export type RadarAiGenerationMetadata = {
|
|
218371
|
+
__typename?: 'RadarAiGenerationMetadata';
|
|
218372
|
+
cached: Scalars['Boolean']['output'];
|
|
218373
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
218374
|
+
generationId: Scalars['ID']['output'];
|
|
218375
|
+
model: Scalars['String']['output'];
|
|
218376
|
+
useCaseId: Scalars['String']['output'];
|
|
218377
|
+
};
|
|
217152
218378
|
export type RadarAiModelFieldValue = {
|
|
217153
218379
|
__typename?: 'RadarAiModelFieldValue';
|
|
217154
218380
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -217605,6 +218831,22 @@ export type RadarMetricValueInput = {
|
|
|
217605
218831
|
target: Scalars['Float']['input'];
|
|
217606
218832
|
tolerance?: InputMaybe<Scalars['Float']['input']>;
|
|
217607
218833
|
};
|
|
218834
|
+
export type RadarMetricsSummary = {
|
|
218835
|
+
__typename?: 'RadarMetricsSummary';
|
|
218836
|
+
content: Scalars['String']['output'];
|
|
218837
|
+
entityAri: Scalars['ID']['output'];
|
|
218838
|
+
id: Scalars['ID']['output'];
|
|
218839
|
+
metadata: RadarAiGenerationMetadata;
|
|
218840
|
+
};
|
|
218841
|
+
export declare enum RadarMetricsSummaryEntityType {
|
|
218842
|
+
FocusArea = "FOCUS_AREA",
|
|
218843
|
+
Position = "POSITION"
|
|
218844
|
+
}
|
|
218845
|
+
export type RadarMetricsSummaryInput = {
|
|
218846
|
+
cloudId: Scalars['ID']['input'];
|
|
218847
|
+
entityAri: Scalars['ID']['input'];
|
|
218848
|
+
entityType: RadarMetricsSummaryEntityType;
|
|
218849
|
+
};
|
|
217608
218850
|
export type RadarMoney = {
|
|
217609
218851
|
__typename?: 'RadarMoney';
|
|
217610
218852
|
amount: Scalars['String']['output'];
|
|
@@ -218232,12 +219474,20 @@ export declare enum RateLimitingCurrency {
|
|
|
218232
219474
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
218233
219475
|
JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
|
|
218234
219476
|
JpdContainerWriteCurrency = "JPD_CONTAINER_WRITE_CURRENCY",
|
|
219477
|
+
KitsuneConnectorConfig = "KITSUNE_CONNECTOR_CONFIG",
|
|
218235
219478
|
KitsuneCsv = "KITSUNE_CSV",
|
|
218236
219479
|
KitsuneCustomer = "KITSUNE_CUSTOMER",
|
|
219480
|
+
KitsuneCustomerList = "KITSUNE_CUSTOMER_LIST",
|
|
218237
219481
|
KitsuneFeedback = "KITSUNE_FEEDBACK",
|
|
218238
219482
|
KitsuneFeedbackList = "KITSUNE_FEEDBACK_LIST",
|
|
219483
|
+
KitsuneField = "KITSUNE_FIELD",
|
|
218239
219484
|
KitsuneInsight = "KITSUNE_INSIGHT",
|
|
218240
219485
|
KitsuneInsightList = "KITSUNE_INSIGHT_LIST",
|
|
219486
|
+
KitsuneSnippet = "KITSUNE_SNIPPET",
|
|
219487
|
+
KitsuneSnippetList = "KITSUNE_SNIPPET_LIST",
|
|
219488
|
+
KitsuneSpace = "KITSUNE_SPACE",
|
|
219489
|
+
KitsuneSpaceList = "KITSUNE_SPACE_LIST",
|
|
219490
|
+
KitsuneView = "KITSUNE_VIEW",
|
|
218241
219491
|
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
218242
219492
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
218243
219493
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
@@ -220361,6 +221611,7 @@ export type SearchFilterInput = {
|
|
|
220361
221611
|
externalFilters?: InputMaybe<SearchExternalFilter>;
|
|
220362
221612
|
jiraFilters?: InputMaybe<SearchJiraFilter>;
|
|
220363
221613
|
locations: Array<Scalars['String']['input']>;
|
|
221614
|
+
loomFilters?: InputMaybe<SearchLoomFilters>;
|
|
220364
221615
|
mercuryFilters?: InputMaybe<SearchMercuryFilter>;
|
|
220365
221616
|
talentFilters?: InputMaybe<SearchTalentFilter>;
|
|
220366
221617
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
@@ -220528,6 +221779,11 @@ export declare enum SearchLinkedResultCategory {
|
|
|
220528
221779
|
Similar = "similar"
|
|
220529
221780
|
}
|
|
220530
221781
|
export type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
221782
|
+
export type SearchLoomFilters = {
|
|
221783
|
+
folderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
221784
|
+
spaceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
221785
|
+
tagNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
221786
|
+
};
|
|
220531
221787
|
export type SearchMatchingLayer = {
|
|
220532
221788
|
layerName?: InputMaybe<Scalars['String']['input']>;
|
|
220533
221789
|
layerType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -221163,6 +222419,91 @@ export type SearchResultJiraProject = SearchResult & {
|
|
|
221163
222419
|
export type SearchResultJiraProjectSocialSignalArgs = {
|
|
221164
222420
|
tenantId: Scalars['ID']['input'];
|
|
221165
222421
|
};
|
|
222422
|
+
export type SearchResultLoomFolder = SearchResult & {
|
|
222423
|
+
__typename?: 'SearchResultLoomFolder';
|
|
222424
|
+
description: Scalars['String']['output'];
|
|
222425
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
222426
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
222427
|
+
id: Scalars['ID']['output'];
|
|
222428
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
222429
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
222430
|
+
loomId?: Maybe<Scalars['String']['output']>;
|
|
222431
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
222432
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
222433
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
222434
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
222435
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
222436
|
+
space?: Maybe<SearchResultLoomSpaceSummary>;
|
|
222437
|
+
title: Scalars['String']['output'];
|
|
222438
|
+
totalNestedVideos?: Maybe<Scalars['Int']['output']>;
|
|
222439
|
+
type: SearchResultType;
|
|
222440
|
+
url: Scalars['String']['output'];
|
|
222441
|
+
};
|
|
222442
|
+
export type SearchResultLoomSpace = SearchResult & {
|
|
222443
|
+
__typename?: 'SearchResultLoomSpace';
|
|
222444
|
+
description: Scalars['String']['output'];
|
|
222445
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
222446
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
222447
|
+
id: Scalars['ID']['output'];
|
|
222448
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
222449
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
222450
|
+
loomId?: Maybe<Scalars['String']['output']>;
|
|
222451
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
222452
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
222453
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
222454
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
222455
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
222456
|
+
title: Scalars['String']['output'];
|
|
222457
|
+
type: SearchResultType;
|
|
222458
|
+
url: Scalars['String']['output'];
|
|
222459
|
+
};
|
|
222460
|
+
export type SearchResultLoomSpaceSummary = {
|
|
222461
|
+
__typename?: 'SearchResultLoomSpaceSummary';
|
|
222462
|
+
ari: Scalars['ID']['output'];
|
|
222463
|
+
id: Scalars['ID']['output'];
|
|
222464
|
+
name: Scalars['String']['output'];
|
|
222465
|
+
};
|
|
222466
|
+
export type SearchResultLoomTag = SearchResult & {
|
|
222467
|
+
__typename?: 'SearchResultLoomTag';
|
|
222468
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
222469
|
+
description: Scalars['String']['output'];
|
|
222470
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
222471
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
222472
|
+
id: Scalars['ID']['output'];
|
|
222473
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
222474
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
222475
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
222476
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
222477
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
222478
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
222479
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
222480
|
+
title: Scalars['String']['output'];
|
|
222481
|
+
type: SearchResultType;
|
|
222482
|
+
url: Scalars['String']['output'];
|
|
222483
|
+
};
|
|
222484
|
+
export type SearchResultLoomVideo = SearchResult & {
|
|
222485
|
+
__typename?: 'SearchResultLoomVideo';
|
|
222486
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
222487
|
+
creatorAaid?: Maybe<Scalars['String']['output']>;
|
|
222488
|
+
description: Scalars['String']['output'];
|
|
222489
|
+
durationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
222490
|
+
entityKey?: Maybe<Scalars['String']['output']>;
|
|
222491
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
222492
|
+
id: Scalars['ID']['output'];
|
|
222493
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
222494
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
222495
|
+
loomId?: Maybe<Scalars['String']['output']>;
|
|
222496
|
+
matchedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
222497
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
222498
|
+
permissionsSet?: Maybe<Array<Scalars['String']['output']>>;
|
|
222499
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
222500
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
222501
|
+
smartLinkAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
222502
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
222503
|
+
title: Scalars['String']['output'];
|
|
222504
|
+
type: SearchResultType;
|
|
222505
|
+
url: Scalars['String']['output'];
|
|
222506
|
+
};
|
|
221166
222507
|
export type SearchResultMercuryAsk = SearchResult & {
|
|
221167
222508
|
__typename?: 'SearchResultMercuryAsk';
|
|
221168
222509
|
ask?: Maybe<MercuryAsk>;
|
|
@@ -224434,6 +225775,10 @@ export declare enum SortDirection {
|
|
|
224434
225775
|
Asc = "ASC",
|
|
224435
225776
|
Desc = "DESC"
|
|
224436
225777
|
}
|
|
225778
|
+
export declare enum SortDirectionInstallations {
|
|
225779
|
+
Asc = "ASC",
|
|
225780
|
+
Desc = "DESC"
|
|
225781
|
+
}
|
|
224437
225782
|
export declare enum SortOrder {
|
|
224438
225783
|
Asc = "ASC",
|
|
224439
225784
|
Desc = "DESC"
|
|
@@ -230852,7 +232197,7 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
230852
232197
|
Create = "CREATE"
|
|
230853
232198
|
}
|
|
230854
232199
|
export type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
230855
|
-
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
232200
|
+
export type TownsquareActivityChange = TownsquareEditorsAddedChange | TownsquareEditorsRemovedChange | TownsquareFollowersAddedChange | TownsquareFollowersRemovedChange | TownsquareGoalArchivedChange | TownsquareGoalCreatedChange | TownsquareGoalOwnerUpdatedChange | TownsquareGoalProgressTypeChange | TownsquareGoalRenamedChange | TownsquareGoalRestoredChange | TownsquareMetricTargetCreatedChange | TownsquareMetricTargetDeletedChange | TownsquareMetricTargetPeriodsChange | TownsquareMetricTargetUpdatedChange | TownsquareMetricValueCreatedChange | TownsquareMetricValueDeletedChange | TownsquareMetricValueUpdatedChange | TownsquareStartDateAddedChange | TownsquareStartDateEditedChange | TownsquareTargetDateAddedChange | TownsquareTargetDateEditedChange | TownsquareUpdateDeletedChange;
|
|
230856
232201
|
export type TownsquareActivityItem = {
|
|
230857
232202
|
__typename?: 'TownsquareActivityItem';
|
|
230858
232203
|
actor?: Maybe<User>;
|
|
@@ -232937,6 +234282,22 @@ export type TownsquareMetricTargetConnection = {
|
|
|
232937
234282
|
edges?: Maybe<Array<Maybe<TownsquareMetricTargetEdge>>>;
|
|
232938
234283
|
pageInfo: PageInfo;
|
|
232939
234284
|
};
|
|
234285
|
+
export type TownsquareMetricTargetCreatedChange = {
|
|
234286
|
+
__typename?: 'TownsquareMetricTargetCreatedChange';
|
|
234287
|
+
metricName?: Maybe<Scalars['String']['output']>;
|
|
234288
|
+
metricSubType?: Maybe<Scalars['String']['output']>;
|
|
234289
|
+
metricType?: Maybe<TownsquareMetricType>;
|
|
234290
|
+
startValue?: Maybe<Scalars['Float']['output']>;
|
|
234291
|
+
targetValue?: Maybe<Scalars['Float']['output']>;
|
|
234292
|
+
};
|
|
234293
|
+
export type TownsquareMetricTargetDeletedChange = {
|
|
234294
|
+
__typename?: 'TownsquareMetricTargetDeletedChange';
|
|
234295
|
+
metricName?: Maybe<Scalars['String']['output']>;
|
|
234296
|
+
metricSubType?: Maybe<Scalars['String']['output']>;
|
|
234297
|
+
metricType?: Maybe<TownsquareMetricType>;
|
|
234298
|
+
startValue?: Maybe<Scalars['Float']['output']>;
|
|
234299
|
+
targetValue?: Maybe<Scalars['Float']['output']>;
|
|
234300
|
+
};
|
|
232940
234301
|
export type TownsquareMetricTargetEdge = {
|
|
232941
234302
|
__typename?: 'TownsquareMetricTargetEdge';
|
|
232942
234303
|
cursor: Scalars['String']['output'];
|
|
@@ -232990,6 +234351,16 @@ export type TownsquareMetricTargetToMetricValueEdge = {
|
|
|
232990
234351
|
node?: Maybe<TownsquareMetricValue>;
|
|
232991
234352
|
variance?: Maybe<Scalars['Float']['output']>;
|
|
232992
234353
|
};
|
|
234354
|
+
export type TownsquareMetricTargetUpdatedChange = {
|
|
234355
|
+
__typename?: 'TownsquareMetricTargetUpdatedChange';
|
|
234356
|
+
metricName?: Maybe<Scalars['String']['output']>;
|
|
234357
|
+
metricSubType?: Maybe<Scalars['String']['output']>;
|
|
234358
|
+
metricType?: Maybe<TownsquareMetricType>;
|
|
234359
|
+
newStartValue?: Maybe<Scalars['Float']['output']>;
|
|
234360
|
+
newTargetValue?: Maybe<Scalars['Float']['output']>;
|
|
234361
|
+
oldStartValue?: Maybe<Scalars['Float']['output']>;
|
|
234362
|
+
oldTargetValue?: Maybe<Scalars['Float']['output']>;
|
|
234363
|
+
};
|
|
232993
234364
|
export declare enum TownsquareMetricType {
|
|
232994
234365
|
Currency = "CURRENCY",
|
|
232995
234366
|
Numeric = "NUMERIC",
|
|
@@ -234868,6 +236239,11 @@ export type TownsquareThemeUrIs = {
|
|
|
234868
236239
|
light?: Maybe<Scalars['String']['output']>;
|
|
234869
236240
|
transparent?: Maybe<Scalars['String']['output']>;
|
|
234870
236241
|
};
|
|
236242
|
+
export declare enum TownsquareTrackViewEvent {
|
|
236243
|
+
Direct = "DIRECT",
|
|
236244
|
+
Indirect = "INDIRECT",
|
|
236245
|
+
Skip = "SKIP"
|
|
236246
|
+
}
|
|
234871
236247
|
export declare enum TownsquareUnshardedAccessControlCapability {
|
|
234872
236248
|
Access = "ACCESS",
|
|
234873
236249
|
Administer = "ADMINISTER",
|
|
@@ -236607,6 +237983,11 @@ export type TrelloBoardWorkspaceUpdated = {
|
|
|
236607
237983
|
id?: Maybe<Scalars['ID']['output']>;
|
|
236608
237984
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
236609
237985
|
};
|
|
237986
|
+
export type TrelloBulkCreateCardInListInput = {
|
|
237987
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
237988
|
+
due?: InputMaybe<Scalars['DateTime']['input']>;
|
|
237989
|
+
name: Scalars['String']['input'];
|
|
237990
|
+
};
|
|
236610
237991
|
export type TrelloBulkCreateCardInput = {
|
|
236611
237992
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
236612
237993
|
due?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -236614,6 +237995,24 @@ export type TrelloBulkCreateCardInput = {
|
|
|
236614
237995
|
name: Scalars['String']['input'];
|
|
236615
237996
|
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
236616
237997
|
};
|
|
237998
|
+
export type TrelloBulkCreateCardsInListFailedCard = {
|
|
237999
|
+
__typename?: 'TrelloBulkCreateCardsInListFailedCard';
|
|
238000
|
+
errors: Array<MutationError>;
|
|
238001
|
+
inputIndex: Scalars['Int']['output'];
|
|
238002
|
+
name: Scalars['String']['output'];
|
|
238003
|
+
};
|
|
238004
|
+
export type TrelloBulkCreateCardsInListInput = {
|
|
238005
|
+
cards: Array<TrelloBulkCreateCardInListInput>;
|
|
238006
|
+
listId: Scalars['ID']['input'];
|
|
238007
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
238008
|
+
};
|
|
238009
|
+
export type TrelloBulkCreateCardsInListPayload = Payload & {
|
|
238010
|
+
__typename?: 'TrelloBulkCreateCardsInListPayload';
|
|
238011
|
+
cards?: Maybe<Array<TrelloBaseCard>>;
|
|
238012
|
+
errors?: Maybe<Array<MutationError>>;
|
|
238013
|
+
failedCards: Array<TrelloBulkCreateCardsInListFailedCard>;
|
|
238014
|
+
success: Scalars['Boolean']['output'];
|
|
238015
|
+
};
|
|
236617
238016
|
export type TrelloBulkCreateCardsInput = {
|
|
236618
238017
|
cards: Array<TrelloBulkCreateCardInput>;
|
|
236619
238018
|
};
|
|
@@ -237898,6 +239297,12 @@ export type TrelloCustomFieldItemValueInfo = {
|
|
|
237898
239297
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
237899
239298
|
text?: Maybe<Scalars['String']['output']>;
|
|
237900
239299
|
};
|
|
239300
|
+
export type TrelloCustomFieldItemValueInput = {
|
|
239301
|
+
checked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
239302
|
+
date?: InputMaybe<Scalars['String']['input']>;
|
|
239303
|
+
number?: InputMaybe<Scalars['String']['input']>;
|
|
239304
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
239305
|
+
};
|
|
237901
239306
|
export type TrelloCustomFieldOption = {
|
|
237902
239307
|
__typename?: 'TrelloCustomFieldOption';
|
|
237903
239308
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -238004,6 +239409,15 @@ export type TrelloDeleteCustomFieldPayload = Payload & {
|
|
|
238004
239409
|
errors?: Maybe<Array<MutationError>>;
|
|
238005
239410
|
success: Scalars['Boolean']['output'];
|
|
238006
239411
|
};
|
|
239412
|
+
export type TrelloDeleteLabelInput = {
|
|
239413
|
+
id: Scalars['ID']['input'];
|
|
239414
|
+
};
|
|
239415
|
+
export type TrelloDeleteLabelPayload = Payload & {
|
|
239416
|
+
__typename?: 'TrelloDeleteLabelPayload';
|
|
239417
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239418
|
+
label?: Maybe<TrelloLabelDeleted>;
|
|
239419
|
+
success: Scalars['Boolean']['output'];
|
|
239420
|
+
};
|
|
238007
239421
|
export type TrelloDeletePlannerCalendarEventInput = {
|
|
238008
239422
|
plannerCalendarEventId: Scalars['ID']['input'];
|
|
238009
239423
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -238261,6 +239675,17 @@ export type TrelloGenerateCheckItemsForCardPayload = {
|
|
|
238261
239675
|
errors?: Maybe<Array<MutationError>>;
|
|
238262
239676
|
success: Scalars['Boolean']['output'];
|
|
238263
239677
|
};
|
|
239678
|
+
export type TrelloGenerateEmbeddingsInput = {
|
|
239679
|
+
dimensions: Scalars['Int']['input'];
|
|
239680
|
+
inputs: Array<Scalars['String']['input']>;
|
|
239681
|
+
modelId: Scalars['String']['input'];
|
|
239682
|
+
};
|
|
239683
|
+
export type TrelloGenerateEmbeddingsPayload = Payload & {
|
|
239684
|
+
__typename?: 'TrelloGenerateEmbeddingsPayload';
|
|
239685
|
+
embeddings?: Maybe<Array<Array<Scalars['Float']['output']>>>;
|
|
239686
|
+
errors?: Maybe<Array<MutationError>>;
|
|
239687
|
+
success: Scalars['Boolean']['output'];
|
|
239688
|
+
};
|
|
238264
239689
|
export type TrelloHideCardCoversOnCardFrontInput = {
|
|
238265
239690
|
boardId: Scalars['ID']['input'];
|
|
238266
239691
|
};
|
|
@@ -239307,6 +240732,7 @@ export type TrelloMutationApi = {
|
|
|
239307
240732
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
239308
240733
|
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
239309
240734
|
bulkCreateCards?: Maybe<TrelloBulkCreateCardsPayload>;
|
|
240735
|
+
bulkCreateCardsInList?: Maybe<TrelloBulkCreateCardsInListPayload>;
|
|
239310
240736
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
239311
240737
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
239312
240738
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
@@ -239341,6 +240767,7 @@ export type TrelloMutationApi = {
|
|
|
239341
240767
|
deleteChecklist?: Maybe<TrelloDeleteChecklistPayload>;
|
|
239342
240768
|
deleteCustomField?: Maybe<TrelloDeleteCustomFieldPayload>;
|
|
239343
240769
|
deleteCustomFieldOption?: Maybe<TrelloDeleteCustomFieldOptionPayload>;
|
|
240770
|
+
deleteLabel?: Maybe<TrelloDeleteLabelPayload>;
|
|
239344
240771
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
239345
240772
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
239346
240773
|
disableBoardSelfJoin?: Maybe<TrelloDisableBoardSelfJoinPayload>;
|
|
@@ -239356,6 +240783,7 @@ export type TrelloMutationApi = {
|
|
|
239356
240783
|
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
239357
240784
|
generateCardSummary?: Maybe<TrelloGenerateCardSummaryPayload>;
|
|
239358
240785
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
240786
|
+
generateEmbeddings?: Maybe<TrelloGenerateEmbeddingsPayload>;
|
|
239359
240787
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
239360
240788
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
239361
240789
|
initializeMemberAiPreference?: Maybe<TrelloInitializeMemberAiPreferencePayload>;
|
|
@@ -239393,6 +240821,7 @@ export type TrelloMutationApi = {
|
|
|
239393
240821
|
sendInboxEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
239394
240822
|
setAiPromptInterjectionOverrides?: Maybe<TrelloSetAiPromptInterjectionOverridesPayload>;
|
|
239395
240823
|
setBoardBackgroundFromImageUrl?: Maybe<TrelloSetBoardBackgroundFromImageUrlPayload>;
|
|
240824
|
+
setCardCustomFieldValue?: Maybe<TrelloSetCardCustomFieldValuePayload>;
|
|
239396
240825
|
setPlannerBoardOverride?: Maybe<TrelloSetPlannerBoardOverridePayload>;
|
|
239397
240826
|
showCardCoversOnCardFront?: Maybe<TrelloShowCardCoversOnCardFrontPayload>;
|
|
239398
240827
|
showVotesOnBoard?: Maybe<TrelloShowVotesOnBoardPayload>;
|
|
@@ -239445,6 +240874,7 @@ export type TrelloMutationApi = {
|
|
|
239445
240874
|
updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
|
|
239446
240875
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
239447
240876
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
240877
|
+
updateLabel?: Maybe<TrelloUpdateLabelPayload>;
|
|
239448
240878
|
updateListName?: Maybe<TrelloUpdateListPayload>;
|
|
239449
240879
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
239450
240880
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
@@ -239491,6 +240921,9 @@ export type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
|
|
|
239491
240921
|
export type TrelloMutationApiBulkCreateCardsArgs = {
|
|
239492
240922
|
input: TrelloBulkCreateCardsInput;
|
|
239493
240923
|
};
|
|
240924
|
+
export type TrelloMutationApiBulkCreateCardsInListArgs = {
|
|
240925
|
+
input: TrelloBulkCreateCardsInListInput;
|
|
240926
|
+
};
|
|
239494
240927
|
export type TrelloMutationApiBulkDeleteListArgs = {
|
|
239495
240928
|
input: TrelloBulkDeleteListInput;
|
|
239496
240929
|
};
|
|
@@ -239593,6 +241026,9 @@ export type TrelloMutationApiDeleteCustomFieldArgs = {
|
|
|
239593
241026
|
export type TrelloMutationApiDeleteCustomFieldOptionArgs = {
|
|
239594
241027
|
input: TrelloDeleteCustomFieldOptionInput;
|
|
239595
241028
|
};
|
|
241029
|
+
export type TrelloMutationApiDeleteLabelArgs = {
|
|
241030
|
+
input: TrelloDeleteLabelInput;
|
|
241031
|
+
};
|
|
239596
241032
|
export type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
239597
241033
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
239598
241034
|
};
|
|
@@ -239638,6 +241074,9 @@ export type TrelloMutationApiGenerateCardSummaryArgs = {
|
|
|
239638
241074
|
export type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
239639
241075
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
239640
241076
|
};
|
|
241077
|
+
export type TrelloMutationApiGenerateEmbeddingsArgs = {
|
|
241078
|
+
input: TrelloGenerateEmbeddingsInput;
|
|
241079
|
+
};
|
|
239641
241080
|
export type TrelloMutationApiHideCardCoversOnCardFrontArgs = {
|
|
239642
241081
|
input: TrelloHideCardCoversOnCardFrontInput;
|
|
239643
241082
|
};
|
|
@@ -239740,6 +241179,9 @@ export type TrelloMutationApiSetAiPromptInterjectionOverridesArgs = {
|
|
|
239740
241179
|
export type TrelloMutationApiSetBoardBackgroundFromImageUrlArgs = {
|
|
239741
241180
|
input: TrelloSetBoardBackgroundFromImageUrlInput;
|
|
239742
241181
|
};
|
|
241182
|
+
export type TrelloMutationApiSetCardCustomFieldValueArgs = {
|
|
241183
|
+
input: TrelloSetCardCustomFieldValueInput;
|
|
241184
|
+
};
|
|
239743
241185
|
export type TrelloMutationApiSetPlannerBoardOverrideArgs = {
|
|
239744
241186
|
input: TrelloSetPlannerBoardOverrideInput;
|
|
239745
241187
|
};
|
|
@@ -239896,6 +241338,9 @@ export type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
|
239896
241338
|
export type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
239897
241339
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
239898
241340
|
};
|
|
241341
|
+
export type TrelloMutationApiUpdateLabelArgs = {
|
|
241342
|
+
input: TrelloUpdateLabelInput;
|
|
241343
|
+
};
|
|
239899
241344
|
export type TrelloMutationApiUpdateListNameArgs = {
|
|
239900
241345
|
input: TrelloUpdateListNameInput;
|
|
239901
241346
|
};
|
|
@@ -241409,6 +242854,18 @@ export type TrelloSetBoardBackgroundFromImageUrlPayload = Payload & {
|
|
|
241409
242854
|
errors?: Maybe<Array<MutationError>>;
|
|
241410
242855
|
success: Scalars['Boolean']['output'];
|
|
241411
242856
|
};
|
|
242857
|
+
export type TrelloSetCardCustomFieldValueInput = {
|
|
242858
|
+
cardId: Scalars['ID']['input'];
|
|
242859
|
+
customFieldId: Scalars['ID']['input'];
|
|
242860
|
+
value?: InputMaybe<TrelloCustomFieldItemValueInput>;
|
|
242861
|
+
valueId?: InputMaybe<Scalars['ID']['input']>;
|
|
242862
|
+
};
|
|
242863
|
+
export type TrelloSetCardCustomFieldValuePayload = Payload & {
|
|
242864
|
+
__typename?: 'TrelloSetCardCustomFieldValuePayload';
|
|
242865
|
+
customFieldItem?: Maybe<TrelloCustomFieldItem>;
|
|
242866
|
+
errors?: Maybe<Array<MutationError>>;
|
|
242867
|
+
success: Scalars['Boolean']['output'];
|
|
242868
|
+
};
|
|
241412
242869
|
export type TrelloSetPlannerBoardOverrideInput = {
|
|
241413
242870
|
boardId: Scalars['ID']['input'];
|
|
241414
242871
|
mode: TrelloPlannerBoardFilterMode;
|
|
@@ -242245,6 +243702,17 @@ export type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
242245
243702
|
errors?: Maybe<Array<MutationError>>;
|
|
242246
243703
|
success: Scalars['Boolean']['output'];
|
|
242247
243704
|
};
|
|
243705
|
+
export type TrelloUpdateLabelInput = {
|
|
243706
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
243707
|
+
id: Scalars['ID']['input'];
|
|
243708
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
243709
|
+
};
|
|
243710
|
+
export type TrelloUpdateLabelPayload = Payload & {
|
|
243711
|
+
__typename?: 'TrelloUpdateLabelPayload';
|
|
243712
|
+
errors?: Maybe<Array<MutationError>>;
|
|
243713
|
+
label?: Maybe<TrelloLabel>;
|
|
243714
|
+
success: Scalars['Boolean']['output'];
|
|
243715
|
+
};
|
|
242248
243716
|
export type TrelloUpdateListNameInput = {
|
|
242249
243717
|
id: Scalars['ID']['input'];
|
|
242250
243718
|
name: Scalars['String']['input'];
|
|
@@ -246352,6 +247820,7 @@ export type WebTriggerUrlInput = {
|
|
|
246352
247820
|
appId: Scalars['ID']['input'];
|
|
246353
247821
|
contextId: Scalars['ID']['input'];
|
|
246354
247822
|
envId: Scalars['ID']['input'];
|
|
247823
|
+
noKeyExpiry?: InputMaybe<Scalars['Boolean']['input']>;
|
|
246355
247824
|
secretKey?: InputMaybe<Scalars['String']['input']>;
|
|
246356
247825
|
triggerKey: Scalars['String']['input'];
|
|
246357
247826
|
};
|