@forge/cli-shared 9.4.0-next.3 → 9.4.0-next.4-experimental-016ed9d
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 +21 -0
- package/out/apps/template-module.d.ts.map +1 -1
- package/out/apps/template-module.js +4 -5
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +4 -10
- package/out/graphql/graphql-types.d.ts +374 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +145 -48
- package/out/graphql/minimal-graphql-runner.d.ts +1 -2
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/http-client/feedback-post-client.d.ts +0 -1
- package/out/http-client/feedback-post-client.d.ts.map +1 -1
- package/out/http-client/feedback-post-client.js +1 -3
- package/out/http-client/file-uploader.d.ts.map +1 -1
- package/out/http-client/file-uploader.js +8 -7
- package/out/http-client/global-edge-http-client.d.ts +0 -1
- package/out/http-client/global-edge-http-client.d.ts.map +1 -1
- package/out/http-client/index.d.ts +1 -0
- package/out/http-client/index.d.ts.map +1 -1
- package/out/http-client/index.js +1 -0
- package/out/http-client/node-request.d.ts +10 -0
- package/out/http-client/node-request.d.ts.map +1 -0
- package/out/http-client/node-request.js +57 -0
- package/out/http-client/trace.d.ts +3 -2
- package/out/http-client/trace.d.ts.map +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +2 -4
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +30 -4
- package/package.json +3 -5
|
@@ -4244,6 +4244,11 @@ export type AdminAuditLogUpdateBackgroundQueryInput = {
|
|
|
4244
4244
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4245
4245
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4246
4246
|
};
|
|
4247
|
+
export type AdminAuditLogUserProfilesInput = {
|
|
4248
|
+
container: AdminAuditLogContainer;
|
|
4249
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
4250
|
+
viewerId: Scalars['ID']['input'];
|
|
4251
|
+
};
|
|
4247
4252
|
export type AdminAuthPolicyConfig = {
|
|
4248
4253
|
__typename?: 'AdminAuthPolicyConfig';
|
|
4249
4254
|
apiToken?: Maybe<AdminApiTokenConfig>;
|
|
@@ -10166,6 +10171,7 @@ export type AiPlannerPlanCollaboratorConnection = {
|
|
|
10166
10171
|
__typename?: 'AiPlannerPlanCollaboratorConnection';
|
|
10167
10172
|
edges: Array<AiPlannerPlanCollaboratorEdge>;
|
|
10168
10173
|
pageInfo: PageInfo;
|
|
10174
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10169
10175
|
};
|
|
10170
10176
|
export type AiPlannerPlanCollaboratorEdge = {
|
|
10171
10177
|
__typename?: 'AiPlannerPlanCollaboratorEdge';
|
|
@@ -10176,6 +10182,7 @@ export type AiPlannerPlanConnection = {
|
|
|
10176
10182
|
__typename?: 'AiPlannerPlanConnection';
|
|
10177
10183
|
edges: Array<AiPlannerPlanEdge>;
|
|
10178
10184
|
pageInfo: PageInfo;
|
|
10185
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10179
10186
|
};
|
|
10180
10187
|
export type AiPlannerPlanConversation = {
|
|
10181
10188
|
__typename?: 'AiPlannerPlanConversation';
|
|
@@ -10189,6 +10196,7 @@ export type AiPlannerPlanConversationConnection = {
|
|
|
10189
10196
|
__typename?: 'AiPlannerPlanConversationConnection';
|
|
10190
10197
|
edges: Array<AiPlannerPlanConversationEdge>;
|
|
10191
10198
|
pageInfo: PageInfo;
|
|
10199
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10192
10200
|
};
|
|
10193
10201
|
export type AiPlannerPlanConversationEdge = {
|
|
10194
10202
|
__typename?: 'AiPlannerPlanConversationEdge';
|
|
@@ -10224,6 +10232,7 @@ export type AiPlannerPlanTaskConnection = {
|
|
|
10224
10232
|
__typename?: 'AiPlannerPlanTaskConnection';
|
|
10225
10233
|
edges: Array<AiPlannerPlanTaskEdge>;
|
|
10226
10234
|
pageInfo: PageInfo;
|
|
10235
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
10227
10236
|
};
|
|
10228
10237
|
export type AiPlannerPlanTaskEdge = {
|
|
10229
10238
|
__typename?: 'AiPlannerPlanTaskEdge';
|
|
@@ -10709,6 +10718,9 @@ export type AppEnvironmentAppVersionRolloutsArgs = {
|
|
|
10709
10718
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10710
10719
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
10711
10720
|
};
|
|
10721
|
+
export type AppEnvironmentDeploymentsArgs = {
|
|
10722
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
10723
|
+
};
|
|
10712
10724
|
export type AppEnvironmentVersionsArgs = {
|
|
10713
10725
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10714
10726
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -15700,6 +15712,13 @@ export type AssetsVerticalDepreciationRuleQueryErrorExtension = QueryErrorExtens
|
|
|
15700
15712
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15701
15713
|
};
|
|
15702
15714
|
export type AssetsVerticalDepreciationRuleResult = AssetsVerticalDepreciationRule | QueryError;
|
|
15715
|
+
export declare enum AssetsVerticalDepreciationRulesSortField {
|
|
15716
|
+
Name = "NAME"
|
|
15717
|
+
}
|
|
15718
|
+
export type AssetsVerticalDepreciationRulesSortInput = {
|
|
15719
|
+
direction?: SortDirection;
|
|
15720
|
+
field: AssetsVerticalDepreciationRulesSortField;
|
|
15721
|
+
};
|
|
15703
15722
|
export type AssetsVerticalDisableVerticalInstantiationInput = {
|
|
15704
15723
|
cloudId: Scalars['ID']['input'];
|
|
15705
15724
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16357,6 +16376,8 @@ export type AssetsVerticalVerticalInstantiationDepreciationRulesArgs = {
|
|
|
16357
16376
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16358
16377
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16359
16378
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16379
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
16380
|
+
sort?: InputMaybe<AssetsVerticalDepreciationRulesSortInput>;
|
|
16360
16381
|
};
|
|
16361
16382
|
export type AssetsVerticalVerticalInstantiationCategory = {
|
|
16362
16383
|
__typename?: 'AssetsVerticalVerticalInstantiationCategory';
|
|
@@ -21325,6 +21346,40 @@ export type CommerceExpAccountModification = {
|
|
|
21325
21346
|
invoiceGroup?: Maybe<CommerceExpCcpInvoiceGroup>;
|
|
21326
21347
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
21327
21348
|
};
|
|
21349
|
+
export type CommerceExpAccruedChargeBreakdown = {
|
|
21350
|
+
__typename?: 'CommerceExpAccruedChargeBreakdown';
|
|
21351
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
21352
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
21353
|
+
discount?: Maybe<Scalars['Float']['output']>;
|
|
21354
|
+
events: Array<CommerceExpAccruedChargeEvent>;
|
|
21355
|
+
listPrice?: Maybe<Scalars['Float']['output']>;
|
|
21356
|
+
periodEnd?: Maybe<Scalars['Float']['output']>;
|
|
21357
|
+
periodStart?: Maybe<Scalars['Float']['output']>;
|
|
21358
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
21359
|
+
};
|
|
21360
|
+
export type CommerceExpAccruedChargeComponent = {
|
|
21361
|
+
__typename?: 'CommerceExpAccruedChargeComponent';
|
|
21362
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
21363
|
+
discount?: Maybe<Scalars['Float']['output']>;
|
|
21364
|
+
listPrice?: Maybe<Scalars['Float']['output']>;
|
|
21365
|
+
type: CommerceExpAccruedChargeComponentType;
|
|
21366
|
+
};
|
|
21367
|
+
export declare enum CommerceExpAccruedChargeComponentType {
|
|
21368
|
+
AdditionalCharge = "ADDITIONAL_CHARGE",
|
|
21369
|
+
Credit = "CREDIT"
|
|
21370
|
+
}
|
|
21371
|
+
export type CommerceExpAccruedChargeEvent = {
|
|
21372
|
+
__typename?: 'CommerceExpAccruedChargeEvent';
|
|
21373
|
+
amount?: Maybe<Scalars['Float']['output']>;
|
|
21374
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
21375
|
+
components: Array<CommerceExpAccruedChargeComponent>;
|
|
21376
|
+
discount?: Maybe<Scalars['Float']['output']>;
|
|
21377
|
+
id: Scalars['ID']['output'];
|
|
21378
|
+
listPrice?: Maybe<Scalars['Float']['output']>;
|
|
21379
|
+
periodEnd?: Maybe<Scalars['Float']['output']>;
|
|
21380
|
+
periodStart?: Maybe<Scalars['Float']['output']>;
|
|
21381
|
+
quantity?: Maybe<Scalars['Float']['output']>;
|
|
21382
|
+
};
|
|
21328
21383
|
export type CommerceExpAchInfo = {
|
|
21329
21384
|
__typename?: 'CommerceExpAchInfo';
|
|
21330
21385
|
accountHolder: Scalars['String']['output'];
|
|
@@ -21401,7 +21456,8 @@ export type CommerceExpAggregationPeriodBoundaryUsage = {
|
|
|
21401
21456
|
};
|
|
21402
21457
|
export declare enum CommerceExpAllowanceCycle {
|
|
21403
21458
|
Annual = "ANNUAL",
|
|
21404
|
-
Monthly = "MONTHLY"
|
|
21459
|
+
Monthly = "MONTHLY",
|
|
21460
|
+
Quarterly = "QUARTERLY"
|
|
21405
21461
|
}
|
|
21406
21462
|
export type CommerceExpAllowanceDetails = {
|
|
21407
21463
|
__typename?: 'CommerceExpAllowanceDetails';
|
|
@@ -23699,6 +23755,7 @@ export type CommerceExpLineItemEndsAt = {
|
|
|
23699
23755
|
};
|
|
23700
23756
|
export type CommerceExpLineItemResponse = {
|
|
23701
23757
|
__typename?: 'CommerceExpLineItemResponse';
|
|
23758
|
+
accruedChargeBreakdown?: Maybe<CommerceExpAccruedChargeBreakdown>;
|
|
23702
23759
|
accumulateAccruedCharges?: Maybe<Scalars['Float']['output']>;
|
|
23703
23760
|
adjustments?: Maybe<Array<Maybe<CommerceExpAdjustmentDetail>>>;
|
|
23704
23761
|
billableUsage?: Maybe<Scalars['Float']['output']>;
|
|
@@ -24278,7 +24335,8 @@ export declare enum CommerceExpPaymentMethodType {
|
|
|
24278
24335
|
Ach = "ACH",
|
|
24279
24336
|
Card = "CARD",
|
|
24280
24337
|
Deferred = "DEFERRED",
|
|
24281
|
-
Paypal = "PAYPAL"
|
|
24338
|
+
Paypal = "PAYPAL",
|
|
24339
|
+
Wallet = "WALLET"
|
|
24282
24340
|
}
|
|
24283
24341
|
export type CommerceExpPaymentStatus = {
|
|
24284
24342
|
__typename?: 'CommerceExpPaymentStatus';
|
|
@@ -34802,6 +34860,17 @@ export type ConfluencePatchCalendarPayload = Payload & {
|
|
|
34802
34860
|
errors?: Maybe<Array<MutationError>>;
|
|
34803
34861
|
success: Scalars['Boolean']['output'];
|
|
34804
34862
|
};
|
|
34863
|
+
export type ConfluencePatchFolderInput = {
|
|
34864
|
+
expectedVersion: Scalars['Int']['input'];
|
|
34865
|
+
id: Scalars['ID']['input'];
|
|
34866
|
+
summary?: InputMaybe<ConfluenceContentBodyInput>;
|
|
34867
|
+
};
|
|
34868
|
+
export type ConfluencePatchFolderPayload = Payload & {
|
|
34869
|
+
__typename?: 'ConfluencePatchFolderPayload';
|
|
34870
|
+
errors?: Maybe<Array<MutationError>>;
|
|
34871
|
+
folder?: Maybe<ConfluenceFolder>;
|
|
34872
|
+
success: Scalars['Boolean']['output'];
|
|
34873
|
+
};
|
|
34805
34874
|
export type ConfluencePatchSpaceSettingsInput = {
|
|
34806
34875
|
contentMode?: InputMaybe<ConfluenceGraphQlContentMode>;
|
|
34807
34876
|
id: Scalars['ID']['input'];
|
|
@@ -36390,6 +36459,11 @@ export type ConfluenceSlideLinks = {
|
|
|
36390
36459
|
base?: Maybe<Scalars['String']['output']>;
|
|
36391
36460
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
36392
36461
|
};
|
|
36462
|
+
export declare enum ConfluenceSmartFolderSyncOutcome {
|
|
36463
|
+
Ran = "RAN",
|
|
36464
|
+
SkippedPaused = "SKIPPED_PAUSED",
|
|
36465
|
+
SkippedTtl = "SKIPPED_TTL"
|
|
36466
|
+
}
|
|
36393
36467
|
export type ConfluenceSmartSpaceOverview = {
|
|
36394
36468
|
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
36395
36469
|
faq?: Maybe<ConfluenceSmartSpaceOverviewFaq>;
|
|
@@ -36833,9 +36907,17 @@ export type ConfluenceSyncSmartFolderInput = {
|
|
|
36833
36907
|
export type ConfluenceSyncSmartFolderPayload = Payload & {
|
|
36834
36908
|
__typename?: 'ConfluenceSyncSmartFolderPayload';
|
|
36835
36909
|
errors?: Maybe<Array<MutationError>>;
|
|
36910
|
+
outcome?: Maybe<ConfluenceSmartFolderSyncOutcome>;
|
|
36836
36911
|
success: Scalars['Boolean']['output'];
|
|
36912
|
+
syncResult?: Maybe<ConfluenceSyncSmartFolderResult>;
|
|
36837
36913
|
taskAri?: Maybe<Scalars['ID']['output']>;
|
|
36838
36914
|
};
|
|
36915
|
+
export type ConfluenceSyncSmartFolderResult = {
|
|
36916
|
+
__typename?: 'ConfluenceSyncSmartFolderResult';
|
|
36917
|
+
addedCount: Scalars['Int']['output'];
|
|
36918
|
+
changedCount: Scalars['Int']['output'];
|
|
36919
|
+
removedCount: Scalars['Int']['output'];
|
|
36920
|
+
};
|
|
36839
36921
|
export declare enum ConfluenceSystemOperation {
|
|
36840
36922
|
CompanyHubAdmin = "COMPANY_HUB_ADMIN",
|
|
36841
36923
|
CompanyHubViewer = "COMPANY_HUB_VIEWER",
|
|
@@ -39774,6 +39856,11 @@ export type CplsAtlasProjectRecommendation = {
|
|
|
39774
39856
|
atlasProject?: Maybe<TownsquareProject>;
|
|
39775
39857
|
atlasProjectId: Scalars['ID']['output'];
|
|
39776
39858
|
};
|
|
39859
|
+
export type CplsCapacityPlan = {
|
|
39860
|
+
__typename?: 'CplsCapacityPlan';
|
|
39861
|
+
id: Scalars['ID']['output'];
|
|
39862
|
+
scopeId?: Maybe<Scalars['ID']['output']>;
|
|
39863
|
+
};
|
|
39777
39864
|
export type CplsCapacityPlanningPeopleView = {
|
|
39778
39865
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
39779
39866
|
contributor?: Maybe<CplsContributor>;
|
|
@@ -40371,6 +40458,7 @@ export type CplsTimeCell = {
|
|
|
40371
40458
|
startDate: Scalars['Date']['output'];
|
|
40372
40459
|
};
|
|
40373
40460
|
export declare enum CplsTimeScaleType {
|
|
40461
|
+
Monthly = "MONTHLY",
|
|
40374
40462
|
Weekly = "WEEKLY"
|
|
40375
40463
|
}
|
|
40376
40464
|
export type CplsUpdateCustomContributionTargetInput = {
|
|
@@ -40405,6 +40493,7 @@ export type CplsUpdateViewSettingsPayload = Payload & {
|
|
|
40405
40493
|
};
|
|
40406
40494
|
export type CplsUpdateWorkResourcingEstimate = {
|
|
40407
40495
|
cloudId: Scalars['ID']['input'];
|
|
40496
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
40408
40497
|
workDataId: Scalars['ID']['input'];
|
|
40409
40498
|
workResourcingEstimateHours: Scalars['Float']['input'];
|
|
40410
40499
|
};
|
|
@@ -44002,6 +44091,7 @@ export declare enum DataSecurityPolicyAction {
|
|
|
44002
44091
|
AppAccess = "APP_ACCESS",
|
|
44003
44092
|
AppAccessConfigured = "APP_ACCESS_CONFIGURED",
|
|
44004
44093
|
AttachmentDownload = "ATTACHMENT_DOWNLOAD",
|
|
44094
|
+
McpAccess = "MCP_ACCESS",
|
|
44005
44095
|
PageExport = "PAGE_EXPORT",
|
|
44006
44096
|
PublicLinks = "PUBLIC_LINKS"
|
|
44007
44097
|
}
|
|
@@ -44840,6 +44930,15 @@ export declare enum DevAiAutodevNextDayOfWeek {
|
|
|
44840
44930
|
Tuesday = "TUESDAY",
|
|
44841
44931
|
Wednesday = "WEDNESDAY"
|
|
44842
44932
|
}
|
|
44933
|
+
export type DevAiAutodevNextDeleteSuggestedClassificationRepositoryInput = {
|
|
44934
|
+
cloudId: Scalars['ID']['input'];
|
|
44935
|
+
suggestedClassificationRepositoryId: Scalars['ID']['input'];
|
|
44936
|
+
};
|
|
44937
|
+
export type DevAiAutodevNextDeleteSuggestedClassificationRepositoryPayload = Payload & {
|
|
44938
|
+
__typename?: 'DevAiAutodevNextDeleteSuggestedClassificationRepositoryPayload';
|
|
44939
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44940
|
+
success: Scalars['Boolean']['output'];
|
|
44941
|
+
};
|
|
44843
44942
|
export type DevAiAutodevNextDeleteWorkstreamInput = {
|
|
44844
44943
|
cloudId: Scalars['ID']['input'];
|
|
44845
44944
|
workstreamId: Scalars['ID']['input'];
|
|
@@ -44976,6 +45075,16 @@ export type DevAiAutodevNextRemoveProjectsPayload = Payload & {
|
|
|
44976
45075
|
errors?: Maybe<Array<MutationError>>;
|
|
44977
45076
|
success: Scalars['Boolean']['output'];
|
|
44978
45077
|
};
|
|
45078
|
+
export type DevAiAutodevNextResetWorkItemClassificationInput = {
|
|
45079
|
+
cloudId: Scalars['ID']['input'];
|
|
45080
|
+
workItemId: Scalars['ID']['input'];
|
|
45081
|
+
};
|
|
45082
|
+
export type DevAiAutodevNextResetWorkItemClassificationPayload = Payload & {
|
|
45083
|
+
__typename?: 'DevAiAutodevNextResetWorkItemClassificationPayload';
|
|
45084
|
+
errors?: Maybe<Array<MutationError>>;
|
|
45085
|
+
success: Scalars['Boolean']['output'];
|
|
45086
|
+
workItem?: Maybe<DevAiAutodevNextWorkItem>;
|
|
45087
|
+
};
|
|
44979
45088
|
export type DevAiAutodevNextScanSchedule = {
|
|
44980
45089
|
__typename?: 'DevAiAutodevNextScanSchedule';
|
|
44981
45090
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
@@ -54897,11 +55006,6 @@ export type GraphIntegrationConsentInput = {
|
|
|
54897
55006
|
formUrlReferer: Scalars['URL']['input'];
|
|
54898
55007
|
source: Scalars['String']['input'];
|
|
54899
55008
|
};
|
|
54900
|
-
export type GraphIntegrationContainerRelationship = {
|
|
54901
|
-
__typename?: 'GraphIntegrationContainerRelationship';
|
|
54902
|
-
relationship: Scalars['String']['output'];
|
|
54903
|
-
type: Scalars['String']['output'];
|
|
54904
|
-
};
|
|
54905
55009
|
export type GraphIntegrationCreateConnectionPayload = Payload & {
|
|
54906
55010
|
__typename?: 'GraphIntegrationCreateConnectionPayload';
|
|
54907
55011
|
connectionId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -55073,11 +55177,9 @@ export type GraphIntegrationDataProvider = {
|
|
|
55073
55177
|
handledDomainName?: Maybe<Scalars['String']['output']>;
|
|
55074
55178
|
homeUrl?: Maybe<Scalars['String']['output']>;
|
|
55075
55179
|
id: Scalars['String']['output'];
|
|
55076
|
-
installationAri?: Maybe<Scalars['String']['output']>;
|
|
55077
55180
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
55078
55181
|
name?: Maybe<Scalars['String']['output']>;
|
|
55079
55182
|
namespace: GraphIntegrationProviderNamespace;
|
|
55080
|
-
projectContainerRelationships: Array<GraphIntegrationContainerRelationship>;
|
|
55081
55183
|
providerType: GraphIntegrationProviderType;
|
|
55082
55184
|
};
|
|
55083
55185
|
export type GraphIntegrationDeleteConnectionPayload = Payload & {
|
|
@@ -55097,14 +55199,7 @@ export type GraphIntegrationDeleteSkillInput = {
|
|
|
55097
55199
|
};
|
|
55098
55200
|
export type GraphIntegrationDetailedEntityType = {
|
|
55099
55201
|
__typename?: 'GraphIntegrationDetailedEntityType';
|
|
55100
|
-
|
|
55101
|
-
container?: Maybe<GraphIntegrationDetailedEntityTypeContainer>;
|
|
55102
|
-
name: GraphIntegrationProviderType;
|
|
55103
|
-
};
|
|
55104
|
-
export type GraphIntegrationDetailedEntityTypeContainer = {
|
|
55105
|
-
__typename?: 'GraphIntegrationDetailedEntityTypeContainer';
|
|
55106
|
-
ati: Scalars['String']['output'];
|
|
55107
|
-
name: GraphIntegrationProviderType;
|
|
55202
|
+
name: GraphIntegrationEntityType;
|
|
55108
55203
|
};
|
|
55109
55204
|
export type GraphIntegrationDirectoryFilterDimension = {
|
|
55110
55205
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
@@ -55146,6 +55241,44 @@ export declare enum GraphIntegrationDirectoryItemType {
|
|
|
55146
55241
|
PlatformSkill = "PLATFORM_SKILL",
|
|
55147
55242
|
Skill = "SKILL"
|
|
55148
55243
|
}
|
|
55244
|
+
export declare enum GraphIntegrationEntityType {
|
|
55245
|
+
Branch = "BRANCH",
|
|
55246
|
+
BuildInfo = "BUILD_INFO",
|
|
55247
|
+
CalendarEvent = "CALENDAR_EVENT",
|
|
55248
|
+
Campaign = "CAMPAIGN",
|
|
55249
|
+
Case = "CASE",
|
|
55250
|
+
Comment = "COMMENT",
|
|
55251
|
+
Commit = "COMMIT",
|
|
55252
|
+
Conversation = "CONVERSATION",
|
|
55253
|
+
CustomerContact = "CUSTOMER_CONTACT",
|
|
55254
|
+
CustomerOrganization = "CUSTOMER_ORGANIZATION",
|
|
55255
|
+
Dashboard = "DASHBOARD",
|
|
55256
|
+
DataTable = "DATA_TABLE",
|
|
55257
|
+
Deal = "DEAL",
|
|
55258
|
+
DeploymentInfo = "DEPLOYMENT_INFO",
|
|
55259
|
+
Design = "DESIGN",
|
|
55260
|
+
DevopsComponent = "DEVOPS_COMPONENT",
|
|
55261
|
+
Document = "DOCUMENT",
|
|
55262
|
+
FeatureFlag = "FEATURE_FLAG",
|
|
55263
|
+
Incident = "INCIDENT",
|
|
55264
|
+
Lead = "LEAD",
|
|
55265
|
+
Message = "MESSAGE",
|
|
55266
|
+
Organisation = "ORGANISATION",
|
|
55267
|
+
Position = "POSITION",
|
|
55268
|
+
PostIncidentReview = "POST_INCIDENT_REVIEW",
|
|
55269
|
+
Project = "PROJECT",
|
|
55270
|
+
PullRequest = "PULL_REQUEST",
|
|
55271
|
+
RemoteLink = "REMOTE_LINK",
|
|
55272
|
+
Repository = "REPOSITORY",
|
|
55273
|
+
ServicenowBusinessApp = "SERVICENOW_BUSINESS_APP",
|
|
55274
|
+
SoftwareService = "SOFTWARE_SERVICE",
|
|
55275
|
+
Space = "SPACE",
|
|
55276
|
+
User = "USER",
|
|
55277
|
+
Video = "VIDEO",
|
|
55278
|
+
Vulnerability = "VULNERABILITY",
|
|
55279
|
+
Worker = "WORKER",
|
|
55280
|
+
WorkItem = "WORK_ITEM"
|
|
55281
|
+
}
|
|
55149
55282
|
export type GraphIntegrationExternalProviderAction = {
|
|
55150
55283
|
__typename?: 'GraphIntegrationExternalProviderAction';
|
|
55151
55284
|
id: Scalars['String']['output'];
|
|
@@ -55219,6 +55352,7 @@ export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateNode = {
|
|
|
55219
55352
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
55220
55353
|
isInstalled: Scalars['Boolean']['output'];
|
|
55221
55354
|
serverUrl: Scalars['String']['output'];
|
|
55355
|
+
supportedAuthTypes: Array<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
|
|
55222
55356
|
templateId: Scalars['String']['output'];
|
|
55223
55357
|
};
|
|
55224
55358
|
export type GraphIntegrationMcpAdminManagementExtraInputEntry = {
|
|
@@ -55571,16 +55705,28 @@ export declare enum GraphIntegrationProviderNamespace {
|
|
|
55571
55705
|
}
|
|
55572
55706
|
export declare enum GraphIntegrationProviderType {
|
|
55573
55707
|
Builds = "BUILDS",
|
|
55708
|
+
Calendars = "CALENDARS",
|
|
55709
|
+
Comments = "COMMENTS",
|
|
55710
|
+
Conversations = "CONVERSATIONS",
|
|
55711
|
+
Crms = "CRMS",
|
|
55712
|
+
Dashboards = "DASHBOARDS",
|
|
55713
|
+
DataTables = "DATA_TABLES",
|
|
55574
55714
|
Deployments = "DEPLOYMENTS",
|
|
55575
55715
|
Designs = "DESIGNS",
|
|
55576
55716
|
DevelopmentInfo = "DEVELOPMENT_INFO",
|
|
55577
55717
|
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
55578
55718
|
Documentation = "DOCUMENTATION",
|
|
55579
55719
|
FeatureFlags = "FEATURE_FLAGS",
|
|
55720
|
+
GraphProvider = "GRAPH_PROVIDER",
|
|
55721
|
+
Hris = "HRIS",
|
|
55580
55722
|
Operations = "OPERATIONS",
|
|
55723
|
+
Projects = "PROJECTS",
|
|
55581
55724
|
RemoteLinks = "REMOTE_LINKS",
|
|
55582
|
-
|
|
55583
|
-
|
|
55725
|
+
Security = "SECURITY",
|
|
55726
|
+
SoftwareServices = "SOFTWARE_SERVICES",
|
|
55727
|
+
Spaces = "SPACES",
|
|
55728
|
+
Videos = "VIDEOS",
|
|
55729
|
+
WorkItems = "WORK_ITEMS"
|
|
55584
55730
|
}
|
|
55585
55731
|
export type GraphIntegrationRbacCreateRecordInput = {
|
|
55586
55732
|
cloudId: Scalars['ID']['input'];
|
|
@@ -55846,6 +55992,15 @@ export type GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings = {
|
|
|
55846
55992
|
__typename?: 'GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings';
|
|
55847
55993
|
settings: Array<GraphIntegrationTwgPlatformCapabilityGlobalAdminSetting>;
|
|
55848
55994
|
};
|
|
55995
|
+
export declare enum GraphIntegrationTwgProductAccessMode {
|
|
55996
|
+
DefaultAllow = "DEFAULT_ALLOW",
|
|
55997
|
+
DefaultDeny = "DEFAULT_DENY"
|
|
55998
|
+
}
|
|
55999
|
+
export type GraphIntegrationTwgProductAdminSettings = {
|
|
56000
|
+
__typename?: 'GraphIntegrationTwgProductAdminSettings';
|
|
56001
|
+
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
56002
|
+
productAri: Scalars['ID']['output'];
|
|
56003
|
+
};
|
|
55849
56004
|
export type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
55850
56005
|
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
55851
56006
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -55871,6 +56026,17 @@ export type GraphIntegrationUpdateSkillInput = {
|
|
|
55871
56026
|
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
55872
56027
|
visibility?: InputMaybe<GraphIntegrationSkillVisibilityInput>;
|
|
55873
56028
|
};
|
|
56029
|
+
export type GraphIntegrationUpdateTwgProductAdminSettingsInput = {
|
|
56030
|
+
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
56031
|
+
contextAri: Scalars['ID']['input'];
|
|
56032
|
+
productAri: Scalars['ID']['input'];
|
|
56033
|
+
};
|
|
56034
|
+
export type GraphIntegrationUpdateTwgProductAdminSettingsPayload = Payload & {
|
|
56035
|
+
__typename?: 'GraphIntegrationUpdateTwgProductAdminSettingsPayload';
|
|
56036
|
+
accessMode: GraphIntegrationTwgProductAccessMode;
|
|
56037
|
+
errors?: Maybe<Array<MutationError>>;
|
|
56038
|
+
success: Scalars['Boolean']['output'];
|
|
56039
|
+
};
|
|
55874
56040
|
export type GraphIssueAssociatedDesignPayload = Payload & {
|
|
55875
56041
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
55876
56042
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -123791,6 +123957,9 @@ export type JiraAgentsInSpace = {
|
|
|
123791
123957
|
agents?: Maybe<JiraAgentInSpaceConnection>;
|
|
123792
123958
|
sourceStatuses: Array<JiraAgentInSpaceSourceStatus>;
|
|
123793
123959
|
};
|
|
123960
|
+
export type JiraAgentsInSpaceFilter = {
|
|
123961
|
+
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
123962
|
+
};
|
|
123794
123963
|
export type JiraAgentsInSpaceIdentifier = {
|
|
123795
123964
|
cloudId: Scalars['ID']['input'];
|
|
123796
123965
|
projectKey: Scalars['String']['input'];
|
|
@@ -123981,6 +124150,7 @@ export type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
|
123981
124150
|
mercuryProjectStatus?: Maybe<MercuryProjectStatus>;
|
|
123982
124151
|
mercuryProjectType?: Maybe<MercuryProjectType>;
|
|
123983
124152
|
mercuryProjectUrl?: Maybe<Scalars['URL']['output']>;
|
|
124153
|
+
mercuryStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
123984
124154
|
mercuryTargetDate?: Maybe<Scalars['String']['output']>;
|
|
123985
124155
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
123986
124156
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -126591,9 +126761,47 @@ export type JiraBulkMergeValidationResponse = {
|
|
|
126591
126761
|
success: Scalars['Boolean']['output'];
|
|
126592
126762
|
};
|
|
126593
126763
|
export type JiraBulkMergeValidationResult = JiraBulkMergeValidationResponse | QueryError;
|
|
126764
|
+
export type JiraBulkMoveClassificationEntryInput = {
|
|
126765
|
+
sourceClassificationIds: Array<Scalars['ID']['input']>;
|
|
126766
|
+
targetClassificationId: Scalars['ID']['input'];
|
|
126767
|
+
};
|
|
126768
|
+
export type JiraBulkMoveClassificationMappingInput = {
|
|
126769
|
+
classifications: Array<JiraBulkMoveClassificationEntryInput>;
|
|
126770
|
+
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
126771
|
+
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126772
|
+
};
|
|
126773
|
+
export type JiraBulkMoveInput = {
|
|
126774
|
+
inferClassificationDefaults: Scalars['Boolean']['input'];
|
|
126775
|
+
inferFieldDefaults: Scalars['Boolean']['input'];
|
|
126776
|
+
inferStatusDefaults: Scalars['Boolean']['input'];
|
|
126777
|
+
inferSubtaskTypeDefault: Scalars['Boolean']['input'];
|
|
126778
|
+
inputId: Scalars['String']['input'];
|
|
126779
|
+
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
126780
|
+
targetClassification?: InputMaybe<Array<JiraBulkMoveClassificationMappingInput>>;
|
|
126781
|
+
targetIssueTypeId: Scalars['ID']['input'];
|
|
126782
|
+
targetMandatoryFields?: InputMaybe<Array<JiraBulkMoveMandatoryFieldsMappingInput>>;
|
|
126783
|
+
targetParentIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
126784
|
+
targetProjectId: Scalars['ID']['input'];
|
|
126785
|
+
targetStatus?: InputMaybe<Array<JiraBulkMoveStatusMappingInput>>;
|
|
126786
|
+
};
|
|
126787
|
+
export type JiraBulkMoveMandatoryFieldsMappingInput = {
|
|
126788
|
+
fields: JiraIssueFieldsInput;
|
|
126789
|
+
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
126790
|
+
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126791
|
+
};
|
|
126792
|
+
export type JiraBulkMoveStatusEntryInput = {
|
|
126793
|
+
sourceStatusIds: Array<Scalars['ID']['input']>;
|
|
126794
|
+
targetStatusId: Scalars['ID']['input'];
|
|
126795
|
+
};
|
|
126796
|
+
export type JiraBulkMoveStatusMappingInput = {
|
|
126797
|
+
sourceIssueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
126798
|
+
sourceProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
126799
|
+
statuses: Array<JiraBulkMoveStatusEntryInput>;
|
|
126800
|
+
};
|
|
126594
126801
|
export type JiraBulkOperationInput = {
|
|
126595
126802
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
126596
126803
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
126804
|
+
bulkMoveInput?: InputMaybe<JiraSubmitBulkMoveOperationInput>;
|
|
126597
126805
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
126598
126806
|
bulkWatchOrUnwatchInput?: InputMaybe<JiraBulkWatchOrUnwatchInput>;
|
|
126599
126807
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -126601,6 +126809,7 @@ export type JiraBulkOperationInput = {
|
|
|
126601
126809
|
export declare enum JiraBulkOperationType {
|
|
126602
126810
|
BulkDelete = "BULK_DELETE",
|
|
126603
126811
|
BulkEdit = "BULK_EDIT",
|
|
126812
|
+
BulkMove = "BULK_MOVE",
|
|
126604
126813
|
BulkTransition = "BULK_TRANSITION",
|
|
126605
126814
|
BulkUnwatch = "BULK_UNWATCH",
|
|
126606
126815
|
BulkWatch = "BULK_WATCH"
|
|
@@ -126644,6 +126853,7 @@ export type JiraBulkStartAgentSessionsInput = {
|
|
|
126644
126853
|
};
|
|
126645
126854
|
export type JiraBulkStartAgentSessionsPayload = Payload & {
|
|
126646
126855
|
__typename?: 'JiraBulkStartAgentSessionsPayload';
|
|
126856
|
+
alreadyStartedCount: Scalars['Int']['output'];
|
|
126647
126857
|
errors?: Maybe<Array<MutationError>>;
|
|
126648
126858
|
failedCount: Scalars['Int']['output'];
|
|
126649
126859
|
rateLimitedCount: Scalars['Int']['output'];
|
|
@@ -148571,6 +148781,7 @@ export type JiraStakeholderUpdatedValue = {
|
|
|
148571
148781
|
message?: Maybe<Scalars['String']['output']>;
|
|
148572
148782
|
};
|
|
148573
148783
|
export declare enum JiraStartAgentSessionResult {
|
|
148784
|
+
AlreadyStarted = "ALREADY_STARTED",
|
|
148574
148785
|
Failed = "FAILED",
|
|
148575
148786
|
RateLimited = "RATE_LIMITED",
|
|
148576
148787
|
Skipped = "SKIPPED",
|
|
@@ -148742,6 +148953,9 @@ export type JiraStreamHubResourceIdentifier = {
|
|
|
148742
148953
|
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
148743
148954
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
148744
148955
|
};
|
|
148956
|
+
export type JiraSubmitBulkMoveOperationInput = {
|
|
148957
|
+
bulkMoveInputs: Array<JiraBulkMoveInput>;
|
|
148958
|
+
};
|
|
148745
148959
|
export type JiraSubmitBulkOperationInput = {
|
|
148746
148960
|
bulkOperationInput: JiraBulkOperationInput;
|
|
148747
148961
|
bulkOperationType: JiraBulkOperationType;
|
|
@@ -153403,6 +153617,10 @@ export type JsmAdaptiveLanguageQueryApi = {
|
|
|
153403
153617
|
export type JsmAdaptiveLanguageQueryApiGlossaryForProjectArgs = {
|
|
153404
153618
|
projectAri: Scalars['ID']['input'];
|
|
153405
153619
|
};
|
|
153620
|
+
export declare enum JsmChannelsAuthMode {
|
|
153621
|
+
Application = "APPLICATION",
|
|
153622
|
+
Delegated = "DELEGATED"
|
|
153623
|
+
}
|
|
153406
153624
|
export type JsmChannelsConditionNode = JsmChannelsPlanNode & {
|
|
153407
153625
|
__typename?: 'JsmChannelsConditionNode';
|
|
153408
153626
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -153447,6 +153665,7 @@ export type JsmChannelsEnabledRovoServiceToolsConfiguration = {
|
|
|
153447
153665
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
153448
153666
|
};
|
|
153449
153667
|
export type JsmChannelsEstablishConnectionInput = {
|
|
153668
|
+
authMode?: InputMaybe<JsmChannelsAuthMode>;
|
|
153450
153669
|
clientId: Scalars['String']['input'];
|
|
153451
153670
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
153452
153671
|
connectionType: JsmChannelsConnectionType;
|
|
@@ -156152,7 +156371,7 @@ export type KitsuneFieldEdge = KitsuneEdge & {
|
|
|
156152
156371
|
export type KitsuneFieldOptionUpdateInput = {
|
|
156153
156372
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156154
156373
|
id: Scalars['ID']['input'];
|
|
156155
|
-
name
|
|
156374
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
156156
156375
|
};
|
|
156157
156376
|
export type KitsuneFieldOptionsInput = {
|
|
156158
156377
|
create?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -164629,6 +164848,12 @@ export type MercuryAskConnection = {
|
|
|
164629
164848
|
pageInfo: PageInfo;
|
|
164630
164849
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
164631
164850
|
};
|
|
164851
|
+
export type MercuryAskCustomFieldActivityHistoryMetadata = MercuryActivityHistoryMetadata & {
|
|
164852
|
+
__typename?: 'MercuryAskCustomFieldActivityHistoryMetadata';
|
|
164853
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
164854
|
+
kind: MercuryActivityHistoryUpdatedFieldKind;
|
|
164855
|
+
searchKey: Scalars['String']['output'];
|
|
164856
|
+
};
|
|
164632
164857
|
export type MercuryAskCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
164633
164858
|
__typename?: 'MercuryAskCustomFieldDefinitionScope';
|
|
164634
164859
|
entityType: Scalars['String']['output'];
|
|
@@ -164646,6 +164871,14 @@ export declare enum MercuryAskEventType {
|
|
|
164646
164871
|
}
|
|
164647
164872
|
export declare enum MercuryAskField {
|
|
164648
164873
|
ConnectedWork = "CONNECTED_WORK",
|
|
164874
|
+
CustomCheckbox = "CUSTOM_CHECKBOX",
|
|
164875
|
+
CustomDate = "CUSTOM_DATE",
|
|
164876
|
+
CustomMultiSelect = "CUSTOM_MULTI_SELECT",
|
|
164877
|
+
CustomMultiUser = "CUSTOM_MULTI_USER",
|
|
164878
|
+
CustomNumber = "CUSTOM_NUMBER",
|
|
164879
|
+
CustomSingleSelect = "CUSTOM_SINGLE_SELECT",
|
|
164880
|
+
CustomSingleUser = "CUSTOM_SINGLE_USER",
|
|
164881
|
+
CustomText = "CUSTOM_TEXT",
|
|
164649
164882
|
Description = "DESCRIPTION",
|
|
164650
164883
|
ImpactedWork = "IMPACTED_WORK",
|
|
164651
164884
|
Justification = "JUSTIFICATION",
|
|
@@ -164769,6 +165002,7 @@ export type MercuryAskTransition = {
|
|
|
164769
165002
|
export type MercuryAskUpdatedField = {
|
|
164770
165003
|
__typename?: 'MercuryAskUpdatedField';
|
|
164771
165004
|
field: MercuryAskField;
|
|
165005
|
+
metadata?: Maybe<Array<MercuryActivityHistoryMetadata>>;
|
|
164772
165006
|
newData?: Maybe<MercuryAskActivityHistoryData>;
|
|
164773
165007
|
newValue?: Maybe<Scalars['String']['output']>;
|
|
164774
165008
|
oldData?: Maybe<MercuryAskActivityHistoryData>;
|
|
@@ -167290,8 +167524,10 @@ export type MercuryFocusAreaInsight = MercuryInsight & {
|
|
|
167290
167524
|
id: Scalars['ID']['output'];
|
|
167291
167525
|
insightData?: Maybe<MercuryFocusArea>;
|
|
167292
167526
|
insightReason: Scalars['String']['output'];
|
|
167527
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
167293
167528
|
summary?: Maybe<Scalars['String']['output']>;
|
|
167294
167529
|
title?: Maybe<Scalars['String']['output']>;
|
|
167530
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
167295
167531
|
};
|
|
167296
167532
|
export type MercuryFocusAreaInsightsFilter = {
|
|
167297
167533
|
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
@@ -167424,6 +167660,7 @@ export declare enum MercuryFocusAreaSortField {
|
|
|
167424
167660
|
FocusAreaType = "FOCUS_AREA_TYPE",
|
|
167425
167661
|
GroupType = "GROUP_TYPE",
|
|
167426
167662
|
HasParent = "HAS_PARENT",
|
|
167663
|
+
HasSponsorOrganization = "HAS_SPONSOR_ORGANIZATION",
|
|
167427
167664
|
Health = "HEALTH",
|
|
167428
167665
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
167429
167666
|
LastUpdated = "LAST_UPDATED",
|
|
@@ -168034,13 +168271,17 @@ export type MercuryGoalAggregatedStatusCount = {
|
|
|
168034
168271
|
export type MercuryGoalInsight = MercuryInsight & {
|
|
168035
168272
|
__typename?: 'MercuryGoalInsight';
|
|
168036
168273
|
ari: Scalars['ID']['output'];
|
|
168274
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
168275
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
168037
168276
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
168038
168277
|
focusAreaId: Scalars['ID']['output'];
|
|
168039
168278
|
id: Scalars['ID']['output'];
|
|
168040
168279
|
insightData?: Maybe<TownsquareGoal>;
|
|
168041
168280
|
insightReason: Scalars['String']['output'];
|
|
168281
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168042
168282
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168043
168283
|
title?: Maybe<Scalars['String']['output']>;
|
|
168284
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168044
168285
|
};
|
|
168045
168286
|
export declare enum MercuryGoalStatus {
|
|
168046
168287
|
Archived = "ARCHIVED",
|
|
@@ -168134,8 +168375,10 @@ export declare enum MercuryImportJobStatus {
|
|
|
168134
168375
|
export type MercuryInsight = {
|
|
168135
168376
|
id: Scalars['ID']['output'];
|
|
168136
168377
|
insightReason: Scalars['String']['output'];
|
|
168378
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168137
168379
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168138
168380
|
title?: Maybe<Scalars['String']['output']>;
|
|
168381
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168139
168382
|
};
|
|
168140
168383
|
export type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
|
|
168141
168384
|
export type MercuryInsightObjectConnection = {
|
|
@@ -168295,13 +168538,17 @@ export declare enum MercuryInviteStatus {
|
|
|
168295
168538
|
export type MercuryJiraAlignProjectInsight = MercuryInsight & {
|
|
168296
168539
|
__typename?: 'MercuryJiraAlignProjectInsight';
|
|
168297
168540
|
ari: Scalars['ID']['output'];
|
|
168541
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
168542
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
168298
168543
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
168299
168544
|
focusAreaId: Scalars['ID']['output'];
|
|
168300
168545
|
id: Scalars['ID']['output'];
|
|
168301
168546
|
insightData?: Maybe<JiraAlignAggProject>;
|
|
168302
168547
|
insightReason: Scalars['String']['output'];
|
|
168548
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168303
168549
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168304
168550
|
title?: Maybe<Scalars['String']['output']>;
|
|
168551
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168305
168552
|
};
|
|
168306
168553
|
export type MercuryJiraAlignProjectType = {
|
|
168307
168554
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
@@ -168327,13 +168574,17 @@ export type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesA
|
|
|
168327
168574
|
export type MercuryJiraIssueInsight = MercuryInsight & {
|
|
168328
168575
|
__typename?: 'MercuryJiraIssueInsight';
|
|
168329
168576
|
ari: Scalars['ID']['output'];
|
|
168577
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
168578
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
168330
168579
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
168331
168580
|
focusAreaId: Scalars['ID']['output'];
|
|
168332
168581
|
id: Scalars['ID']['output'];
|
|
168333
168582
|
insightData?: Maybe<JiraIssue>;
|
|
168334
168583
|
insightReason: Scalars['String']['output'];
|
|
168584
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
168335
168585
|
summary?: Maybe<Scalars['String']['output']>;
|
|
168336
168586
|
title?: Maybe<Scalars['String']['output']>;
|
|
168587
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
168337
168588
|
};
|
|
168338
168589
|
export type MercuryJiraProviderMappingContext = {
|
|
168339
168590
|
__typename?: 'MercuryJiraProviderMappingContext';
|
|
@@ -169406,6 +169657,11 @@ export declare enum MercuryOrganizationPermission {
|
|
|
169406
169657
|
Export = "EXPORT",
|
|
169407
169658
|
ViewFund = "VIEW_FUND"
|
|
169408
169659
|
}
|
|
169660
|
+
export declare enum MercuryOrganizationPlanAuthorityPosition {
|
|
169661
|
+
AbovePlanningAuthority = "ABOVE_PLANNING_AUTHORITY",
|
|
169662
|
+
AtPlanningAuthority = "AT_PLANNING_AUTHORITY",
|
|
169663
|
+
BelowPlanningAuthority = "BELOW_PLANNING_AUTHORITY"
|
|
169664
|
+
}
|
|
169409
169665
|
export type MercuryOrganizationPlans = {
|
|
169410
169666
|
__typename?: 'MercuryOrganizationPlans';
|
|
169411
169667
|
organizationId: Scalars['ID']['output'];
|
|
@@ -170097,6 +170353,7 @@ export type MercuryPlan = Node & {
|
|
|
170097
170353
|
isSystemManaged: Scalars['Boolean']['output'];
|
|
170098
170354
|
memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
|
|
170099
170355
|
organizationId: Scalars['ID']['output'];
|
|
170356
|
+
organizationPlanAuthority?: Maybe<MercuryPlanOrganizationAuthority>;
|
|
170100
170357
|
startDate: Scalars['Date']['output'];
|
|
170101
170358
|
type: MercuryPlanType;
|
|
170102
170359
|
};
|
|
@@ -170105,6 +170362,9 @@ export type MercuryPlanFocusAreaLinksArgs = {
|
|
|
170105
170362
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170106
170363
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
170107
170364
|
};
|
|
170365
|
+
export type MercuryPlanOrganizationPlanAuthorityArgs = {
|
|
170366
|
+
viewingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
170367
|
+
};
|
|
170108
170368
|
export type MercuryPlanAuthoritySetting = {
|
|
170109
170369
|
__typename?: 'MercuryPlanAuthoritySetting';
|
|
170110
170370
|
focusAreaType?: Maybe<MercuryFocusAreaType>;
|
|
@@ -170186,6 +170446,10 @@ export type MercuryPlanMemberCountAllocationToFocusAreaInput = {
|
|
|
170186
170446
|
focusAreaId: Scalars['ID']['input'];
|
|
170187
170447
|
memberCountAllocations: Array<MercuryPlanMemberCountAllocationInput>;
|
|
170188
170448
|
};
|
|
170449
|
+
export type MercuryPlanOrganizationAuthority = {
|
|
170450
|
+
__typename?: 'MercuryPlanOrganizationAuthority';
|
|
170451
|
+
organizationPlanAuthorityPosition?: Maybe<MercuryOrganizationPlanAuthorityPosition>;
|
|
170452
|
+
};
|
|
170189
170453
|
export declare enum MercuryPlanType {
|
|
170190
170454
|
Baseline = "BASELINE",
|
|
170191
170455
|
Draft = "DRAFT"
|
|
@@ -172321,13 +172585,17 @@ export type MercuryThreadedCommentEdge = {
|
|
|
172321
172585
|
export type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
172322
172586
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
172323
172587
|
ari: Scalars['ID']['output'];
|
|
172588
|
+
connectedFocusAreaIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
172589
|
+
connectedFocusAreas?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
172324
172590
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
172325
172591
|
focusAreaId: Scalars['ID']['output'];
|
|
172326
172592
|
id: Scalars['ID']['output'];
|
|
172327
172593
|
insightData?: Maybe<TownsquareProject>;
|
|
172328
172594
|
insightReason: Scalars['String']['output'];
|
|
172595
|
+
insightReasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
172329
172596
|
summary?: Maybe<Scalars['String']['output']>;
|
|
172330
172597
|
title?: Maybe<Scalars['String']['output']>;
|
|
172598
|
+
weight?: Maybe<Scalars['Float']['output']>;
|
|
172331
172599
|
};
|
|
172332
172600
|
export type MercuryTransitionChangeProposalPayload = Payload & {
|
|
172333
172601
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
@@ -173922,6 +174190,7 @@ export type Mutation = {
|
|
|
173922
174190
|
aiops_regenerateIncidentSuggestion?: Maybe<AiOpsRegenerateIncidentSuggestionPayload>;
|
|
173923
174191
|
aiops_terminateInvestigation?: Maybe<AiOpsInvestigation>;
|
|
173924
174192
|
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
174193
|
+
aiplanner_restorePlan?: Maybe<Scalars['String']['output']>;
|
|
173925
174194
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
173926
174195
|
appStorage?: Maybe<AppStorageMutation>;
|
|
173927
174196
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -174204,6 +174473,7 @@ export type Mutation = {
|
|
|
174204
174473
|
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
174205
174474
|
confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
|
|
174206
174475
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
174476
|
+
confluence_patchFolder?: Maybe<ConfluencePatchFolderPayload>;
|
|
174207
174477
|
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
174208
174478
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
174209
174479
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
@@ -174469,11 +174739,13 @@ export type Mutation = {
|
|
|
174469
174739
|
devai_autodevNextCompleteWorkItemRefinement?: Maybe<DevAiAutodevNextCompleteWorkItemRefinementPayload>;
|
|
174470
174740
|
devai_autodevNextCreateSuggestedClassificationRepository?: Maybe<DevAiAutodevNextCreateSuggestedClassificationRepositoryPayload>;
|
|
174471
174741
|
devai_autodevNextCreateWorkstream?: Maybe<DevAiAutodevNextCreateWorkstreamPayload>;
|
|
174742
|
+
devai_autodevNextDeleteSuggestedClassificationRepository?: Maybe<DevAiAutodevNextDeleteSuggestedClassificationRepositoryPayload>;
|
|
174472
174743
|
devai_autodevNextDeleteWorkstream?: Maybe<DevAiAutodevNextDeleteWorkstreamPayload>;
|
|
174473
174744
|
devai_autodevNextReassignWorkItem?: Maybe<DevAiAutodevNextReassignWorkItemPayload>;
|
|
174474
174745
|
devai_autodevNextRemoveExcludedRepositories?: Maybe<DevAiAutodevNextRemoveExcludedRepositoriesPayload>;
|
|
174475
174746
|
devai_autodevNextRemoveMembers?: Maybe<DevAiAutodevNextRemoveMembersPayload>;
|
|
174476
174747
|
devai_autodevNextRemoveProjects?: Maybe<DevAiAutodevNextRemoveProjectsPayload>;
|
|
174748
|
+
devai_autodevNextResetWorkItemClassification?: Maybe<DevAiAutodevNextResetWorkItemClassificationPayload>;
|
|
174477
174749
|
devai_autodevNextSendWorkstreamNudges?: Maybe<DevAiAutodevNextSendWorkstreamNudgesPayload>;
|
|
174478
174750
|
devai_autodevNextTriggerWorkstreamScan?: Maybe<DevAiAutodevNextTriggerWorkstreamScanPayload>;
|
|
174479
174751
|
devai_autodevNextUnassignWorkItem?: Maybe<DevAiAutodevNextUnassignWorkItemPayload>;
|
|
@@ -174627,6 +174899,7 @@ export type Mutation = {
|
|
|
174627
174899
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
174628
174900
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
174629
174901
|
graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
174902
|
+
graphIntegration_updateTwgProductAdminSettings?: Maybe<GraphIntegrationUpdateTwgProductAdminSettingsPayload>;
|
|
174630
174903
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
174631
174904
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
174632
174905
|
graphStoreV2_createAtlassianHomeTagIsAliasOfAtlassianHomeTag?: Maybe<GraphStoreV2CreateAtlassianHomeTagIsAliasOfAtlassianHomeTagPayload>;
|
|
@@ -175241,6 +175514,7 @@ export type Mutation = {
|
|
|
175241
175514
|
psm_linkSensorKbArticles?: Maybe<PsmLinkSensorKbArticlesPayload>;
|
|
175242
175515
|
psm_onboardTenant?: Maybe<PsmOnboardTenantPayload>;
|
|
175243
175516
|
psm_registerDevice?: Maybe<PsmRegisterDevicePayload>;
|
|
175517
|
+
psm_triggerRemediation?: Maybe<PsmTriggerRemediationPayload>;
|
|
175244
175518
|
psm_updateSensorEnablement?: Maybe<PsmUpdateSensorEnablementPayload>;
|
|
175245
175519
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
175246
175520
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
@@ -176080,6 +176354,10 @@ export type MutationAiops_TriggerInvestigationArgs = {
|
|
|
176080
176354
|
cloudId: Scalars['ID']['input'];
|
|
176081
176355
|
input: AiOpsTriggerInvestigationInput;
|
|
176082
176356
|
};
|
|
176357
|
+
export type MutationAiplanner_RestorePlanArgs = {
|
|
176358
|
+
cloudId: Scalars['String']['input'];
|
|
176359
|
+
planId: Scalars['String']['input'];
|
|
176360
|
+
};
|
|
176083
176361
|
export type MutationAppStorage_AdminArgs = {
|
|
176084
176362
|
appId: Scalars['ID']['input'];
|
|
176085
176363
|
};
|
|
@@ -177150,6 +177428,10 @@ export type MutationConfluence_PatchCalendarArgs = {
|
|
|
177150
177428
|
cloudId: Scalars['ID']['input'];
|
|
177151
177429
|
input: ConfluencePatchCalendarInput;
|
|
177152
177430
|
};
|
|
177431
|
+
export type MutationConfluence_PatchFolderArgs = {
|
|
177432
|
+
cloudId: Scalars['ID']['input'];
|
|
177433
|
+
input: ConfluencePatchFolderInput;
|
|
177434
|
+
};
|
|
177153
177435
|
export type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
177154
177436
|
cloudId: Scalars['ID']['input'];
|
|
177155
177437
|
input: ConfluencePatchSpaceSettingsInput;
|
|
@@ -178142,6 +178424,9 @@ export type MutationDevai_AutodevNextCreateSuggestedClassificationRepositoryArgs
|
|
|
178142
178424
|
export type MutationDevai_AutodevNextCreateWorkstreamArgs = {
|
|
178143
178425
|
input: DevAiAutodevNextCreateWorkstreamInput;
|
|
178144
178426
|
};
|
|
178427
|
+
export type MutationDevai_AutodevNextDeleteSuggestedClassificationRepositoryArgs = {
|
|
178428
|
+
input: DevAiAutodevNextDeleteSuggestedClassificationRepositoryInput;
|
|
178429
|
+
};
|
|
178145
178430
|
export type MutationDevai_AutodevNextDeleteWorkstreamArgs = {
|
|
178146
178431
|
input: DevAiAutodevNextDeleteWorkstreamInput;
|
|
178147
178432
|
};
|
|
@@ -178157,6 +178442,9 @@ export type MutationDevai_AutodevNextRemoveMembersArgs = {
|
|
|
178157
178442
|
export type MutationDevai_AutodevNextRemoveProjectsArgs = {
|
|
178158
178443
|
input: DevAiAutodevNextRemoveProjectsInput;
|
|
178159
178444
|
};
|
|
178445
|
+
export type MutationDevai_AutodevNextResetWorkItemClassificationArgs = {
|
|
178446
|
+
input: DevAiAutodevNextResetWorkItemClassificationInput;
|
|
178447
|
+
};
|
|
178160
178448
|
export type MutationDevai_AutodevNextSendWorkstreamNudgesArgs = {
|
|
178161
178449
|
input: DevAiAutodevNextSendWorkstreamNudgesInput;
|
|
178162
178450
|
};
|
|
@@ -178634,6 +178922,9 @@ export type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
|
178634
178922
|
export type MutationGraphIntegration_UpdateSkillArgs = {
|
|
178635
178923
|
input: GraphIntegrationUpdateSkillInput;
|
|
178636
178924
|
};
|
|
178925
|
+
export type MutationGraphIntegration_UpdateTwgProductAdminSettingsArgs = {
|
|
178926
|
+
input: GraphIntegrationUpdateTwgProductAdminSettingsInput;
|
|
178927
|
+
};
|
|
178637
178928
|
export type MutationGraphStoreV2_CreateAtlassianHomeTagIsAliasOfAtlassianHomeTagArgs = {
|
|
178638
178929
|
input?: InputMaybe<GraphStoreV2CreateAtlassianHomeTagIsAliasOfAtlassianHomeTagInput>;
|
|
178639
178930
|
};
|
|
@@ -180621,6 +180912,9 @@ export type MutationPsm_OnboardTenantArgs = {
|
|
|
180621
180912
|
export type MutationPsm_RegisterDeviceArgs = {
|
|
180622
180913
|
input: PsmRegisterDeviceInput;
|
|
180623
180914
|
};
|
|
180915
|
+
export type MutationPsm_TriggerRemediationArgs = {
|
|
180916
|
+
input: PsmTriggerRemediationInput;
|
|
180917
|
+
};
|
|
180624
180918
|
export type MutationPsm_UpdateSensorEnablementArgs = {
|
|
180625
180919
|
cloudId: Scalars['ID']['input'];
|
|
180626
180920
|
input: PsmUpdateSensorEnablementInput;
|
|
@@ -184371,6 +184665,12 @@ export declare enum PsmRemediationTrigger {
|
|
|
184371
184665
|
Auto = "AUTO",
|
|
184372
184666
|
EndUser = "END_USER"
|
|
184373
184667
|
}
|
|
184668
|
+
export type PsmRemediationTriggerSummary = {
|
|
184669
|
+
__typename?: 'PsmRemediationTriggerSummary';
|
|
184670
|
+
closed?: Maybe<Array<Scalars['String']['output']>>;
|
|
184671
|
+
offline?: Maybe<Array<Scalars['String']['output']>>;
|
|
184672
|
+
queued?: Maybe<Array<Scalars['String']['output']>>;
|
|
184673
|
+
};
|
|
184374
184674
|
export type PsmSensorCategoriesInput = {
|
|
184375
184675
|
spaceId: Scalars['ID']['input'];
|
|
184376
184676
|
};
|
|
@@ -184511,6 +184811,18 @@ export type PsmTopIssue = {
|
|
|
184511
184811
|
name: Scalars['String']['output'];
|
|
184512
184812
|
severity: PsmSeverity;
|
|
184513
184813
|
};
|
|
184814
|
+
export type PsmTriggerRemediationInput = {
|
|
184815
|
+
cloudId: Scalars['ID']['input'];
|
|
184816
|
+
faultIds: Array<Scalars['String']['input']>;
|
|
184817
|
+
remediationId: Scalars['String']['input'];
|
|
184818
|
+
spaceId: Scalars['ID']['input'];
|
|
184819
|
+
};
|
|
184820
|
+
export type PsmTriggerRemediationPayload = Payload & {
|
|
184821
|
+
__typename?: 'PsmTriggerRemediationPayload';
|
|
184822
|
+
errors?: Maybe<Array<MutationError>>;
|
|
184823
|
+
success: Scalars['Boolean']['output'];
|
|
184824
|
+
summary?: Maybe<PsmRemediationTriggerSummary>;
|
|
184825
|
+
};
|
|
184514
184826
|
export type PsmTriggeredSensor = {
|
|
184515
184827
|
__typename?: 'PsmTriggeredSensor';
|
|
184516
184828
|
affectedDeviceCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -184860,6 +185172,7 @@ export type Query = {
|
|
|
184860
185172
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
184861
185173
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
184862
185174
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
185175
|
+
admin_auditLogUserProfiles?: Maybe<AdminUserConnection>;
|
|
184863
185176
|
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
184864
185177
|
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
184865
185178
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
@@ -185549,6 +185862,7 @@ export type Query = {
|
|
|
185549
185862
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
185550
185863
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
185551
185864
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
185865
|
+
cpls_capacityPlansByIds?: Maybe<Array<Maybe<CplsCapacityPlan>>>;
|
|
185552
185866
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
185553
185867
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
185554
185868
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
@@ -185824,6 +186138,7 @@ export type Query = {
|
|
|
185824
186138
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
185825
186139
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
185826
186140
|
graphIntegration_twgPlatformCapabilityGlobalAdminSettings?: Maybe<GraphIntegrationTwgPlatformCapabilityGlobalAdminSettings>;
|
|
186141
|
+
graphIntegration_twgProductAdminSettings?: Maybe<GraphIntegrationTwgProductAdminSettings>;
|
|
185827
186142
|
graphStore?: Maybe<GraphStore>;
|
|
185828
186143
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
185829
186144
|
graphStoreV2_assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
@@ -188761,6 +189076,13 @@ export type QueryAdmin_AuditLogEventsArgs = {
|
|
|
188761
189076
|
export type QueryAdmin_AuditLogProductMappingArgs = {
|
|
188762
189077
|
container: AdminAuditLogContainer;
|
|
188763
189078
|
};
|
|
189079
|
+
export type QueryAdmin_AuditLogUserProfilesArgs = {
|
|
189080
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
189081
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
189082
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
189083
|
+
input: AdminAuditLogUserProfilesInput;
|
|
189084
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
189085
|
+
};
|
|
188764
189086
|
export type QueryAdmin_AuditLogUsersArgs = {
|
|
188765
189087
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
188766
189088
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -190400,6 +190722,8 @@ export type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
190400
190722
|
cloudId: Scalars['ID']['input'];
|
|
190401
190723
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
190402
190724
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190725
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
190726
|
+
sort?: InputMaybe<AssetsVerticalDepreciationRulesSortInput>;
|
|
190403
190727
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
190404
190728
|
};
|
|
190405
190729
|
export type QueryAssetsVertical_HardwareCountByStatusArgs = {
|
|
@@ -192213,6 +192537,9 @@ export type QueryCountUsersGroupByPageArgs = {
|
|
|
192213
192537
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
192214
192538
|
startTime: Scalars['String']['input'];
|
|
192215
192539
|
};
|
|
192540
|
+
export type QueryCpls_CapacityPlansByIdsArgs = {
|
|
192541
|
+
ids: Array<Scalars['ID']['input']>;
|
|
192542
|
+
};
|
|
192216
192543
|
export type QueryCpls_CustomContributionTargetsArgs = {
|
|
192217
192544
|
input: CplsSearchCustomContributionTargetsInput;
|
|
192218
192545
|
};
|
|
@@ -193363,6 +193690,10 @@ export type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
|
193363
193690
|
export type QueryGraphIntegration_TwgPlatformCapabilityGlobalAdminSettingsArgs = {
|
|
193364
193691
|
cloudId: Scalars['ID']['input'];
|
|
193365
193692
|
};
|
|
193693
|
+
export type QueryGraphIntegration_TwgProductAdminSettingsArgs = {
|
|
193694
|
+
contextAri: Scalars['ID']['input'];
|
|
193695
|
+
productAri: Scalars['ID']['input'];
|
|
193696
|
+
};
|
|
193366
193697
|
export type QueryGraphStoreV2_AssetTypeHasChildAssetTypeArgs = {
|
|
193367
193698
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193368
193699
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -209559,6 +209890,7 @@ export type QueryJira_AgentSpaceInstructionsArgs = {
|
|
|
209559
209890
|
export type QueryJira_AgentsInSpaceArgs = {
|
|
209560
209891
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
209561
209892
|
cloudId: Scalars['ID']['input'];
|
|
209893
|
+
filter?: InputMaybe<JiraAgentsInSpaceFilter>;
|
|
209562
209894
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
209563
209895
|
input: JiraAgentsInSpaceInput;
|
|
209564
209896
|
};
|
|
@@ -226208,6 +226540,8 @@ export type TownsquareDraftUpdate = {
|
|
|
226208
226540
|
};
|
|
226209
226541
|
export type TownsquareEditGoalInput = {
|
|
226210
226542
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
226543
|
+
descriptionMeasurement?: InputMaybe<Scalars['String']['input']>;
|
|
226544
|
+
descriptionWhy?: InputMaybe<Scalars['String']['input']>;
|
|
226211
226545
|
id: Scalars['String']['input'];
|
|
226212
226546
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
226213
226547
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -226295,6 +226629,8 @@ export type TownsquareGoal = Node & {
|
|
|
226295
226629
|
creationDate: Scalars['DateTime']['output'];
|
|
226296
226630
|
customFields?: Maybe<TownsquareCustomFieldConnection>;
|
|
226297
226631
|
description?: Maybe<Scalars['String']['output']>;
|
|
226632
|
+
descriptionMeasurement?: Maybe<Scalars['String']['output']>;
|
|
226633
|
+
descriptionWhy?: Maybe<Scalars['String']['output']>;
|
|
226298
226634
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
226299
226635
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
226300
226636
|
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
@@ -226490,6 +226826,7 @@ export type TownsquareGoalAppCapabilities = {
|
|
|
226490
226826
|
canCreateUpdates?: Maybe<Scalars['Boolean']['output']>;
|
|
226491
226827
|
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
226492
226828
|
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
226829
|
+
canManagePeriodicMetricTargets?: Maybe<Scalars['Boolean']['output']>;
|
|
226493
226830
|
canRemoveAppLevelPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
226494
226831
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
226495
226832
|
};
|
|
@@ -227285,6 +227622,8 @@ export type TownsquareGoalsEditGoalTypePairInput = {
|
|
|
227285
227622
|
export type TownsquareGoalsEditInput = {
|
|
227286
227623
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
227287
227624
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
227625
|
+
descriptionMeasurement?: InputMaybe<Scalars['String']['input']>;
|
|
227626
|
+
descriptionWhy?: InputMaybe<Scalars['String']['input']>;
|
|
227288
227627
|
goalId: Scalars['ID']['input'];
|
|
227289
227628
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
227290
227629
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -234143,6 +234482,7 @@ export type TrelloMutationApi = {
|
|
|
234143
234482
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
234144
234483
|
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
234145
234484
|
retryAiOnBoard?: Maybe<TrelloRetryAiOnBoardPayload>;
|
|
234485
|
+
revertEditBoardWithAi?: Maybe<TrelloRevertEditBoardWithAiPayload>;
|
|
234146
234486
|
revokeMemberOAuth2AccessGrants?: Maybe<TrelloRevokeMemberOAuth2AccessGrantsPayload>;
|
|
234147
234487
|
rotateOAuth2ClientSecret?: Maybe<TrelloRotateOAuth2ClientSecretPayload>;
|
|
234148
234488
|
sendBoardEmailKeyMessage?: Maybe<TrelloSendBoardEmailKeyMessagePayload>;
|
|
@@ -234465,6 +234805,9 @@ export type TrelloMutationApiResetCardCoverArgs = {
|
|
|
234465
234805
|
export type TrelloMutationApiRetryAiOnBoardArgs = {
|
|
234466
234806
|
input: TrelloRetryAiOnBoardInput;
|
|
234467
234807
|
};
|
|
234808
|
+
export type TrelloMutationApiRevertEditBoardWithAiArgs = {
|
|
234809
|
+
input: TrelloRevertEditBoardWithAiInput;
|
|
234810
|
+
};
|
|
234468
234811
|
export type TrelloMutationApiRevokeMemberOAuth2AccessGrantsArgs = {
|
|
234469
234812
|
input: TrelloRevokeMemberOAuth2AccessGrantsInput;
|
|
234470
234813
|
};
|
|
@@ -236036,6 +236379,17 @@ export type TrelloRetryAiOnBoardPayload = Payload & {
|
|
|
236036
236379
|
errors?: Maybe<Array<MutationError>>;
|
|
236037
236380
|
success: Scalars['Boolean']['output'];
|
|
236038
236381
|
};
|
|
236382
|
+
export type TrelloRevertEditBoardWithAiInput = {
|
|
236383
|
+
boardId: Scalars['ID']['input'];
|
|
236384
|
+
referenceTaskId: Scalars['ID']['input'];
|
|
236385
|
+
sessionId: Scalars['ID']['input'];
|
|
236386
|
+
};
|
|
236387
|
+
export type TrelloRevertEditBoardWithAiPayload = Payload & {
|
|
236388
|
+
__typename?: 'TrelloRevertEditBoardWithAiPayload';
|
|
236389
|
+
errors?: Maybe<Array<MutationError>>;
|
|
236390
|
+
success: Scalars['Boolean']['output'];
|
|
236391
|
+
task?: Maybe<TrelloAgentTask>;
|
|
236392
|
+
};
|
|
236039
236393
|
export type TrelloRevokeMemberOAuth2AccessGrantsInput = {
|
|
236040
236394
|
enterpriseId: Scalars['ID']['input'];
|
|
236041
236395
|
memberId: Scalars['ID']['input'];
|