@forge/cli-shared 8.20.0-next.2 → 8.20.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/out/graphql/graphql-types.d.ts +2532 -124
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +279 -49
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -0
- package/package.json +2 -2
|
@@ -303,6 +303,17 @@ export declare type AvpAddFilterExpressionsPayload = Payload & {
|
|
|
303
303
|
filterExpression?: Maybe<AvpFilterExpression>;
|
|
304
304
|
success: Scalars['Boolean']['output'];
|
|
305
305
|
};
|
|
306
|
+
export declare enum AvpAnalyticsAcknowledgeableError {
|
|
307
|
+
ConcurrentUpdates = "CONCURRENT_UPDATES",
|
|
308
|
+
InvalidModelDefinition = "INVALID_MODEL_DEFINITION",
|
|
309
|
+
LineageImpact = "LINEAGE_IMPACT"
|
|
310
|
+
}
|
|
311
|
+
export declare type AvpAnalyticsAcknowledgeableMutationErrorExtension = MutationErrorExtension & {
|
|
312
|
+
__typename?: 'AVPAnalyticsAcknowledgeableMutationErrorExtension';
|
|
313
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
314
|
+
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
315
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
316
|
+
};
|
|
306
317
|
export declare type AvpAnalyticsArithmeticFormula = {
|
|
307
318
|
__typename?: 'AVPAnalyticsArithmeticFormula';
|
|
308
319
|
leftOperand: AvpAnalyticsFormulaParameter;
|
|
@@ -416,16 +427,19 @@ export declare enum AvpAnalyticsDateFormatBucket {
|
|
|
416
427
|
Year = "YEAR"
|
|
417
428
|
}
|
|
418
429
|
export declare type AvpAnalyticsDeleteModelInput = {
|
|
419
|
-
|
|
430
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
431
|
+
forceDelete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
420
432
|
modelId: Scalars['ID']['input'];
|
|
421
433
|
modelVersion?: InputMaybe<Scalars['String']['input']>;
|
|
422
434
|
};
|
|
423
435
|
export declare type AvpAnalyticsDeleteModelPayload = Payload & {
|
|
424
436
|
__typename?: 'AVPAnalyticsDeleteModelPayload';
|
|
425
437
|
errors?: Maybe<Array<MutationError>>;
|
|
438
|
+
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
426
439
|
success: Scalars['Boolean']['output'];
|
|
427
440
|
};
|
|
428
441
|
export declare type AvpAnalyticsDiscardModelUpdatesInput = {
|
|
442
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
429
443
|
forceDiscard?: InputMaybe<Scalars['Boolean']['input']>;
|
|
430
444
|
modelId: Scalars['ID']['input'];
|
|
431
445
|
modelVersion?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -434,6 +448,7 @@ export declare type AvpAnalyticsDiscardModelUpdatesPayload = Payload & {
|
|
|
434
448
|
__typename?: 'AVPAnalyticsDiscardModelUpdatesPayload';
|
|
435
449
|
errors?: Maybe<Array<MutationError>>;
|
|
436
450
|
model?: Maybe<AvpAnalyticsModel>;
|
|
451
|
+
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
437
452
|
success: Scalars['Boolean']['output'];
|
|
438
453
|
};
|
|
439
454
|
export declare type AvpAnalyticsError = {
|
|
@@ -840,7 +855,8 @@ export declare enum AvpAnalyticsSortType {
|
|
|
840
855
|
Desc = "DESC"
|
|
841
856
|
}
|
|
842
857
|
export declare type AvpAnalyticsUpdateModelInput = {
|
|
843
|
-
|
|
858
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
859
|
+
forceUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
844
860
|
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
845
861
|
modelDefinition: AvpAnalyticsModelDefinitionInput;
|
|
846
862
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -851,6 +867,7 @@ export declare type AvpAnalyticsUpdateModelInput = {
|
|
|
851
867
|
};
|
|
852
868
|
export declare type AvpAnalyticsUpdateModelPayload = Payload & {
|
|
853
869
|
__typename?: 'AVPAnalyticsUpdateModelPayload';
|
|
870
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
854
871
|
errors?: Maybe<Array<MutationError>>;
|
|
855
872
|
model?: Maybe<AvpAnalyticsModel>;
|
|
856
873
|
success: Scalars['Boolean']['output'];
|
|
@@ -1305,6 +1322,13 @@ export declare type AvpDashboardSettingsInput = {
|
|
|
1305
1322
|
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1306
1323
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
1307
1324
|
};
|
|
1325
|
+
export declare enum AvpDashboardSortKey {
|
|
1326
|
+
Category = "CATEGORY",
|
|
1327
|
+
CreatedAt = "CREATED_AT",
|
|
1328
|
+
CreatedBy = "CREATED_BY",
|
|
1329
|
+
Title = "TITLE",
|
|
1330
|
+
UpdatedAt = "UPDATED_AT"
|
|
1331
|
+
}
|
|
1308
1332
|
export declare enum AvpDashboardStatus {
|
|
1309
1333
|
Active = "ACTIVE",
|
|
1310
1334
|
Archived = "ARCHIVED",
|
|
@@ -1333,12 +1357,12 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
1333
1357
|
};
|
|
1334
1358
|
export declare type AvpDashboardUserAccessInput = {
|
|
1335
1359
|
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1336
|
-
|
|
1360
|
+
principalAri: Scalars['ID']['input'];
|
|
1337
1361
|
};
|
|
1338
1362
|
export declare type AvpDashboardUserAccessResult = {
|
|
1339
1363
|
__typename?: 'AVPDashboardUserAccessResult';
|
|
1340
1364
|
accessLevel: AvpDashboardIdentityAccessLevel;
|
|
1341
|
-
|
|
1365
|
+
principalAri: Scalars['ID']['output'];
|
|
1342
1366
|
};
|
|
1343
1367
|
export declare type AvpDashboardsConnection = HasPageInfo & {
|
|
1344
1368
|
__typename?: 'AVPDashboardsConnection';
|
|
@@ -1803,6 +1827,14 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
1803
1827
|
errors?: Maybe<Array<MutationError>>;
|
|
1804
1828
|
success: Scalars['Boolean']['output'];
|
|
1805
1829
|
};
|
|
1830
|
+
export declare type AvpSearchDashboardsInput = {
|
|
1831
|
+
ascending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1832
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
1833
|
+
creatorAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
1834
|
+
sortKey?: InputMaybe<AvpDashboardSortKey>;
|
|
1835
|
+
status?: InputMaybe<AvpDashboardStatus>;
|
|
1836
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
1837
|
+
};
|
|
1806
1838
|
export declare type AvpTemplatePlaceholderReplacement = {
|
|
1807
1839
|
placeholderName: Scalars['String']['input'];
|
|
1808
1840
|
replacementValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2583,7 +2615,7 @@ export declare type AdminAccessUrlCreationResponsePayload = Payload & {
|
|
|
2583
2615
|
};
|
|
2584
2616
|
export declare type AdminAccessUrlDeletionResponsePayload = {
|
|
2585
2617
|
__typename?: 'AdminAccessUrlDeletionResponsePayload';
|
|
2586
|
-
errors?: Maybe<Array<
|
|
2618
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
2587
2619
|
success: Scalars['Boolean']['output'];
|
|
2588
2620
|
};
|
|
2589
2621
|
export declare type AdminAccessUrlEdge = {
|
|
@@ -2610,11 +2642,14 @@ export declare type AdminActivateUserInput = {
|
|
|
2610
2642
|
directoryId: Scalars['String']['input'];
|
|
2611
2643
|
orgId: Scalars['String']['input'];
|
|
2612
2644
|
};
|
|
2613
|
-
export declare type AdminActiveUserResponsePayload =
|
|
2645
|
+
export declare type AdminActiveUserResponsePayload = AdminPayload & {
|
|
2614
2646
|
__typename?: 'AdminActiveUserResponsePayload';
|
|
2615
|
-
errors?: Maybe<Array<
|
|
2647
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
2616
2648
|
success: Scalars['Boolean']['output'];
|
|
2617
2649
|
};
|
|
2650
|
+
export declare type AdminAiPoliciesSearchInput = {
|
|
2651
|
+
resources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
2652
|
+
};
|
|
2618
2653
|
export declare type AdminAiPolicy = {
|
|
2619
2654
|
__typename?: 'AdminAiPolicy';
|
|
2620
2655
|
consented?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2623,6 +2658,7 @@ export declare type AdminAiPolicy = {
|
|
|
2623
2658
|
id?: Maybe<Scalars['ID']['output']>;
|
|
2624
2659
|
name?: Maybe<Scalars['String']['output']>;
|
|
2625
2660
|
resources?: Maybe<Array<AdminPolicyResource>>;
|
|
2661
|
+
status?: Maybe<AdminAiPolicyStatus>;
|
|
2626
2662
|
suspended?: Maybe<Scalars['String']['output']>;
|
|
2627
2663
|
};
|
|
2628
2664
|
export declare type AdminAiPolicyConnection = {
|
|
@@ -2752,9 +2788,9 @@ export declare type AdminAssignRoleInput = {
|
|
|
2752
2788
|
resourceId: Scalars['String']['input'];
|
|
2753
2789
|
roleId: Scalars['String']['input'];
|
|
2754
2790
|
};
|
|
2755
|
-
export declare type AdminAssignRoleResponsePayload =
|
|
2791
|
+
export declare type AdminAssignRoleResponsePayload = AdminPayload & {
|
|
2756
2792
|
__typename?: 'AdminAssignRoleResponsePayload';
|
|
2757
|
-
errors?: Maybe<Array<
|
|
2793
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
2758
2794
|
success: Scalars['Boolean']['output'];
|
|
2759
2795
|
};
|
|
2760
2796
|
export declare type AdminAuditLogBackgroundQueryConnection = {
|
|
@@ -2784,6 +2820,12 @@ export declare type AdminAuditLogBackgroundQueryListEdge = {
|
|
|
2784
2820
|
cursor: Scalars['String']['output'];
|
|
2785
2821
|
node?: Maybe<Array<AdminAuditLogBackgroundQueryResponse>>;
|
|
2786
2822
|
};
|
|
2823
|
+
export declare type AdminAuditLogBackgroundQueryPayload = Payload & {
|
|
2824
|
+
__typename?: 'AdminAuditLogBackgroundQueryPayload';
|
|
2825
|
+
backgroundQuery?: Maybe<AdminAuditLogBackgroundQueryResponse>;
|
|
2826
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2827
|
+
success: Scalars['Boolean']['output'];
|
|
2828
|
+
};
|
|
2787
2829
|
export declare type AdminAuditLogBackgroundQueryPlanConnection = {
|
|
2788
2830
|
__typename?: 'AdminAuditLogBackgroundQueryPlanConnection';
|
|
2789
2831
|
edges?: Maybe<Array<AdminAuditLogBackgroundQueryPlanEdge>>;
|
|
@@ -2823,7 +2865,8 @@ export declare type AdminAuditLogContainer = {
|
|
|
2823
2865
|
export declare enum AdminAuditLogContainerType {
|
|
2824
2866
|
App = "APP",
|
|
2825
2867
|
Org = "ORG",
|
|
2826
|
-
Site = "SITE"
|
|
2868
|
+
Site = "SITE",
|
|
2869
|
+
Unit = "UNIT"
|
|
2827
2870
|
}
|
|
2828
2871
|
export declare type AdminAuditLogDetailedEventLocation = {
|
|
2829
2872
|
__typename?: 'AdminAuditLogDetailedEventLocation';
|
|
@@ -3070,10 +3113,10 @@ export declare type AdminCreateAiPolicyInput = {
|
|
|
3070
3113
|
resources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
3071
3114
|
status?: InputMaybe<AdminAiPolicyStatus>;
|
|
3072
3115
|
};
|
|
3073
|
-
export declare type AdminCreateAiPolicyResponsePayload =
|
|
3116
|
+
export declare type AdminCreateAiPolicyResponsePayload = AdminPayload & {
|
|
3074
3117
|
__typename?: 'AdminCreateAiPolicyResponsePayload';
|
|
3075
3118
|
aiPolicy?: Maybe<AdminAiPolicy>;
|
|
3076
|
-
errors?: Maybe<Array<
|
|
3119
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3077
3120
|
success: Scalars['Boolean']['output'];
|
|
3078
3121
|
};
|
|
3079
3122
|
export declare type AdminCreateInvitePolicyInput = {
|
|
@@ -3086,7 +3129,7 @@ export declare type AdminCreateInvitePolicyInput = {
|
|
|
3086
3129
|
};
|
|
3087
3130
|
export declare type AdminCreateInvitePolicyResponsePayload = {
|
|
3088
3131
|
__typename?: 'AdminCreateInvitePolicyResponsePayload';
|
|
3089
|
-
errors?: Maybe<Array<
|
|
3132
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3090
3133
|
invitePolicy?: Maybe<AdminInvitePolicy>;
|
|
3091
3134
|
success: Scalars['Boolean']['output'];
|
|
3092
3135
|
};
|
|
@@ -3118,9 +3161,9 @@ export declare type AdminDateFilterInput = {
|
|
|
3118
3161
|
timeUnit?: InputMaybe<AdminTimeUnit>;
|
|
3119
3162
|
value?: InputMaybe<Scalars['Int']['input']>;
|
|
3120
3163
|
};
|
|
3121
|
-
export declare type AdminDeactivateResponsePayload =
|
|
3164
|
+
export declare type AdminDeactivateResponsePayload = AdminPayload & {
|
|
3122
3165
|
__typename?: 'AdminDeactivateResponsePayload';
|
|
3123
|
-
errors?: Maybe<Array<
|
|
3166
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3124
3167
|
success: Scalars['Boolean']['output'];
|
|
3125
3168
|
};
|
|
3126
3169
|
export declare type AdminDeactivateUserInput = {
|
|
@@ -3128,15 +3171,15 @@ export declare type AdminDeactivateUserInput = {
|
|
|
3128
3171
|
directoryId: Scalars['String']['input'];
|
|
3129
3172
|
orgId: Scalars['String']['input'];
|
|
3130
3173
|
};
|
|
3131
|
-
export declare type AdminDeleteAiPolicyResponsePayload =
|
|
3174
|
+
export declare type AdminDeleteAiPolicyResponsePayload = AdminPayload & {
|
|
3132
3175
|
__typename?: 'AdminDeleteAiPolicyResponsePayload';
|
|
3133
3176
|
aiPolicy?: Maybe<AdminAiPolicy>;
|
|
3134
|
-
errors?: Maybe<Array<
|
|
3177
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3135
3178
|
success: Scalars['Boolean']['output'];
|
|
3136
3179
|
};
|
|
3137
3180
|
export declare type AdminDeleteInvitePolicyResponsePayload = {
|
|
3138
3181
|
__typename?: 'AdminDeleteInvitePolicyResponsePayload';
|
|
3139
|
-
errors?: Maybe<Array<
|
|
3182
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3140
3183
|
success: Scalars['Boolean']['output'];
|
|
3141
3184
|
};
|
|
3142
3185
|
export declare type AdminDimension = {
|
|
@@ -3220,6 +3263,11 @@ export declare type AdminFreezeWindowsFeature = {
|
|
|
3220
3263
|
__typename?: 'AdminFreezeWindowsFeature';
|
|
3221
3264
|
isEntitled?: Maybe<Scalars['Boolean']['output']>;
|
|
3222
3265
|
};
|
|
3266
|
+
export declare type AdminGenericMutationResponse = AdminPayload & {
|
|
3267
|
+
__typename?: 'AdminGenericMutationResponse';
|
|
3268
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3269
|
+
success: Scalars['Boolean']['output'];
|
|
3270
|
+
};
|
|
3223
3271
|
export declare type AdminGroup = {
|
|
3224
3272
|
__typename?: 'AdminGroup';
|
|
3225
3273
|
counts?: Maybe<AdminGroupCounts>;
|
|
@@ -3334,9 +3382,9 @@ export declare type AdminImpersonateUserInput = {
|
|
|
3334
3382
|
orgId: Scalars['String']['input'];
|
|
3335
3383
|
resourceId: Scalars['String']['input'];
|
|
3336
3384
|
};
|
|
3337
|
-
export declare type AdminImpersonationResponsePayload =
|
|
3385
|
+
export declare type AdminImpersonationResponsePayload = AdminPayload & {
|
|
3338
3386
|
__typename?: 'AdminImpersonationResponsePayload';
|
|
3339
|
-
errors?: Maybe<Array<
|
|
3387
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3340
3388
|
link?: Maybe<Scalars['String']['output']>;
|
|
3341
3389
|
success: Scalars['Boolean']['output'];
|
|
3342
3390
|
};
|
|
@@ -3426,7 +3474,7 @@ export declare type AdminInvitePolicyNotificationSettingsInput = {
|
|
|
3426
3474
|
};
|
|
3427
3475
|
export declare type AdminInviteResponsePayload = {
|
|
3428
3476
|
__typename?: 'AdminInviteResponsePayload';
|
|
3429
|
-
errors?: Maybe<Array<
|
|
3477
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3430
3478
|
inviteResults?: Maybe<Array<AdminInviteResult>>;
|
|
3431
3479
|
success: Scalars['Boolean']['output'];
|
|
3432
3480
|
};
|
|
@@ -3559,6 +3607,10 @@ export declare type AdminOrganizationUnitsArgs = {
|
|
|
3559
3607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3560
3608
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
3561
3609
|
};
|
|
3610
|
+
export declare type AdminPayload = {
|
|
3611
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3612
|
+
success: Scalars['Boolean']['output'];
|
|
3613
|
+
};
|
|
3562
3614
|
export declare type AdminPermission = {
|
|
3563
3615
|
__typename?: 'AdminPermission';
|
|
3564
3616
|
permissionId: Scalars['String']['output'];
|
|
@@ -3611,9 +3663,9 @@ export declare type AdminRelationships = {
|
|
|
3611
3663
|
features?: Maybe<Array<AdminFeature>>;
|
|
3612
3664
|
policies?: Maybe<Array<AdminPolicy>>;
|
|
3613
3665
|
};
|
|
3614
|
-
export declare type AdminReleaseImpersonationResponsePayload =
|
|
3666
|
+
export declare type AdminReleaseImpersonationResponsePayload = AdminPayload & {
|
|
3615
3667
|
__typename?: 'AdminReleaseImpersonationResponsePayload';
|
|
3616
|
-
errors?: Maybe<Array<
|
|
3668
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3617
3669
|
link?: Maybe<Scalars['String']['output']>;
|
|
3618
3670
|
success: Scalars['Boolean']['output'];
|
|
3619
3671
|
};
|
|
@@ -3627,9 +3679,9 @@ export declare type AdminReleaseTrackFeature = {
|
|
|
3627
3679
|
__typename?: 'AdminReleaseTrackFeature';
|
|
3628
3680
|
tracks?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3629
3681
|
};
|
|
3630
|
-
export declare type AdminRemoveUserResponsePayload =
|
|
3682
|
+
export declare type AdminRemoveUserResponsePayload = AdminPayload & {
|
|
3631
3683
|
__typename?: 'AdminRemoveUserResponsePayload';
|
|
3632
|
-
errors?: Maybe<Array<
|
|
3684
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3633
3685
|
success: Scalars['Boolean']['output'];
|
|
3634
3686
|
};
|
|
3635
3687
|
export declare type AdminResource = AdminOrganization | AdminSite | AdminUnit | AdminWorkspace;
|
|
@@ -3651,9 +3703,9 @@ export declare type AdminRevokeRoleInput = {
|
|
|
3651
3703
|
resourceId: Scalars['String']['input'];
|
|
3652
3704
|
roleId: Scalars['String']['input'];
|
|
3653
3705
|
};
|
|
3654
|
-
export declare type AdminRevokeRoleResponsePayload =
|
|
3706
|
+
export declare type AdminRevokeRoleResponsePayload = AdminPayload & {
|
|
3655
3707
|
__typename?: 'AdminRevokeRoleResponsePayload';
|
|
3656
|
-
errors?: Maybe<Array<
|
|
3708
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3657
3709
|
success: Scalars['Boolean']['output'];
|
|
3658
3710
|
};
|
|
3659
3711
|
export declare type AdminRoleAssignmentEffective = {
|
|
@@ -3715,6 +3767,114 @@ export declare type AdminSandboxFeature = {
|
|
|
3715
3767
|
entitledSandbox?: Maybe<Scalars['String']['output']>;
|
|
3716
3768
|
limit?: Maybe<Scalars['Int']['output']>;
|
|
3717
3769
|
};
|
|
3770
|
+
export declare type AdminScimRule = {
|
|
3771
|
+
__typename?: 'AdminScimRule';
|
|
3772
|
+
contract: AdminScimRuleContract;
|
|
3773
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3774
|
+
id: Scalars['ID']['output'];
|
|
3775
|
+
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
3776
|
+
meta?: Maybe<AdminScimRuleMeta>;
|
|
3777
|
+
name: Scalars['String']['output'];
|
|
3778
|
+
status: AdminScimRuleStatus;
|
|
3779
|
+
type: AdminScimRuleType;
|
|
3780
|
+
units: Array<Scalars['ID']['output']>;
|
|
3781
|
+
};
|
|
3782
|
+
export declare type AdminScimRuleCondition = {
|
|
3783
|
+
__typename?: 'AdminScimRuleCondition';
|
|
3784
|
+
condition: AdminScimRuleConditionOperator;
|
|
3785
|
+
name: AdminScimRuleConditionName;
|
|
3786
|
+
type: AdminScimRuleConditionType;
|
|
3787
|
+
values: Array<Scalars['String']['output']>;
|
|
3788
|
+
};
|
|
3789
|
+
export declare type AdminScimRuleConditionInput = {
|
|
3790
|
+
condition: AdminScimRuleConditionOperator;
|
|
3791
|
+
name: AdminScimRuleConditionName;
|
|
3792
|
+
type: AdminScimRuleConditionType;
|
|
3793
|
+
values: Array<Scalars['String']['input']>;
|
|
3794
|
+
};
|
|
3795
|
+
export declare enum AdminScimRuleConditionName {
|
|
3796
|
+
GroupName = "GROUP_NAME"
|
|
3797
|
+
}
|
|
3798
|
+
export declare enum AdminScimRuleConditionOperator {
|
|
3799
|
+
EndsWithOneOf = "ENDS_WITH_ONE_OF",
|
|
3800
|
+
IsOneOf = "IS_ONE_OF",
|
|
3801
|
+
StartsWithOneOf = "STARTS_WITH_ONE_OF"
|
|
3802
|
+
}
|
|
3803
|
+
export declare enum AdminScimRuleConditionRelationship {
|
|
3804
|
+
And = "AND",
|
|
3805
|
+
Or = "OR"
|
|
3806
|
+
}
|
|
3807
|
+
export declare enum AdminScimRuleConditionType {
|
|
3808
|
+
Expression = "EXPRESSION"
|
|
3809
|
+
}
|
|
3810
|
+
export declare type AdminScimRuleContract = {
|
|
3811
|
+
__typename?: 'AdminScimRuleContract';
|
|
3812
|
+
conditionRelationship: AdminScimRuleConditionRelationship;
|
|
3813
|
+
conditions: Array<AdminScimRuleCondition>;
|
|
3814
|
+
};
|
|
3815
|
+
export declare type AdminScimRuleContractInput = {
|
|
3816
|
+
conditionRelationship: AdminScimRuleConditionRelationship;
|
|
3817
|
+
conditions: Array<AdminScimRuleConditionInput>;
|
|
3818
|
+
};
|
|
3819
|
+
export declare type AdminScimRuleCreateInput = {
|
|
3820
|
+
contract: AdminScimRuleContractInput;
|
|
3821
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3822
|
+
name: Scalars['String']['input'];
|
|
3823
|
+
status?: InputMaybe<AdminScimRuleCreateStatus>;
|
|
3824
|
+
type: AdminScimRuleType;
|
|
3825
|
+
units: Array<Scalars['ID']['input']>;
|
|
3826
|
+
};
|
|
3827
|
+
export declare enum AdminScimRuleCreateStatus {
|
|
3828
|
+
Active = "ACTIVE",
|
|
3829
|
+
Draft = "DRAFT"
|
|
3830
|
+
}
|
|
3831
|
+
export declare type AdminScimRuleMeta = {
|
|
3832
|
+
__typename?: 'AdminScimRuleMeta';
|
|
3833
|
+
ruleHash: Scalars['String']['output'];
|
|
3834
|
+
};
|
|
3835
|
+
export declare type AdminScimRuleMutationPayload = AdminPayload & {
|
|
3836
|
+
__typename?: 'AdminScimRuleMutationPayload';
|
|
3837
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3838
|
+
rule?: Maybe<AdminScimRule>;
|
|
3839
|
+
success: Scalars['Boolean']['output'];
|
|
3840
|
+
};
|
|
3841
|
+
export declare type AdminScimRuleSearchConnection = {
|
|
3842
|
+
__typename?: 'AdminScimRuleSearchConnection';
|
|
3843
|
+
edges?: Maybe<Array<AdminScimRuleSearchEdge>>;
|
|
3844
|
+
pageInfo: PageInfo;
|
|
3845
|
+
};
|
|
3846
|
+
export declare type AdminScimRuleSearchEdge = {
|
|
3847
|
+
__typename?: 'AdminScimRuleSearchEdge';
|
|
3848
|
+
cursor: Scalars['String']['output'];
|
|
3849
|
+
node?: Maybe<AdminScimRule>;
|
|
3850
|
+
};
|
|
3851
|
+
export declare type AdminScimRuleSearchInput = {
|
|
3852
|
+
modifiedAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3853
|
+
modifiedBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3854
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3855
|
+
status?: InputMaybe<Array<AdminScimRuleStatus>>;
|
|
3856
|
+
type?: InputMaybe<AdminScimRuleType>;
|
|
3857
|
+
unit?: InputMaybe<Scalars['ID']['input']>;
|
|
3858
|
+
};
|
|
3859
|
+
export declare enum AdminScimRuleStatus {
|
|
3860
|
+
Active = "ACTIVE",
|
|
3861
|
+
Draft = "DRAFT",
|
|
3862
|
+
Inactive = "INACTIVE"
|
|
3863
|
+
}
|
|
3864
|
+
export declare enum AdminScimRuleType {
|
|
3865
|
+
Group = "GROUP"
|
|
3866
|
+
}
|
|
3867
|
+
export declare type AdminScimRuleUpdateInput = {
|
|
3868
|
+
contract?: InputMaybe<AdminScimRuleContractInput>;
|
|
3869
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3870
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
3871
|
+
ruleHash: Scalars['String']['input'];
|
|
3872
|
+
status?: InputMaybe<AdminScimRuleUpdateStatus>;
|
|
3873
|
+
};
|
|
3874
|
+
export declare enum AdminScimRuleUpdateStatus {
|
|
3875
|
+
Active = "ACTIVE",
|
|
3876
|
+
Inactive = "INACTIVE"
|
|
3877
|
+
}
|
|
3718
3878
|
export declare type AdminSearchGroupInput = {
|
|
3719
3879
|
accountIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3720
3880
|
directoryIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -3830,17 +3990,6 @@ export declare type AdminStringKeyValuePair = {
|
|
|
3830
3990
|
key: Scalars['String']['output'];
|
|
3831
3991
|
value: Scalars['String']['output'];
|
|
3832
3992
|
};
|
|
3833
|
-
export declare type AdminTempMutationError = {
|
|
3834
|
-
__typename?: 'AdminTempMutationError';
|
|
3835
|
-
extensions?: Maybe<AdminTempMutationErrorExtension>;
|
|
3836
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
3837
|
-
};
|
|
3838
|
-
export declare type AdminTempMutationErrorExtension = {
|
|
3839
|
-
__typename?: 'AdminTempMutationErrorExtension';
|
|
3840
|
-
downstreamService?: Maybe<Scalars['String']['output']>;
|
|
3841
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
3842
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
3843
|
-
};
|
|
3844
3993
|
export declare enum AdminTimeSearchType {
|
|
3845
3994
|
BetweenAbsolute = "BETWEEN_ABSOLUTE",
|
|
3846
3995
|
BetweenRelative = "BETWEEN_RELATIVE",
|
|
@@ -4005,19 +4154,20 @@ export declare type AdminUnitsForOrgSearchInput = {
|
|
|
4005
4154
|
export declare type AdminUnitsForOrgSortInput = {
|
|
4006
4155
|
name: SortDirection;
|
|
4007
4156
|
};
|
|
4008
|
-
export declare type AdminUnlinkScimUserResponsePayload =
|
|
4157
|
+
export declare type AdminUnlinkScimUserResponsePayload = AdminPayload & {
|
|
4009
4158
|
__typename?: 'AdminUnlinkScimUserResponsePayload';
|
|
4010
|
-
errors?: Maybe<Array<
|
|
4159
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
4011
4160
|
success: Scalars['Boolean']['output'];
|
|
4012
4161
|
};
|
|
4013
4162
|
export declare type AdminUpdateAiPolicyInput = {
|
|
4014
4163
|
consented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4015
4164
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
4165
|
+
status?: InputMaybe<AdminAiPolicyStatus>;
|
|
4016
4166
|
};
|
|
4017
|
-
export declare type AdminUpdateAiPolicyResponsePayload =
|
|
4167
|
+
export declare type AdminUpdateAiPolicyResponsePayload = AdminPayload & {
|
|
4018
4168
|
__typename?: 'AdminUpdateAiPolicyResponsePayload';
|
|
4019
4169
|
aiPolicy?: Maybe<AdminAiPolicy>;
|
|
4020
|
-
errors?: Maybe<Array<
|
|
4170
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
4021
4171
|
success: Scalars['Boolean']['output'];
|
|
4022
4172
|
};
|
|
4023
4173
|
export declare type AdminUpdateInvitePolicyInput = {
|
|
@@ -4030,7 +4180,7 @@ export declare type AdminUpdateInvitePolicyInput = {
|
|
|
4030
4180
|
};
|
|
4031
4181
|
export declare type AdminUpdateInvitePolicyResponsePayload = {
|
|
4032
4182
|
__typename?: 'AdminUpdateInvitePolicyResponsePayload';
|
|
4033
|
-
errors?: Maybe<Array<
|
|
4183
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
4034
4184
|
invitePolicy?: Maybe<AdminInvitePolicy>;
|
|
4035
4185
|
success: Scalars['Boolean']['output'];
|
|
4036
4186
|
};
|
|
@@ -12167,6 +12317,18 @@ export declare type AssetsVerticalInsightCard = {
|
|
|
12167
12317
|
summary: Scalars['String']['output'];
|
|
12168
12318
|
title: Scalars['String']['output'];
|
|
12169
12319
|
};
|
|
12320
|
+
export declare type AssetsVerticalInsightDefinition = {
|
|
12321
|
+
__typename?: 'AssetsVerticalInsightDefinition';
|
|
12322
|
+
category: Scalars['String']['output'];
|
|
12323
|
+
description: Scalars['String']['output'];
|
|
12324
|
+
id: Scalars['ID']['output'];
|
|
12325
|
+
name: Scalars['String']['output'];
|
|
12326
|
+
};
|
|
12327
|
+
export declare type AssetsVerticalInsightDefinitionPayload = {
|
|
12328
|
+
__typename?: 'AssetsVerticalInsightDefinitionPayload';
|
|
12329
|
+
insights: Array<AssetsVerticalInsightDefinition>;
|
|
12330
|
+
};
|
|
12331
|
+
export declare type AssetsVerticalInsightDefinitionResult = AssetsVerticalInsightDefinitionPayload | QueryError;
|
|
12170
12332
|
export declare type AssetsVerticalInsightDetail = {
|
|
12171
12333
|
__typename?: 'AssetsVerticalInsightDetail';
|
|
12172
12334
|
category: Scalars['String']['output'];
|
|
@@ -12176,6 +12338,7 @@ export declare type AssetsVerticalInsightDetail = {
|
|
|
12176
12338
|
insightSummary?: Maybe<Scalars['String']['output']>;
|
|
12177
12339
|
name: Scalars['String']['output'];
|
|
12178
12340
|
};
|
|
12341
|
+
export declare type AssetsVerticalInsightDetailsByDefinitionResult = AssetsVerticalInsightDetail | QueryError;
|
|
12179
12342
|
export declare type AssetsVerticalInsightDetailsPayload = {
|
|
12180
12343
|
__typename?: 'AssetsVerticalInsightDetailsPayload';
|
|
12181
12344
|
insights: Array<AssetsVerticalInsightDetail>;
|
|
@@ -12747,6 +12910,32 @@ export declare type Author = {
|
|
|
12747
12910
|
id?: Maybe<Scalars['String']['output']>;
|
|
12748
12911
|
name?: Maybe<Scalars['String']['output']>;
|
|
12749
12912
|
};
|
|
12913
|
+
export declare enum AutoManagedSprintErrorType {
|
|
12914
|
+
Generic = "GENERIC",
|
|
12915
|
+
OpenSubtasks = "OPEN_SUBTASKS"
|
|
12916
|
+
}
|
|
12917
|
+
export declare type AutoManagedSprintGenericError = AutoManagedSprintJobError & {
|
|
12918
|
+
__typename?: 'AutoManagedSprintGenericError';
|
|
12919
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
12920
|
+
retriesExhausted?: Maybe<Scalars['Boolean']['output']>;
|
|
12921
|
+
type: AutoManagedSprintErrorType;
|
|
12922
|
+
};
|
|
12923
|
+
export declare type AutoManagedSprintJobError = {
|
|
12924
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
12925
|
+
retriesExhausted?: Maybe<Scalars['Boolean']['output']>;
|
|
12926
|
+
type: AutoManagedSprintErrorType;
|
|
12927
|
+
};
|
|
12928
|
+
export declare type AutoManagedSprintOpenSubtasksError = AutoManagedSprintJobError & {
|
|
12929
|
+
__typename?: 'AutoManagedSprintOpenSubtasksError';
|
|
12930
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
12931
|
+
parentIssueKeys?: Maybe<Array<Scalars['String']['output']>>;
|
|
12932
|
+
retriesExhausted?: Maybe<Scalars['Boolean']['output']>;
|
|
12933
|
+
type: AutoManagedSprintErrorType;
|
|
12934
|
+
};
|
|
12935
|
+
export declare enum AutoManagedSprintSetting {
|
|
12936
|
+
Disabled = "DISABLED",
|
|
12937
|
+
Enabled = "ENABLED"
|
|
12938
|
+
}
|
|
12750
12939
|
export declare type AuxEffectsInvocationPayload = {
|
|
12751
12940
|
config?: InputMaybe<Scalars['JSON']['input']>;
|
|
12752
12941
|
context: Scalars['JSON']['input'];
|
|
@@ -12804,11 +12993,16 @@ export declare type BacklogExtension = {
|
|
|
12804
12993
|
operations?: Maybe<Array<Maybe<SoftwareOperation>>>;
|
|
12805
12994
|
};
|
|
12806
12995
|
export declare type BaseSprint = {
|
|
12996
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
12997
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
12807
12998
|
goal?: Maybe<Scalars['String']['output']>;
|
|
12808
12999
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13000
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
12809
13001
|
name?: Maybe<Scalars['String']['output']>;
|
|
13002
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
12810
13003
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
12811
13004
|
sprintState: SprintState;
|
|
13005
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
12812
13006
|
};
|
|
12813
13007
|
export declare type BasicBoardFeatureView = Node & {
|
|
12814
13008
|
__typename?: 'BasicBoardFeatureView';
|
|
@@ -15932,6 +16126,7 @@ export declare type ChannelPlatformCheckOtpVerifiedResponse = {
|
|
|
15932
16126
|
export declare type ChannelPlatformClientConfigDetailsResponse = {
|
|
15933
16127
|
__typename?: 'ChannelPlatformClientConfigDetailsResponse';
|
|
15934
16128
|
showCustomerLocalTimeToAgent?: Maybe<Scalars['Boolean']['output']>;
|
|
16129
|
+
supportedChannels?: Maybe<Array<ChannelPlatformChannelType>>;
|
|
15935
16130
|
ticketPlatformType?: Maybe<Scalars['String']['output']>;
|
|
15936
16131
|
};
|
|
15937
16132
|
export declare type ChannelPlatformConnectDetails = {
|
|
@@ -28137,6 +28332,9 @@ export declare type ConfluenceForgeExtensionDataContent = {
|
|
|
28137
28332
|
};
|
|
28138
28333
|
export declare type ConfluenceForgeExtensionDataMacro = {
|
|
28139
28334
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
28335
|
+
isConfiguring?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28336
|
+
isInserting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28337
|
+
layout?: InputMaybe<Scalars['String']['input']>;
|
|
28140
28338
|
};
|
|
28141
28339
|
export declare type ConfluenceForgeExtensionDataSpace = {
|
|
28142
28340
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31213,6 +31411,34 @@ export declare type ConfluenceSpace = Node & {
|
|
|
31213
31411
|
type?: Maybe<ConfluenceSpaceType>;
|
|
31214
31412
|
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
31215
31413
|
};
|
|
31414
|
+
export declare type ConfluenceSpaceAnalyticsPermissionConnection = {
|
|
31415
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionConnection';
|
|
31416
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpaceAnalyticsPermissionEdge>>>;
|
|
31417
|
+
isOpen: Scalars['Boolean']['output'];
|
|
31418
|
+
pageInfo: ConfluencePageInfo;
|
|
31419
|
+
};
|
|
31420
|
+
export declare type ConfluenceSpaceAnalyticsPermissionEdge = {
|
|
31421
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionEdge';
|
|
31422
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
31423
|
+
node: ConfluenceSpaceAnalyticsPermissionPrincipal;
|
|
31424
|
+
};
|
|
31425
|
+
export declare type ConfluenceSpaceAnalyticsPermissionGroupPrincipal = ConfluenceSpaceAnalyticsPermissionPrincipal & {
|
|
31426
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionGroupPrincipal';
|
|
31427
|
+
displayName: Scalars['String']['output'];
|
|
31428
|
+
principalId: Scalars['ID']['output'];
|
|
31429
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
31430
|
+
};
|
|
31431
|
+
export declare type ConfluenceSpaceAnalyticsPermissionPrincipal = {
|
|
31432
|
+
displayName: Scalars['String']['output'];
|
|
31433
|
+
principalId: Scalars['ID']['output'];
|
|
31434
|
+
};
|
|
31435
|
+
export declare type ConfluenceSpaceAnalyticsPermissionUserPrincipal = ConfluenceSpaceAnalyticsPermissionPrincipal & {
|
|
31436
|
+
__typename?: 'ConfluenceSpaceAnalyticsPermissionUserPrincipal';
|
|
31437
|
+
displayName: Scalars['String']['output'];
|
|
31438
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
31439
|
+
principalId: Scalars['ID']['output'];
|
|
31440
|
+
profilePicture?: Maybe<Icon>;
|
|
31441
|
+
};
|
|
31216
31442
|
export declare type ConfluenceSpaceConnection = {
|
|
31217
31443
|
__typename?: 'ConfluenceSpaceConnection';
|
|
31218
31444
|
edges?: Maybe<Array<Maybe<ConfluenceSpaceEdge>>>;
|
|
@@ -32155,6 +32381,17 @@ export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payloa
|
|
|
32155
32381
|
errors?: Maybe<Array<MutationError>>;
|
|
32156
32382
|
success: Scalars['Boolean']['output'];
|
|
32157
32383
|
};
|
|
32384
|
+
export declare type ConfluenceUpdateMarkdownModeInput = {
|
|
32385
|
+
contentId: Scalars['ID']['input'];
|
|
32386
|
+
isMarkdownMode: Scalars['Boolean']['input'];
|
|
32387
|
+
};
|
|
32388
|
+
export declare type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
32389
|
+
__typename?: 'ConfluenceUpdateMarkdownModePayload';
|
|
32390
|
+
contentId: Scalars['String']['output'];
|
|
32391
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32392
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
32393
|
+
success: Scalars['Boolean']['output'];
|
|
32394
|
+
};
|
|
32158
32395
|
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
32159
32396
|
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
32160
32397
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -32364,6 +32601,18 @@ export declare type ConfluenceUpdateSmartSpaceOverviewTopLinksInput = {
|
|
|
32364
32601
|
edit?: InputMaybe<ConfluenceEditTopLinkInput>;
|
|
32365
32602
|
remove?: InputMaybe<ConfluenceRemoveTopLinkInput>;
|
|
32366
32603
|
};
|
|
32604
|
+
export declare type ConfluenceUpdateSpaceAnalyticsPermissionsInput = {
|
|
32605
|
+
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32606
|
+
isOpen: Scalars['Boolean']['input'];
|
|
32607
|
+
spaceId: Scalars['ID']['input'];
|
|
32608
|
+
userAccountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
32609
|
+
};
|
|
32610
|
+
export declare type ConfluenceUpdateSpaceAnalyticsPermissionsPayload = Payload & {
|
|
32611
|
+
__typename?: 'ConfluenceUpdateSpaceAnalyticsPermissionsPayload';
|
|
32612
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32613
|
+
spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
32614
|
+
success: Scalars['Boolean']['output'];
|
|
32615
|
+
};
|
|
32367
32616
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
32368
32617
|
id: Scalars['ID']['input'];
|
|
32369
32618
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39514,6 +39763,8 @@ export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
|
39514
39763
|
functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39515
39764
|
kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39516
39765
|
kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39766
|
+
llmInput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39767
|
+
llmOutput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39517
39768
|
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39518
39769
|
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39519
39770
|
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
@@ -39704,6 +39955,8 @@ export declare enum DevConsoleResource {
|
|
|
39704
39955
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
39705
39956
|
KvsRead = "KVS_READ",
|
|
39706
39957
|
KvsWrite = "KVS_WRITE",
|
|
39958
|
+
LlmInput = "LLM_INPUT",
|
|
39959
|
+
LlmOutput = "LLM_OUTPUT",
|
|
39707
39960
|
LogsWrite = "LOGS_WRITE",
|
|
39708
39961
|
SqlCompute = "SQL_COMPUTE",
|
|
39709
39962
|
SqlRequests = "SQL_REQUESTS",
|
|
@@ -39721,6 +39974,8 @@ export declare type DevConsoleResourceUsageData = {
|
|
|
39721
39974
|
functionCompute?: Maybe<Array<DevConsoleComputeResourceUsage>>;
|
|
39722
39975
|
kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39723
39976
|
kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39977
|
+
llmInput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39978
|
+
llmOutput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39724
39979
|
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39725
39980
|
sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39726
39981
|
sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -41840,10 +42095,13 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
|
|
|
41840
42095
|
success: Scalars['Boolean']['output'];
|
|
41841
42096
|
};
|
|
41842
42097
|
export declare type EditSprintInput = {
|
|
42098
|
+
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
41843
42099
|
boardId: Scalars['ID']['input'];
|
|
41844
42100
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
41845
42101
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
42102
|
+
incompleteCardsDestination?: InputMaybe<SoftwareCardsDestination>;
|
|
41846
42103
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
42104
|
+
rollingSprint?: InputMaybe<RollingSprintSetting>;
|
|
41847
42105
|
sprintId: Scalars['ID']['input'];
|
|
41848
42106
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
41849
42107
|
};
|
|
@@ -45494,7 +45752,6 @@ export declare type GlobalAppForgeContextToken = {
|
|
|
45494
45752
|
jwt: Scalars['String']['output'];
|
|
45495
45753
|
};
|
|
45496
45754
|
export declare type GlobalAppSignForgeContextTokensInput = {
|
|
45497
|
-
accountId: Scalars['ID']['input'];
|
|
45498
45755
|
contextIds: Array<Scalars['ID']['input']>;
|
|
45499
45756
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
45500
45757
|
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49938,6 +50195,10 @@ export declare type GraphStore = {
|
|
|
49938
50195
|
atlassianUserUpdatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseConnection>;
|
|
49939
50196
|
atlassianUserUpdatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusConnection>;
|
|
49940
50197
|
atlassianUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseConnection>;
|
|
50198
|
+
benefitItemHasWork?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkConnection>;
|
|
50199
|
+
benefitItemHasWorkBatch?: Maybe<GraphStoreBatchBenefitItemHasWorkConnection>;
|
|
50200
|
+
benefitItemHasWorkInverse?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseConnection>;
|
|
50201
|
+
benefitItemHasWorkInverseBatch?: Maybe<GraphStoreBatchBenefitItemHasWorkConnection>;
|
|
49941
50202
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
49942
50203
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
49943
50204
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -50006,6 +50267,10 @@ export declare type GraphStore = {
|
|
|
50006
50267
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
50007
50268
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
50008
50269
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
50270
|
+
costItemHasWork?: Maybe<GraphStoreSimplifiedCostItemHasWorkConnection>;
|
|
50271
|
+
costItemHasWorkBatch?: Maybe<GraphStoreBatchCostItemHasWorkConnection>;
|
|
50272
|
+
costItemHasWorkInverse?: Maybe<GraphStoreSimplifiedCostItemHasWorkInverseConnection>;
|
|
50273
|
+
costItemHasWorkInverseBatch?: Maybe<GraphStoreBatchCostItemHasWorkConnection>;
|
|
50009
50274
|
csmCustomerHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection>;
|
|
50010
50275
|
csmCustomerHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection>;
|
|
50011
50276
|
csmOrganizationHasCsmCustomer?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerConnection>;
|
|
@@ -50063,6 +50328,8 @@ export declare type GraphStore = {
|
|
|
50063
50328
|
externalCaseHasExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalCustomerOrgInverseConnection>;
|
|
50064
50329
|
externalCaseHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalWorkItemConnection>;
|
|
50065
50330
|
externalCaseHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseConnection>;
|
|
50331
|
+
externalConversationLinksExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection>;
|
|
50332
|
+
externalConversationLinksExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection>;
|
|
50066
50333
|
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
50067
50334
|
externalCustomerContactHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection>;
|
|
50068
50335
|
externalCustomerContactHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemConnection>;
|
|
@@ -51998,6 +52265,36 @@ export declare type GraphStoreAtlassianUserUpdatedExternalTestStatusInverseArgs
|
|
|
51998
52265
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51999
52266
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestStatusSortInput>;
|
|
52000
52267
|
};
|
|
52268
|
+
export declare type GraphStoreBenefitItemHasWorkArgs = {
|
|
52269
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52270
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52271
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52272
|
+
id: Scalars['ID']['input'];
|
|
52273
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52274
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52275
|
+
};
|
|
52276
|
+
export declare type GraphStoreBenefitItemHasWorkBatchArgs = {
|
|
52277
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52278
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52279
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52280
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52281
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52282
|
+
};
|
|
52283
|
+
export declare type GraphStoreBenefitItemHasWorkInverseArgs = {
|
|
52284
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52285
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52286
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52287
|
+
id: Scalars['ID']['input'];
|
|
52288
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52289
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52290
|
+
};
|
|
52291
|
+
export declare type GraphStoreBenefitItemHasWorkInverseBatchArgs = {
|
|
52292
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52293
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52294
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52295
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52296
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52297
|
+
};
|
|
52001
52298
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
52002
52299
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52003
52300
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52520,6 +52817,36 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
52520
52817
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52521
52818
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
52522
52819
|
};
|
|
52820
|
+
export declare type GraphStoreCostItemHasWorkArgs = {
|
|
52821
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52822
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52823
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52824
|
+
id: Scalars['ID']['input'];
|
|
52825
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52826
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52827
|
+
};
|
|
52828
|
+
export declare type GraphStoreCostItemHasWorkBatchArgs = {
|
|
52829
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52830
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52831
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52832
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52833
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52834
|
+
};
|
|
52835
|
+
export declare type GraphStoreCostItemHasWorkInverseArgs = {
|
|
52836
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52837
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52838
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52839
|
+
id: Scalars['ID']['input'];
|
|
52840
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52841
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52842
|
+
};
|
|
52843
|
+
export declare type GraphStoreCostItemHasWorkInverseBatchArgs = {
|
|
52844
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52846
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52847
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52848
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52849
|
+
};
|
|
52523
52850
|
export declare type GraphStoreCsmCustomerHasJiraWorkItemArgs = {
|
|
52524
52851
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52525
52852
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52973,6 +53300,22 @@ export declare type GraphStoreExternalCaseHasExternalWorkItemInverseArgs = {
|
|
|
52973
53300
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52974
53301
|
sort?: InputMaybe<GraphStoreExternalCaseHasExternalWorkItemSortInput>;
|
|
52975
53302
|
};
|
|
53303
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventArgs = {
|
|
53304
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53305
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53306
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53307
|
+
id: Scalars['ID']['input'];
|
|
53308
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53309
|
+
sort?: InputMaybe<GraphStoreExternalConversationLinksExternalCalendarEventSortInput>;
|
|
53310
|
+
};
|
|
53311
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventInverseArgs = {
|
|
53312
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53313
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53314
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53315
|
+
id: Scalars['ID']['input'];
|
|
53316
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53317
|
+
sort?: InputMaybe<GraphStoreExternalConversationLinksExternalCalendarEventSortInput>;
|
|
53318
|
+
};
|
|
52976
53319
|
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventArgs = {
|
|
52977
53320
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52978
53321
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60008,6 +60351,47 @@ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode =
|
|
|
60008
60351
|
id: Scalars['ID']['output'];
|
|
60009
60352
|
};
|
|
60010
60353
|
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
60354
|
+
export declare type GraphStoreBatchBenefitItemHasWorkConnection = HasPageInfo & {
|
|
60355
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkConnection';
|
|
60356
|
+
edges: Array<Maybe<GraphStoreBatchBenefitItemHasWorkEdge>>;
|
|
60357
|
+
nodes: Array<Maybe<GraphStoreBatchBenefitItemHasWorkNode>>;
|
|
60358
|
+
pageInfo: PageInfo;
|
|
60359
|
+
};
|
|
60360
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEdge = {
|
|
60361
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkEdge';
|
|
60362
|
+
node: GraphStoreBatchBenefitItemHasWorkInnerConnection;
|
|
60363
|
+
};
|
|
60364
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEndNode = {
|
|
60365
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkEndNode';
|
|
60366
|
+
data?: Maybe<GraphStoreBatchBenefitItemHasWorkEndUnion>;
|
|
60367
|
+
id: Scalars['ID']['output'];
|
|
60368
|
+
};
|
|
60369
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
60370
|
+
export declare type GraphStoreBatchBenefitItemHasWorkInnerConnection = {
|
|
60371
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkInnerConnection';
|
|
60372
|
+
edges: Array<Maybe<GraphStoreBatchBenefitItemHasWorkInnerEdge>>;
|
|
60373
|
+
nodes: Array<Maybe<GraphStoreBatchBenefitItemHasWorkNode>>;
|
|
60374
|
+
requestedId: Scalars['ID']['output'];
|
|
60375
|
+
};
|
|
60376
|
+
export declare type GraphStoreBatchBenefitItemHasWorkInnerEdge = {
|
|
60377
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkInnerEdge';
|
|
60378
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60379
|
+
node: GraphStoreBatchBenefitItemHasWorkNode;
|
|
60380
|
+
};
|
|
60381
|
+
export declare type GraphStoreBatchBenefitItemHasWorkNode = Node & {
|
|
60382
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkNode';
|
|
60383
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60384
|
+
from: GraphStoreBatchBenefitItemHasWorkStartNode;
|
|
60385
|
+
id: Scalars['ID']['output'];
|
|
60386
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60387
|
+
to: GraphStoreBatchBenefitItemHasWorkEndNode;
|
|
60388
|
+
};
|
|
60389
|
+
export declare type GraphStoreBatchBenefitItemHasWorkStartNode = {
|
|
60390
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkStartNode';
|
|
60391
|
+
data?: Maybe<GraphStoreBatchBenefitItemHasWorkStartUnion>;
|
|
60392
|
+
id: Scalars['ID']['output'];
|
|
60393
|
+
};
|
|
60394
|
+
export declare type GraphStoreBatchBenefitItemHasWorkStartUnion = MercuryBenefitItem;
|
|
60011
60395
|
export declare type GraphStoreBatchChangeProposalHasAtlasGoalConnection = HasPageInfo & {
|
|
60012
60396
|
__typename?: 'GraphStoreBatchChangeProposalHasAtlasGoalConnection';
|
|
60013
60397
|
edges: Array<Maybe<GraphStoreBatchChangeProposalHasAtlasGoalEdge>>;
|
|
@@ -60131,6 +60515,47 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
60131
60515
|
id: Scalars['ID']['output'];
|
|
60132
60516
|
};
|
|
60133
60517
|
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60518
|
+
export declare type GraphStoreBatchCostItemHasWorkConnection = HasPageInfo & {
|
|
60519
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkConnection';
|
|
60520
|
+
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkEdge>>;
|
|
60521
|
+
nodes: Array<Maybe<GraphStoreBatchCostItemHasWorkNode>>;
|
|
60522
|
+
pageInfo: PageInfo;
|
|
60523
|
+
};
|
|
60524
|
+
export declare type GraphStoreBatchCostItemHasWorkEdge = {
|
|
60525
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkEdge';
|
|
60526
|
+
node: GraphStoreBatchCostItemHasWorkInnerConnection;
|
|
60527
|
+
};
|
|
60528
|
+
export declare type GraphStoreBatchCostItemHasWorkEndNode = {
|
|
60529
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkEndNode';
|
|
60530
|
+
data?: Maybe<GraphStoreBatchCostItemHasWorkEndUnion>;
|
|
60531
|
+
id: Scalars['ID']['output'];
|
|
60532
|
+
};
|
|
60533
|
+
export declare type GraphStoreBatchCostItemHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
60534
|
+
export declare type GraphStoreBatchCostItemHasWorkInnerConnection = {
|
|
60535
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkInnerConnection';
|
|
60536
|
+
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkInnerEdge>>;
|
|
60537
|
+
nodes: Array<Maybe<GraphStoreBatchCostItemHasWorkNode>>;
|
|
60538
|
+
requestedId: Scalars['ID']['output'];
|
|
60539
|
+
};
|
|
60540
|
+
export declare type GraphStoreBatchCostItemHasWorkInnerEdge = {
|
|
60541
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkInnerEdge';
|
|
60542
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60543
|
+
node: GraphStoreBatchCostItemHasWorkNode;
|
|
60544
|
+
};
|
|
60545
|
+
export declare type GraphStoreBatchCostItemHasWorkNode = Node & {
|
|
60546
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkNode';
|
|
60547
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60548
|
+
from: GraphStoreBatchCostItemHasWorkStartNode;
|
|
60549
|
+
id: Scalars['ID']['output'];
|
|
60550
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60551
|
+
to: GraphStoreBatchCostItemHasWorkEndNode;
|
|
60552
|
+
};
|
|
60553
|
+
export declare type GraphStoreBatchCostItemHasWorkStartNode = {
|
|
60554
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkStartNode';
|
|
60555
|
+
data?: Maybe<GraphStoreBatchCostItemHasWorkStartUnion>;
|
|
60556
|
+
id: Scalars['ID']['output'];
|
|
60557
|
+
};
|
|
60558
|
+
export declare type GraphStoreBatchCostItemHasWorkStartUnion = MercuryCostItem;
|
|
60134
60559
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
60135
60560
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
60136
60561
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -61429,6 +61854,9 @@ export declare type GraphStoreBatchUserViewedProjectUpdateStartNode = {
|
|
|
61429
61854
|
id: Scalars['ID']['output'];
|
|
61430
61855
|
};
|
|
61431
61856
|
export declare type GraphStoreBatchUserViewedProjectUpdateStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
61857
|
+
export declare type GraphStoreBenefitItemHasWorkSortInput = {
|
|
61858
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61859
|
+
};
|
|
61432
61860
|
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
61433
61861
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61434
61862
|
};
|
|
@@ -61516,6 +61944,9 @@ export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
|
61516
61944
|
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
61517
61945
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61518
61946
|
};
|
|
61947
|
+
export declare type GraphStoreCostItemHasWorkSortInput = {
|
|
61948
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61949
|
+
};
|
|
61519
61950
|
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput = {
|
|
61520
61951
|
category?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput>;
|
|
61521
61952
|
};
|
|
@@ -62857,6 +63288,9 @@ export declare type GraphStoreExternalCaseHasExternalCustomerOrgSortInput = {
|
|
|
62857
63288
|
export declare type GraphStoreExternalCaseHasExternalWorkItemSortInput = {
|
|
62858
63289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
62859
63290
|
};
|
|
63291
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventSortInput = {
|
|
63292
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63293
|
+
};
|
|
62860
63294
|
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventSortInput = {
|
|
62861
63295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
62862
63296
|
};
|
|
@@ -69509,6 +69943,34 @@ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusIn
|
|
|
69509
69943
|
};
|
|
69510
69944
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
69511
69945
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusUnion = ExternalTestStatus;
|
|
69946
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkConnection = HasPageInfo & {
|
|
69947
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkConnection';
|
|
69948
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBenefitItemHasWorkEdge>>>;
|
|
69949
|
+
pageInfo: PageInfo;
|
|
69950
|
+
};
|
|
69951
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkEdge = {
|
|
69952
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkEdge';
|
|
69953
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69954
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69955
|
+
id: Scalars['ID']['output'];
|
|
69956
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69957
|
+
node?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkUnion>;
|
|
69958
|
+
};
|
|
69959
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseConnection = HasPageInfo & {
|
|
69960
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkInverseConnection';
|
|
69961
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseEdge>>>;
|
|
69962
|
+
pageInfo: PageInfo;
|
|
69963
|
+
};
|
|
69964
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseEdge = {
|
|
69965
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkInverseEdge';
|
|
69966
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69967
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69968
|
+
id: Scalars['ID']['output'];
|
|
69969
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69970
|
+
node?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseUnion>;
|
|
69971
|
+
};
|
|
69972
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseUnion = MercuryBenefitItem;
|
|
69973
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
69512
69974
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
69513
69975
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
69514
69976
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -70269,6 +70731,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
70269
70731
|
};
|
|
70270
70732
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
70271
70733
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
70734
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkConnection = HasPageInfo & {
|
|
70735
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkConnection';
|
|
70736
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCostItemHasWorkEdge>>>;
|
|
70737
|
+
pageInfo: PageInfo;
|
|
70738
|
+
};
|
|
70739
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkEdge = {
|
|
70740
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkEdge';
|
|
70741
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70742
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70743
|
+
id: Scalars['ID']['output'];
|
|
70744
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70745
|
+
node?: Maybe<GraphStoreSimplifiedCostItemHasWorkUnion>;
|
|
70746
|
+
};
|
|
70747
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseConnection = HasPageInfo & {
|
|
70748
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkInverseConnection';
|
|
70749
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCostItemHasWorkInverseEdge>>>;
|
|
70750
|
+
pageInfo: PageInfo;
|
|
70751
|
+
};
|
|
70752
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseEdge = {
|
|
70753
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkInverseEdge';
|
|
70754
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70755
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70756
|
+
id: Scalars['ID']['output'];
|
|
70757
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70758
|
+
node?: Maybe<GraphStoreSimplifiedCostItemHasWorkInverseUnion>;
|
|
70759
|
+
};
|
|
70760
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseUnion = MercuryCostItem;
|
|
70761
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
70272
70762
|
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection = HasPageInfo & {
|
|
70273
70763
|
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection';
|
|
70274
70764
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemEdge>>>;
|
|
@@ -71025,6 +71515,34 @@ export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseEd
|
|
|
71025
71515
|
};
|
|
71026
71516
|
export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseUnion = ExternalCase;
|
|
71027
71517
|
export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemUnion = ExternalWorkItem;
|
|
71518
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection = HasPageInfo & {
|
|
71519
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection';
|
|
71520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge>>>;
|
|
71521
|
+
pageInfo: PageInfo;
|
|
71522
|
+
};
|
|
71523
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge = {
|
|
71524
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge';
|
|
71525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71527
|
+
id: Scalars['ID']['output'];
|
|
71528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71529
|
+
node?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventUnion>;
|
|
71530
|
+
};
|
|
71531
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
71532
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection';
|
|
71533
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge>>>;
|
|
71534
|
+
pageInfo: PageInfo;
|
|
71535
|
+
};
|
|
71536
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge = {
|
|
71537
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge';
|
|
71538
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71539
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71540
|
+
id: Scalars['ID']['output'];
|
|
71541
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71542
|
+
node?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseUnion>;
|
|
71543
|
+
};
|
|
71544
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseUnion = ExternalConversation;
|
|
71545
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
71028
71546
|
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection = HasPageInfo & {
|
|
71029
71547
|
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection';
|
|
71030
71548
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventEdge>>>;
|
|
@@ -81500,6 +82018,8 @@ export declare type GraphStoreV2 = {
|
|
|
81500
82018
|
externalCaseHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCaseHasExternalWorkItemInverseConnection>;
|
|
81501
82019
|
externalConversationHasExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageConnection>;
|
|
81502
82020
|
externalConversationHasExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseConnection>;
|
|
82021
|
+
externalConversationLinksExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection>;
|
|
82022
|
+
externalConversationLinksExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection>;
|
|
81503
82023
|
externalConversationMentionsJiraWorkItem?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection>;
|
|
81504
82024
|
externalConversationMentionsJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseConnection>;
|
|
81505
82025
|
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
@@ -81749,8 +82269,12 @@ export declare type GraphStoreV2 = {
|
|
|
81749
82269
|
externalWorkerLinksThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksThirdPartyUserInverseConnection>;
|
|
81750
82270
|
focusAskImpactsWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityConnection>;
|
|
81751
82271
|
focusAskImpactsWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseConnection>;
|
|
82272
|
+
focusBenefitItemHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection>;
|
|
82273
|
+
focusBenefitItemHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection>;
|
|
81752
82274
|
focusChangeProposalHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection>;
|
|
81753
82275
|
focusChangeProposalHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection>;
|
|
82276
|
+
focusCostItemHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection>;
|
|
82277
|
+
focusCostItemHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection>;
|
|
81754
82278
|
focusFocusAreaHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection>;
|
|
81755
82279
|
focusFocusAreaHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalInverseConnection>;
|
|
81756
82280
|
focusFocusAreaHasChildFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasChildFocusFocusAreaConnection>;
|
|
@@ -84383,6 +84907,20 @@ export declare type GraphStoreV2ExternalConversationHasExternalMessageInverseArg
|
|
|
84383
84907
|
id: Scalars['ID']['input'];
|
|
84384
84908
|
sort?: InputMaybe<GraphStoreV2ExternalConversationHasExternalMessageSortInput>;
|
|
84385
84909
|
};
|
|
84910
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventArgs = {
|
|
84911
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84912
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84914
|
+
id: Scalars['ID']['input'];
|
|
84915
|
+
sort?: InputMaybe<GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput>;
|
|
84916
|
+
};
|
|
84917
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventInverseArgs = {
|
|
84918
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84919
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84920
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84921
|
+
id: Scalars['ID']['input'];
|
|
84922
|
+
sort?: InputMaybe<GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput>;
|
|
84923
|
+
};
|
|
84386
84924
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemArgs = {
|
|
84387
84925
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84388
84926
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86132,6 +86670,20 @@ export declare type GraphStoreV2FocusAskImpactsWorkEntityInverseArgs = {
|
|
|
86132
86670
|
id: Scalars['ID']['input'];
|
|
86133
86671
|
sort?: InputMaybe<GraphStoreV2FocusAskImpactsWorkEntitySortInput>;
|
|
86134
86672
|
};
|
|
86673
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntityArgs = {
|
|
86674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86675
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86677
|
+
id: Scalars['ID']['input'];
|
|
86678
|
+
sort?: InputMaybe<GraphStoreV2FocusBenefitItemHasWorkEntitySortInput>;
|
|
86679
|
+
};
|
|
86680
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntityInverseArgs = {
|
|
86681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86682
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86684
|
+
id: Scalars['ID']['input'];
|
|
86685
|
+
sort?: InputMaybe<GraphStoreV2FocusBenefitItemHasWorkEntitySortInput>;
|
|
86686
|
+
};
|
|
86135
86687
|
export declare type GraphStoreV2FocusChangeProposalHasWorkEntityArgs = {
|
|
86136
86688
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86137
86689
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86146,6 +86698,20 @@ export declare type GraphStoreV2FocusChangeProposalHasWorkEntityInverseArgs = {
|
|
|
86146
86698
|
id: Scalars['ID']['input'];
|
|
86147
86699
|
sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
|
|
86148
86700
|
};
|
|
86701
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntityArgs = {
|
|
86702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86703
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86705
|
+
id: Scalars['ID']['input'];
|
|
86706
|
+
sort?: InputMaybe<GraphStoreV2FocusCostItemHasWorkEntitySortInput>;
|
|
86707
|
+
};
|
|
86708
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntityInverseArgs = {
|
|
86709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86710
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86712
|
+
id: Scalars['ID']['input'];
|
|
86713
|
+
sort?: InputMaybe<GraphStoreV2FocusCostItemHasWorkEntitySortInput>;
|
|
86714
|
+
};
|
|
86149
86715
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalArgs = {
|
|
86150
86716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86151
86717
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89177,6 +89743,9 @@ export declare type GraphStoreV2ExternalCaseHasExternalWorkItemSortInput = {
|
|
|
89177
89743
|
export declare type GraphStoreV2ExternalConversationHasExternalMessageSortInput = {
|
|
89178
89744
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89179
89745
|
};
|
|
89746
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput = {
|
|
89747
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89748
|
+
};
|
|
89180
89749
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput = {
|
|
89181
89750
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89182
89751
|
};
|
|
@@ -89637,9 +90206,15 @@ export declare type GraphStoreV2ExternalWorkerLinksThirdPartyUserSortInput = {
|
|
|
89637
90206
|
export declare type GraphStoreV2FocusAskImpactsWorkEntitySortInput = {
|
|
89638
90207
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89639
90208
|
};
|
|
90209
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntitySortInput = {
|
|
90210
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90211
|
+
};
|
|
89640
90212
|
export declare type GraphStoreV2FocusChangeProposalHasWorkEntitySortInput = {
|
|
89641
90213
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89642
90214
|
};
|
|
90215
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntitySortInput = {
|
|
90216
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90217
|
+
};
|
|
89643
90218
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalSortInput = {
|
|
89644
90219
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89645
90220
|
};
|
|
@@ -96058,6 +96633,34 @@ export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessage
|
|
|
96058
96633
|
};
|
|
96059
96634
|
export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseUnion = ExternalConversation;
|
|
96060
96635
|
export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessageUnion = ExternalMessage;
|
|
96636
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection = HasPageInfo & {
|
|
96637
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection';
|
|
96638
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge>>>;
|
|
96639
|
+
pageInfo: PageInfo;
|
|
96640
|
+
};
|
|
96641
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge = {
|
|
96642
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge';
|
|
96643
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96644
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96645
|
+
id: Scalars['ID']['output'];
|
|
96646
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96647
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventUnion>;
|
|
96648
|
+
};
|
|
96649
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
96650
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection';
|
|
96651
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge>>>;
|
|
96652
|
+
pageInfo: PageInfo;
|
|
96653
|
+
};
|
|
96654
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge = {
|
|
96655
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge';
|
|
96656
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96657
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96658
|
+
id: Scalars['ID']['output'];
|
|
96659
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96660
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseUnion>;
|
|
96661
|
+
};
|
|
96662
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseUnion = ExternalConversation;
|
|
96663
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
96061
96664
|
export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection = HasPageInfo & {
|
|
96062
96665
|
__typename?: 'GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection';
|
|
96063
96666
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemEdge>>>;
|
|
@@ -99576,6 +100179,34 @@ export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseEdge =
|
|
|
99576
100179
|
};
|
|
99577
100180
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseUnion = SpfAsk;
|
|
99578
100181
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
100182
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection = HasPageInfo & {
|
|
100183
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection';
|
|
100184
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge>>>;
|
|
100185
|
+
pageInfo: PageInfo;
|
|
100186
|
+
};
|
|
100187
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge = {
|
|
100188
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge';
|
|
100189
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100190
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100191
|
+
id: Scalars['ID']['output'];
|
|
100192
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100193
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityUnion>;
|
|
100194
|
+
};
|
|
100195
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection = HasPageInfo & {
|
|
100196
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection';
|
|
100197
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge>>>;
|
|
100198
|
+
pageInfo: PageInfo;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge = {
|
|
100201
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge';
|
|
100202
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100203
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100204
|
+
id: Scalars['ID']['output'];
|
|
100205
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100206
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseUnion>;
|
|
100207
|
+
};
|
|
100208
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseUnion = MercuryBenefitItem;
|
|
100209
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99579
100210
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection = HasPageInfo & {
|
|
99580
100211
|
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection';
|
|
99581
100212
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge>>>;
|
|
@@ -99604,6 +100235,34 @@ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInvers
|
|
|
99604
100235
|
};
|
|
99605
100236
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion = MercuryChangeProposal;
|
|
99606
100237
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
100238
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection = HasPageInfo & {
|
|
100239
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection';
|
|
100240
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge>>>;
|
|
100241
|
+
pageInfo: PageInfo;
|
|
100242
|
+
};
|
|
100243
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge = {
|
|
100244
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge';
|
|
100245
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100246
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100247
|
+
id: Scalars['ID']['output'];
|
|
100248
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100249
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityUnion>;
|
|
100250
|
+
};
|
|
100251
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection = HasPageInfo & {
|
|
100252
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection';
|
|
100253
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge>>>;
|
|
100254
|
+
pageInfo: PageInfo;
|
|
100255
|
+
};
|
|
100256
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge = {
|
|
100257
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge';
|
|
100258
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100260
|
+
id: Scalars['ID']['output'];
|
|
100261
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100262
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseUnion>;
|
|
100263
|
+
};
|
|
100264
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseUnion = MercuryCostItem;
|
|
100265
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99607
100266
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection = HasPageInfo & {
|
|
99608
100267
|
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection';
|
|
99609
100268
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalEdge>>>;
|
|
@@ -103213,66 +103872,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
103213
103872
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
103214
103873
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
103215
103874
|
};
|
|
103216
|
-
export declare type GrowthUnifiedProfileCompanyProductUsageRecord = {
|
|
103217
|
-
__typename?: 'GrowthUnifiedProfileCompanyProductUsageRecord';
|
|
103218
|
-
domain: Scalars['String']['output'];
|
|
103219
|
-
productUsageAggregateMetrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductUsageMetric>>>;
|
|
103220
|
-
snapshotDay: Scalars['String']['output'];
|
|
103221
|
-
};
|
|
103222
103875
|
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
103223
103876
|
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
103224
103877
|
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
103225
103878
|
};
|
|
103226
|
-
export declare type GrowthUnifiedProfileCompanyProfileResult = {
|
|
103227
|
-
__typename?: 'GrowthUnifiedProfileCompanyProfileResult';
|
|
103228
|
-
companyInfo?: Maybe<GrowthUnifiedProfileCompanyRecord>;
|
|
103229
|
-
companyProductUsage?: Maybe<GrowthUnifiedProfileCompanyProductUsageRecord>;
|
|
103230
|
-
};
|
|
103231
|
-
export declare type GrowthUnifiedProfileCompanyRecord = {
|
|
103232
|
-
__typename?: 'GrowthUnifiedProfileCompanyRecord';
|
|
103233
|
-
address?: Maybe<Scalars['String']['output']>;
|
|
103234
|
-
addressCity?: Maybe<Scalars['String']['output']>;
|
|
103235
|
-
addressCountry?: Maybe<Scalars['String']['output']>;
|
|
103236
|
-
addressState?: Maybe<Scalars['String']['output']>;
|
|
103237
|
-
annualRevenue?: Maybe<Scalars['Float']['output']>;
|
|
103238
|
-
businessName?: Maybe<Scalars['String']['output']>;
|
|
103239
|
-
companyEnterpriseSized?: Maybe<Scalars['Boolean']['output']>;
|
|
103240
|
-
companyId: Scalars['String']['output'];
|
|
103241
|
-
companySize?: Maybe<Scalars['String']['output']>;
|
|
103242
|
-
companyType?: Maybe<Scalars['String']['output']>;
|
|
103243
|
-
countryCode?: Maybe<Scalars['String']['output']>;
|
|
103244
|
-
createdDate?: Maybe<Scalars['String']['output']>;
|
|
103245
|
-
customerAccountId?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103246
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
103247
|
-
developersCount?: Maybe<Scalars['Int']['output']>;
|
|
103248
|
-
domain: Scalars['String']['output'];
|
|
103249
|
-
employeesRange?: Maybe<Scalars['String']['output']>;
|
|
103250
|
-
enrichmentSource?: Maybe<Scalars['String']['output']>;
|
|
103251
|
-
enterpriseAccountStatus?: Maybe<Scalars['String']['output']>;
|
|
103252
|
-
estimatedAnnualRevenue?: Maybe<Scalars['String']['output']>;
|
|
103253
|
-
industry?: Maybe<Scalars['String']['output']>;
|
|
103254
|
-
industryGroup?: Maybe<Scalars['String']['output']>;
|
|
103255
|
-
itAgentsCount?: Maybe<Scalars['Int']['output']>;
|
|
103256
|
-
knowledgeWorkersCount?: Maybe<Scalars['Int']['output']>;
|
|
103257
|
-
marketCap?: Maybe<Scalars['String']['output']>;
|
|
103258
|
-
naicsCode?: Maybe<Scalars['String']['output']>;
|
|
103259
|
-
numberOfEmployees?: Maybe<Scalars['Int']['output']>;
|
|
103260
|
-
phone?: Maybe<Scalars['String']['output']>;
|
|
103261
|
-
postalCode?: Maybe<Scalars['String']['output']>;
|
|
103262
|
-
recordNumber?: Maybe<Scalars['Int']['output']>;
|
|
103263
|
-
recordStatus?: Maybe<Scalars['String']['output']>;
|
|
103264
|
-
refreshDate?: Maybe<Scalars['String']['output']>;
|
|
103265
|
-
region?: Maybe<Scalars['String']['output']>;
|
|
103266
|
-
revenueCurrency?: Maybe<Scalars['String']['output']>;
|
|
103267
|
-
sector?: Maybe<Scalars['String']['output']>;
|
|
103268
|
-
sectorRaw?: Maybe<Scalars['String']['output']>;
|
|
103269
|
-
sicCode?: Maybe<Scalars['String']['output']>;
|
|
103270
|
-
sourceSequenceIso?: Maybe<Scalars['String']['output']>;
|
|
103271
|
-
stockTicker?: Maybe<Scalars['String']['output']>;
|
|
103272
|
-
subIndustry?: Maybe<Scalars['String']['output']>;
|
|
103273
|
-
techsUsed?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
103274
|
-
website?: Maybe<Scalars['String']['output']>;
|
|
103275
|
-
};
|
|
103276
103879
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
103277
103880
|
Large = "LARGE",
|
|
103278
103881
|
Medium = "MEDIUM",
|
|
@@ -103562,10 +104165,6 @@ export declare type GrowthUnifiedProfileMarketingUtmInput = {
|
|
|
103562
104165
|
sfdcCampaignId?: InputMaybe<Scalars['String']['input']>;
|
|
103563
104166
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
103564
104167
|
};
|
|
103565
|
-
export declare enum GrowthUnifiedProfileMetric {
|
|
103566
|
-
Mau = "MAU",
|
|
103567
|
-
MauVariation = "MAU_VARIATION"
|
|
103568
|
-
}
|
|
103569
104168
|
export declare type GrowthUnifiedProfileNbpUserRecommendationProduct = {
|
|
103570
104169
|
__typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
|
|
103571
104170
|
key: Scalars['String']['output'];
|
|
@@ -103705,17 +104304,6 @@ export declare type GrowthUnifiedProfileProductNbe = {
|
|
|
103705
104304
|
edition?: Maybe<GrowthUnifiedProfileProductEdition>;
|
|
103706
104305
|
recommendationDate?: Maybe<Scalars['String']['output']>;
|
|
103707
104306
|
};
|
|
103708
|
-
export declare type GrowthUnifiedProfileProductRecord = {
|
|
103709
|
-
__typename?: 'GrowthUnifiedProfileProductRecord';
|
|
103710
|
-
metric: GrowthUnifiedProfileMetric;
|
|
103711
|
-
platform?: Maybe<Scalars['String']['output']>;
|
|
103712
|
-
value: Scalars['Float']['output'];
|
|
103713
|
-
};
|
|
103714
|
-
export declare type GrowthUnifiedProfileProductUsageMetric = {
|
|
103715
|
-
__typename?: 'GrowthUnifiedProfileProductUsageMetric';
|
|
103716
|
-
metrics?: Maybe<Array<Maybe<GrowthUnifiedProfileProductRecord>>>;
|
|
103717
|
-
product: Scalars['String']['output'];
|
|
103718
|
-
};
|
|
103719
104307
|
export declare type GrowthUnifiedProfileResult = {
|
|
103720
104308
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
103721
104309
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
@@ -105597,6 +106185,7 @@ export declare type HelpLayoutQueryApi = {
|
|
|
105597
106185
|
elements?: Maybe<Array<HelpLayoutElement>>;
|
|
105598
106186
|
layout?: Maybe<HelpLayoutResult>;
|
|
105599
106187
|
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
106188
|
+
layouts?: Maybe<Array<Maybe<HelpLayoutResult>>>;
|
|
105600
106189
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
105601
106190
|
};
|
|
105602
106191
|
export declare type HelpLayoutQueryApiElementsArgs = {
|
|
@@ -105612,6 +106201,9 @@ export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
|
105612
106201
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
105613
106202
|
parentAri: Scalars['ID']['input'];
|
|
105614
106203
|
};
|
|
106204
|
+
export declare type HelpLayoutQueryApiLayoutsArgs = {
|
|
106205
|
+
ids: Array<Scalars['ID']['input']>;
|
|
106206
|
+
};
|
|
105615
106207
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
105616
106208
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
105617
106209
|
parentAri: Scalars['ID']['input'];
|
|
@@ -106058,6 +106650,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
106058
106650
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
106059
106651
|
kbCategories?: Maybe<HelpObjectStoreKbCategoriesResult>;
|
|
106060
106652
|
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
106653
|
+
portals?: Maybe<Array<Maybe<HelpObjectStorePortalResult>>>;
|
|
106061
106654
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
106062
106655
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
106063
106656
|
suggestedRequestTypes?: Maybe<HelpObjectStoreSuggestedRequestTypesResult>;
|
|
@@ -106081,6 +106674,9 @@ export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
|
106081
106674
|
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
106082
106675
|
input: HelpObjectStoreProductEntityInput;
|
|
106083
106676
|
};
|
|
106677
|
+
export declare type HelpObjectStoreQueryApiPortalsArgs = {
|
|
106678
|
+
ids: Array<Scalars['ID']['input']>;
|
|
106679
|
+
};
|
|
106084
106680
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
106085
106681
|
ids: Array<Scalars['ID']['input']>;
|
|
106086
106682
|
};
|
|
@@ -107665,6 +108261,12 @@ export declare type JiraAffectedServicesInput = {
|
|
|
107665
108261
|
export declare type JiraAfterCustomFieldDefaultContextOptionPositionInput = {
|
|
107666
108262
|
relativeToOption: JiraCustomFieldDefaultContextOptionReference;
|
|
107667
108263
|
};
|
|
108264
|
+
export declare type JiraAgent = {
|
|
108265
|
+
__typename?: 'JiraAgent';
|
|
108266
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
108267
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
108268
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
108269
|
+
};
|
|
107668
108270
|
export declare type JiraAgentAssignability = {
|
|
107669
108271
|
__typename?: 'JiraAgentAssignability';
|
|
107670
108272
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -107682,6 +108284,11 @@ export declare enum JiraAgentCreatorType {
|
|
|
107682
108284
|
System = "SYSTEM",
|
|
107683
108285
|
ThirdParty = "THIRD_PARTY"
|
|
107684
108286
|
}
|
|
108287
|
+
export declare type JiraAgentSessionCreateEvent = {
|
|
108288
|
+
__typename?: 'JiraAgentSessionCreateEvent';
|
|
108289
|
+
agent?: Maybe<JiraAgent>;
|
|
108290
|
+
conversationId: Scalars['String']['output'];
|
|
108291
|
+
};
|
|
107685
108292
|
export declare type JiraAgenticUser = JiraActor & {
|
|
107686
108293
|
__typename?: 'JiraAgenticUser';
|
|
107687
108294
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -109492,6 +110099,66 @@ export declare type JiraBaseCustomFieldDefaultContextOptionPositionInput = {
|
|
|
109492
110099
|
top?: InputMaybe<JiraTopCustomFieldDefaultContextOptionPositionInput>;
|
|
109493
110100
|
topChild?: InputMaybe<JiraTopChildCustomFieldDefaultContextOptionPositionInput>;
|
|
109494
110101
|
};
|
|
110102
|
+
export declare type JiraBaseTimelineView = {
|
|
110103
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
110104
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
110105
|
+
error?: Maybe<QueryError>;
|
|
110106
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
110107
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
110108
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
110109
|
+
id: Scalars['ID']['output'];
|
|
110110
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
110111
|
+
isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
110112
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
110113
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
110114
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
110115
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
110116
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
110117
|
+
timelineProjectSettings?: Maybe<JiraTimelineProjectSettings>;
|
|
110118
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
110119
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
110120
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
110121
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
110122
|
+
};
|
|
110123
|
+
export declare type JiraBaseTimelineViewConditionalFormattingRulesArgs = {
|
|
110124
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110125
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110126
|
+
};
|
|
110127
|
+
export declare type JiraBaseTimelineViewFieldSetsArgs = {
|
|
110128
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110129
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
110130
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
110131
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110132
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110133
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110134
|
+
};
|
|
110135
|
+
export declare type JiraBaseTimelineViewHasDefaultFieldSetsArgs = {
|
|
110136
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110137
|
+
};
|
|
110138
|
+
export declare type JiraBaseTimelineViewIsTimelineViewConfigModifiedArgs = {
|
|
110139
|
+
timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
|
|
110140
|
+
};
|
|
110141
|
+
export declare type JiraBaseTimelineViewIsViewConfigModifiedArgs = {
|
|
110142
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
110143
|
+
};
|
|
110144
|
+
export declare type JiraBaseTimelineViewTimelineProjectSettingsArgs = {
|
|
110145
|
+
input?: InputMaybe<JiraTimelineProjectOrBoardInput>;
|
|
110146
|
+
};
|
|
110147
|
+
export declare type JiraBaseTimelineViewTimelineSettingsArgs = {
|
|
110148
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
110149
|
+
timelineStaticViewInput?: InputMaybe<JiraTimelineStaticViewInput>;
|
|
110150
|
+
};
|
|
110151
|
+
export declare type JiraBaseTimelineViewValidateJqlArgs = {
|
|
110152
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
110153
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
110154
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110155
|
+
};
|
|
110156
|
+
export declare type JiraBaseTimelineViewViewSettingsArgs = {
|
|
110157
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
110158
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
110159
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
110160
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
110161
|
+
};
|
|
109495
110162
|
export declare enum JiraBatchWindowPreference {
|
|
109496
110163
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
109497
110164
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -109540,6 +110207,7 @@ export declare type JiraBoard = Node & {
|
|
|
109540
110207
|
boardType?: Maybe<JiraBoardType>;
|
|
109541
110208
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
109542
110209
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
110210
|
+
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
109543
110211
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
109544
110212
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
109545
110213
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -109548,6 +110216,12 @@ export declare type JiraBoard = Node & {
|
|
|
109548
110216
|
name?: Maybe<Scalars['String']['output']>;
|
|
109549
110217
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
109550
110218
|
};
|
|
110219
|
+
export declare type JiraBoardCustomFiltersArgs = {
|
|
110220
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110221
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
110222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110223
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110224
|
+
};
|
|
109551
110225
|
export declare type JiraBoardReportCategoriesArgs = {
|
|
109552
110226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
109553
110227
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -109880,6 +110554,7 @@ export declare type JiraBoardViewSettingsCardOptionEdge = {
|
|
|
109880
110554
|
node?: Maybe<JiraBoardViewSettingsCardOption>;
|
|
109881
110555
|
};
|
|
109882
110556
|
export declare enum JiraBoardViewSettingsGroupBy {
|
|
110557
|
+
Agents = "AGENTS",
|
|
109883
110558
|
Assignee = "ASSIGNEE",
|
|
109884
110559
|
Epic = "EPIC",
|
|
109885
110560
|
None = "NONE",
|
|
@@ -111313,6 +111988,8 @@ export declare enum JiraCollapsibleSection {
|
|
|
111313
111988
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
111314
111989
|
Description = "DESCRIPTION",
|
|
111315
111990
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
111991
|
+
ProformaForms = "PROFORMA_FORMS",
|
|
111992
|
+
SimilarIssues = "SIMILAR_ISSUES",
|
|
111316
111993
|
UnifiedWorkSection = "UNIFIED_WORK_SECTION"
|
|
111317
111994
|
}
|
|
111318
111995
|
export declare type JiraColor = {
|
|
@@ -115018,6 +115695,7 @@ export declare type JiraFormulaFieldFixContext = {
|
|
|
115018
115695
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
115019
115696
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115020
115697
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
115698
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115021
115699
|
};
|
|
115022
115700
|
export declare type JiraFormulaFieldFunctionInfo = {
|
|
115023
115701
|
__typename?: 'JiraFormulaFieldFunctionInfo';
|
|
@@ -115084,6 +115762,7 @@ export declare type JiraFormulaFieldSuggestionContext = {
|
|
|
115084
115762
|
naturalLanguagePrompt: Scalars['String']['input'];
|
|
115085
115763
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115086
115764
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
115765
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115087
115766
|
};
|
|
115088
115767
|
export declare type JiraFormulaFieldSupportedFunctions = {
|
|
115089
115768
|
__typename?: 'JiraFormulaFieldSupportedFunctions';
|
|
@@ -115423,7 +116102,7 @@ export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
|
115423
116102
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
115424
116103
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
115425
116104
|
};
|
|
115426
|
-
export declare type JiraGroupedTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
116105
|
+
export declare type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
115427
116106
|
__typename?: 'JiraGroupedTimelineView';
|
|
115428
116107
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
115429
116108
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -117983,6 +118662,7 @@ export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
117983
118662
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
117984
118663
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
117985
118664
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
118665
|
+
lastAppliedFilters?: Maybe<JiraTimelineLastAppliedFilters>;
|
|
117986
118666
|
rangeMode?: Maybe<JiraTimelineViewRangeMode>;
|
|
117987
118667
|
};
|
|
117988
118668
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
@@ -128511,7 +129191,7 @@ export declare type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
|
128511
129191
|
cursor: Scalars['String']['output'];
|
|
128512
129192
|
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
128513
129193
|
};
|
|
128514
|
-
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = {
|
|
129194
|
+
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = Payload & {
|
|
128515
129195
|
__typename?: 'JiraSetAgentSessionIsPlanModeEnabledResponsePayload';
|
|
128516
129196
|
errors?: Maybe<Array<MutationError>>;
|
|
128517
129197
|
isPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129440,6 +130120,7 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
129440
130120
|
export declare type JiraSoftwareCustomFilter = {
|
|
129441
130121
|
__typename?: 'JiraSoftwareCustomFilter';
|
|
129442
130122
|
description?: Maybe<Scalars['String']['output']>;
|
|
130123
|
+
filterId: Scalars['String']['output'];
|
|
129443
130124
|
id: Scalars['ID']['output'];
|
|
129444
130125
|
jql?: Maybe<Scalars['String']['output']>;
|
|
129445
130126
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -129890,6 +130571,7 @@ export declare type JiraSubscription = {
|
|
|
129890
130571
|
__typename?: 'JiraSubscription';
|
|
129891
130572
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
129892
130573
|
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
130574
|
+
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
129893
130575
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
129894
130576
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
129895
130577
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -129938,6 +130620,11 @@ export declare type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
|
129938
130620
|
cloudId: Scalars['ID']['input'];
|
|
129939
130621
|
issueId: Scalars['String']['input'];
|
|
129940
130622
|
};
|
|
130623
|
+
export declare type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
|
|
130624
|
+
accountId: Scalars['String']['input'];
|
|
130625
|
+
cloudId: Scalars['ID']['input'];
|
|
130626
|
+
issueId: Scalars['String']['input'];
|
|
130627
|
+
};
|
|
129941
130628
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
129942
130629
|
cloudId: Scalars['ID']['input'];
|
|
129943
130630
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -130507,6 +131194,12 @@ export declare type JiraTimelineIssueSearchCustomInput = {
|
|
|
130507
131194
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
130508
131195
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130509
131196
|
};
|
|
131197
|
+
export declare type JiraTimelineLastAppliedFilters = {
|
|
131198
|
+
__typename?: 'JiraTimelineLastAppliedFilters';
|
|
131199
|
+
additionalJql?: Maybe<Scalars['String']['output']>;
|
|
131200
|
+
customFilterIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
131201
|
+
quickFilterIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
131202
|
+
};
|
|
130510
131203
|
export declare type JiraTimelineProjectOrBoardInput = {
|
|
130511
131204
|
boardId?: InputMaybe<Scalars['Int']['input']>;
|
|
130512
131205
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130532,7 +131225,7 @@ export declare type JiraTimelineStaticViewInput = {
|
|
|
130532
131225
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130533
131226
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
130534
131227
|
};
|
|
130535
|
-
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
131228
|
+
export declare type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
130536
131229
|
__typename?: 'JiraTimelineView';
|
|
130537
131230
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
130538
131231
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -131668,6 +132361,7 @@ export declare type JiraUserPreferences = {
|
|
|
131668
132361
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
131669
132362
|
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131670
132363
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132364
|
+
isIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131671
132365
|
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131672
132366
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
131673
132367
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131739,6 +132433,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
131739
132433
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
131740
132434
|
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
131741
132435
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132436
|
+
setIsIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131742
132437
|
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
131743
132438
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
131744
132439
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
@@ -131762,6 +132457,9 @@ export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
|
|
|
131762
132457
|
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
131763
132458
|
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
131764
132459
|
};
|
|
132460
|
+
export declare type JiraUserPreferencesMutationSetIsIssueViewWivEnabledArgs = {
|
|
132461
|
+
isWivEnabled: Scalars['Boolean']['input'];
|
|
132462
|
+
};
|
|
131765
132463
|
export declare type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
131766
132464
|
isEnabled: Scalars['Boolean']['input'];
|
|
131767
132465
|
};
|
|
@@ -133275,6 +133973,7 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
133275
133973
|
};
|
|
133276
133974
|
export declare type JpdViewsServiceCloneGlobalViewInput = {
|
|
133277
133975
|
id: Scalars['ID']['input'];
|
|
133976
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
133278
133977
|
};
|
|
133279
133978
|
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
133280
133979
|
id: Scalars['ID']['input'];
|
|
@@ -133866,9 +134565,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
133866
134565
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
133867
134566
|
export declare type JsmChannelsFilterConfiguration = {
|
|
133868
134567
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
134568
|
+
evaluationStrategy?: Maybe<JsmChannelsRuleEvaluationStrategy>;
|
|
134569
|
+
jqlRules?: Maybe<Array<JsmChannelsJqlEnablementRule>>;
|
|
133869
134570
|
requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
|
|
133870
134571
|
};
|
|
133871
134572
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
134573
|
+
evaluationStrategy?: InputMaybe<JsmChannelsRuleEvaluationStrategy>;
|
|
134574
|
+
jqlRules?: InputMaybe<Array<JsmChannelsJqlEnablementRuleInput>>;
|
|
133872
134575
|
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
133873
134576
|
};
|
|
133874
134577
|
export declare type JsmChannelsIdentityNowTaskAgentConfiguration = {
|
|
@@ -133877,6 +134580,21 @@ export declare type JsmChannelsIdentityNowTaskAgentConfiguration = {
|
|
|
133877
134580
|
baseUrl: Scalars['String']['output'];
|
|
133878
134581
|
serviceKey: Scalars['String']['output'];
|
|
133879
134582
|
};
|
|
134583
|
+
export declare type JsmChannelsJqlEnablementRule = {
|
|
134584
|
+
__typename?: 'JsmChannelsJqlEnablementRule';
|
|
134585
|
+
id: Scalars['String']['output'];
|
|
134586
|
+
jqlExpression: Scalars['String']['output'];
|
|
134587
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
134588
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
134589
|
+
priority: Scalars['Int']['output'];
|
|
134590
|
+
};
|
|
134591
|
+
export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
134592
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
134593
|
+
jqlExpression: Scalars['String']['input'];
|
|
134594
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
134595
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
134596
|
+
priority: Scalars['Int']['input'];
|
|
134597
|
+
};
|
|
133880
134598
|
export declare type JsmChannelsOktaTaskAgentConfiguration = {
|
|
133881
134599
|
__typename?: 'JsmChannelsOktaTaskAgentConfiguration';
|
|
133882
134600
|
accountId: Scalars['String']['output'];
|
|
@@ -134022,6 +134740,11 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
134022
134740
|
Pending = "PENDING",
|
|
134023
134741
|
Waiting = "WAITING"
|
|
134024
134742
|
}
|
|
134743
|
+
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
134744
|
+
JqlFirst = "JQL_FIRST",
|
|
134745
|
+
JqlOnly = "JQL_ONLY",
|
|
134746
|
+
RequestTypeFirst = "REQUEST_TYPE_FIRST"
|
|
134747
|
+
}
|
|
134025
134748
|
export declare type JsmChannelsServiceAgentResolutionContentSource = {
|
|
134026
134749
|
__typename?: 'JsmChannelsServiceAgentResolutionContentSource';
|
|
134027
134750
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -134057,6 +134780,7 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
134057
134780
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
134058
134781
|
__typename?: 'JsmChannelsStepNode';
|
|
134059
134782
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
134783
|
+
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
134060
134784
|
id: Scalars['ID']['output'];
|
|
134061
134785
|
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
134062
134786
|
nodeDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -135481,6 +136205,14 @@ export declare type KitsuneOrganizationConnection = KitsuneConnection & {
|
|
|
135481
136205
|
edges: Array<KitsuneOrganizationEdge>;
|
|
135482
136206
|
pageInfo: PageInfo;
|
|
135483
136207
|
};
|
|
136208
|
+
export declare enum KitsuneOrganizationDomainAction {
|
|
136209
|
+
Add = "ADD",
|
|
136210
|
+
Remove = "REMOVE"
|
|
136211
|
+
}
|
|
136212
|
+
export declare type KitsuneOrganizationDomainInput = {
|
|
136213
|
+
action: KitsuneOrganizationDomainAction;
|
|
136214
|
+
domainName: Scalars['String']['input'];
|
|
136215
|
+
};
|
|
135484
136216
|
export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
135485
136217
|
__typename?: 'KitsuneOrganizationEdge';
|
|
135486
136218
|
cursor: Scalars['String']['output'];
|
|
@@ -135501,6 +136233,13 @@ export declare type KitsuneRankInput = {
|
|
|
135501
136233
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
135502
136234
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
135503
136235
|
};
|
|
136236
|
+
export declare type KitsuneSearchChunk = {
|
|
136237
|
+
__typename?: 'KitsuneSearchChunk';
|
|
136238
|
+
chunks: Array<KitsuneChunk>;
|
|
136239
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
136240
|
+
feedbackId: Scalars['ID']['output'];
|
|
136241
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
136242
|
+
};
|
|
135504
136243
|
export declare type KitsuneSearchFeedbackConnection = KitsuneConnection & {
|
|
135505
136244
|
__typename?: 'KitsuneSearchFeedbackConnection';
|
|
135506
136245
|
edges: Array<KitsuneSearchFeedbackEdge>;
|
|
@@ -136549,6 +137288,7 @@ export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
|
136549
137288
|
};
|
|
136550
137289
|
export declare type KnowledgeDiscoveryJiraSearchClassification = {
|
|
136551
137290
|
__typename?: 'KnowledgeDiscoveryJiraSearchClassification';
|
|
137291
|
+
pattern?: Maybe<KnowledgeDiscoveryJiraSearchPatternType>;
|
|
136552
137292
|
type?: Maybe<KnowledgeDiscoveryJiraSearchClassificationType>;
|
|
136553
137293
|
};
|
|
136554
137294
|
export declare enum KnowledgeDiscoveryJiraSearchClassificationType {
|
|
@@ -136558,6 +137298,16 @@ export declare enum KnowledgeDiscoveryJiraSearchClassificationType {
|
|
|
136558
137298
|
export declare enum KnowledgeDiscoveryJiraSearchExperience {
|
|
136559
137299
|
QuickFind = "QUICK_FIND"
|
|
136560
137300
|
}
|
|
137301
|
+
export declare enum KnowledgeDiscoveryJiraSearchPatternType {
|
|
137302
|
+
Empty = "EMPTY",
|
|
137303
|
+
ExtendedPhrase = "EXTENDED_PHRASE",
|
|
137304
|
+
JiraNlPattern = "JIRA_NL_PATTERN",
|
|
137305
|
+
Jql = "JQL",
|
|
137306
|
+
NoPattern = "NO_PATTERN",
|
|
137307
|
+
Numeric = "NUMERIC",
|
|
137308
|
+
QuestionPattern = "QUESTION_PATTERN",
|
|
137309
|
+
SingleWord = "SINGLE_WORD"
|
|
137310
|
+
}
|
|
136561
137311
|
export declare type KnowledgeDiscoveryJobTitleIntent = KnowledgeDiscoveryIntent & {
|
|
136562
137312
|
__typename?: 'KnowledgeDiscoveryJobTitleIntent';
|
|
136563
137313
|
classification: KnowledgeDiscoveryQueryClassification;
|
|
@@ -141079,6 +141829,7 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
|
141079
141829
|
product: MarketplaceStoreInstallationTargetProduct;
|
|
141080
141830
|
};
|
|
141081
141831
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
141832
|
+
Bitbucket = "BITBUCKET",
|
|
141082
141833
|
Compass = "COMPASS",
|
|
141083
141834
|
Confluence = "CONFLUENCE",
|
|
141084
141835
|
Jira = "JIRA",
|
|
@@ -141393,7 +142144,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
141393
142144
|
userLocation?: InputMaybe<Scalars['String']['input']>;
|
|
141394
142145
|
};
|
|
141395
142146
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
141396
|
-
|
|
142147
|
+
UnifiedStore = "UNIFIED_STORE"
|
|
141397
142148
|
}
|
|
141398
142149
|
export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
141399
142150
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141715,11 +142466,16 @@ export declare type MarketplaceStoreQueryApiWatchedAppsArgs = {
|
|
|
141715
142466
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
141716
142467
|
nextCursor?: InputMaybe<Scalars['String']['input']>;
|
|
141717
142468
|
};
|
|
142469
|
+
export declare type MarketplaceStoreRecommendationsMetadata = {
|
|
142470
|
+
__typename?: 'MarketplaceStoreRecommendationsMetadata';
|
|
142471
|
+
recommendedForYouMetadata?: Maybe<Array<Maybe<MarketplaceStoreRecommendedForYouMetadataItem>>>;
|
|
142472
|
+
};
|
|
141718
142473
|
export declare type MarketplaceStoreRecommendationsSection = {
|
|
141719
142474
|
__typename?: 'MarketplaceStoreRecommendationsSection';
|
|
141720
142475
|
description: Scalars['String']['output'];
|
|
141721
142476
|
id: Scalars['ID']['output'];
|
|
141722
142477
|
recommendationResultsCount: Scalars['Int']['output'];
|
|
142478
|
+
recommendationsMetadata?: Maybe<MarketplaceStoreRecommendationsMetadata>;
|
|
141723
142479
|
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
141724
142480
|
searchMetadata: MarketplaceStoreSearchMetadata;
|
|
141725
142481
|
title: Scalars['String']['output'];
|
|
@@ -141728,6 +142484,11 @@ export declare enum MarketplaceStoreRecommendationsUsecase {
|
|
|
141728
142484
|
RecommendedAppsForYou = "RECOMMENDED_APPS_FOR_YOU",
|
|
141729
142485
|
SimilarApps = "SIMILAR_APPS"
|
|
141730
142486
|
}
|
|
142487
|
+
export declare type MarketplaceStoreRecommendedForYouMetadataItem = {
|
|
142488
|
+
__typename?: 'MarketplaceStoreRecommendedForYouMetadataItem';
|
|
142489
|
+
productId: Scalars['String']['output'];
|
|
142490
|
+
recoSessionId?: Maybe<Scalars['String']['output']>;
|
|
142491
|
+
};
|
|
141731
142492
|
export declare type MarketplaceStoreRetentionDurationInDays = {
|
|
141732
142493
|
__typename?: 'MarketplaceStoreRetentionDurationInDays';
|
|
141733
142494
|
max: Scalars['Int']['output'];
|
|
@@ -141891,7 +142652,7 @@ export declare type MarketplaceStoreUpdateAppRequestStatusInput = {
|
|
|
141891
142652
|
appRequestStatus: MarketplaceStoreAppRequestStatus;
|
|
141892
142653
|
cloudId: Scalars['String']['input'];
|
|
141893
142654
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
141894
|
-
edition?: InputMaybe<
|
|
142655
|
+
edition?: InputMaybe<MarketplaceStoreEditionType>;
|
|
141895
142656
|
productId: Scalars['ID']['input'];
|
|
141896
142657
|
productName: Scalars['String']['input'];
|
|
141897
142658
|
};
|
|
@@ -142113,6 +142874,15 @@ export declare type MercuryAddTagsToProposalPayload = Payload & {
|
|
|
142113
142874
|
success: Scalars['Boolean']['output'];
|
|
142114
142875
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
142115
142876
|
};
|
|
142877
|
+
export declare type MercuryAddWatcherToBusinessDomainInput = {
|
|
142878
|
+
businessDomainId: Scalars['ID']['input'];
|
|
142879
|
+
userId: Scalars['ID']['input'];
|
|
142880
|
+
};
|
|
142881
|
+
export declare type MercuryAddWatcherToBusinessDomainPayload = Payload & {
|
|
142882
|
+
__typename?: 'MercuryAddWatcherToBusinessDomainPayload';
|
|
142883
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142884
|
+
success: Scalars['Boolean']['output'];
|
|
142885
|
+
};
|
|
142116
142886
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
142117
142887
|
cloudId: Scalars['ID']['input'];
|
|
142118
142888
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -142123,6 +142893,16 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
142123
142893
|
errors?: Maybe<Array<MutationError>>;
|
|
142124
142894
|
success: Scalars['Boolean']['output'];
|
|
142125
142895
|
};
|
|
142896
|
+
export declare type MercuryAggregatedBusinessDomainStatusCount = {
|
|
142897
|
+
__typename?: 'MercuryAggregatedBusinessDomainStatusCount';
|
|
142898
|
+
children: MercuryBusinessDomainStatusCount;
|
|
142899
|
+
current: MercuryBusinessDomainStatusCount;
|
|
142900
|
+
subtree: MercuryBusinessDomainStatusCount;
|
|
142901
|
+
};
|
|
142902
|
+
export declare type MercuryAggregatedBusinessDomainViewStatusCount = {
|
|
142903
|
+
__typename?: 'MercuryAggregatedBusinessDomainViewStatusCount';
|
|
142904
|
+
children?: Maybe<MercuryBusinessDomainStatusCount>;
|
|
142905
|
+
};
|
|
142126
142906
|
export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
142127
142907
|
__typename?: 'MercuryAggregatedFocusAreaStatusCount';
|
|
142128
142908
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -142133,6 +142913,25 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
|
142133
142913
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
142134
142914
|
children: MercuryFocusAreaStatusCount;
|
|
142135
142915
|
};
|
|
142916
|
+
export declare type MercuryArchiveBusinessDomainInput = {
|
|
142917
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142918
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
142919
|
+
id: Scalars['ID']['input'];
|
|
142920
|
+
};
|
|
142921
|
+
export declare type MercuryArchiveBusinessDomainPayload = Payload & {
|
|
142922
|
+
__typename?: 'MercuryArchiveBusinessDomainPayload';
|
|
142923
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142924
|
+
success: Scalars['Boolean']['output'];
|
|
142925
|
+
};
|
|
142926
|
+
export declare type MercuryArchiveBusinessDomainValidationInput = {
|
|
142927
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142928
|
+
id: Scalars['ID']['input'];
|
|
142929
|
+
};
|
|
142930
|
+
export declare type MercuryArchiveBusinessDomainValidationPayload = Payload & {
|
|
142931
|
+
__typename?: 'MercuryArchiveBusinessDomainValidationPayload';
|
|
142932
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142933
|
+
success: Scalars['Boolean']['output'];
|
|
142934
|
+
};
|
|
142136
142935
|
export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Node & {
|
|
142137
142936
|
__typename?: 'MercuryArchiveFocusAreaChange';
|
|
142138
142937
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -142168,6 +142967,16 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
142168
142967
|
errors?: Maybe<Array<MutationError>>;
|
|
142169
142968
|
success: Scalars['Boolean']['output'];
|
|
142170
142969
|
};
|
|
142970
|
+
export declare type MercuryAssignUserAccessToBusinessDomainInput = {
|
|
142971
|
+
businessDomainAri: Scalars['ID']['input'];
|
|
142972
|
+
businessDomainUserAccessAssignment?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainUserAccessInput>>>;
|
|
142973
|
+
};
|
|
142974
|
+
export declare type MercuryAssignUserAccessToBusinessDomainPayload = Payload & {
|
|
142975
|
+
__typename?: 'MercuryAssignUserAccessToBusinessDomainPayload';
|
|
142976
|
+
businessDomainUserAccessAssignment?: Maybe<Array<Maybe<MercuryBusinessDomainUserAccessMutation>>>;
|
|
142977
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142978
|
+
success: Scalars['Boolean']['output'];
|
|
142979
|
+
};
|
|
142171
142980
|
export declare type MercuryAssignUserAccessToFocusAreaInput = {
|
|
142172
142981
|
focusAreaAri: Scalars['ID']['input'];
|
|
142173
142982
|
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
@@ -142282,6 +143091,709 @@ export declare type MercuryBudgetAggregation = {
|
|
|
142282
143091
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
142283
143092
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
142284
143093
|
};
|
|
143094
|
+
export declare type MercuryBulkCreateBusinessDomainTypesInput = {
|
|
143095
|
+
businessDomainHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
143096
|
+
cloudId: Scalars['ID']['input'];
|
|
143097
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143098
|
+
};
|
|
143099
|
+
export declare type MercuryBulkCreateBusinessDomainTypesPayload = Payload & {
|
|
143100
|
+
__typename?: 'MercuryBulkCreateBusinessDomainTypesPayload';
|
|
143101
|
+
createdBusinessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
143102
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143103
|
+
success: Scalars['Boolean']['output'];
|
|
143104
|
+
};
|
|
143105
|
+
export declare type MercuryBusinessDomain = Node & {
|
|
143106
|
+
__typename?: 'MercuryBusinessDomain';
|
|
143107
|
+
aboutContent: MercuryBusinessDomainAbout;
|
|
143108
|
+
aggregatedBusinessDomainStatusCount?: Maybe<MercuryAggregatedBusinessDomainStatusCount>;
|
|
143109
|
+
archived: Scalars['Boolean']['output'];
|
|
143110
|
+
businessDomainLinks?: Maybe<MercuryBusinessDomainLinks>;
|
|
143111
|
+
businessDomainStatusUpdates?: Maybe<MercuryBusinessDomainStatusUpdateConnection>;
|
|
143112
|
+
businessDomainType: MercuryBusinessDomainType;
|
|
143113
|
+
createdDate: Scalars['String']['output'];
|
|
143114
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
143115
|
+
draft: Scalars['Boolean']['output'];
|
|
143116
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
143117
|
+
goalLinks?: Maybe<MercuryBusinessDomainGoalLinks>;
|
|
143118
|
+
health?: Maybe<MercuryBusinessDomainHealth>;
|
|
143119
|
+
icon: MercuryBusinessDomainIcon;
|
|
143120
|
+
id: Scalars['ID']['output'];
|
|
143121
|
+
linkedGoalSummary?: Maybe<MercuryBusinessDomainLinkedGoalSummary>;
|
|
143122
|
+
linkedWorkSummary?: Maybe<MercuryBusinessDomainLinkedWorkSummary>;
|
|
143123
|
+
name: Scalars['String']['output'];
|
|
143124
|
+
owner?: Maybe<User>;
|
|
143125
|
+
parent?: Maybe<MercuryBusinessDomain>;
|
|
143126
|
+
sharedUsers?: Maybe<MercuryBusinessDomainUserAccessConnection>;
|
|
143127
|
+
starred: Scalars['Boolean']['output'];
|
|
143128
|
+
status: MercuryBusinessDomainStatus;
|
|
143129
|
+
statusTransitions: MercuryBusinessDomainStatusTransitions;
|
|
143130
|
+
subBusinessDomains?: Maybe<MercuryBusinessDomainConnection>;
|
|
143131
|
+
targetDate?: Maybe<MercuryBusinessDomainTargetDate>;
|
|
143132
|
+
updatedDate: Scalars['String']['output'];
|
|
143133
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
143134
|
+
userPermissions?: Maybe<Array<MercuryBusinessDomainPermission>>;
|
|
143135
|
+
views?: Maybe<Array<MercuryBusinessDomainView>>;
|
|
143136
|
+
watchers?: Maybe<MercuryUserConnection>;
|
|
143137
|
+
watching: Scalars['Boolean']['output'];
|
|
143138
|
+
};
|
|
143139
|
+
export declare type MercuryBusinessDomainBusinessDomainStatusUpdatesArgs = {
|
|
143140
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143141
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
143142
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
143143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143144
|
+
};
|
|
143145
|
+
export declare type MercuryBusinessDomainSharedUsersArgs = {
|
|
143146
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143147
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143148
|
+
};
|
|
143149
|
+
export declare type MercuryBusinessDomainSubBusinessDomainsArgs = {
|
|
143150
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143151
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143152
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143153
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainSort>>>;
|
|
143154
|
+
};
|
|
143155
|
+
export declare type MercuryBusinessDomainWatchersArgs = {
|
|
143156
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143157
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143158
|
+
};
|
|
143159
|
+
export declare type MercuryBusinessDomainAbout = {
|
|
143160
|
+
__typename?: 'MercuryBusinessDomainAbout';
|
|
143161
|
+
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
143162
|
+
};
|
|
143163
|
+
export declare type MercuryBusinessDomainConnection = {
|
|
143164
|
+
__typename?: 'MercuryBusinessDomainConnection';
|
|
143165
|
+
edges?: Maybe<Array<Maybe<MercuryBusinessDomainEdge>>>;
|
|
143166
|
+
pageInfo: PageInfo;
|
|
143167
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143168
|
+
};
|
|
143169
|
+
export declare type MercuryBusinessDomainCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
143170
|
+
__typename?: 'MercuryBusinessDomainCustomFieldDefinitionScope';
|
|
143171
|
+
entityType: Scalars['String']['output'];
|
|
143172
|
+
};
|
|
143173
|
+
export declare type MercuryBusinessDomainEdge = {
|
|
143174
|
+
__typename?: 'MercuryBusinessDomainEdge';
|
|
143175
|
+
cursor: Scalars['String']['output'];
|
|
143176
|
+
node?: Maybe<MercuryBusinessDomain>;
|
|
143177
|
+
};
|
|
143178
|
+
export declare type MercuryBusinessDomainGoalLink = {
|
|
143179
|
+
__typename?: 'MercuryBusinessDomainGoalLink';
|
|
143180
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
143181
|
+
atlasGoalId: Scalars['String']['output'];
|
|
143182
|
+
createdBy?: Maybe<User>;
|
|
143183
|
+
createdDate: Scalars['String']['output'];
|
|
143184
|
+
id: Scalars['ID']['output'];
|
|
143185
|
+
parentBusinessDomainId: Scalars['ID']['output'];
|
|
143186
|
+
};
|
|
143187
|
+
export declare type MercuryBusinessDomainGoalLinks = {
|
|
143188
|
+
__typename?: 'MercuryBusinessDomainGoalLinks';
|
|
143189
|
+
links: Array<MercuryBusinessDomainGoalLink>;
|
|
143190
|
+
};
|
|
143191
|
+
export declare type MercuryBusinessDomainHealth = {
|
|
143192
|
+
__typename?: 'MercuryBusinessDomainHealth';
|
|
143193
|
+
color: MercuryBusinessDomainHealthColor;
|
|
143194
|
+
displayName: Scalars['String']['output'];
|
|
143195
|
+
id: Scalars['ID']['output'];
|
|
143196
|
+
key: Scalars['String']['output'];
|
|
143197
|
+
order: Scalars['Int']['output'];
|
|
143198
|
+
};
|
|
143199
|
+
export declare enum MercuryBusinessDomainHealthColor {
|
|
143200
|
+
Green = "GREEN",
|
|
143201
|
+
Red = "RED",
|
|
143202
|
+
Yellow = "YELLOW"
|
|
143203
|
+
}
|
|
143204
|
+
export declare type MercuryBusinessDomainHierarchy = Node & {
|
|
143205
|
+
__typename?: 'MercuryBusinessDomainHierarchy';
|
|
143206
|
+
businessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
143207
|
+
hierarchyTypeKey?: Maybe<MercuryBusinessDomainHierarchyTypeKey>;
|
|
143208
|
+
id: Scalars['ID']['output'];
|
|
143209
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
143210
|
+
name: Scalars['String']['output'];
|
|
143211
|
+
};
|
|
143212
|
+
export declare type MercuryBusinessDomainHierarchyConnection = {
|
|
143213
|
+
__typename?: 'MercuryBusinessDomainHierarchyConnection';
|
|
143214
|
+
edges?: Maybe<Array<MercuryBusinessDomainHierarchyEdge>>;
|
|
143215
|
+
pageInfo: PageInfo;
|
|
143216
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143217
|
+
};
|
|
143218
|
+
export declare type MercuryBusinessDomainHierarchyEdge = {
|
|
143219
|
+
__typename?: 'MercuryBusinessDomainHierarchyEdge';
|
|
143220
|
+
cursor: Scalars['String']['output'];
|
|
143221
|
+
node?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
143222
|
+
};
|
|
143223
|
+
export declare type MercuryBusinessDomainHierarchySort = {
|
|
143224
|
+
field: MercuryBusinessDomainHierarchySortField;
|
|
143225
|
+
order: SortOrder;
|
|
143226
|
+
};
|
|
143227
|
+
export declare enum MercuryBusinessDomainHierarchySortField {
|
|
143228
|
+
Name = "NAME"
|
|
143229
|
+
}
|
|
143230
|
+
export declare enum MercuryBusinessDomainHierarchyTypeKey {
|
|
143231
|
+
Investment = "INVESTMENT",
|
|
143232
|
+
Portfolio = "PORTFOLIO"
|
|
143233
|
+
}
|
|
143234
|
+
export declare type MercuryBusinessDomainIcon = {
|
|
143235
|
+
__typename?: 'MercuryBusinessDomainIcon';
|
|
143236
|
+
url: Scalars['String']['output'];
|
|
143237
|
+
};
|
|
143238
|
+
export declare type MercuryBusinessDomainLink = {
|
|
143239
|
+
__typename?: 'MercuryBusinessDomainLink';
|
|
143240
|
+
childBusinessDomainId: Scalars['ID']['output'];
|
|
143241
|
+
createdBy?: Maybe<User>;
|
|
143242
|
+
createdDate: Scalars['String']['output'];
|
|
143243
|
+
id: Scalars['ID']['output'];
|
|
143244
|
+
parentBusinessDomainId: Scalars['ID']['output'];
|
|
143245
|
+
};
|
|
143246
|
+
export declare enum MercuryBusinessDomainLinkAction {
|
|
143247
|
+
LinkChildren = "LINK_CHILDREN",
|
|
143248
|
+
LinkParent = "LINK_PARENT",
|
|
143249
|
+
UnlinkChildren = "UNLINK_CHILDREN",
|
|
143250
|
+
UnlinkParent = "UNLINK_PARENT"
|
|
143251
|
+
}
|
|
143252
|
+
export declare type MercuryBusinessDomainLinkedGoalSummary = {
|
|
143253
|
+
__typename?: 'MercuryBusinessDomainLinkedGoalSummary';
|
|
143254
|
+
count: Scalars['Int']['output'];
|
|
143255
|
+
countIncludingSubBusinessDomains?: Maybe<Scalars['Int']['output']>;
|
|
143256
|
+
};
|
|
143257
|
+
export declare type MercuryBusinessDomainLinkedWorkSummary = {
|
|
143258
|
+
__typename?: 'MercuryBusinessDomainLinkedWorkSummary';
|
|
143259
|
+
count: Scalars['Int']['output'];
|
|
143260
|
+
countIncludingSubBusinessDomains?: Maybe<Scalars['Int']['output']>;
|
|
143261
|
+
};
|
|
143262
|
+
export declare type MercuryBusinessDomainLinks = {
|
|
143263
|
+
__typename?: 'MercuryBusinessDomainLinks';
|
|
143264
|
+
links: Array<MercuryBusinessDomainLink>;
|
|
143265
|
+
};
|
|
143266
|
+
export declare type MercuryBusinessDomainListSummary = {
|
|
143267
|
+
__typename?: 'MercuryBusinessDomainListSummary';
|
|
143268
|
+
ids: Array<Scalars['ID']['output']>;
|
|
143269
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
143270
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
143271
|
+
};
|
|
143272
|
+
export declare enum MercuryBusinessDomainPermission {
|
|
143273
|
+
Archive = "ARCHIVE",
|
|
143274
|
+
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
143275
|
+
CreateLink = "CREATE_LINK",
|
|
143276
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
143277
|
+
CreateWorkLink = "CREATE_WORK_LINK",
|
|
143278
|
+
Delete = "DELETE",
|
|
143279
|
+
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
143280
|
+
DeleteLink = "DELETE_LINK",
|
|
143281
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
143282
|
+
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
143283
|
+
EditAbout = "EDIT_ABOUT",
|
|
143284
|
+
EditName = "EDIT_NAME",
|
|
143285
|
+
EditOwner = "EDIT_OWNER",
|
|
143286
|
+
EditType = "EDIT_TYPE",
|
|
143287
|
+
Export = "EXPORT",
|
|
143288
|
+
ViewFund = "VIEW_FUND"
|
|
143289
|
+
}
|
|
143290
|
+
export declare type MercuryBusinessDomainSort = {
|
|
143291
|
+
field?: InputMaybe<MercuryBusinessDomainSortField>;
|
|
143292
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
143293
|
+
order: SortOrder;
|
|
143294
|
+
};
|
|
143295
|
+
export declare enum MercuryBusinessDomainSortField {
|
|
143296
|
+
BusinessDomainType = "BUSINESS_DOMAIN_TYPE",
|
|
143297
|
+
HasParent = "HAS_PARENT",
|
|
143298
|
+
Health = "HEALTH",
|
|
143299
|
+
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
143300
|
+
LastUpdated = "LAST_UPDATED",
|
|
143301
|
+
Name = "NAME",
|
|
143302
|
+
Starred = "STARRED",
|
|
143303
|
+
Status = "STATUS",
|
|
143304
|
+
TargetDate = "TARGET_DATE",
|
|
143305
|
+
Watching = "WATCHING"
|
|
143306
|
+
}
|
|
143307
|
+
export declare type MercuryBusinessDomainStatus = {
|
|
143308
|
+
__typename?: 'MercuryBusinessDomainStatus';
|
|
143309
|
+
displayName: Scalars['String']['output'];
|
|
143310
|
+
id: Scalars['ID']['output'];
|
|
143311
|
+
key: Scalars['String']['output'];
|
|
143312
|
+
order: Scalars['Int']['output'];
|
|
143313
|
+
};
|
|
143314
|
+
export declare type MercuryBusinessDomainStatusCount = {
|
|
143315
|
+
__typename?: 'MercuryBusinessDomainStatusCount';
|
|
143316
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
143317
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
143318
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
143319
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
143320
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
143321
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
143322
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
143323
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
143324
|
+
};
|
|
143325
|
+
export declare type MercuryBusinessDomainStatusTransition = {
|
|
143326
|
+
__typename?: 'MercuryBusinessDomainStatusTransition';
|
|
143327
|
+
health?: Maybe<MercuryBusinessDomainHealth>;
|
|
143328
|
+
id: Scalars['ID']['output'];
|
|
143329
|
+
status: MercuryBusinessDomainStatus;
|
|
143330
|
+
};
|
|
143331
|
+
export declare type MercuryBusinessDomainStatusTransitions = {
|
|
143332
|
+
__typename?: 'MercuryBusinessDomainStatusTransitions';
|
|
143333
|
+
available: Array<MercuryBusinessDomainStatusTransition>;
|
|
143334
|
+
};
|
|
143335
|
+
export declare type MercuryBusinessDomainStatusUpdate = Node & {
|
|
143336
|
+
__typename?: 'MercuryBusinessDomainStatusUpdate';
|
|
143337
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
143338
|
+
businessDomainId: Scalars['ID']['output'];
|
|
143339
|
+
comments?: Maybe<MercuryCommentConnection>;
|
|
143340
|
+
createdBy?: Maybe<User>;
|
|
143341
|
+
createdDate: Scalars['String']['output'];
|
|
143342
|
+
id: Scalars['ID']['output'];
|
|
143343
|
+
newHealth?: Maybe<MercuryBusinessDomainHealth>;
|
|
143344
|
+
newStatus?: Maybe<MercuryBusinessDomainStatus>;
|
|
143345
|
+
newTargetDate?: Maybe<MercuryTargetDate>;
|
|
143346
|
+
previousHealth?: Maybe<MercuryBusinessDomainHealth>;
|
|
143347
|
+
previousStatus?: Maybe<MercuryBusinessDomainStatus>;
|
|
143348
|
+
previousTargetDate?: Maybe<MercuryTargetDate>;
|
|
143349
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
143350
|
+
updatedBy?: Maybe<User>;
|
|
143351
|
+
updatedDate: Scalars['String']['output'];
|
|
143352
|
+
uuid: Scalars['ID']['output'];
|
|
143353
|
+
};
|
|
143354
|
+
export declare type MercuryBusinessDomainStatusUpdateCommentsArgs = {
|
|
143355
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143357
|
+
};
|
|
143358
|
+
export declare type MercuryBusinessDomainStatusUpdateConnection = {
|
|
143359
|
+
__typename?: 'MercuryBusinessDomainStatusUpdateConnection';
|
|
143360
|
+
edges?: Maybe<Array<Maybe<MercuryBusinessDomainStatusUpdateEdge>>>;
|
|
143361
|
+
pageInfo: PageInfo;
|
|
143362
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143363
|
+
};
|
|
143364
|
+
export declare type MercuryBusinessDomainStatusUpdateEdge = {
|
|
143365
|
+
__typename?: 'MercuryBusinessDomainStatusUpdateEdge';
|
|
143366
|
+
cursor: Scalars['String']['output'];
|
|
143367
|
+
node?: Maybe<MercuryBusinessDomainStatusUpdate>;
|
|
143368
|
+
};
|
|
143369
|
+
export declare type MercuryBusinessDomainSummary = {
|
|
143370
|
+
__typename?: 'MercuryBusinessDomainSummary';
|
|
143371
|
+
id: Scalars['ID']['output'];
|
|
143372
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
143373
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
143374
|
+
};
|
|
143375
|
+
export declare enum MercuryBusinessDomainSummaryType {
|
|
143376
|
+
BusinessDomain = "BUSINESS_DOMAIN",
|
|
143377
|
+
Goals = "GOALS",
|
|
143378
|
+
Work = "WORK"
|
|
143379
|
+
}
|
|
143380
|
+
export declare type MercuryBusinessDomainTargetDate = {
|
|
143381
|
+
__typename?: 'MercuryBusinessDomainTargetDate';
|
|
143382
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
143383
|
+
targetDateType?: Maybe<MercuryBusinessDomainTargetDateType>;
|
|
143384
|
+
};
|
|
143385
|
+
export declare type MercuryBusinessDomainTargetDateInput = {
|
|
143386
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
143387
|
+
targetDateType?: InputMaybe<MercuryBusinessDomainTargetDateType>;
|
|
143388
|
+
};
|
|
143389
|
+
export declare enum MercuryBusinessDomainTargetDateType {
|
|
143390
|
+
Day = "DAY",
|
|
143391
|
+
Month = "MONTH",
|
|
143392
|
+
Quarter = "QUARTER"
|
|
143393
|
+
}
|
|
143394
|
+
export declare type MercuryBusinessDomainType = {
|
|
143395
|
+
__typename?: 'MercuryBusinessDomainType';
|
|
143396
|
+
businessDomainCount?: Maybe<MercuryBusinessDomainTypeAggregation>;
|
|
143397
|
+
businessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
143398
|
+
hierarchyLevel: Scalars['Int']['output'];
|
|
143399
|
+
id: Scalars['ID']['output'];
|
|
143400
|
+
name: Scalars['String']['output'];
|
|
143401
|
+
};
|
|
143402
|
+
export declare type MercuryBusinessDomainTypeBusinessDomainCountArgs = {
|
|
143403
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143404
|
+
};
|
|
143405
|
+
export declare type MercuryBusinessDomainTypeAggregation = {
|
|
143406
|
+
__typename?: 'MercuryBusinessDomainTypeAggregation';
|
|
143407
|
+
totalCount: Scalars['Int']['output'];
|
|
143408
|
+
};
|
|
143409
|
+
export declare type MercuryBusinessDomainUserAccess = {
|
|
143410
|
+
__typename?: 'MercuryBusinessDomainUserAccess';
|
|
143411
|
+
accessLevel?: Maybe<MercuryBusinessDomainUserAccessLevel>;
|
|
143412
|
+
accessReason?: Maybe<MercuryBusinessDomainUserAccessReason>;
|
|
143413
|
+
following?: Maybe<Scalars['Boolean']['output']>;
|
|
143414
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
143415
|
+
user?: Maybe<User>;
|
|
143416
|
+
};
|
|
143417
|
+
export declare type MercuryBusinessDomainUserAccessConnection = {
|
|
143418
|
+
__typename?: 'MercuryBusinessDomainUserAccessConnection';
|
|
143419
|
+
edges?: Maybe<Array<MercuryBusinessDomainUserAccessEdge>>;
|
|
143420
|
+
pageInfo: PageInfo;
|
|
143421
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143422
|
+
};
|
|
143423
|
+
export declare type MercuryBusinessDomainUserAccessEdge = {
|
|
143424
|
+
__typename?: 'MercuryBusinessDomainUserAccessEdge';
|
|
143425
|
+
cursor: Scalars['String']['output'];
|
|
143426
|
+
node?: Maybe<MercuryBusinessDomainUserAccess>;
|
|
143427
|
+
};
|
|
143428
|
+
export declare type MercuryBusinessDomainUserAccessInput = {
|
|
143429
|
+
accessLevel?: InputMaybe<MercuryBusinessDomainUserAccessLevel>;
|
|
143430
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143431
|
+
principalId: Scalars['ID']['input'];
|
|
143432
|
+
};
|
|
143433
|
+
export declare enum MercuryBusinessDomainUserAccessLevel {
|
|
143434
|
+
Edit = "EDIT",
|
|
143435
|
+
View = "VIEW"
|
|
143436
|
+
}
|
|
143437
|
+
export declare type MercuryBusinessDomainUserAccessMutation = {
|
|
143438
|
+
__typename?: 'MercuryBusinessDomainUserAccessMutation';
|
|
143439
|
+
addedAsFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
143440
|
+
userAccess?: Maybe<MercuryBusinessDomainUserAccess>;
|
|
143441
|
+
};
|
|
143442
|
+
export declare enum MercuryBusinessDomainUserAccessReason {
|
|
143443
|
+
AccessGranted = "ACCESS_GRANTED",
|
|
143444
|
+
AlreadyHasAccess = "ALREADY_HAS_ACCESS",
|
|
143445
|
+
RequiresAppAccess = "REQUIRES_APP_ACCESS",
|
|
143446
|
+
RequiresNewProductRole = "REQUIRES_NEW_PRODUCT_ROLE",
|
|
143447
|
+
RequiresSiteAccess = "REQUIRES_SITE_ACCESS"
|
|
143448
|
+
}
|
|
143449
|
+
export declare type MercuryBusinessDomainView = Node & {
|
|
143450
|
+
__typename?: 'MercuryBusinessDomainView';
|
|
143451
|
+
aggregatedBusinessDomainStatusCount?: Maybe<MercuryAggregatedBusinessDomainViewStatusCount>;
|
|
143452
|
+
id: Scalars['ID']['output'];
|
|
143453
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
143454
|
+
linkedBusinessDomainGoalCount: Scalars['Int']['output'];
|
|
143455
|
+
linkedBusinessDomainSummary?: Maybe<MercuryBusinessDomainViewBusinessDomainSummary>;
|
|
143456
|
+
name: Scalars['String']['output'];
|
|
143457
|
+
owner?: Maybe<User>;
|
|
143458
|
+
starred: Scalars['Boolean']['output'];
|
|
143459
|
+
updatedBy?: Maybe<User>;
|
|
143460
|
+
updatedDate: Scalars['String']['output'];
|
|
143461
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
143462
|
+
uuid?: Maybe<Scalars['ID']['output']>;
|
|
143463
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
143464
|
+
viewType: MercuryBusinessDomainViewType;
|
|
143465
|
+
};
|
|
143466
|
+
export declare type MercuryBusinessDomainViewBusinessDomainSummary = {
|
|
143467
|
+
__typename?: 'MercuryBusinessDomainViewBusinessDomainSummary';
|
|
143468
|
+
businessDomainTypeBreakdown?: Maybe<Array<Maybe<MercuryBusinessDomainViewBusinessDomainTypeBreakdown>>>;
|
|
143469
|
+
};
|
|
143470
|
+
export declare type MercuryBusinessDomainViewBusinessDomainTypeBreakdown = {
|
|
143471
|
+
__typename?: 'MercuryBusinessDomainViewBusinessDomainTypeBreakdown';
|
|
143472
|
+
businessDomainType: MercuryBusinessDomainType;
|
|
143473
|
+
count: Scalars['Int']['output'];
|
|
143474
|
+
};
|
|
143475
|
+
export declare type MercuryBusinessDomainViewConnection = {
|
|
143476
|
+
__typename?: 'MercuryBusinessDomainViewConnection';
|
|
143477
|
+
edges?: Maybe<Array<MercuryBusinessDomainViewEdge>>;
|
|
143478
|
+
pageInfo: PageInfo;
|
|
143479
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
143480
|
+
};
|
|
143481
|
+
export declare type MercuryBusinessDomainViewEdge = {
|
|
143482
|
+
__typename?: 'MercuryBusinessDomainViewEdge';
|
|
143483
|
+
cursor: Scalars['String']['output'];
|
|
143484
|
+
node: MercuryBusinessDomainView;
|
|
143485
|
+
};
|
|
143486
|
+
export declare type MercuryBusinessDomainViewSort = {
|
|
143487
|
+
field: MercuryBusinessDomainViewSortField;
|
|
143488
|
+
order: SortOrder;
|
|
143489
|
+
};
|
|
143490
|
+
export declare enum MercuryBusinessDomainViewSortField {
|
|
143491
|
+
Name = "NAME",
|
|
143492
|
+
Owner = "OWNER",
|
|
143493
|
+
Starred = "STARRED"
|
|
143494
|
+
}
|
|
143495
|
+
export declare enum MercuryBusinessDomainViewType {
|
|
143496
|
+
HierarchyView = "HIERARCHY_VIEW"
|
|
143497
|
+
}
|
|
143498
|
+
export declare type MercuryBusinessDomainsMutationApi = {
|
|
143499
|
+
__typename?: 'MercuryBusinessDomainsMutationApi';
|
|
143500
|
+
addBusinessDomainCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
143501
|
+
addWatcherToBusinessDomain?: Maybe<MercuryAddWatcherToBusinessDomainPayload>;
|
|
143502
|
+
archiveBusinessDomain?: Maybe<MercuryArchiveBusinessDomainPayload>;
|
|
143503
|
+
assignUserAccessToBusinessDomain?: Maybe<MercuryAssignUserAccessToBusinessDomainPayload>;
|
|
143504
|
+
bulkCreateBusinessDomainTypes?: Maybe<MercuryBulkCreateBusinessDomainTypesPayload>;
|
|
143505
|
+
createBusinessDomain?: Maybe<MercuryCreateBusinessDomainPayload>;
|
|
143506
|
+
createBusinessDomainCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
143507
|
+
createBusinessDomainHierarchy?: Maybe<MercuryCreateBusinessDomainHierarchyPayload>;
|
|
143508
|
+
createBusinessDomainStatusUpdate?: Maybe<MercuryCreateBusinessDomainStatusUpdatePayload>;
|
|
143509
|
+
createBusinessDomainType?: Maybe<MercuryCreateBusinessDomainTypePayload>;
|
|
143510
|
+
createBusinessDomainViewWithBusinessDomains?: Maybe<MercuryCreateBusinessDomainViewPayload>;
|
|
143511
|
+
deleteBusinessDomain?: Maybe<MercuryDeleteBusinessDomainPayload>;
|
|
143512
|
+
deleteBusinessDomainCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
143513
|
+
deleteBusinessDomainCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
143514
|
+
deleteBusinessDomainGoalLinks?: Maybe<MercuryDeleteBusinessDomainGoalLinksPayload>;
|
|
143515
|
+
deleteBusinessDomainHierarchy?: Maybe<MercuryDeleteBusinessDomainHierarchyPayload>;
|
|
143516
|
+
deleteBusinessDomainLink?: Maybe<MercuryDeleteBusinessDomainLinkPayload>;
|
|
143517
|
+
deleteBusinessDomainStatusUpdate?: Maybe<MercuryDeleteBusinessDomainStatusUpdatePayload>;
|
|
143518
|
+
deleteBusinessDomainType?: Maybe<MercuryDeleteBusinessDomainTypePayload>;
|
|
143519
|
+
deleteBusinessDomainView?: Maybe<MercuryDeleteBusinessDomainViewPayload>;
|
|
143520
|
+
deleteBusinessDomainViewBusinessDomainLink?: Maybe<MercuryDeleteBusinessDomainViewBusinessDomainLinkPayload>;
|
|
143521
|
+
linkBusinessDomainToThirdPartyDocument?: Maybe<MercuryLinkBusinessDomainThirdPartyDocumentPayload>;
|
|
143522
|
+
linkBusinessDomainsToBusinessDomain?: Maybe<MercuryLinkBusinessDomainsToBusinessDomainPayload>;
|
|
143523
|
+
linkBusinessDomainsToBusinessDomainView?: Maybe<MercuryLinkBusinessDomainsToBusinessDomainViewPayload>;
|
|
143524
|
+
linkGoalsToBusinessDomain?: Maybe<MercuryLinkGoalsToBusinessDomainPayload>;
|
|
143525
|
+
publishBusinessDomain?: Maybe<MercuryPublishBusinessDomainPayload>;
|
|
143526
|
+
recreateBusinessDomainViewBusinessDomains?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
143527
|
+
removeUserAccessToBusinessDomain?: Maybe<MercuryRemoveUserAccessToBusinessDomainPayload>;
|
|
143528
|
+
removeWatcherFromBusinessDomain?: Maybe<MercuryRemoveWatcherFromBusinessDomainPayload>;
|
|
143529
|
+
reorderBusinessDomainCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
143530
|
+
reorderBusinessDomainTypes?: Maybe<MercuryReorderBusinessDomainTypesPayload>;
|
|
143531
|
+
setBusinessDomainCustomFieldValue?: Maybe<MercurySetBusinessDomainCustomFieldPayload>;
|
|
143532
|
+
setBusinessDomainCustomFieldValues?: Maybe<MercurySetBusinessDomainCustomFieldsPayload>;
|
|
143533
|
+
starBusinessDomain?: Maybe<MercuryStarBusinessDomainPayload>;
|
|
143534
|
+
transitionBusinessDomainStatus?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
143535
|
+
unStarBusinessDomain?: Maybe<MercuryUnStarBusinessDomainPayload>;
|
|
143536
|
+
unarchiveBusinessDomain?: Maybe<MercuryUnarchiveBusinessDomainPayload>;
|
|
143537
|
+
updateBusinessDomainAboutContent?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
143538
|
+
updateBusinessDomainCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
143539
|
+
updateBusinessDomainCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
143540
|
+
updateBusinessDomainCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
143541
|
+
updateBusinessDomainHierarchyName?: Maybe<MercuryUpdateBusinessDomainHierarchyPayload>;
|
|
143542
|
+
updateBusinessDomainName?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
143543
|
+
updateBusinessDomainOwner?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
143544
|
+
updateBusinessDomainStatusUpdate?: Maybe<MercuryUpdateBusinessDomainStatusUpdatePayload>;
|
|
143545
|
+
updateBusinessDomainTargetDate?: Maybe<MercuryUpdateBusinessDomainPayload>;
|
|
143546
|
+
updateBusinessDomainType?: Maybe<MercuryUpdateBusinessDomainTypePayload>;
|
|
143547
|
+
updateBusinessDomainTypeName?: Maybe<MercuryUpdateBusinessDomainTypeNamePayload>;
|
|
143548
|
+
updateBusinessDomainViewName?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
143549
|
+
validateBusinessDomainArchival?: Maybe<MercuryArchiveBusinessDomainValidationPayload>;
|
|
143550
|
+
};
|
|
143551
|
+
export declare type MercuryBusinessDomainsMutationApiAddBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
143552
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
143553
|
+
};
|
|
143554
|
+
export declare type MercuryBusinessDomainsMutationApiAddWatcherToBusinessDomainArgs = {
|
|
143555
|
+
input: MercuryAddWatcherToBusinessDomainInput;
|
|
143556
|
+
};
|
|
143557
|
+
export declare type MercuryBusinessDomainsMutationApiArchiveBusinessDomainArgs = {
|
|
143558
|
+
input: MercuryArchiveBusinessDomainInput;
|
|
143559
|
+
};
|
|
143560
|
+
export declare type MercuryBusinessDomainsMutationApiAssignUserAccessToBusinessDomainArgs = {
|
|
143561
|
+
input: MercuryAssignUserAccessToBusinessDomainInput;
|
|
143562
|
+
};
|
|
143563
|
+
export declare type MercuryBusinessDomainsMutationApiBulkCreateBusinessDomainTypesArgs = {
|
|
143564
|
+
input: MercuryBulkCreateBusinessDomainTypesInput;
|
|
143565
|
+
};
|
|
143566
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainArgs = {
|
|
143567
|
+
input: MercuryCreateBusinessDomainInput;
|
|
143568
|
+
};
|
|
143569
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainCustomFieldDefinitionArgs = {
|
|
143570
|
+
input: MercuryCreateBusinessDomainCustomFieldDefinitionInput;
|
|
143571
|
+
};
|
|
143572
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainHierarchyArgs = {
|
|
143573
|
+
input: MercuryCreateBusinessDomainHierarchyInput;
|
|
143574
|
+
};
|
|
143575
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainStatusUpdateArgs = {
|
|
143576
|
+
input: MercuryCreateBusinessDomainStatusUpdateInput;
|
|
143577
|
+
};
|
|
143578
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainTypeArgs = {
|
|
143579
|
+
input: MercuryCreateBusinessDomainTypeInput;
|
|
143580
|
+
};
|
|
143581
|
+
export declare type MercuryBusinessDomainsMutationApiCreateBusinessDomainViewWithBusinessDomainsArgs = {
|
|
143582
|
+
input: MercuryCreateBusinessDomainViewBusinessDomainsInput;
|
|
143583
|
+
};
|
|
143584
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainArgs = {
|
|
143585
|
+
input: MercuryDeleteBusinessDomainInput;
|
|
143586
|
+
};
|
|
143587
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainCustomFieldDefinitionArgs = {
|
|
143588
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
143589
|
+
};
|
|
143590
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
143591
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
143592
|
+
};
|
|
143593
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainGoalLinksArgs = {
|
|
143594
|
+
input: MercuryDeleteBusinessDomainGoalLinksInput;
|
|
143595
|
+
};
|
|
143596
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainHierarchyArgs = {
|
|
143597
|
+
input: MercuryDeleteBusinessDomainHierarchyInput;
|
|
143598
|
+
};
|
|
143599
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainLinkArgs = {
|
|
143600
|
+
input: MercuryDeleteBusinessDomainLinkInput;
|
|
143601
|
+
};
|
|
143602
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainStatusUpdateArgs = {
|
|
143603
|
+
input: MercuryDeleteBusinessDomainStatusUpdateInput;
|
|
143604
|
+
};
|
|
143605
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainTypeArgs = {
|
|
143606
|
+
input: MercuryDeleteBusinessDomainTypeInput;
|
|
143607
|
+
};
|
|
143608
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainViewArgs = {
|
|
143609
|
+
input: MercuryDeleteBusinessDomainViewInput;
|
|
143610
|
+
};
|
|
143611
|
+
export declare type MercuryBusinessDomainsMutationApiDeleteBusinessDomainViewBusinessDomainLinkArgs = {
|
|
143612
|
+
input: MercuryDeleteBusinessDomainViewBusinessDomainLinkInput;
|
|
143613
|
+
};
|
|
143614
|
+
export declare type MercuryBusinessDomainsMutationApiLinkBusinessDomainToThirdPartyDocumentArgs = {
|
|
143615
|
+
input: MercuryLinkBusinessDomainToThirdPartyDocumentInput;
|
|
143616
|
+
};
|
|
143617
|
+
export declare type MercuryBusinessDomainsMutationApiLinkBusinessDomainsToBusinessDomainArgs = {
|
|
143618
|
+
input: MercuryLinkBusinessDomainsToBusinessDomainInput;
|
|
143619
|
+
};
|
|
143620
|
+
export declare type MercuryBusinessDomainsMutationApiLinkBusinessDomainsToBusinessDomainViewArgs = {
|
|
143621
|
+
input: MercuryLinkBusinessDomainsToBusinessDomainViewInput;
|
|
143622
|
+
};
|
|
143623
|
+
export declare type MercuryBusinessDomainsMutationApiLinkGoalsToBusinessDomainArgs = {
|
|
143624
|
+
input: MercuryLinkGoalsToBusinessDomainInput;
|
|
143625
|
+
};
|
|
143626
|
+
export declare type MercuryBusinessDomainsMutationApiPublishBusinessDomainArgs = {
|
|
143627
|
+
input: MercuryPublishBusinessDomainInput;
|
|
143628
|
+
};
|
|
143629
|
+
export declare type MercuryBusinessDomainsMutationApiRecreateBusinessDomainViewBusinessDomainsArgs = {
|
|
143630
|
+
input: MercuryRecreateBusinessDomainViewBusinessDomainsInput;
|
|
143631
|
+
};
|
|
143632
|
+
export declare type MercuryBusinessDomainsMutationApiRemoveUserAccessToBusinessDomainArgs = {
|
|
143633
|
+
input: MercuryRemoveUserAccessToBusinessDomainInput;
|
|
143634
|
+
};
|
|
143635
|
+
export declare type MercuryBusinessDomainsMutationApiRemoveWatcherFromBusinessDomainArgs = {
|
|
143636
|
+
input: MercuryRemoveWatcherFromBusinessDomainInput;
|
|
143637
|
+
};
|
|
143638
|
+
export declare type MercuryBusinessDomainsMutationApiReorderBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
143639
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
143640
|
+
};
|
|
143641
|
+
export declare type MercuryBusinessDomainsMutationApiReorderBusinessDomainTypesArgs = {
|
|
143642
|
+
input: MercuryReorderBusinessDomainTypesInput;
|
|
143643
|
+
};
|
|
143644
|
+
export declare type MercuryBusinessDomainsMutationApiSetBusinessDomainCustomFieldValueArgs = {
|
|
143645
|
+
input: MercurySetBusinessDomainCustomFieldInput;
|
|
143646
|
+
};
|
|
143647
|
+
export declare type MercuryBusinessDomainsMutationApiSetBusinessDomainCustomFieldValuesArgs = {
|
|
143648
|
+
input: MercurySetBusinessDomainCustomFieldsInput;
|
|
143649
|
+
};
|
|
143650
|
+
export declare type MercuryBusinessDomainsMutationApiStarBusinessDomainArgs = {
|
|
143651
|
+
input: MercuryStarBusinessDomainInput;
|
|
143652
|
+
};
|
|
143653
|
+
export declare type MercuryBusinessDomainsMutationApiTransitionBusinessDomainStatusArgs = {
|
|
143654
|
+
input: MercuryTransitionBusinessDomainStatusInput;
|
|
143655
|
+
};
|
|
143656
|
+
export declare type MercuryBusinessDomainsMutationApiUnStarBusinessDomainArgs = {
|
|
143657
|
+
input: MercuryUnStarBusinessDomainInput;
|
|
143658
|
+
};
|
|
143659
|
+
export declare type MercuryBusinessDomainsMutationApiUnarchiveBusinessDomainArgs = {
|
|
143660
|
+
input: MercuryUnarchiveBusinessDomainInput;
|
|
143661
|
+
};
|
|
143662
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainAboutContentArgs = {
|
|
143663
|
+
input: MercuryUpdateBusinessDomainAboutContentInput;
|
|
143664
|
+
};
|
|
143665
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainCustomFieldDefinitionDescriptionArgs = {
|
|
143666
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
143667
|
+
};
|
|
143668
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainCustomFieldDefinitionNameArgs = {
|
|
143669
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
143670
|
+
};
|
|
143671
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainCustomFieldDefinitionOptionArgs = {
|
|
143672
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
143673
|
+
};
|
|
143674
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainHierarchyNameArgs = {
|
|
143675
|
+
input: MercuryUpdateBusinessDomainHierarchyNameInput;
|
|
143676
|
+
};
|
|
143677
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainNameArgs = {
|
|
143678
|
+
input: MercuryUpdateBusinessDomainNameInput;
|
|
143679
|
+
};
|
|
143680
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainOwnerArgs = {
|
|
143681
|
+
input: MercuryUpdateBusinessDomainOwnerInput;
|
|
143682
|
+
};
|
|
143683
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainStatusUpdateArgs = {
|
|
143684
|
+
input: MercuryUpdateBusinessDomainStatusUpdateInput;
|
|
143685
|
+
};
|
|
143686
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainTargetDateArgs = {
|
|
143687
|
+
input: MercuryUpdateBusinessDomainTargetDateInput;
|
|
143688
|
+
};
|
|
143689
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainTypeArgs = {
|
|
143690
|
+
input: MercuryUpdateBusinessDomainTypeInput;
|
|
143691
|
+
};
|
|
143692
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainTypeNameArgs = {
|
|
143693
|
+
input: MercuryUpdateBusinessDomainTypeNameInput;
|
|
143694
|
+
};
|
|
143695
|
+
export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainViewNameArgs = {
|
|
143696
|
+
input: MercuryUpdateBusinessDomainViewNameInput;
|
|
143697
|
+
};
|
|
143698
|
+
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainArchivalArgs = {
|
|
143699
|
+
input: MercuryArchiveBusinessDomainValidationInput;
|
|
143700
|
+
};
|
|
143701
|
+
export declare type MercuryBusinessDomainsQueryApi = {
|
|
143702
|
+
__typename?: 'MercuryBusinessDomainsQueryApi';
|
|
143703
|
+
aiBusinessDomainListSummary?: Maybe<MercuryBusinessDomainListSummary>;
|
|
143704
|
+
aiBusinessDomainSummary?: Maybe<MercuryBusinessDomainSummary>;
|
|
143705
|
+
businessDomain?: Maybe<MercuryBusinessDomain>;
|
|
143706
|
+
businessDomainCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
143707
|
+
businessDomainHierarchies?: Maybe<Array<MercuryBusinessDomainHierarchy>>;
|
|
143708
|
+
businessDomainHierarchiesSearch?: Maybe<MercuryBusinessDomainHierarchyConnection>;
|
|
143709
|
+
businessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
143710
|
+
businessDomainStatusTransitions?: Maybe<Array<MercuryBusinessDomainStatusTransition>>;
|
|
143711
|
+
businessDomainStatusUpdates?: Maybe<Array<MercuryBusinessDomainStatusUpdate>>;
|
|
143712
|
+
businessDomainTypes?: Maybe<Array<Maybe<MercuryBusinessDomainType>>>;
|
|
143713
|
+
businessDomainTypesSearch?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
143714
|
+
businessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
143715
|
+
businessDomainViews?: Maybe<Array<MercuryBusinessDomainView>>;
|
|
143716
|
+
businessDomainViewsSearch?: Maybe<MercuryBusinessDomainViewConnection>;
|
|
143717
|
+
businessDomains?: Maybe<Array<MercuryBusinessDomain>>;
|
|
143718
|
+
businessDomainsByExternalIds?: Maybe<Array<Maybe<MercuryBusinessDomain>>>;
|
|
143719
|
+
businessDomainsSearch?: Maybe<MercuryBusinessDomainConnection>;
|
|
143720
|
+
};
|
|
143721
|
+
export declare type MercuryBusinessDomainsQueryApiAiBusinessDomainListSummaryArgs = {
|
|
143722
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143723
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143724
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143725
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
143726
|
+
};
|
|
143727
|
+
export declare type MercuryBusinessDomainsQueryApiAiBusinessDomainSummaryArgs = {
|
|
143728
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143729
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143730
|
+
id: Scalars['ID']['input'];
|
|
143731
|
+
includeGoalsFromSubBusinessDomains?: InputMaybe<Scalars['Boolean']['input']>;
|
|
143732
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
143733
|
+
summaryType?: InputMaybe<MercuryBusinessDomainSummaryType>;
|
|
143734
|
+
};
|
|
143735
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainArgs = {
|
|
143736
|
+
id: Scalars['ID']['input'];
|
|
143737
|
+
};
|
|
143738
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainCustomFieldDefinitionsSearchArgs = {
|
|
143739
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143740
|
+
cloudId: Scalars['ID']['input'];
|
|
143741
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143742
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143743
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
143744
|
+
};
|
|
143745
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainHierarchiesArgs = {
|
|
143746
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143747
|
+
};
|
|
143748
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainHierarchiesSearchArgs = {
|
|
143749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143750
|
+
cloudId: Scalars['ID']['input'];
|
|
143751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143752
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143753
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainHierarchySort>>>;
|
|
143754
|
+
};
|
|
143755
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainHierarchyArgs = {
|
|
143756
|
+
id: Scalars['ID']['input'];
|
|
143757
|
+
};
|
|
143758
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainStatusTransitionsArgs = {
|
|
143759
|
+
cloudId: Scalars['ID']['input'];
|
|
143760
|
+
};
|
|
143761
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainStatusUpdatesArgs = {
|
|
143762
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143763
|
+
};
|
|
143764
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainTypesArgs = {
|
|
143765
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143766
|
+
};
|
|
143767
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainTypesSearchArgs = {
|
|
143768
|
+
cloudId: Scalars['ID']['input'];
|
|
143769
|
+
};
|
|
143770
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainViewArgs = {
|
|
143771
|
+
id: Scalars['ID']['input'];
|
|
143772
|
+
};
|
|
143773
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainViewsArgs = {
|
|
143774
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143775
|
+
};
|
|
143776
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainViewsSearchArgs = {
|
|
143777
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143778
|
+
cloudId: Scalars['ID']['input'];
|
|
143779
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143780
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143781
|
+
sort?: InputMaybe<Array<MercuryBusinessDomainViewSort>>;
|
|
143782
|
+
};
|
|
143783
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainsArgs = {
|
|
143784
|
+
ids: Array<Scalars['ID']['input']>;
|
|
143785
|
+
};
|
|
143786
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainsByExternalIdsArgs = {
|
|
143787
|
+
cloudId: Scalars['ID']['input'];
|
|
143788
|
+
ids: Array<Scalars['String']['input']>;
|
|
143789
|
+
};
|
|
143790
|
+
export declare type MercuryBusinessDomainsQueryApiBusinessDomainsSearchArgs = {
|
|
143791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143792
|
+
cloudId: Scalars['ID']['input'];
|
|
143793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143794
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
143795
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainSort>>>;
|
|
143796
|
+
};
|
|
142285
143797
|
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryChangeParentFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRenameFocusAreaChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
142286
143798
|
export declare type MercuryChangeConnection = {
|
|
142287
143799
|
__typename?: 'MercuryChangeConnection';
|
|
@@ -142601,6 +144113,35 @@ export declare type MercuryCommentEdge = {
|
|
|
142601
144113
|
cursor: Scalars['String']['output'];
|
|
142602
144114
|
node?: Maybe<MercuryComment>;
|
|
142603
144115
|
};
|
|
144116
|
+
export declare type MercuryCommentMutationApi = {
|
|
144117
|
+
__typename?: 'MercuryCommentMutationApi';
|
|
144118
|
+
createComment?: Maybe<MercuryCreateThreadedCommentPayload>;
|
|
144119
|
+
deleteComment?: Maybe<MercuryDeleteThreadedCommentPayload>;
|
|
144120
|
+
updateComment?: Maybe<MercuryUpdateThreadedCommentPayload>;
|
|
144121
|
+
};
|
|
144122
|
+
export declare type MercuryCommentMutationApiCreateCommentArgs = {
|
|
144123
|
+
input: MercuryCreateThreadedCommentInput;
|
|
144124
|
+
};
|
|
144125
|
+
export declare type MercuryCommentMutationApiDeleteCommentArgs = {
|
|
144126
|
+
input: MercuryDeleteThreadedCommentInput;
|
|
144127
|
+
};
|
|
144128
|
+
export declare type MercuryCommentMutationApiUpdateCommentArgs = {
|
|
144129
|
+
input: MercuryUpdateThreadedCommentInput;
|
|
144130
|
+
};
|
|
144131
|
+
export declare type MercuryCommentQueryApi = {
|
|
144132
|
+
__typename?: 'MercuryCommentQueryApi';
|
|
144133
|
+
commentsByIds?: Maybe<Array<Maybe<MercuryThreadedComment>>>;
|
|
144134
|
+
commentsByParentId?: Maybe<MercuryThreadedCommentConnection>;
|
|
144135
|
+
};
|
|
144136
|
+
export declare type MercuryCommentQueryApiCommentsByIdsArgs = {
|
|
144137
|
+
ids: Array<Scalars['ID']['input']>;
|
|
144138
|
+
};
|
|
144139
|
+
export declare type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
144140
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144141
|
+
cloudId: Scalars['ID']['input'];
|
|
144142
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144143
|
+
parentId: Scalars['ID']['input'];
|
|
144144
|
+
};
|
|
142604
144145
|
export declare type MercuryCostItem = Node & {
|
|
142605
144146
|
__typename?: 'MercuryCostItem';
|
|
142606
144147
|
costItemSummary?: Maybe<MercuryCostItemSummary>;
|
|
@@ -142736,6 +144277,74 @@ export declare type MercuryCreateBenefitTypePayload = Payload & {
|
|
|
142736
144277
|
export declare type MercuryCreateBooleanCustomFieldDefinitionInput = {
|
|
142737
144278
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142738
144279
|
};
|
|
144280
|
+
export declare type MercuryCreateBusinessDomainCustomFieldDefinitionInput = {
|
|
144281
|
+
cloudId: Scalars['ID']['input'];
|
|
144282
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
144283
|
+
};
|
|
144284
|
+
export declare type MercuryCreateBusinessDomainHierarchyInput = {
|
|
144285
|
+
cloudId: Scalars['ID']['input'];
|
|
144286
|
+
hierarchyTypeKey: MercuryBusinessDomainHierarchyTypeKey;
|
|
144287
|
+
name: Scalars['String']['input'];
|
|
144288
|
+
};
|
|
144289
|
+
export declare type MercuryCreateBusinessDomainHierarchyPayload = Payload & {
|
|
144290
|
+
__typename?: 'MercuryCreateBusinessDomainHierarchyPayload';
|
|
144291
|
+
createdBusinessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
144292
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144293
|
+
success: Scalars['Boolean']['output'];
|
|
144294
|
+
};
|
|
144295
|
+
export declare type MercuryCreateBusinessDomainInput = {
|
|
144296
|
+
businessDomainTypeId: Scalars['ID']['input'];
|
|
144297
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144298
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
144299
|
+
name: Scalars['String']['input'];
|
|
144300
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
144301
|
+
parentBusinessDomainId?: InputMaybe<Scalars['ID']['input']>;
|
|
144302
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
144303
|
+
targetDateType?: InputMaybe<MercuryBusinessDomainTargetDateType>;
|
|
144304
|
+
};
|
|
144305
|
+
export declare type MercuryCreateBusinessDomainPayload = Payload & {
|
|
144306
|
+
__typename?: 'MercuryCreateBusinessDomainPayload';
|
|
144307
|
+
createdBusinessDomain?: Maybe<MercuryBusinessDomain>;
|
|
144308
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144309
|
+
success: Scalars['Boolean']['output'];
|
|
144310
|
+
};
|
|
144311
|
+
export declare type MercuryCreateBusinessDomainStatusUpdateInput = {
|
|
144312
|
+
businessDomainId: Scalars['ID']['input'];
|
|
144313
|
+
newTargetDate?: InputMaybe<MercuryBusinessDomainTargetDateInput>;
|
|
144314
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
144315
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
144316
|
+
};
|
|
144317
|
+
export declare type MercuryCreateBusinessDomainStatusUpdatePayload = Payload & {
|
|
144318
|
+
__typename?: 'MercuryCreateBusinessDomainStatusUpdatePayload';
|
|
144319
|
+
createdBusinessDomainUpdateStatus?: Maybe<MercuryBusinessDomainStatusUpdate>;
|
|
144320
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144321
|
+
success: Scalars['Boolean']['output'];
|
|
144322
|
+
};
|
|
144323
|
+
export declare type MercuryCreateBusinessDomainTypeInput = {
|
|
144324
|
+
businessDomainHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
144325
|
+
cloudId: Scalars['ID']['input'];
|
|
144326
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
144327
|
+
name: Scalars['String']['input'];
|
|
144328
|
+
};
|
|
144329
|
+
export declare type MercuryCreateBusinessDomainTypePayload = Payload & {
|
|
144330
|
+
__typename?: 'MercuryCreateBusinessDomainTypePayload';
|
|
144331
|
+
createdBusinessDomainType?: Maybe<MercuryBusinessDomainType>;
|
|
144332
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144333
|
+
success: Scalars['Boolean']['output'];
|
|
144334
|
+
};
|
|
144335
|
+
export declare type MercuryCreateBusinessDomainViewBusinessDomainsInput = {
|
|
144336
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
144337
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144338
|
+
name: Scalars['String']['input'];
|
|
144339
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
144340
|
+
viewType?: InputMaybe<MercuryBusinessDomainViewType>;
|
|
144341
|
+
};
|
|
144342
|
+
export declare type MercuryCreateBusinessDomainViewPayload = Payload & {
|
|
144343
|
+
__typename?: 'MercuryCreateBusinessDomainViewPayload';
|
|
144344
|
+
createdBusinessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
144345
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144346
|
+
success: Scalars['Boolean']['output'];
|
|
144347
|
+
};
|
|
142739
144348
|
export declare type MercuryCreateChangeProposalCommentInput = {
|
|
142740
144349
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142741
144350
|
content: Scalars['String']['input'];
|
|
@@ -142794,8 +144403,10 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
142794
144403
|
booleanField?: InputMaybe<MercuryCreateBooleanCustomFieldDefinitionInput>;
|
|
142795
144404
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
142796
144405
|
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
144406
|
+
multiUserField?: InputMaybe<MercuryCreateMultiUserCustomFieldDefinitionInput>;
|
|
142797
144407
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
142798
144408
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
144409
|
+
singleUserField?: InputMaybe<MercuryCreateSingleUserCustomFieldDefinitionInput>;
|
|
142799
144410
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
142800
144411
|
};
|
|
142801
144412
|
export declare type MercuryCreateCostItemInput = {
|
|
@@ -142937,6 +144548,9 @@ export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
|
142937
144548
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142938
144549
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
142939
144550
|
};
|
|
144551
|
+
export declare type MercuryCreateMultiUserCustomFieldDefinitionInput = {
|
|
144552
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144553
|
+
};
|
|
142940
144554
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
142941
144555
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142942
144556
|
};
|
|
@@ -142983,6 +144597,9 @@ export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
|
142983
144597
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
142984
144598
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
142985
144599
|
};
|
|
144600
|
+
export declare type MercuryCreateSingleUserCustomFieldDefinitionInput = {
|
|
144601
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144602
|
+
};
|
|
142986
144603
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
142987
144604
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
142988
144605
|
content: Scalars['String']['input'];
|
|
@@ -143010,6 +144627,18 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
143010
144627
|
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
143011
144628
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143012
144629
|
};
|
|
144630
|
+
export declare type MercuryCreateThreadedCommentInput = {
|
|
144631
|
+
cloudId: Scalars['ID']['input'];
|
|
144632
|
+
commentText: Scalars['String']['input'];
|
|
144633
|
+
containerId: Scalars['ID']['input'];
|
|
144634
|
+
parentId: Scalars['ID']['input'];
|
|
144635
|
+
};
|
|
144636
|
+
export declare type MercuryCreateThreadedCommentPayload = Payload & {
|
|
144637
|
+
__typename?: 'MercuryCreateThreadedCommentPayload';
|
|
144638
|
+
createdComment?: Maybe<MercuryThreadedComment>;
|
|
144639
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144640
|
+
success: Scalars['Boolean']['output'];
|
|
144641
|
+
};
|
|
143013
144642
|
export declare type MercuryCurrency = {
|
|
143014
144643
|
__typename?: 'MercuryCurrency';
|
|
143015
144644
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -143168,6 +144797,83 @@ export declare type MercuryDeleteBenefitTypePayload = Payload & {
|
|
|
143168
144797
|
errors?: Maybe<Array<MutationError>>;
|
|
143169
144798
|
success: Scalars['Boolean']['output'];
|
|
143170
144799
|
};
|
|
144800
|
+
export declare type MercuryDeleteBusinessDomainGoalLinksInput = {
|
|
144801
|
+
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
144802
|
+
businessDomainAri: Scalars['String']['input'];
|
|
144803
|
+
};
|
|
144804
|
+
export declare type MercuryDeleteBusinessDomainGoalLinksPayload = Payload & {
|
|
144805
|
+
__typename?: 'MercuryDeleteBusinessDomainGoalLinksPayload';
|
|
144806
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144807
|
+
success: Scalars['Boolean']['output'];
|
|
144808
|
+
};
|
|
144809
|
+
export declare type MercuryDeleteBusinessDomainHierarchyInput = {
|
|
144810
|
+
id: Scalars['ID']['input'];
|
|
144811
|
+
};
|
|
144812
|
+
export declare type MercuryDeleteBusinessDomainHierarchyPayload = Payload & {
|
|
144813
|
+
__typename?: 'MercuryDeleteBusinessDomainHierarchyPayload';
|
|
144814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144815
|
+
success: Scalars['Boolean']['output'];
|
|
144816
|
+
};
|
|
144817
|
+
export declare type MercuryDeleteBusinessDomainInput = {
|
|
144818
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144819
|
+
id: Scalars['ID']['input'];
|
|
144820
|
+
};
|
|
144821
|
+
export declare type MercuryDeleteBusinessDomainLinkInput = {
|
|
144822
|
+
businessDomainLinkAction?: InputMaybe<MercuryBusinessDomainLinkAction>;
|
|
144823
|
+
cloudId: Scalars['ID']['input'];
|
|
144824
|
+
id: Scalars['ID']['input'];
|
|
144825
|
+
};
|
|
144826
|
+
export declare type MercuryDeleteBusinessDomainLinkPayload = Payload & {
|
|
144827
|
+
__typename?: 'MercuryDeleteBusinessDomainLinkPayload';
|
|
144828
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144829
|
+
success: Scalars['Boolean']['output'];
|
|
144830
|
+
};
|
|
144831
|
+
export declare type MercuryDeleteBusinessDomainPayload = Payload & {
|
|
144832
|
+
__typename?: 'MercuryDeleteBusinessDomainPayload';
|
|
144833
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144834
|
+
success: Scalars['Boolean']['output'];
|
|
144835
|
+
};
|
|
144836
|
+
export declare type MercuryDeleteBusinessDomainStatusUpdateInput = {
|
|
144837
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144838
|
+
id: Scalars['ID']['input'];
|
|
144839
|
+
};
|
|
144840
|
+
export declare type MercuryDeleteBusinessDomainStatusUpdatePayload = Payload & {
|
|
144841
|
+
__typename?: 'MercuryDeleteBusinessDomainStatusUpdatePayload';
|
|
144842
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144843
|
+
success: Scalars['Boolean']['output'];
|
|
144844
|
+
};
|
|
144845
|
+
export declare type MercuryDeleteBusinessDomainTypeInput = {
|
|
144846
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144847
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144848
|
+
id: Scalars['ID']['input'];
|
|
144849
|
+
};
|
|
144850
|
+
export declare type MercuryDeleteBusinessDomainTypePayload = Payload & {
|
|
144851
|
+
__typename?: 'MercuryDeleteBusinessDomainTypePayload';
|
|
144852
|
+
deletedLinks?: Maybe<Array<MercuryBusinessDomainLink>>;
|
|
144853
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
144854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144855
|
+
reassignedBusinessDomains?: Maybe<Array<MercuryBusinessDomain>>;
|
|
144856
|
+
remainingBusinessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
144857
|
+
success: Scalars['Boolean']['output'];
|
|
144858
|
+
};
|
|
144859
|
+
export declare type MercuryDeleteBusinessDomainViewBusinessDomainLinkInput = {
|
|
144860
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
144861
|
+
businessDomainViewId: Scalars['ID']['input'];
|
|
144862
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144863
|
+
};
|
|
144864
|
+
export declare type MercuryDeleteBusinessDomainViewBusinessDomainLinkPayload = Payload & {
|
|
144865
|
+
__typename?: 'MercuryDeleteBusinessDomainViewBusinessDomainLinkPayload';
|
|
144866
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144867
|
+
success: Scalars['Boolean']['output'];
|
|
144868
|
+
};
|
|
144869
|
+
export declare type MercuryDeleteBusinessDomainViewInput = {
|
|
144870
|
+
id: Scalars['ID']['input'];
|
|
144871
|
+
};
|
|
144872
|
+
export declare type MercuryDeleteBusinessDomainViewPayload = Payload & {
|
|
144873
|
+
__typename?: 'MercuryDeleteBusinessDomainViewPayload';
|
|
144874
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144875
|
+
success: Scalars['Boolean']['output'];
|
|
144876
|
+
};
|
|
143171
144877
|
export declare type MercuryDeleteChangeProposalCommentInput = {
|
|
143172
144878
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143173
144879
|
id: Scalars['ID']['input'];
|
|
@@ -143383,6 +145089,15 @@ export declare type MercuryDeleteStrategicEventPayload = Payload & {
|
|
|
143383
145089
|
errors?: Maybe<Array<MutationError>>;
|
|
143384
145090
|
success: Scalars['Boolean']['output'];
|
|
143385
145091
|
};
|
|
145092
|
+
export declare type MercuryDeleteThreadedCommentInput = {
|
|
145093
|
+
cloudId: Scalars['ID']['input'];
|
|
145094
|
+
id: Scalars['ID']['input'];
|
|
145095
|
+
};
|
|
145096
|
+
export declare type MercuryDeleteThreadedCommentPayload = Payload & {
|
|
145097
|
+
__typename?: 'MercuryDeleteThreadedCommentPayload';
|
|
145098
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145099
|
+
success: Scalars['Boolean']['output'];
|
|
145100
|
+
};
|
|
143386
145101
|
export declare type MercuryDismissInsightInput = {
|
|
143387
145102
|
dismissalType: MercuryDismissalType;
|
|
143388
145103
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -143613,6 +145328,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
143613
145328
|
name: Scalars['String']['output'];
|
|
143614
145329
|
owner?: Maybe<User>;
|
|
143615
145330
|
parent?: Maybe<MercuryFocusArea>;
|
|
145331
|
+
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
143616
145332
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
143617
145333
|
status: MercuryFocusAreaStatus;
|
|
143618
145334
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
@@ -144790,6 +146506,36 @@ export declare type MercuryLinkAtlassianWorkToFocusAreaPayload = Payload & {
|
|
|
144790
146506
|
errors?: Maybe<Array<MutationError>>;
|
|
144791
146507
|
success: Scalars['Boolean']['output'];
|
|
144792
146508
|
};
|
|
146509
|
+
export declare type MercuryLinkBusinessDomainThirdPartyDocumentPayload = Payload & {
|
|
146510
|
+
__typename?: 'MercuryLinkBusinessDomainThirdPartyDocumentPayload';
|
|
146511
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146512
|
+
success: Scalars['Boolean']['output'];
|
|
146513
|
+
};
|
|
146514
|
+
export declare type MercuryLinkBusinessDomainToThirdPartyDocumentInput = {
|
|
146515
|
+
id: Scalars['ID']['input'];
|
|
146516
|
+
thirdPartyDocumentId: Scalars['ID']['input'];
|
|
146517
|
+
};
|
|
146518
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainInput = {
|
|
146519
|
+
businessDomainLinkAction?: InputMaybe<MercuryBusinessDomainLinkAction>;
|
|
146520
|
+
childBusinessDomainIds: Array<Scalars['ID']['input']>;
|
|
146521
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146522
|
+
parentBusinessDomainId: Scalars['ID']['input'];
|
|
146523
|
+
};
|
|
146524
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainPayload = Payload & {
|
|
146525
|
+
__typename?: 'MercuryLinkBusinessDomainsToBusinessDomainPayload';
|
|
146526
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146527
|
+
success: Scalars['Boolean']['output'];
|
|
146528
|
+
};
|
|
146529
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainViewInput = {
|
|
146530
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
146531
|
+
businessDomainViewId: Scalars['ID']['input'];
|
|
146532
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146533
|
+
};
|
|
146534
|
+
export declare type MercuryLinkBusinessDomainsToBusinessDomainViewPayload = Payload & {
|
|
146535
|
+
__typename?: 'MercuryLinkBusinessDomainsToBusinessDomainViewPayload';
|
|
146536
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146537
|
+
success: Scalars['Boolean']['output'];
|
|
146538
|
+
};
|
|
144793
146539
|
export declare type MercuryLinkFocusAreasToFocusAreaInput = {
|
|
144794
146540
|
childFocusAreaIds: Array<Scalars['ID']['input']>;
|
|
144795
146541
|
cloudId: Scalars['ID']['input'];
|
|
@@ -144810,6 +146556,16 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
144810
146556
|
errors?: Maybe<Array<MutationError>>;
|
|
144811
146557
|
success: Scalars['Boolean']['output'];
|
|
144812
146558
|
};
|
|
146559
|
+
export declare type MercuryLinkGoalsToBusinessDomainInput = {
|
|
146560
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
146561
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146562
|
+
parentBusinessDomainId: Scalars['ID']['input'];
|
|
146563
|
+
};
|
|
146564
|
+
export declare type MercuryLinkGoalsToBusinessDomainPayload = Payload & {
|
|
146565
|
+
__typename?: 'MercuryLinkGoalsToBusinessDomainPayload';
|
|
146566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146567
|
+
success: Scalars['Boolean']['output'];
|
|
146568
|
+
};
|
|
144813
146569
|
export declare type MercuryLinkGoalsToChangeProposalInput = {
|
|
144814
146570
|
changeProposalAri: Scalars['ID']['input'];
|
|
144815
146571
|
goalAris: Array<Scalars['ID']['input']>;
|
|
@@ -145250,7 +147006,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
145250
147006
|
export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
145251
147007
|
__typename?: 'MercuryNormalizedWork';
|
|
145252
147008
|
connectedFocusArea: Scalars['ID']['output'];
|
|
145253
|
-
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
145254
147009
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
145255
147010
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
145256
147011
|
id: Scalars['ID']['output'];
|
|
@@ -145291,6 +147046,7 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
|
|
|
145291
147046
|
source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145292
147047
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145293
147048
|
targetDate?: InputMaybe<MercuryNormalizedWorkTargetDateInput>;
|
|
147049
|
+
targetDateRange?: InputMaybe<MercuryNormalizedWorkTargetDateRangeInput>;
|
|
145294
147050
|
type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
145295
147051
|
};
|
|
145296
147052
|
export declare enum MercuryNormalizedWorkSortField {
|
|
@@ -145319,6 +147075,10 @@ export declare type MercuryNormalizedWorkTargetDateInput = {
|
|
|
145319
147075
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
145320
147076
|
targetDateType?: InputMaybe<MercuryProjectTargetDateType>;
|
|
145321
147077
|
};
|
|
147078
|
+
export declare type MercuryNormalizedWorkTargetDateRangeInput = {
|
|
147079
|
+
targetDateMax?: InputMaybe<Scalars['String']['input']>;
|
|
147080
|
+
targetDateMin?: InputMaybe<Scalars['String']['input']>;
|
|
147081
|
+
};
|
|
145322
147082
|
export declare type MercuryNumberCustomField = MercuryCustomField & {
|
|
145323
147083
|
__typename?: 'MercuryNumberCustomField';
|
|
145324
147084
|
createdBy?: Maybe<User>;
|
|
@@ -145810,6 +147570,15 @@ export declare type MercuryProviderWorkType = {
|
|
|
145810
147570
|
name: Scalars['String']['output'];
|
|
145811
147571
|
providerKey: Scalars['String']['output'];
|
|
145812
147572
|
};
|
|
147573
|
+
export declare type MercuryPublishBusinessDomainInput = {
|
|
147574
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147575
|
+
id: Scalars['ID']['input'];
|
|
147576
|
+
};
|
|
147577
|
+
export declare type MercuryPublishBusinessDomainPayload = Payload & {
|
|
147578
|
+
__typename?: 'MercuryPublishBusinessDomainPayload';
|
|
147579
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147580
|
+
success: Scalars['Boolean']['output'];
|
|
147581
|
+
};
|
|
145813
147582
|
export declare type MercuryPublishFocusAreaInput = {
|
|
145814
147583
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145815
147584
|
id: Scalars['ID']['input'];
|
|
@@ -145843,6 +147612,7 @@ export declare type MercuryQueryApi = {
|
|
|
145843
147612
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
145844
147613
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
145845
147614
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
147615
|
+
focusAreasTopologicallySorted?: Maybe<Array<MercuryFocusArea>>;
|
|
145846
147616
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
145847
147617
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
145848
147618
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -145954,6 +147724,9 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
145954
147724
|
cloudId: Scalars['ID']['input'];
|
|
145955
147725
|
ids: Array<Scalars['String']['input']>;
|
|
145956
147726
|
};
|
|
147727
|
+
export declare type MercuryQueryApiFocusAreasTopologicallySortedArgs = {
|
|
147728
|
+
focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
147729
|
+
};
|
|
145957
147730
|
export declare type MercuryQueryApiMediaReadTokenArgs = {
|
|
145958
147731
|
cloudId: Scalars['ID']['input'];
|
|
145959
147732
|
entityId: Scalars['ID']['input'];
|
|
@@ -145990,6 +147763,10 @@ export declare type MercuryRankedChangeProposal = {
|
|
|
145990
147763
|
changeProposalsViewId: Scalars['ID']['output'];
|
|
145991
147764
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
145992
147765
|
};
|
|
147766
|
+
export declare type MercuryRecreateBusinessDomainViewBusinessDomainsInput = {
|
|
147767
|
+
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
147768
|
+
id: Scalars['ID']['input'];
|
|
147769
|
+
};
|
|
145993
147770
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
145994
147771
|
cloudId: Scalars['ID']['input'];
|
|
145995
147772
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -146006,6 +147783,15 @@ export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
|
146006
147783
|
success: Scalars['Boolean']['output'];
|
|
146007
147784
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
146008
147785
|
};
|
|
147786
|
+
export declare type MercuryRemoveUserAccessToBusinessDomainInput = {
|
|
147787
|
+
businessDomainAri: Scalars['ID']['input'];
|
|
147788
|
+
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
147789
|
+
};
|
|
147790
|
+
export declare type MercuryRemoveUserAccessToBusinessDomainPayload = Payload & {
|
|
147791
|
+
__typename?: 'MercuryRemoveUserAccessToBusinessDomainPayload';
|
|
147792
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147793
|
+
success: Scalars['Boolean']['output'];
|
|
147794
|
+
};
|
|
146009
147795
|
export declare type MercuryRemoveUserAccessToFocusAreaInput = {
|
|
146010
147796
|
focusAreaAri: Scalars['ID']['input'];
|
|
146011
147797
|
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -146015,6 +147801,15 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
|
146015
147801
|
errors?: Maybe<Array<MutationError>>;
|
|
146016
147802
|
success: Scalars['Boolean']['output'];
|
|
146017
147803
|
};
|
|
147804
|
+
export declare type MercuryRemoveWatcherFromBusinessDomainInput = {
|
|
147805
|
+
businessDomainId: Scalars['ID']['input'];
|
|
147806
|
+
userId: Scalars['ID']['input'];
|
|
147807
|
+
};
|
|
147808
|
+
export declare type MercuryRemoveWatcherFromBusinessDomainPayload = Payload & {
|
|
147809
|
+
__typename?: 'MercuryRemoveWatcherFromBusinessDomainPayload';
|
|
147810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147811
|
+
success: Scalars['Boolean']['output'];
|
|
147812
|
+
};
|
|
146018
147813
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
146019
147814
|
cloudId: Scalars['ID']['input'];
|
|
146020
147815
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -146044,6 +147839,20 @@ export declare type MercuryRenameFocusAreaChangeInput = {
|
|
|
146044
147839
|
note?: InputMaybe<Scalars['String']['input']>;
|
|
146045
147840
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
146046
147841
|
};
|
|
147842
|
+
export declare type MercuryReorderBusinessDomainTypesInput = {
|
|
147843
|
+
businessDomainHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
147844
|
+
businessDomainTypeIds: Array<Scalars['ID']['input']>;
|
|
147845
|
+
cloudId: Scalars['ID']['input'];
|
|
147846
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147847
|
+
};
|
|
147848
|
+
export declare type MercuryReorderBusinessDomainTypesPayload = Payload & {
|
|
147849
|
+
__typename?: 'MercuryReorderBusinessDomainTypesPayload';
|
|
147850
|
+
deletedLinks?: Maybe<Array<MercuryBusinessDomainLink>>;
|
|
147851
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
147852
|
+
errors?: Maybe<Array<MutationError>>;
|
|
147853
|
+
reorderedBusinessDomainTypes?: Maybe<Array<MercuryBusinessDomainType>>;
|
|
147854
|
+
success: Scalars['Boolean']['output'];
|
|
147855
|
+
};
|
|
146047
147856
|
export declare type MercuryReorderCustomFieldDefinitionOptionsInput = {
|
|
146048
147857
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
146049
147858
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -146134,6 +147943,7 @@ export declare type MercuryRestrictedWork = {
|
|
|
146134
147943
|
};
|
|
146135
147944
|
export declare type MercuryRisk = Node & {
|
|
146136
147945
|
__typename?: 'MercuryRisk';
|
|
147946
|
+
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
146137
147947
|
createdDate: Scalars['String']['output'];
|
|
146138
147948
|
description?: Maybe<Scalars['String']['output']>;
|
|
146139
147949
|
id: Scalars['ID']['output'];
|
|
@@ -146152,10 +147962,39 @@ export declare type MercuryRisk = Node & {
|
|
|
146152
147962
|
targetDate?: Maybe<MercuryRiskTargetDate>;
|
|
146153
147963
|
updatedDate: Scalars['String']['output'];
|
|
146154
147964
|
};
|
|
147965
|
+
export declare type MercuryRiskCommentsArgs = {
|
|
147966
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147967
|
+
cloudId: Scalars['ID']['input'];
|
|
147968
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147969
|
+
};
|
|
146155
147970
|
export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
146156
147971
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
146157
147972
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
146158
147973
|
};
|
|
147974
|
+
export declare type MercuryRiskActivityHistory = Node & {
|
|
147975
|
+
__typename?: 'MercuryRiskActivityHistory';
|
|
147976
|
+
eventTimestamp: Scalars['String']['output'];
|
|
147977
|
+
eventType: MercuryRiskEventType;
|
|
147978
|
+
fields?: Maybe<Array<MercuryRiskUpdatedField>>;
|
|
147979
|
+
fieldsChanged?: Maybe<Array<Scalars['String']['output']>>;
|
|
147980
|
+
id: Scalars['ID']['output'];
|
|
147981
|
+
riskId: Scalars['ID']['output'];
|
|
147982
|
+
user?: Maybe<User>;
|
|
147983
|
+
};
|
|
147984
|
+
export declare type MercuryRiskActivityHistoryConnection = {
|
|
147985
|
+
__typename?: 'MercuryRiskActivityHistoryConnection';
|
|
147986
|
+
edges?: Maybe<Array<Maybe<MercuryRiskActivityHistoryEdge>>>;
|
|
147987
|
+
pageInfo: PageInfo;
|
|
147988
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147989
|
+
};
|
|
147990
|
+
export declare type MercuryRiskActivityHistoryEdge = {
|
|
147991
|
+
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
147992
|
+
cursor: Scalars['String']['output'];
|
|
147993
|
+
node?: Maybe<MercuryRiskActivityHistory>;
|
|
147994
|
+
};
|
|
147995
|
+
export declare type MercuryRiskActivitySort = {
|
|
147996
|
+
order: SortOrder;
|
|
147997
|
+
};
|
|
146159
147998
|
export declare type MercuryRiskConnection = {
|
|
146160
147999
|
__typename?: 'MercuryRiskConnection';
|
|
146161
148000
|
edges?: Maybe<Array<Maybe<MercuryRiskEdge>>>;
|
|
@@ -146167,6 +148006,13 @@ export declare type MercuryRiskEdge = {
|
|
|
146167
148006
|
cursor: Scalars['String']['output'];
|
|
146168
148007
|
node?: Maybe<MercuryRisk>;
|
|
146169
148008
|
};
|
|
148009
|
+
export declare enum MercuryRiskEventType {
|
|
148010
|
+
Create = "CREATE",
|
|
148011
|
+
Delete = "DELETE",
|
|
148012
|
+
LinkFocusArea = "LINK_FOCUS_AREA",
|
|
148013
|
+
UnlinkFocusArea = "UNLINK_FOCUS_AREA",
|
|
148014
|
+
Update = "UPDATE"
|
|
148015
|
+
}
|
|
146170
148016
|
export declare type MercuryRiskImpact = {
|
|
146171
148017
|
__typename?: 'MercuryRiskImpact';
|
|
146172
148018
|
key: Scalars['String']['output'];
|
|
@@ -146259,6 +148105,12 @@ export declare enum MercuryRiskTargetDateType {
|
|
|
146259
148105
|
Month = "MONTH",
|
|
146260
148106
|
Quarter = "QUARTER"
|
|
146261
148107
|
}
|
|
148108
|
+
export declare type MercuryRiskUpdatedField = {
|
|
148109
|
+
__typename?: 'MercuryRiskUpdatedField';
|
|
148110
|
+
field: Scalars['String']['output'];
|
|
148111
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
148112
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
148113
|
+
};
|
|
146262
148114
|
export declare type MercuryRisksMutationApi = {
|
|
146263
148115
|
__typename?: 'MercuryRisksMutationApi';
|
|
146264
148116
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
@@ -146325,16 +148177,21 @@ export declare type MercuryRisksMutationApiUpdateRiskTargetDateArgs = {
|
|
|
146325
148177
|
export declare type MercuryRisksQueryApi = {
|
|
146326
148178
|
__typename?: 'MercuryRisksQueryApi';
|
|
146327
148179
|
risk?: Maybe<MercuryRisk>;
|
|
148180
|
+
riskActivityHistoryByIds?: Maybe<Array<Maybe<MercuryRiskActivityHistory>>>;
|
|
146328
148181
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
146329
148182
|
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
146330
148183
|
riskStatusUpdatesByIds?: Maybe<Array<Maybe<MercuryRiskStatusUpdate>>>;
|
|
146331
148184
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
146332
148185
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
146333
148186
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
148187
|
+
searchRiskActivityHistory?: Maybe<MercuryRiskActivityHistoryConnection>;
|
|
146334
148188
|
};
|
|
146335
148189
|
export declare type MercuryRisksQueryApiRiskArgs = {
|
|
146336
148190
|
id: Scalars['ID']['input'];
|
|
146337
148191
|
};
|
|
148192
|
+
export declare type MercuryRisksQueryApiRiskActivityHistoryByIdsArgs = {
|
|
148193
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148194
|
+
};
|
|
146338
148195
|
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
146339
148196
|
cloudId: Scalars['ID']['input'];
|
|
146340
148197
|
};
|
|
@@ -146357,6 +148214,13 @@ export declare type MercuryRisksQueryApiRisksSearchArgs = {
|
|
|
146357
148214
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
146358
148215
|
sort?: InputMaybe<Array<InputMaybe<MercuryRiskSort>>>;
|
|
146359
148216
|
};
|
|
148217
|
+
export declare type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
|
|
148218
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148219
|
+
cloudId: Scalars['ID']['input'];
|
|
148220
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148221
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148222
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
|
|
148223
|
+
};
|
|
146360
148224
|
export declare type MercurySetBaselineInput = {
|
|
146361
148225
|
endYearMonth: Scalars['String']['input'];
|
|
146362
148226
|
financialVersionId: Scalars['ID']['input'];
|
|
@@ -146369,6 +148233,27 @@ export declare type MercurySetBaselinePayload = Payload & {
|
|
|
146369
148233
|
setBaseline?: Maybe<MercuryBaselineDetails>;
|
|
146370
148234
|
success: Scalars['Boolean']['output'];
|
|
146371
148235
|
};
|
|
148236
|
+
export declare type MercurySetBusinessDomainCustomFieldInput = {
|
|
148237
|
+
businessDomainId: Scalars['ID']['input'];
|
|
148238
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
148239
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
148240
|
+
};
|
|
148241
|
+
export declare type MercurySetBusinessDomainCustomFieldPayload = Payload & {
|
|
148242
|
+
__typename?: 'MercurySetBusinessDomainCustomFieldPayload';
|
|
148243
|
+
customField?: Maybe<MercuryCustomField>;
|
|
148244
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148245
|
+
success: Scalars['Boolean']['output'];
|
|
148246
|
+
};
|
|
148247
|
+
export declare type MercurySetBusinessDomainCustomFieldsInput = {
|
|
148248
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148249
|
+
customFields: Array<MercurySetBusinessDomainCustomFieldInput>;
|
|
148250
|
+
};
|
|
148251
|
+
export declare type MercurySetBusinessDomainCustomFieldsPayload = Payload & {
|
|
148252
|
+
__typename?: 'MercurySetBusinessDomainCustomFieldsPayload';
|
|
148253
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
148254
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148255
|
+
success: Scalars['Boolean']['output'];
|
|
148256
|
+
};
|
|
146372
148257
|
export declare type MercurySetChangeProposalCustomFieldInput = {
|
|
146373
148258
|
changeProposalId: Scalars['ID']['input'];
|
|
146374
148259
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
@@ -146480,6 +148365,14 @@ export declare type MercurySpendAggregation = {
|
|
|
146480
148365
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
146481
148366
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
146482
148367
|
};
|
|
148368
|
+
export declare type MercuryStarBusinessDomainInput = {
|
|
148369
|
+
businessDomainId: Scalars['ID']['input'];
|
|
148370
|
+
};
|
|
148371
|
+
export declare type MercuryStarBusinessDomainPayload = Payload & {
|
|
148372
|
+
__typename?: 'MercuryStarBusinessDomainPayload';
|
|
148373
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148374
|
+
success: Scalars['Boolean']['output'];
|
|
148375
|
+
};
|
|
146483
148376
|
export declare type MercuryStarFocusAreaInput = {
|
|
146484
148377
|
focusAreaId: Scalars['ID']['input'];
|
|
146485
148378
|
};
|
|
@@ -146912,6 +148805,17 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
146912
148805
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
146913
148806
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
146914
148807
|
};
|
|
148808
|
+
export declare type MercurySubBusinessDomainCountByStatusHealth = {
|
|
148809
|
+
__typename?: 'MercurySubBusinessDomainCountByStatusHealth';
|
|
148810
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
148811
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
148812
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
148813
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
148814
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
148815
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
148816
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
148817
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
148818
|
+
};
|
|
146915
148819
|
export declare type MercurySubscriptionApi = {
|
|
146916
148820
|
__typename?: 'MercurySubscriptionApi';
|
|
146917
148821
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
@@ -146959,6 +148863,33 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
146959
148863
|
export declare type MercuryTextCustomFieldInput = {
|
|
146960
148864
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
146961
148865
|
};
|
|
148866
|
+
export declare type MercuryThreadedComment = Node & {
|
|
148867
|
+
__typename?: 'MercuryThreadedComment';
|
|
148868
|
+
commentText: Scalars['String']['output'];
|
|
148869
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
148870
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
148871
|
+
createdBy?: Maybe<User>;
|
|
148872
|
+
id: Scalars['ID']['output'];
|
|
148873
|
+
parentComment?: Maybe<MercuryThreadedComment>;
|
|
148874
|
+
parentId: Scalars['ID']['output'];
|
|
148875
|
+
replies?: Maybe<MercuryThreadedCommentConnection>;
|
|
148876
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
148877
|
+
};
|
|
148878
|
+
export declare type MercuryThreadedCommentRepliesArgs = {
|
|
148879
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148880
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148881
|
+
};
|
|
148882
|
+
export declare type MercuryThreadedCommentConnection = {
|
|
148883
|
+
__typename?: 'MercuryThreadedCommentConnection';
|
|
148884
|
+
edges?: Maybe<Array<MercuryThreadedCommentEdge>>;
|
|
148885
|
+
pageInfo: PageInfo;
|
|
148886
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
148887
|
+
};
|
|
148888
|
+
export declare type MercuryThreadedCommentEdge = {
|
|
148889
|
+
__typename?: 'MercuryThreadedCommentEdge';
|
|
148890
|
+
cursor: Scalars['String']['output'];
|
|
148891
|
+
node?: Maybe<MercuryThreadedComment>;
|
|
148892
|
+
};
|
|
146962
148893
|
export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
146963
148894
|
__typename?: 'MercuryTownsquareProjectInsight';
|
|
146964
148895
|
ari: Scalars['ID']['output'];
|
|
@@ -146970,6 +148901,11 @@ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
|
|
|
146970
148901
|
summary?: Maybe<Scalars['String']['output']>;
|
|
146971
148902
|
title?: Maybe<Scalars['String']['output']>;
|
|
146972
148903
|
};
|
|
148904
|
+
export declare type MercuryTransitionBusinessDomainStatusInput = {
|
|
148905
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148906
|
+
id: Scalars['ID']['input'];
|
|
148907
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
148908
|
+
};
|
|
146973
148909
|
export declare type MercuryTransitionChangeProposalPayload = Payload & {
|
|
146974
148910
|
__typename?: 'MercuryTransitionChangeProposalPayload';
|
|
146975
148911
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -147007,6 +148943,14 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
147007
148943
|
id: Scalars['ID']['input'];
|
|
147008
148944
|
statusTransitionId: Scalars['ID']['input'];
|
|
147009
148945
|
};
|
|
148946
|
+
export declare type MercuryUnStarBusinessDomainInput = {
|
|
148947
|
+
businessDomainId: Scalars['ID']['input'];
|
|
148948
|
+
};
|
|
148949
|
+
export declare type MercuryUnStarBusinessDomainPayload = Payload & {
|
|
148950
|
+
__typename?: 'MercuryUnStarBusinessDomainPayload';
|
|
148951
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148952
|
+
success: Scalars['Boolean']['output'];
|
|
148953
|
+
};
|
|
147010
148954
|
export declare type MercuryUnStarFocusAreaInput = {
|
|
147011
148955
|
focusAreaId: Scalars['ID']['input'];
|
|
147012
148956
|
};
|
|
@@ -147015,6 +148959,16 @@ export declare type MercuryUnStarFocusAreaPayload = Payload & {
|
|
|
147015
148959
|
errors?: Maybe<Array<MutationError>>;
|
|
147016
148960
|
success: Scalars['Boolean']['output'];
|
|
147017
148961
|
};
|
|
148962
|
+
export declare type MercuryUnarchiveBusinessDomainInput = {
|
|
148963
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148964
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
148965
|
+
id: Scalars['ID']['input'];
|
|
148966
|
+
};
|
|
148967
|
+
export declare type MercuryUnarchiveBusinessDomainPayload = Payload & {
|
|
148968
|
+
__typename?: 'MercuryUnarchiveBusinessDomainPayload';
|
|
148969
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148970
|
+
success: Scalars['Boolean']['output'];
|
|
148971
|
+
};
|
|
147018
148972
|
export declare type MercuryUnarchiveFocusAreaInput = {
|
|
147019
148973
|
cloudId: Scalars['ID']['input'];
|
|
147020
148974
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -147150,6 +149104,87 @@ export declare type MercuryUpdateBenefitTypePayload = Payload & {
|
|
|
147150
149104
|
success: Scalars['Boolean']['output'];
|
|
147151
149105
|
updatedBenefitType?: Maybe<MercuryBenefitType>;
|
|
147152
149106
|
};
|
|
149107
|
+
export declare type MercuryUpdateBusinessDomainAboutContentInput = {
|
|
149108
|
+
aboutContent: Scalars['String']['input'];
|
|
149109
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149110
|
+
id: Scalars['ID']['input'];
|
|
149111
|
+
};
|
|
149112
|
+
export declare type MercuryUpdateBusinessDomainHierarchyNameInput = {
|
|
149113
|
+
id: Scalars['ID']['input'];
|
|
149114
|
+
name: Scalars['String']['input'];
|
|
149115
|
+
};
|
|
149116
|
+
export declare type MercuryUpdateBusinessDomainHierarchyPayload = Payload & {
|
|
149117
|
+
__typename?: 'MercuryUpdateBusinessDomainHierarchyPayload';
|
|
149118
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149119
|
+
success: Scalars['Boolean']['output'];
|
|
149120
|
+
updatedBusinessDomainHierarchy?: Maybe<MercuryBusinessDomainHierarchy>;
|
|
149121
|
+
};
|
|
149122
|
+
export declare type MercuryUpdateBusinessDomainNameInput = {
|
|
149123
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149124
|
+
id: Scalars['ID']['input'];
|
|
149125
|
+
name: Scalars['String']['input'];
|
|
149126
|
+
};
|
|
149127
|
+
export declare type MercuryUpdateBusinessDomainOwnerInput = {
|
|
149128
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149129
|
+
id: Scalars['ID']['input'];
|
|
149130
|
+
owner: Scalars['ID']['input'];
|
|
149131
|
+
};
|
|
149132
|
+
export declare type MercuryUpdateBusinessDomainPayload = Payload & {
|
|
149133
|
+
__typename?: 'MercuryUpdateBusinessDomainPayload';
|
|
149134
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149135
|
+
success: Scalars['Boolean']['output'];
|
|
149136
|
+
updatedBusinessDomain?: Maybe<MercuryBusinessDomain>;
|
|
149137
|
+
};
|
|
149138
|
+
export declare type MercuryUpdateBusinessDomainStatusUpdateInput = {
|
|
149139
|
+
id: Scalars['ID']['input'];
|
|
149140
|
+
newTargetDate?: InputMaybe<MercuryBusinessDomainTargetDateInput>;
|
|
149141
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
149142
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
149143
|
+
};
|
|
149144
|
+
export declare type MercuryUpdateBusinessDomainStatusUpdatePayload = Payload & {
|
|
149145
|
+
__typename?: 'MercuryUpdateBusinessDomainStatusUpdatePayload';
|
|
149146
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149147
|
+
success: Scalars['Boolean']['output'];
|
|
149148
|
+
updatedBusinessDomainStatusUpdate?: Maybe<MercuryBusinessDomainStatusUpdate>;
|
|
149149
|
+
};
|
|
149150
|
+
export declare type MercuryUpdateBusinessDomainTargetDateInput = {
|
|
149151
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149152
|
+
id: Scalars['ID']['input'];
|
|
149153
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
149154
|
+
targetDateType?: InputMaybe<MercuryBusinessDomainTargetDateType>;
|
|
149155
|
+
};
|
|
149156
|
+
export declare type MercuryUpdateBusinessDomainTypeInput = {
|
|
149157
|
+
businessDomainTypeId: Scalars['ID']['input'];
|
|
149158
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149159
|
+
id: Scalars['ID']['input'];
|
|
149160
|
+
};
|
|
149161
|
+
export declare type MercuryUpdateBusinessDomainTypeNameInput = {
|
|
149162
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149163
|
+
id: Scalars['ID']['input'];
|
|
149164
|
+
name: Scalars['String']['input'];
|
|
149165
|
+
};
|
|
149166
|
+
export declare type MercuryUpdateBusinessDomainTypeNamePayload = Payload & {
|
|
149167
|
+
__typename?: 'MercuryUpdateBusinessDomainTypeNamePayload';
|
|
149168
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149169
|
+
success: Scalars['Boolean']['output'];
|
|
149170
|
+
updatedBusinessDomainType?: Maybe<MercuryBusinessDomainType>;
|
|
149171
|
+
};
|
|
149172
|
+
export declare type MercuryUpdateBusinessDomainTypePayload = Payload & {
|
|
149173
|
+
__typename?: 'MercuryUpdateBusinessDomainTypePayload';
|
|
149174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149175
|
+
success: Scalars['Boolean']['output'];
|
|
149176
|
+
updatedBusinessDomain?: Maybe<MercuryBusinessDomain>;
|
|
149177
|
+
};
|
|
149178
|
+
export declare type MercuryUpdateBusinessDomainViewNameInput = {
|
|
149179
|
+
id: Scalars['ID']['input'];
|
|
149180
|
+
name: Scalars['String']['input'];
|
|
149181
|
+
};
|
|
149182
|
+
export declare type MercuryUpdateBusinessDomainViewPayload = Payload & {
|
|
149183
|
+
__typename?: 'MercuryUpdateBusinessDomainViewPayload';
|
|
149184
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149185
|
+
success: Scalars['Boolean']['output'];
|
|
149186
|
+
updatedBusinessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
149187
|
+
};
|
|
147153
149188
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
147154
149189
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
147155
149190
|
};
|
|
@@ -147560,6 +149595,17 @@ export declare type MercuryUpdateStrategicEventTargetDateInput = {
|
|
|
147560
149595
|
id: Scalars['ID']['input'];
|
|
147561
149596
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
147562
149597
|
};
|
|
149598
|
+
export declare type MercuryUpdateThreadedCommentInput = {
|
|
149599
|
+
cloudId: Scalars['ID']['input'];
|
|
149600
|
+
commentText: Scalars['String']['input'];
|
|
149601
|
+
id: Scalars['ID']['input'];
|
|
149602
|
+
};
|
|
149603
|
+
export declare type MercuryUpdateThreadedCommentPayload = Payload & {
|
|
149604
|
+
__typename?: 'MercuryUpdateThreadedCommentPayload';
|
|
149605
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149606
|
+
success: Scalars['Boolean']['output'];
|
|
149607
|
+
updatedComment?: Maybe<MercuryThreadedComment>;
|
|
149608
|
+
};
|
|
147563
149609
|
export declare type MercuryUpdatedField = {
|
|
147564
149610
|
__typename?: 'MercuryUpdatedField';
|
|
147565
149611
|
field?: Maybe<Scalars['String']['output']>;
|
|
@@ -147888,8 +149934,10 @@ export declare type Mutation = {
|
|
|
147888
149934
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
147889
149935
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
147890
149936
|
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
|
|
149937
|
+
admin_cancelAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
147891
149938
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
147892
149939
|
admin_createAiPolicy?: Maybe<AdminCreateAiPolicyResponsePayload>;
|
|
149940
|
+
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
147893
149941
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
147894
149942
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
147895
149943
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
@@ -147900,9 +149948,13 @@ export declare type Mutation = {
|
|
|
147900
149948
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
147901
149949
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
147902
149950
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
149951
|
+
admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
|
|
149952
|
+
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
149953
|
+
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
147903
149954
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
147904
149955
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
147905
149956
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
149957
|
+
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
147906
149958
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
147907
149959
|
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
147908
149960
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
@@ -148259,6 +150311,7 @@ export declare type Mutation = {
|
|
|
148259
150311
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
148260
150312
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
148261
150313
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
150314
|
+
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
148262
150315
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
148263
150316
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
148264
150317
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -148268,6 +150321,7 @@ export declare type Mutation = {
|
|
|
148268
150321
|
confluence_updateShareableLinkSpaceConfig?: Maybe<ConfluenceUpdateShareableLinkSpaceConfigPayload>;
|
|
148269
150322
|
confluence_updateSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
148270
150323
|
confluence_updateSpaceAccessRequestSettings?: Maybe<ConfluenceUpdateAccessRequestSettingsPayload>;
|
|
150324
|
+
confluence_updateSpaceAnalyticsPermissions?: Maybe<ConfluenceUpdateSpaceAnalyticsPermissionsPayload>;
|
|
148271
150325
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
148272
150326
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
148273
150327
|
confluence_updateTitleEmoji?: Maybe<ConfluenceUpdateTitleEmojiPayload>;
|
|
@@ -148729,8 +150783,10 @@ export declare type Mutation = {
|
|
|
148729
150783
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
148730
150784
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
148731
150785
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
150786
|
+
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
148732
150787
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
148733
150788
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
150789
|
+
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
148734
150790
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
148735
150791
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
148736
150792
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -148758,6 +150814,8 @@ export declare type Mutation = {
|
|
|
148758
150814
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
148759
150815
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
148760
150816
|
mercury?: Maybe<MercuryMutationApi>;
|
|
150817
|
+
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
150818
|
+
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
148761
150819
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
148762
150820
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
148763
150821
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
@@ -148857,6 +150915,7 @@ export declare type Mutation = {
|
|
|
148857
150915
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
148858
150916
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
148859
150917
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
150918
|
+
radar_updateMetricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
148860
150919
|
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
148861
150920
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
148862
150921
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -148994,6 +151053,7 @@ export declare type Mutation = {
|
|
|
148994
151053
|
spf_updateViewSettings?: Maybe<SpfUpsertViewPayload>;
|
|
148995
151054
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
148996
151055
|
spss_exportFullSiteScanResults?: Maybe<SpssExportFullSiteScanResultsPayload>;
|
|
151056
|
+
stakeholderComms_addPageSubscribersAdmin?: Maybe<StakeholderCommsBulkAddSubscriberFromAdminResponse>;
|
|
148997
151057
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
148998
151058
|
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
148999
151059
|
stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
|
|
@@ -149154,6 +151214,10 @@ export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
|
149154
151214
|
input?: InputMaybe<AdminAuditLogEventExportInput>;
|
|
149155
151215
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
149156
151216
|
};
|
|
151217
|
+
export declare type MutationAdmin_CancelAuditLogBackgroundQueryArgs = {
|
|
151218
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
151219
|
+
container: AdminAuditLogContainer;
|
|
151220
|
+
};
|
|
149157
151221
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
149158
151222
|
resourceAri: Scalars['ID']['input'];
|
|
149159
151223
|
};
|
|
@@ -149161,6 +151225,12 @@ export declare type MutationAdmin_CreateAiPolicyArgs = {
|
|
|
149161
151225
|
createAiPolicyInput?: InputMaybe<AdminCreateAiPolicyInput>;
|
|
149162
151226
|
orgId: Scalars['ID']['input'];
|
|
149163
151227
|
};
|
|
151228
|
+
export declare type MutationAdmin_CreateAuditLogBackgroundQueryArgs = {
|
|
151229
|
+
container: AdminAuditLogContainer;
|
|
151230
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
151231
|
+
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
151232
|
+
name: Scalars['String']['input'];
|
|
151233
|
+
};
|
|
149164
151234
|
export declare type MutationAdmin_CreateInvitePolicyArgs = {
|
|
149165
151235
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
149166
151236
|
orgId: Scalars['ID']['input'];
|
|
@@ -149199,6 +151269,19 @@ export declare type MutationAdmin_RevokeRoleArgs = {
|
|
|
149199
151269
|
orgId: Scalars['ID']['input'];
|
|
149200
151270
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
149201
151271
|
};
|
|
151272
|
+
export declare type MutationAdmin_ScimRuleCreateArgs = {
|
|
151273
|
+
input: AdminScimRuleCreateInput;
|
|
151274
|
+
orgId: Scalars['ID']['input'];
|
|
151275
|
+
};
|
|
151276
|
+
export declare type MutationAdmin_ScimRuleDeleteArgs = {
|
|
151277
|
+
orgId: Scalars['ID']['input'];
|
|
151278
|
+
ruleId: Scalars['ID']['input'];
|
|
151279
|
+
};
|
|
151280
|
+
export declare type MutationAdmin_ScimRuleUpdateArgs = {
|
|
151281
|
+
input: AdminScimRuleUpdateInput;
|
|
151282
|
+
orgId: Scalars['ID']['input'];
|
|
151283
|
+
ruleId: Scalars['ID']['input'];
|
|
151284
|
+
};
|
|
149202
151285
|
export declare type MutationAdmin_UnitCreateArgs = {
|
|
149203
151286
|
orgId: Scalars['ID']['input'];
|
|
149204
151287
|
unit: AdminUnitCreateInput;
|
|
@@ -149213,6 +151296,12 @@ export declare type MutationAdmin_UpdateAiPolicyArgs = {
|
|
|
149213
151296
|
policyId: Scalars['ID']['input'];
|
|
149214
151297
|
updateAiPolicyInput?: InputMaybe<AdminUpdateAiPolicyInput>;
|
|
149215
151298
|
};
|
|
151299
|
+
export declare type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
|
|
151300
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
151301
|
+
container: AdminAuditLogContainer;
|
|
151302
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
151303
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
151304
|
+
};
|
|
149216
151305
|
export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
149217
151306
|
orgId: Scalars['ID']['input'];
|
|
149218
151307
|
policyId: Scalars['ID']['input'];
|
|
@@ -149618,6 +151707,7 @@ export declare type MutationAssetsDm_CreateSavedSearchArgs = {
|
|
|
149618
151707
|
isPublic?: Scalars['Boolean']['input'];
|
|
149619
151708
|
name: Scalars['String']['input'];
|
|
149620
151709
|
objectId: Scalars['ID']['input'];
|
|
151710
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
149621
151711
|
searchInput: AssetsDmSavedSearchInput;
|
|
149622
151712
|
workspaceId: Scalars['ID']['input'];
|
|
149623
151713
|
};
|
|
@@ -150571,6 +152661,10 @@ export declare type MutationConfluence_UpdateInstanceArgs = {
|
|
|
150571
152661
|
input: ConfluenceUpdateInstanceInput;
|
|
150572
152662
|
pageAri: Scalars['ID']['input'];
|
|
150573
152663
|
};
|
|
152664
|
+
export declare type MutationConfluence_UpdateMarkdownModeArgs = {
|
|
152665
|
+
cloudId: Scalars['ID']['input'];
|
|
152666
|
+
input: ConfluenceUpdateMarkdownModeInput;
|
|
152667
|
+
};
|
|
150574
152668
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
150575
152669
|
cloudId: Scalars['ID']['input'];
|
|
150576
152670
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -150608,6 +152702,10 @@ export declare type MutationConfluence_UpdateSpaceAccessRequestSettingsArgs = {
|
|
|
150608
152702
|
cloudId: Scalars['ID']['input'];
|
|
150609
152703
|
input: ConfluenceUpdateAccessRequestSettingsInput;
|
|
150610
152704
|
};
|
|
152705
|
+
export declare type MutationConfluence_UpdateSpaceAnalyticsPermissionsArgs = {
|
|
152706
|
+
cloudId: Scalars['ID']['input'];
|
|
152707
|
+
input: ConfluenceUpdateSpaceAnalyticsPermissionsInput;
|
|
152708
|
+
};
|
|
150611
152709
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
150612
152710
|
cloudId: Scalars['ID']['input'];
|
|
150613
152711
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -152106,6 +154204,7 @@ export declare type MutationKitsune_CreateSnippetArgs = {
|
|
|
152106
154204
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
152107
154205
|
};
|
|
152108
154206
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
154207
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
152109
154208
|
name: Scalars['String']['input'];
|
|
152110
154209
|
workspaceAri: Scalars['ID']['input'];
|
|
152111
154210
|
};
|
|
@@ -152133,12 +154232,18 @@ export declare type MutationKitsune_MoveViewArgs = {
|
|
|
152133
154232
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
152134
154233
|
viewAri: Scalars['ID']['input'];
|
|
152135
154234
|
};
|
|
154235
|
+
export declare type MutationKitsune_RemoveCustomerArgs = {
|
|
154236
|
+
ari: Scalars['ID']['input'];
|
|
154237
|
+
};
|
|
152136
154238
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
152137
154239
|
feedbackAri: Scalars['ID']['input'];
|
|
152138
154240
|
};
|
|
152139
154241
|
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
152140
154242
|
id: Scalars['ID']['input'];
|
|
152141
154243
|
};
|
|
154244
|
+
export declare type MutationKitsune_RemoveOrganizationArgs = {
|
|
154245
|
+
ari: Scalars['ID']['input'];
|
|
154246
|
+
};
|
|
152142
154247
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
152143
154248
|
sectionAri: Scalars['ID']['input'];
|
|
152144
154249
|
};
|
|
@@ -152165,6 +154270,8 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
152165
154270
|
};
|
|
152166
154271
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
152167
154272
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
154273
|
+
domain?: InputMaybe<KitsuneOrganizationDomainInput>;
|
|
154274
|
+
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
152168
154275
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
152169
154276
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
152170
154277
|
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -152469,6 +154576,7 @@ export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
|
152469
154576
|
pageIds: Array<Scalars['ID']['input']>;
|
|
152470
154577
|
};
|
|
152471
154578
|
export declare type MutationPublicLinkSpacesActionArgs = {
|
|
154579
|
+
accessType?: InputMaybe<ConfluenceShareableLinkAccessType>;
|
|
152472
154580
|
action: PublicLinkAdminAction;
|
|
152473
154581
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
152474
154582
|
};
|
|
@@ -152534,6 +154642,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
152534
154642
|
cloudId: Scalars['ID']['input'];
|
|
152535
154643
|
input: Array<RadarPositionProposalChangeInput>;
|
|
152536
154644
|
};
|
|
154645
|
+
export declare type MutationRadar_UpdateMetricsSettingsArgs = {
|
|
154646
|
+
cloudId: Scalars['ID']['input'];
|
|
154647
|
+
input: Array<RadarMetricSettingsInput>;
|
|
154648
|
+
};
|
|
152537
154649
|
export declare type MutationRadar_UpdateNotificationSettingsArgs = {
|
|
152538
154650
|
cloudId: Scalars['ID']['input'];
|
|
152539
154651
|
input: Array<RadarNotificationInput>;
|
|
@@ -152966,6 +155078,11 @@ export declare type MutationSpss_ExportFullSiteScanResultsArgs = {
|
|
|
152966
155078
|
input: SpssExportFullSiteScanResultsInput;
|
|
152967
155079
|
orgId: Scalars['ID']['input'];
|
|
152968
155080
|
};
|
|
155081
|
+
export declare type MutationStakeholderComms_AddPageSubscribersAdminArgs = {
|
|
155082
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
155083
|
+
emails: Array<Scalars['String']['input']>;
|
|
155084
|
+
pageId: Scalars['String']['input'];
|
|
155085
|
+
};
|
|
152969
155086
|
export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
152970
155087
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
152971
155088
|
groupId: Scalars['String']['input'];
|
|
@@ -156062,6 +158179,7 @@ export declare type Properties = {
|
|
|
156062
158179
|
};
|
|
156063
158180
|
export declare type PublicLink = {
|
|
156064
158181
|
__typename?: 'PublicLink';
|
|
158182
|
+
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
156065
158183
|
id: Scalars['ID']['output'];
|
|
156066
158184
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
156067
158185
|
lastEnabledByUser?: Maybe<Person>;
|
|
@@ -156254,6 +158372,7 @@ export declare type PublicLinkVersion = {
|
|
|
156254
158372
|
syncRev?: Maybe<Scalars['String']['output']>;
|
|
156255
158373
|
};
|
|
156256
158374
|
export declare enum PublicLinksByCriteriaOrder {
|
|
158375
|
+
AccessType = "ACCESS_TYPE",
|
|
156257
158376
|
DateEnabled = "DATE_ENABLED",
|
|
156258
158377
|
Status = "STATUS",
|
|
156259
158378
|
Title = "TITLE"
|
|
@@ -156284,6 +158403,7 @@ export declare type PublishedContentProperties = {
|
|
|
156284
158403
|
externalVersionId?: Maybe<Scalars['String']['output']>;
|
|
156285
158404
|
generatedBy?: Maybe<Scalars['String']['output']>;
|
|
156286
158405
|
hasBeenTitled?: Maybe<Scalars['Boolean']['output']>;
|
|
158406
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
156287
158407
|
titleEmoji?: Maybe<Scalars['String']['output']>;
|
|
156288
158408
|
versionContainsAIContent?: Maybe<Scalars['Boolean']['output']>;
|
|
156289
158409
|
};
|
|
@@ -156392,6 +158512,8 @@ export declare type Query = {
|
|
|
156392
158512
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
156393
158513
|
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
156394
158514
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
158515
|
+
admin_scimRule?: Maybe<AdminScimRule>;
|
|
158516
|
+
admin_scimRuleSearch?: Maybe<AdminScimRuleSearchConnection>;
|
|
156395
158517
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
156396
158518
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
156397
158519
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -156589,7 +158711,9 @@ export declare type Query = {
|
|
|
156589
158711
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
156590
158712
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
156591
158713
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
158714
|
+
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
156592
158715
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
158716
|
+
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
156593
158717
|
assetsVertical_insights?: Maybe<AssetsVerticalInsightsResult>;
|
|
156594
158718
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
156595
158719
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
@@ -156632,6 +158756,7 @@ export declare type Query = {
|
|
|
156632
158756
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
156633
158757
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
156634
158758
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
158759
|
+
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
156635
158760
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
156636
158761
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
156637
158762
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
@@ -156847,6 +158972,7 @@ export declare type Query = {
|
|
|
156847
158972
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
156848
158973
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
156849
158974
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
158975
|
+
confluence_spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
156850
158976
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
156851
158977
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
156852
158978
|
confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
|
|
@@ -157235,10 +159361,11 @@ export declare type Query = {
|
|
|
157235
159361
|
kitsune_organizationByAri?: Maybe<KitsuneOrganization>;
|
|
157236
159362
|
kitsune_organizations?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
157237
159363
|
kitsune_organizationsByName?: Maybe<Array<Maybe<KitsuneOrganization>>>;
|
|
157238
|
-
kitsune_searchChunk?: Maybe<Array<
|
|
159364
|
+
kitsune_searchChunk?: Maybe<Array<KitsuneSearchChunk>>;
|
|
157239
159365
|
kitsune_searchCustomers?: Maybe<KitsuneCustomerConnection>;
|
|
157240
159366
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
157241
159367
|
kitsune_searchFeedbackWithHighlights?: Maybe<KitsuneSearchFeedbackConnection>;
|
|
159368
|
+
kitsune_searchFields?: Maybe<KitsuneFieldConnection>;
|
|
157242
159369
|
kitsune_searchOrganizations?: Maybe<KitsuneOrganizationConnection>;
|
|
157243
159370
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
157244
159371
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
@@ -157308,6 +159435,8 @@ export declare type Query = {
|
|
|
157308
159435
|
media_items?: Maybe<Array<MediaItem>>;
|
|
157309
159436
|
media_itemsByDescriptor?: Maybe<Array<MediaItem>>;
|
|
157310
159437
|
mercury?: Maybe<MercuryQueryApi>;
|
|
159438
|
+
mercury_businessDomains?: Maybe<MercuryBusinessDomainsQueryApi>;
|
|
159439
|
+
mercury_comments?: Maybe<MercuryCommentQueryApi>;
|
|
157311
159440
|
mercury_dataIntegrations?: Maybe<MercuryDataIntegrationsQueryApi>;
|
|
157312
159441
|
mercury_funds?: Maybe<MercuryFundsQueryApi>;
|
|
157313
159442
|
mercury_insights?: Maybe<MercuryInsightsQueryApi>;
|
|
@@ -157415,12 +159544,14 @@ export declare type Query = {
|
|
|
157415
159544
|
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
157416
159545
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
157417
159546
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
159547
|
+
radar_metricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
157418
159548
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
157419
159549
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
157420
159550
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
157421
159551
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
157422
159552
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
157423
159553
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
159554
|
+
radar_skillAssignmentMetadata?: Maybe<Array<RadarSkillAssignmentMetadata>>;
|
|
157424
159555
|
radar_skillByAri?: Maybe<RadarSkill>;
|
|
157425
159556
|
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
157426
159557
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
@@ -157669,6 +159800,7 @@ export declare type QueryAdmin_AiPoliciesArgs = {
|
|
|
157669
159800
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
157670
159801
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
157671
159802
|
orgId: Scalars['ID']['input'];
|
|
159803
|
+
searchInput?: InputMaybe<AdminAiPoliciesSearchInput>;
|
|
157672
159804
|
};
|
|
157673
159805
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
157674
159806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -157836,6 +159968,18 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
157836
159968
|
principalId: Scalars['ID']['input'];
|
|
157837
159969
|
resourceId: Scalars['ID']['input'];
|
|
157838
159970
|
};
|
|
159971
|
+
export declare type QueryAdmin_ScimRuleArgs = {
|
|
159972
|
+
orgId: Scalars['ID']['input'];
|
|
159973
|
+
ruleId: Scalars['ID']['input'];
|
|
159974
|
+
};
|
|
159975
|
+
export declare type QueryAdmin_ScimRuleSearchArgs = {
|
|
159976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159977
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
159978
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159979
|
+
input: AdminScimRuleSearchInput;
|
|
159980
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159981
|
+
orgId: Scalars['ID']['input'];
|
|
159982
|
+
};
|
|
157839
159983
|
export declare type QueryAdmin_TokensArgs = {
|
|
157840
159984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
157841
159985
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158885,9 +161029,16 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
158885
161029
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
158886
161030
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
158887
161031
|
};
|
|
161032
|
+
export declare type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
161033
|
+
cloudId: Scalars['ID']['input'];
|
|
161034
|
+
};
|
|
158888
161035
|
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
158889
161036
|
cloudId: Scalars['ID']['input'];
|
|
158890
161037
|
};
|
|
161038
|
+
export declare type QueryAssetsVertical_InsightDetailsByDefinitionArgs = {
|
|
161039
|
+
cloudId: Scalars['ID']['input'];
|
|
161040
|
+
insightDefinitionId: Scalars['ID']['input'];
|
|
161041
|
+
};
|
|
158891
161042
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
158892
161043
|
cloudId: Scalars['ID']['input'];
|
|
158893
161044
|
};
|
|
@@ -159064,6 +161215,13 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
|
159064
161215
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
159065
161216
|
input: AvpGetReadOnlyDashboardInput;
|
|
159066
161217
|
};
|
|
161218
|
+
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
161219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
161220
|
+
cloudId: Scalars['ID']['input'];
|
|
161221
|
+
first: Scalars['Int']['input'];
|
|
161222
|
+
input: AvpSearchDashboardsInput;
|
|
161223
|
+
workspaceAri: Scalars['ID']['input'];
|
|
161224
|
+
};
|
|
159067
161225
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
159068
161226
|
cloudId: Scalars['ID']['input'];
|
|
159069
161227
|
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -159978,6 +162136,12 @@ export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
159978
162136
|
cloudId: Scalars['ID']['input'];
|
|
159979
162137
|
spaceKey: Scalars['String']['input'];
|
|
159980
162138
|
};
|
|
162139
|
+
export declare type QueryConfluence_SpaceAnalyticsPermissionsArgs = {
|
|
162140
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
162141
|
+
cloudId: Scalars['ID']['input'];
|
|
162142
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162143
|
+
spaceId: Scalars['ID']['input'];
|
|
162144
|
+
};
|
|
159981
162145
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
159982
162146
|
cloudId: Scalars['ID']['input'];
|
|
159983
162147
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -161573,6 +163737,7 @@ export declare type QueryKitsune_CustomersArgs = {
|
|
|
161573
163737
|
workspaceAri: Scalars['ID']['input'];
|
|
161574
163738
|
};
|
|
161575
163739
|
export declare type QueryKitsune_EntitlementsArgs = {
|
|
163740
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161576
163741
|
workspaceAri: Scalars['ID']['input'];
|
|
161577
163742
|
};
|
|
161578
163743
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
@@ -161607,6 +163772,7 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
161607
163772
|
workspaceAri: Scalars['ID']['input'];
|
|
161608
163773
|
};
|
|
161609
163774
|
export declare type QueryKitsune_SearchChunkArgs = {
|
|
163775
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161610
163776
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
161611
163777
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
161612
163778
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -161623,6 +163789,7 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
161623
163789
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
161624
163790
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161625
163791
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163792
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161626
163793
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161627
163794
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
161628
163795
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -161634,13 +163801,25 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
161634
163801
|
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
161635
163802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161636
163803
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163804
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161637
163805
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161638
163806
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
161639
163807
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163808
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
161640
163809
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
161641
163810
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
161642
163811
|
workspaceAri: Scalars['ID']['input'];
|
|
161643
163812
|
};
|
|
163813
|
+
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
163814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163815
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
163816
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
163817
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163818
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163819
|
+
name: Scalars['String']['input'];
|
|
163820
|
+
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
163821
|
+
workspaceAri: Scalars['ID']['input'];
|
|
163822
|
+
};
|
|
161644
163823
|
export declare type QueryKitsune_SearchOrganizationsArgs = {
|
|
161645
163824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161646
163825
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -161659,6 +163838,7 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
161659
163838
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
161660
163839
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
161661
163840
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163841
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
161662
163842
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161663
163843
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
161664
163844
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
@@ -162184,6 +164364,7 @@ export declare type QueryPublicLinkSpacesByCriteriaArgs = {
|
|
|
162184
164364
|
status?: InputMaybe<Array<PublicLinkSpaceStatus>>;
|
|
162185
164365
|
};
|
|
162186
164366
|
export declare type QueryPublicLinksByCriteriaArgs = {
|
|
164367
|
+
accessType?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkAccessType>>>;
|
|
162187
164368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162188
164369
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162189
164370
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -162239,6 +164420,9 @@ export declare type QueryRadar_LastAppliedFilterArgs = {
|
|
|
162239
164420
|
cloudId: Scalars['ID']['input'];
|
|
162240
164421
|
pageName: Scalars['String']['input'];
|
|
162241
164422
|
};
|
|
164423
|
+
export declare type QueryRadar_MetricsSettingsArgs = {
|
|
164424
|
+
cloudId: Scalars['ID']['input'];
|
|
164425
|
+
};
|
|
162242
164426
|
export declare type QueryRadar_NotificationSettingsArgs = {
|
|
162243
164427
|
cloudId: Scalars['ID']['input'];
|
|
162244
164428
|
};
|
|
@@ -162269,6 +164453,9 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
162269
164453
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
162270
164454
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
162271
164455
|
};
|
|
164456
|
+
export declare type QueryRadar_SkillAssignmentMetadataArgs = {
|
|
164457
|
+
skillAssignments: Array<RadarSkillAssignmentInput>;
|
|
164458
|
+
};
|
|
162272
164459
|
export declare type QueryRadar_SkillByAriArgs = {
|
|
162273
164460
|
id: Scalars['ID']['input'];
|
|
162274
164461
|
};
|
|
@@ -163599,6 +165786,36 @@ export declare type RadarLastAppliedFilterInput = {
|
|
|
163599
165786
|
pageName: Scalars['String']['input'];
|
|
163600
165787
|
rqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
163601
165788
|
};
|
|
165789
|
+
export declare type RadarMetricSettings = {
|
|
165790
|
+
__typename?: 'RadarMetricSettings';
|
|
165791
|
+
id: Scalars['ID']['output'];
|
|
165792
|
+
metricKey: RadarOrgMetric;
|
|
165793
|
+
metricType: RadarMetricType;
|
|
165794
|
+
values?: Maybe<Array<RadarMetricValue>>;
|
|
165795
|
+
};
|
|
165796
|
+
export declare type RadarMetricSettingsInput = {
|
|
165797
|
+
metricKey: RadarOrgMetric;
|
|
165798
|
+
metricType: RadarMetricType;
|
|
165799
|
+
orgId: Scalars['ID']['input'];
|
|
165800
|
+
values?: InputMaybe<Array<RadarMetricValueInput>>;
|
|
165801
|
+
};
|
|
165802
|
+
export declare enum RadarMetricType {
|
|
165803
|
+
Multi = "MULTI",
|
|
165804
|
+
Range = "RANGE",
|
|
165805
|
+
Single = "SINGLE"
|
|
165806
|
+
}
|
|
165807
|
+
export declare type RadarMetricValue = {
|
|
165808
|
+
__typename?: 'RadarMetricValue';
|
|
165809
|
+
dimensionName: Scalars['String']['output'];
|
|
165810
|
+
id: Scalars['ID']['output'];
|
|
165811
|
+
target: Scalars['Float']['output'];
|
|
165812
|
+
tolerance?: Maybe<Scalars['Float']['output']>;
|
|
165813
|
+
};
|
|
165814
|
+
export declare type RadarMetricValueInput = {
|
|
165815
|
+
dimensionName: Scalars['String']['input'];
|
|
165816
|
+
target: Scalars['Float']['input'];
|
|
165817
|
+
tolerance?: InputMaybe<Scalars['Float']['input']>;
|
|
165818
|
+
};
|
|
163602
165819
|
export declare type RadarMoney = {
|
|
163603
165820
|
__typename?: 'RadarMoney';
|
|
163604
165821
|
amount: Scalars['String']['output'];
|
|
@@ -163685,6 +165902,11 @@ export declare type RadarNumericFieldValue = {
|
|
|
163685
165902
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
163686
165903
|
value?: Maybe<Scalars['Int']['output']>;
|
|
163687
165904
|
};
|
|
165905
|
+
export declare enum RadarOrgMetric {
|
|
165906
|
+
CraftRatio = "CRAFT_RATIO",
|
|
165907
|
+
Footprint = "FOOTPRINT",
|
|
165908
|
+
SpanOfControl = "SPAN_OF_CONTROL"
|
|
165909
|
+
}
|
|
163688
165910
|
export declare type RadarPermissions = {
|
|
163689
165911
|
__typename?: 'RadarPermissions';
|
|
163690
165912
|
canManagersAllocate: Scalars['Boolean']['output'];
|
|
@@ -163813,6 +166035,16 @@ export declare type RadarSkill = Node & {
|
|
|
163813
166035
|
parent?: Maybe<RadarSkill>;
|
|
163814
166036
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
163815
166037
|
};
|
|
166038
|
+
export declare type RadarSkillAssignmentInput = {
|
|
166039
|
+
skillId: Scalars['ID']['input'];
|
|
166040
|
+
workerId: Scalars['ID']['input'];
|
|
166041
|
+
};
|
|
166042
|
+
export declare type RadarSkillAssignmentMetadata = {
|
|
166043
|
+
__typename?: 'RadarSkillAssignmentMetadata';
|
|
166044
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
166045
|
+
skillId: Scalars['ID']['output'];
|
|
166046
|
+
workerId: Scalars['ID']['output'];
|
|
166047
|
+
};
|
|
163816
166048
|
export declare type RadarStarredEntity = RadarView;
|
|
163817
166049
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
163818
166050
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
@@ -165194,6 +167426,10 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
165194
167426
|
Group = "GROUP",
|
|
165195
167427
|
User = "USER"
|
|
165196
167428
|
}
|
|
167429
|
+
export declare enum RollingSprintSetting {
|
|
167430
|
+
Disabled = "DISABLED",
|
|
167431
|
+
Enabled = "ENABLED"
|
|
167432
|
+
}
|
|
165197
167433
|
export declare type RunImportError = {
|
|
165198
167434
|
__typename?: 'RunImportError';
|
|
165199
167435
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -166086,6 +168322,7 @@ export declare type SearchGraphQlConfigurationResponse = {
|
|
|
166086
168322
|
};
|
|
166087
168323
|
export declare type SearchGraphQlConfigurationResponseThirdPartyFilterOptionsArgs = {
|
|
166088
168324
|
datasourceId: Scalars['String']['input'];
|
|
168325
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
166089
168326
|
};
|
|
166090
168327
|
export declare type SearchGraphQlConfigurationResponseThirdPartySlackChannelsArgs = {
|
|
166091
168328
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166182,6 +168419,7 @@ export declare type SearchLayerDefinition = {
|
|
|
166182
168419
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
166183
168420
|
};
|
|
166184
168421
|
export declare enum SearchLinkedEntitiesType {
|
|
168422
|
+
Comments = "comments",
|
|
166185
168423
|
Messages = "messages",
|
|
166186
168424
|
Thread = "thread"
|
|
166187
168425
|
}
|
|
@@ -186359,6 +188597,11 @@ export declare type SmartUserFeatures = {
|
|
|
186359
188597
|
recommendedPeople?: Maybe<Array<Maybe<RecommendedPeopleItem>>>;
|
|
186360
188598
|
recommendedSpaces?: Maybe<Array<Maybe<RecommendedSpaceItem>>>;
|
|
186361
188599
|
};
|
|
188600
|
+
export declare type SmartsConfluenceContext = {
|
|
188601
|
+
__typename?: 'SmartsConfluenceContext';
|
|
188602
|
+
id: Scalars['ID']['output'];
|
|
188603
|
+
status: Scalars['String']['output'];
|
|
188604
|
+
};
|
|
186362
188605
|
export declare type SmartsContext = {
|
|
186363
188606
|
additionalContextList?: InputMaybe<Array<SmartsKeyValue>>;
|
|
186364
188607
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -186376,8 +188619,9 @@ export declare type SmartsContextServiceQueryApiQuickfindUserRecommendationsArgs
|
|
|
186376
188619
|
};
|
|
186377
188620
|
export declare type SmartsContextServiceUserRecommendation = {
|
|
186378
188621
|
__typename?: 'SmartsContextServiceUserRecommendation';
|
|
188622
|
+
context?: Maybe<SmartsRecommendationContext>;
|
|
186379
188623
|
id: Scalars['ID']['output'];
|
|
186380
|
-
object?: Maybe<
|
|
188624
|
+
object?: Maybe<SmartsRecommendedEntity>;
|
|
186381
188625
|
reason?: Maybe<Scalars['String']['output']>;
|
|
186382
188626
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186383
188627
|
};
|
|
@@ -186422,6 +188666,11 @@ export declare type SmartsQueryApiRecommendedObjectArgs = {
|
|
|
186422
188666
|
export declare type SmartsQueryApiRecommendedUserArgs = {
|
|
186423
188667
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
186424
188668
|
};
|
|
188669
|
+
export declare type SmartsRecommendationContext = {
|
|
188670
|
+
__typename?: 'SmartsRecommendationContext';
|
|
188671
|
+
confluence?: Maybe<SmartsConfluenceContext>;
|
|
188672
|
+
thirdParty?: Maybe<SmartsThirdPartyContext>;
|
|
188673
|
+
};
|
|
186425
188674
|
export declare type SmartsRecommendationsFieldQuery = {
|
|
186426
188675
|
context: SmartsFieldContext;
|
|
186427
188676
|
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -186449,6 +188698,7 @@ export declare type SmartsRecommendedContainerV2 = {
|
|
|
186449
188698
|
id: Scalars['ID']['output'];
|
|
186450
188699
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186451
188700
|
};
|
|
188701
|
+
export declare type SmartsRecommendedEntity = ConfluencePage | ExternalDocument;
|
|
186452
188702
|
export declare type SmartsRecommendedFieldObject = {
|
|
186453
188703
|
__typename?: 'SmartsRecommendedFieldObject';
|
|
186454
188704
|
id: Scalars['ID']['output'];
|
|
@@ -186470,6 +188720,11 @@ export declare type SmartsRecommendedUser = {
|
|
|
186470
188720
|
score?: Maybe<Scalars['Float']['output']>;
|
|
186471
188721
|
user?: Maybe<User>;
|
|
186472
188722
|
};
|
|
188723
|
+
export declare type SmartsThirdPartyContext = {
|
|
188724
|
+
__typename?: 'SmartsThirdPartyContext';
|
|
188725
|
+
ari: Scalars['ID']['output'];
|
|
188726
|
+
siteOrGraphWorkspaceAri: Scalars['ID']['output'];
|
|
188727
|
+
};
|
|
186473
188728
|
export declare type SocialSignalSearch = {
|
|
186474
188729
|
__typename?: 'SocialSignalSearch';
|
|
186475
188730
|
objectARI: Scalars['ID']['output'];
|
|
@@ -187447,6 +189702,7 @@ export declare type SpfAskActivity = {
|
|
|
187447
189702
|
updatedValues?: Maybe<Array<Maybe<SpfAskActivityUpdatedValue>>>;
|
|
187448
189703
|
};
|
|
187449
189704
|
export declare enum SpfAskActivityAttribute {
|
|
189705
|
+
ConnectedWork = "CONNECTED_WORK",
|
|
187450
189706
|
Description = "DESCRIPTION",
|
|
187451
189707
|
ImpactedWork = "IMPACTED_WORK",
|
|
187452
189708
|
Justification = "JUSTIFICATION",
|
|
@@ -187489,6 +189745,12 @@ export declare enum SpfAskActivityType {
|
|
|
187489
189745
|
Created = "CREATED",
|
|
187490
189746
|
Updated = "UPDATED"
|
|
187491
189747
|
}
|
|
189748
|
+
export declare type SpfAskActivityUpdatedConnectedWork = SpfAskActivityUpdatedValue & {
|
|
189749
|
+
__typename?: 'SpfAskActivityUpdatedConnectedWork';
|
|
189750
|
+
attribute: SpfAskActivityAttribute;
|
|
189751
|
+
newValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189752
|
+
oldValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189753
|
+
};
|
|
187492
189754
|
export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue & {
|
|
187493
189755
|
__typename?: 'SpfAskActivityUpdatedDocument';
|
|
187494
189756
|
attribute: SpfAskActivityAttribute;
|
|
@@ -187658,6 +189920,7 @@ export declare enum SpfAskStatus {
|
|
|
187658
189920
|
Deferred = "DEFERRED",
|
|
187659
189921
|
Draft = "DRAFT",
|
|
187660
189922
|
InReview = "IN_REVIEW",
|
|
189923
|
+
Resolved = "RESOLVED",
|
|
187661
189924
|
Revising = "REVISING",
|
|
187662
189925
|
Submitted = "SUBMITTED"
|
|
187663
189926
|
}
|
|
@@ -188429,17 +190692,22 @@ export declare type SplitIssueOutput = MutationResponse & {
|
|
|
188429
190692
|
};
|
|
188430
190693
|
export declare type Sprint = BaseSprint & {
|
|
188431
190694
|
__typename?: 'Sprint';
|
|
190695
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
188432
190696
|
cardChildren: Array<SoftwareCard>;
|
|
188433
190697
|
cards: Array<Maybe<SoftwareCard>>;
|
|
190698
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
188434
190699
|
daysRemaining?: Maybe<Scalars['Int']['output']>;
|
|
188435
190700
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
188436
190701
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
188437
190702
|
goal?: Maybe<Scalars['String']['output']>;
|
|
188438
190703
|
id?: Maybe<Scalars['ID']['output']>;
|
|
190704
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
188439
190705
|
name?: Maybe<Scalars['String']['output']>;
|
|
190706
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
188440
190707
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
188441
190708
|
sprintState: SprintState;
|
|
188442
190709
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
190710
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
188443
190711
|
};
|
|
188444
190712
|
export declare type SprintCardsArgs = {
|
|
188445
190713
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -188496,17 +190764,22 @@ export declare enum SprintState {
|
|
|
188496
190764
|
}
|
|
188497
190765
|
export declare type SprintWithStatistics = BaseSprint & {
|
|
188498
190766
|
__typename?: 'SprintWithStatistics';
|
|
190767
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
190768
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
188499
190769
|
defaultEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
188500
190770
|
defaultStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
188501
190771
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
188502
190772
|
goal?: Maybe<Scalars['String']['output']>;
|
|
188503
190773
|
id?: Maybe<Scalars['ID']['output']>;
|
|
190774
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
188504
190775
|
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
188505
190776
|
lastColumnName?: Maybe<Scalars['String']['output']>;
|
|
188506
190777
|
name?: Maybe<Scalars['String']['output']>;
|
|
190778
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
188507
190779
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
188508
190780
|
sprintState: SprintState;
|
|
188509
190781
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
190782
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
188510
190783
|
};
|
|
188511
190784
|
export declare type SpssExportFullSiteScanResultsInput = {
|
|
188512
190785
|
bootstrapId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -188605,6 +190878,18 @@ export declare type StakeholderCommsBodyConfigType = {
|
|
|
188605
190878
|
overallUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
188606
190879
|
uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
|
|
188607
190880
|
};
|
|
190881
|
+
export declare type StakeholderCommsBulkAddSubscriberFromAdminResponse = {
|
|
190882
|
+
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResponse';
|
|
190883
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
190884
|
+
results: Array<StakeholderCommsBulkAddSubscriberFromAdminResultItem>;
|
|
190885
|
+
success: Scalars['Boolean']['output'];
|
|
190886
|
+
};
|
|
190887
|
+
export declare type StakeholderCommsBulkAddSubscriberFromAdminResultItem = {
|
|
190888
|
+
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResultItem';
|
|
190889
|
+
email: Scalars['String']['output'];
|
|
190890
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
190891
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
190892
|
+
};
|
|
188608
190893
|
export declare type StakeholderCommsBulkStakeholderCreationResponse = {
|
|
188609
190894
|
__typename?: 'StakeholderCommsBulkStakeholderCreationResponse';
|
|
188610
190895
|
errors?: Maybe<Array<StakeholderCommsStakeholderCreationError>>;
|
|
@@ -189980,10 +192265,13 @@ export declare enum StalePagesSortingType {
|
|
|
189980
192265
|
Desc = "DESC"
|
|
189981
192266
|
}
|
|
189982
192267
|
export declare type StartSprintInput = {
|
|
192268
|
+
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
189983
192269
|
boardId: Scalars['ID']['input'];
|
|
189984
192270
|
endDate: Scalars['String']['input'];
|
|
189985
192271
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
192272
|
+
incompleteCardsDestination?: InputMaybe<SoftwareCardsDestination>;
|
|
189986
192273
|
name: Scalars['String']['input'];
|
|
192274
|
+
rollingSprint?: InputMaybe<RollingSprintSetting>;
|
|
189987
192275
|
sprintId: Scalars['ID']['input'];
|
|
189988
192276
|
startDate: Scalars['String']['input'];
|
|
189989
192277
|
};
|
|
@@ -190933,6 +193221,12 @@ export declare type TeamCreateCustomFieldValuePayload = {
|
|
|
190933
193221
|
customFieldAri: Scalars['ID']['input'];
|
|
190934
193222
|
value: Scalars['String']['input'];
|
|
190935
193223
|
};
|
|
193224
|
+
export declare type TeamCreateExternalTeamInput = {
|
|
193225
|
+
description: Scalars['String']['input'];
|
|
193226
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
193227
|
+
externalReference: TeamExternalReferenceInput;
|
|
193228
|
+
scopeId: Scalars['ID']['input'];
|
|
193229
|
+
};
|
|
190936
193230
|
export declare type TeamCreatePayload = Payload & {
|
|
190937
193231
|
__typename?: 'TeamCreatePayload';
|
|
190938
193232
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -191002,6 +193296,11 @@ export declare type TeamDetailedCustomFieldInfo = {
|
|
|
191002
193296
|
options?: Maybe<Array<TeamCustomFieldValue>>;
|
|
191003
193297
|
type: TeamCustomFieldType;
|
|
191004
193298
|
};
|
|
193299
|
+
export declare type TeamExternalReferenceInput = {
|
|
193300
|
+
id: Scalars['String']['input'];
|
|
193301
|
+
source: TeamSource;
|
|
193302
|
+
syncTeamName?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193303
|
+
};
|
|
191005
193304
|
export declare type TeamHierarchy = {
|
|
191006
193305
|
__typename?: 'TeamHierarchy';
|
|
191007
193306
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -191030,6 +193329,15 @@ export declare type TeamMember = {
|
|
|
191030
193329
|
role?: Maybe<MembershipRole>;
|
|
191031
193330
|
state?: Maybe<MembershipState>;
|
|
191032
193331
|
};
|
|
193332
|
+
export declare type TeamMemberAccountId = {
|
|
193333
|
+
__typename?: 'TeamMemberAccountId';
|
|
193334
|
+
accountId: Scalars['ID']['output'];
|
|
193335
|
+
};
|
|
193336
|
+
export declare type TeamMemberAccountIdError = {
|
|
193337
|
+
__typename?: 'TeamMemberAccountIdError';
|
|
193338
|
+
accountId: Scalars['ID']['output'];
|
|
193339
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
193340
|
+
};
|
|
191033
193341
|
export declare type TeamMemberConnection = {
|
|
191034
193342
|
__typename?: 'TeamMemberConnection';
|
|
191035
193343
|
edges?: Maybe<Array<Maybe<TeamMemberEdge>>>;
|
|
@@ -191061,6 +193369,9 @@ export declare type TeamMemberV2 = {
|
|
|
191061
193369
|
export declare type TeamMembershipFilter = {
|
|
191062
193370
|
memberIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
191063
193371
|
};
|
|
193372
|
+
export declare enum TeamMembershipProcessingStatus {
|
|
193373
|
+
Async = "ASYNC"
|
|
193374
|
+
}
|
|
191064
193375
|
export declare enum TeamMembershipRole {
|
|
191065
193376
|
Admin = "ADMIN",
|
|
191066
193377
|
Regular = "REGULAR"
|
|
@@ -191076,6 +193387,12 @@ export declare enum TeamMembershipState {
|
|
|
191076
193387
|
FullMember = "FULL_MEMBER",
|
|
191077
193388
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
191078
193389
|
}
|
|
193390
|
+
export declare type TeamMembershipSyncResult = {
|
|
193391
|
+
__typename?: 'TeamMembershipSyncResult';
|
|
193392
|
+
errors: Array<TeamMemberAccountIdError>;
|
|
193393
|
+
members: Array<TeamMemberAccountId>;
|
|
193394
|
+
status: TeamMembershipProcessingStatus;
|
|
193395
|
+
};
|
|
191079
193396
|
export declare type TeamMutation = {
|
|
191080
193397
|
__typename?: 'TeamMutation';
|
|
191081
193398
|
addChild?: Maybe<TeamV2>;
|
|
@@ -191085,6 +193402,7 @@ export declare type TeamMutation = {
|
|
|
191085
193402
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
191086
193403
|
createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
191087
193404
|
createCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
193405
|
+
createExternalTeam?: Maybe<TeamWithMembershipSyncPayload>;
|
|
191088
193406
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
191089
193407
|
createTeamType?: Maybe<TeamType>;
|
|
191090
193408
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -191136,6 +193454,9 @@ export declare type TeamMutationCreateCustomFieldArgs = {
|
|
|
191136
193454
|
export declare type TeamMutationCreateCustomFieldValueArgs = {
|
|
191137
193455
|
customFieldValueData: TeamCreateCustomFieldValuePayload;
|
|
191138
193456
|
};
|
|
193457
|
+
export declare type TeamMutationCreateExternalTeamArgs = {
|
|
193458
|
+
input: TeamCreateExternalTeamInput;
|
|
193459
|
+
};
|
|
191139
193460
|
export declare type TeamMutationCreateTeamArgs = {
|
|
191140
193461
|
input: TeamCreateTeamInput;
|
|
191141
193462
|
};
|
|
@@ -191427,6 +193748,10 @@ export declare enum TeamSortOrder {
|
|
|
191427
193748
|
Asc = "ASC",
|
|
191428
193749
|
Desc = "DESC"
|
|
191429
193750
|
}
|
|
193751
|
+
export declare enum TeamSource {
|
|
193752
|
+
AtlassianGroup = "ATLASSIAN_GROUP",
|
|
193753
|
+
Hris = "HRIS"
|
|
193754
|
+
}
|
|
191430
193755
|
export declare enum TeamState {
|
|
191431
193756
|
Active = "ACTIVE",
|
|
191432
193757
|
Disbanded = "DISBANDED",
|
|
@@ -191622,6 +193947,13 @@ export declare type TeamV2MembersArgs = {
|
|
|
191622
193947
|
first?: Scalars['Int']['input'];
|
|
191623
193948
|
state?: Array<TeamMembershipState>;
|
|
191624
193949
|
};
|
|
193950
|
+
export declare type TeamWithMembershipSyncPayload = Payload & {
|
|
193951
|
+
__typename?: 'TeamWithMembershipSyncPayload';
|
|
193952
|
+
errors?: Maybe<Array<MutationError>>;
|
|
193953
|
+
membership?: Maybe<TeamMembershipSyncResult>;
|
|
193954
|
+
success: Scalars['Boolean']['output'];
|
|
193955
|
+
team?: Maybe<TeamV2>;
|
|
193956
|
+
};
|
|
191625
193957
|
export declare enum TeamworkGraphUserViewedEntityType {
|
|
191626
193958
|
ConfluenceBlogpost = "ConfluenceBlogpost",
|
|
191627
193959
|
ConfluencePage = "ConfluencePage",
|
|
@@ -193446,6 +195778,7 @@ export declare type TownsquareGoalsCreateRiskPayload = {
|
|
|
193446
195778
|
success: Scalars['Boolean']['output'];
|
|
193447
195779
|
};
|
|
193448
195780
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
195781
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
193449
195782
|
goalId: Scalars['ID']['input'];
|
|
193450
195783
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
193451
195784
|
isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -196372,6 +198705,7 @@ export declare type TrelloBaseCard = {
|
|
|
196372
198705
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
196373
198706
|
limits?: Maybe<TrelloCardLimits>;
|
|
196374
198707
|
list?: Maybe<TrelloList>;
|
|
198708
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
196375
198709
|
name?: Maybe<Scalars['String']['output']>;
|
|
196376
198710
|
objectId: Scalars['ID']['output'];
|
|
196377
198711
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -196876,6 +199210,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
196876
199210
|
limits?: Maybe<TrelloCardLimits>;
|
|
196877
199211
|
list?: Maybe<TrelloList>;
|
|
196878
199212
|
location?: Maybe<TrelloCardLocation>;
|
|
199213
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
196879
199214
|
members?: Maybe<TrelloMemberConnection>;
|
|
196880
199215
|
membersVoted?: Maybe<TrelloMemberConnection>;
|
|
196881
199216
|
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
@@ -197229,6 +199564,11 @@ export declare type TrelloCardLocation = {
|
|
|
197229
199564
|
name?: Maybe<Scalars['String']['output']>;
|
|
197230
199565
|
staticMapUrl?: Maybe<Scalars['URL']['output']>;
|
|
197231
199566
|
};
|
|
199567
|
+
export declare type TrelloCardManifest = {
|
|
199568
|
+
__typename?: 'TrelloCardManifest';
|
|
199569
|
+
contents?: Maybe<Scalars['JSON']['output']>;
|
|
199570
|
+
schemaVersion: Scalars['Int']['output'];
|
|
199571
|
+
};
|
|
197232
199572
|
export declare type TrelloCardMemberEdgeUpdated = {
|
|
197233
199573
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
197234
199574
|
node?: Maybe<TrelloMember>;
|
|
@@ -197258,6 +199598,7 @@ export declare type TrelloCardPlannerEventEdgeUpdated = {
|
|
|
197258
199598
|
export declare enum TrelloCardRole {
|
|
197259
199599
|
Board = "BOARD",
|
|
197260
199600
|
Link = "LINK",
|
|
199601
|
+
Manifest = "MANIFEST",
|
|
197261
199602
|
Mirror = "MIRROR",
|
|
197262
199603
|
Separator = "SEPARATOR"
|
|
197263
199604
|
}
|
|
@@ -197385,6 +199726,13 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
197385
199726
|
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
197386
199727
|
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
197387
199728
|
};
|
|
199729
|
+
export declare enum TrelloChecklistCreationMethod {
|
|
199730
|
+
Ai = "AI",
|
|
199731
|
+
Assisted = "ASSISTED",
|
|
199732
|
+
Automatic = "AUTOMATIC",
|
|
199733
|
+
Demo = "DEMO",
|
|
199734
|
+
EmailSource = "EMAIL_SOURCE"
|
|
199735
|
+
}
|
|
197388
199736
|
export declare type TrelloChecklistDeleted = {
|
|
197389
199737
|
__typename?: 'TrelloChecklistDeleted';
|
|
197390
199738
|
id: Scalars['ID']['output'];
|
|
@@ -197399,6 +199747,12 @@ export declare type TrelloChecklistEdgeUpdated = {
|
|
|
197399
199747
|
__typename?: 'TrelloChecklistEdgeUpdated';
|
|
197400
199748
|
node: TrelloChecklistUpdated;
|
|
197401
199749
|
};
|
|
199750
|
+
export declare enum TrelloChecklistMediaType {
|
|
199751
|
+
ImageGif = "IMAGE_GIF",
|
|
199752
|
+
ImageJpeg = "IMAGE_JPEG",
|
|
199753
|
+
ImagePng = "IMAGE_PNG",
|
|
199754
|
+
ImageWebp = "IMAGE_WEBP"
|
|
199755
|
+
}
|
|
197402
199756
|
export declare type TrelloChecklistTarget = {
|
|
197403
199757
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
197404
199758
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -197429,6 +199783,15 @@ export declare type TrelloCloseCardPayload = Payload & {
|
|
|
197429
199783
|
errors?: Maybe<Array<MutationError>>;
|
|
197430
199784
|
success: Scalars['Boolean']['output'];
|
|
197431
199785
|
};
|
|
199786
|
+
export declare type TrelloCloseListInput = {
|
|
199787
|
+
listId: Scalars['ID']['input'];
|
|
199788
|
+
};
|
|
199789
|
+
export declare type TrelloCloseListPayload = Payload & {
|
|
199790
|
+
__typename?: 'TrelloCloseListPayload';
|
|
199791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199792
|
+
list?: Maybe<TrelloList>;
|
|
199793
|
+
success: Scalars['Boolean']['output'];
|
|
199794
|
+
};
|
|
197432
199795
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
197433
199796
|
__typename?: 'TrelloCommentCardAction';
|
|
197434
199797
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -197678,6 +200041,21 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
197678
200041
|
errors?: Maybe<Array<MutationError>>;
|
|
197679
200042
|
success: Scalars['Boolean']['output'];
|
|
197680
200043
|
};
|
|
200044
|
+
export declare type TrelloCreateChecklistInput = {
|
|
200045
|
+
cardId: Scalars['ID']['input'];
|
|
200046
|
+
creationMethod?: InputMaybe<TrelloChecklistCreationMethod>;
|
|
200047
|
+
imageUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
200048
|
+
mediaType?: InputMaybe<TrelloChecklistMediaType>;
|
|
200049
|
+
name: Scalars['String']['input'];
|
|
200050
|
+
position?: InputMaybe<TrelloPosition>;
|
|
200051
|
+
sourceChecklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
200052
|
+
};
|
|
200053
|
+
export declare type TrelloCreateChecklistPayload = Payload & {
|
|
200054
|
+
__typename?: 'TrelloCreateChecklistPayload';
|
|
200055
|
+
card?: Maybe<TrelloCard>;
|
|
200056
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200057
|
+
success: Scalars['Boolean']['output'];
|
|
200058
|
+
};
|
|
197681
200059
|
export declare type TrelloCreateCustomFieldInput = {
|
|
197682
200060
|
boardId: Scalars['ID']['input'];
|
|
197683
200061
|
display?: InputMaybe<TrelloCustomFieldDisplayInput>;
|
|
@@ -198081,6 +200459,7 @@ export declare type TrelloEnterprise = Node & {
|
|
|
198081
200459
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
198082
200460
|
id: Scalars['ID']['output'];
|
|
198083
200461
|
managedMemberTokensCount?: Maybe<Scalars['Int']['output']>;
|
|
200462
|
+
memberOAuth2AccessGrants?: Maybe<TrelloMemberOAuth2AccessGrantsResult>;
|
|
198084
200463
|
membersWithTokens?: Maybe<TrelloEnterpriseMemberTokenConnection>;
|
|
198085
200464
|
objectId: Scalars['ID']['output'];
|
|
198086
200465
|
prefs: TrelloEnterprisePrefs;
|
|
@@ -198092,6 +200471,9 @@ export declare type TrelloEnterpriseAdminsArgs = {
|
|
|
198092
200471
|
export declare type TrelloEnterpriseManagedMemberTokensCountArgs = {
|
|
198093
200472
|
filter?: InputMaybe<TrelloTokenFilter>;
|
|
198094
200473
|
};
|
|
200474
|
+
export declare type TrelloEnterpriseMemberOAuth2AccessGrantsArgs = {
|
|
200475
|
+
memberId: Scalars['ID']['input'];
|
|
200476
|
+
};
|
|
198095
200477
|
export declare type TrelloEnterpriseMembersWithTokensArgs = {
|
|
198096
200478
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
198097
200479
|
filter?: InputMaybe<TrelloTokenFilter>;
|
|
@@ -198240,6 +200622,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
198240
200622
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
198241
200623
|
limits?: Maybe<TrelloCardLimits>;
|
|
198242
200624
|
list?: Maybe<TrelloList>;
|
|
200625
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
198243
200626
|
name?: Maybe<Scalars['String']['output']>;
|
|
198244
200627
|
objectId: Scalars['ID']['output'];
|
|
198245
200628
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -198438,6 +200821,7 @@ export declare type TrelloLimitProps = {
|
|
|
198438
200821
|
export declare type TrelloList = Node & {
|
|
198439
200822
|
__typename?: 'TrelloList';
|
|
198440
200823
|
board?: Maybe<TrelloBoard>;
|
|
200824
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
198441
200825
|
cards?: Maybe<TrelloCardConnection>;
|
|
198442
200826
|
closed: Scalars['Boolean']['output'];
|
|
198443
200827
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -198725,6 +201109,16 @@ export declare type TrelloMemberNonPublicData = {
|
|
|
198725
201109
|
initials?: Maybe<Scalars['String']['output']>;
|
|
198726
201110
|
};
|
|
198727
201111
|
export declare type TrelloMemberNotificationsUpdated = TrelloInboxNotificationsUpdated;
|
|
201112
|
+
export declare type TrelloMemberOAuth2AccessGrant = {
|
|
201113
|
+
__typename?: 'TrelloMemberOAuth2AccessGrant';
|
|
201114
|
+
oauth2ClientId: Scalars['String']['output'];
|
|
201115
|
+
scopes: Array<Scalars['String']['output']>;
|
|
201116
|
+
};
|
|
201117
|
+
export declare type TrelloMemberOAuth2AccessGrantsResult = {
|
|
201118
|
+
__typename?: 'TrelloMemberOAuth2AccessGrantsResult';
|
|
201119
|
+
grants: Array<TrelloMemberOAuth2AccessGrant>;
|
|
201120
|
+
member: TrelloMember;
|
|
201121
|
+
};
|
|
198728
201122
|
export declare type TrelloMemberPlannerEventCardsUpdated = {
|
|
198729
201123
|
__typename?: 'TrelloMemberPlannerEventCardsUpdated';
|
|
198730
201124
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -198940,12 +201334,14 @@ export declare type TrelloMutationApi = {
|
|
|
198940
201334
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
198941
201335
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
198942
201336
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
201337
|
+
closeList?: Maybe<TrelloCloseListPayload>;
|
|
198943
201338
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
198944
201339
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
198945
201340
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
198946
201341
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
198947
201342
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
198948
201343
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
201344
|
+
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
198949
201345
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
198950
201346
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
198951
201347
|
createList?: Maybe<TrelloCreateListPayload>;
|
|
@@ -199076,6 +201472,9 @@ export declare type TrelloMutationApiCloseBoardArgs = {
|
|
|
199076
201472
|
export declare type TrelloMutationApiCloseCardArgs = {
|
|
199077
201473
|
input: TrelloCloseCardInput;
|
|
199078
201474
|
};
|
|
201475
|
+
export declare type TrelloMutationApiCloseListArgs = {
|
|
201476
|
+
input: TrelloCloseListInput;
|
|
201477
|
+
};
|
|
199079
201478
|
export declare type TrelloMutationApiCompleteOnboardingArgs = {
|
|
199080
201479
|
input: TrelloCompleteOnboardingInput;
|
|
199081
201480
|
};
|
|
@@ -199094,6 +201493,9 @@ export declare type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
|
199094
201493
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
199095
201494
|
input: TrelloCreateCardInput;
|
|
199096
201495
|
};
|
|
201496
|
+
export declare type TrelloMutationApiCreateChecklistArgs = {
|
|
201497
|
+
input: TrelloCreateChecklistInput;
|
|
201498
|
+
};
|
|
199097
201499
|
export declare type TrelloMutationApiCreateCustomFieldArgs = {
|
|
199098
201500
|
input: TrelloCreateCustomFieldInput;
|
|
199099
201501
|
};
|
|
@@ -199443,6 +201845,7 @@ export declare type TrelloPlanner = {
|
|
|
199443
201845
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
199444
201846
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
|
|
199445
201847
|
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
|
|
201848
|
+
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
199446
201849
|
id: Scalars['ID']['output'];
|
|
199447
201850
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
199448
201851
|
primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
|
|
@@ -200099,6 +202502,10 @@ export declare type TrelloPlannerUpdated = {
|
|
|
200099
202502
|
export declare type TrelloPlannerUpdatedCardsWithDueDatesArgs = {
|
|
200100
202503
|
filter: TrelloPlannerCardsWithDueDatesUpdatedFilter;
|
|
200101
202504
|
};
|
|
202505
|
+
export declare type TrelloPosition = {
|
|
202506
|
+
absolute?: InputMaybe<Scalars['Float']['input']>;
|
|
202507
|
+
relative?: InputMaybe<TrelloRelativePosition>;
|
|
202508
|
+
};
|
|
200102
202509
|
export declare type TrelloPowerUp = {
|
|
200103
202510
|
__typename?: 'TrelloPowerUp';
|
|
200104
202511
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -200989,7 +203396,7 @@ export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
|
200989
203396
|
};
|
|
200990
203397
|
export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
200991
203398
|
__typename?: 'TrelloUpdateBoardIsTemplatePayload';
|
|
200992
|
-
board?: Maybe<
|
|
203399
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
200993
203400
|
errors?: Maybe<Array<MutationError>>;
|
|
200994
203401
|
success: Scalars['Boolean']['output'];
|
|
200995
203402
|
};
|
|
@@ -201000,6 +203407,7 @@ export declare type TrelloUpdateBoardNameInput = {
|
|
|
201000
203407
|
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
201001
203408
|
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
201002
203409
|
board?: Maybe<TrelloBoard>;
|
|
203410
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
201003
203411
|
errors?: Maybe<Array<MutationError>>;
|
|
201004
203412
|
success: Scalars['Boolean']['output'];
|
|
201005
203413
|
};
|