@forge/cli-shared 8.20.0-next.3 → 8.20.0-next.5
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 +18 -0
- package/out/graphql/graphql-types.d.ts +2419 -139
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +282 -53
- 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,22 +427,26 @@ 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';
|
|
437
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
425
438
|
errors?: Maybe<Array<MutationError>>;
|
|
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']>;
|
|
432
446
|
};
|
|
433
447
|
export declare type AvpAnalyticsDiscardModelUpdatesPayload = Payload & {
|
|
434
448
|
__typename?: 'AVPAnalyticsDiscardModelUpdatesPayload';
|
|
449
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
435
450
|
errors?: Maybe<Array<MutationError>>;
|
|
436
451
|
model?: Maybe<AvpAnalyticsModel>;
|
|
437
452
|
success: Scalars['Boolean']['output'];
|
|
@@ -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",
|
|
@@ -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';
|
|
@@ -13036,6 +13230,13 @@ export declare type BlockServiceUpdateDocumentReferencesInput = {
|
|
|
13036
13230
|
};
|
|
13037
13231
|
export declare type BlockSmartLink = SmartLink & {
|
|
13038
13232
|
__typename?: 'BlockSmartLink';
|
|
13233
|
+
canView: Scalars['Boolean']['output'];
|
|
13234
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
13235
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
13236
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
13237
|
+
resolved: Scalars['Boolean']['output'];
|
|
13238
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
13239
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
13039
13240
|
title?: Maybe<Scalars['String']['output']>;
|
|
13040
13241
|
url: Scalars['String']['output'];
|
|
13041
13242
|
};
|
|
@@ -28138,6 +28339,9 @@ export declare type ConfluenceForgeExtensionDataContent = {
|
|
|
28138
28339
|
};
|
|
28139
28340
|
export declare type ConfluenceForgeExtensionDataMacro = {
|
|
28140
28341
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
28342
|
+
isConfiguring?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28343
|
+
isInserting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28344
|
+
layout?: InputMaybe<Scalars['String']['input']>;
|
|
28141
28345
|
};
|
|
28142
28346
|
export declare type ConfluenceForgeExtensionDataSpace = {
|
|
28143
28347
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29628,6 +29832,10 @@ export declare type ConfluencePageBlogified = {
|
|
|
29628
29832
|
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
29629
29833
|
spaceName?: Maybe<Scalars['String']['output']>;
|
|
29630
29834
|
};
|
|
29835
|
+
export declare type ConfluencePageBriefing = {
|
|
29836
|
+
__typename?: 'ConfluencePageBriefing';
|
|
29837
|
+
briefing: Scalars['String']['output'];
|
|
29838
|
+
};
|
|
29631
29839
|
export declare type ConfluencePageInfo = {
|
|
29632
29840
|
__typename?: 'ConfluencePageInfo';
|
|
29633
29841
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -30970,16 +31178,6 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
|
30970
31178
|
errors?: Maybe<Array<MutationError>>;
|
|
30971
31179
|
success: Scalars['Boolean']['output'];
|
|
30972
31180
|
};
|
|
30973
|
-
export declare type ConfluenceSetCutoverRoleConfigInput = {
|
|
30974
|
-
fallbackRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
30975
|
-
strategy: ConfluenceCutoverFallbackStrategy;
|
|
30976
|
-
};
|
|
30977
|
-
export declare type ConfluenceSetCutoverRoleConfigPayload = Payload & {
|
|
30978
|
-
__typename?: 'ConfluenceSetCutoverRoleConfigPayload';
|
|
30979
|
-
cutoverRoleConfig?: Maybe<ConfluenceCutoverRoleConfig>;
|
|
30980
|
-
errors?: Maybe<Array<MutationError>>;
|
|
30981
|
-
success: Scalars['Boolean']['output'];
|
|
30982
|
-
};
|
|
30983
31181
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
30984
31182
|
isReminder: Scalars['Boolean']['input'];
|
|
30985
31183
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -32195,6 +32393,31 @@ export declare type ConfluenceUpdateMarkdownModePayload = Payload & {
|
|
|
32195
32393
|
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
32196
32394
|
success: Scalars['Boolean']['output'];
|
|
32197
32395
|
};
|
|
32396
|
+
export declare enum ConfluenceUpdateModeChangeErrorCode {
|
|
32397
|
+
AlreadyInRolesMode = "ALREADY_IN_ROLES_MODE",
|
|
32398
|
+
ExperimentDisabled = "EXPERIMENT_DISABLED",
|
|
32399
|
+
FallbackRoleNotFound = "FALLBACK_ROLE_NOT_FOUND",
|
|
32400
|
+
FallbackRoleNoLongerEligible = "FALLBACK_ROLE_NO_LONGER_ELIGIBLE",
|
|
32401
|
+
InternalError = "INTERNAL_ERROR",
|
|
32402
|
+
InvalidStrategyFallbackCombination = "INVALID_STRATEGY_FALLBACK_COMBINATION",
|
|
32403
|
+
PermissionDenied = "PERMISSION_DENIED"
|
|
32404
|
+
}
|
|
32405
|
+
export declare type ConfluenceUpdateModeChangeInput = {
|
|
32406
|
+
fallbackRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
32407
|
+
strategy: ConfluenceCutoverFallbackStrategy;
|
|
32408
|
+
};
|
|
32409
|
+
export declare type ConfluenceUpdateModeChangeMutationErrorExtension = MutationErrorExtension & {
|
|
32410
|
+
__typename?: 'ConfluenceUpdateModeChangeMutationErrorExtension';
|
|
32411
|
+
code: ConfluenceUpdateModeChangeErrorCode;
|
|
32412
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
32413
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
32414
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
32415
|
+
};
|
|
32416
|
+
export declare type ConfluenceUpdateModeChangePayload = Payload & {
|
|
32417
|
+
__typename?: 'ConfluenceUpdateModeChangePayload';
|
|
32418
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32419
|
+
success: Scalars['Boolean']['output'];
|
|
32420
|
+
};
|
|
32198
32421
|
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
32199
32422
|
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
32200
32423
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -33964,6 +34187,7 @@ export declare type ConvoAiSkill = {
|
|
|
33964
34187
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
33965
34188
|
id: Scalars['ID']['output'];
|
|
33966
34189
|
integrationKeys: Array<Scalars['String']['output']>;
|
|
34190
|
+
integrations: Array<ConvoAiSkillIntegration>;
|
|
33967
34191
|
name: Scalars['String']['output'];
|
|
33968
34192
|
slashCommand?: Maybe<Scalars['String']['output']>;
|
|
33969
34193
|
source: ConvoAiSkillSource;
|
|
@@ -33975,6 +34199,13 @@ export declare type ConvoAiSkillEdge = {
|
|
|
33975
34199
|
cursor: Scalars['String']['output'];
|
|
33976
34200
|
node?: Maybe<ConvoAiSkill>;
|
|
33977
34201
|
};
|
|
34202
|
+
export declare type ConvoAiSkillIntegration = {
|
|
34203
|
+
__typename?: 'ConvoAiSkillIntegration';
|
|
34204
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
34205
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
34206
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
34207
|
+
key: Scalars['String']['output'];
|
|
34208
|
+
};
|
|
33978
34209
|
export declare type ConvoAiSkillListMetadata = {
|
|
33979
34210
|
__typename?: 'ConvoAiSkillListMetadata';
|
|
33980
34211
|
anthropicCount: Scalars['Int']['output'];
|
|
@@ -39566,6 +39797,8 @@ export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
|
39566
39797
|
functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39567
39798
|
kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39568
39799
|
kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39800
|
+
llmInput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39801
|
+
llmOutput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39569
39802
|
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39570
39803
|
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39571
39804
|
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
@@ -39756,6 +39989,8 @@ export declare enum DevConsoleResource {
|
|
|
39756
39989
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
39757
39990
|
KvsRead = "KVS_READ",
|
|
39758
39991
|
KvsWrite = "KVS_WRITE",
|
|
39992
|
+
LlmInput = "LLM_INPUT",
|
|
39993
|
+
LlmOutput = "LLM_OUTPUT",
|
|
39759
39994
|
LogsWrite = "LOGS_WRITE",
|
|
39760
39995
|
SqlCompute = "SQL_COMPUTE",
|
|
39761
39996
|
SqlRequests = "SQL_REQUESTS",
|
|
@@ -39773,6 +40008,8 @@ export declare type DevConsoleResourceUsageData = {
|
|
|
39773
40008
|
functionCompute?: Maybe<Array<DevConsoleComputeResourceUsage>>;
|
|
39774
40009
|
kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39775
40010
|
kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
40011
|
+
llmInput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
40012
|
+
llmOutput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39776
40013
|
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39777
40014
|
sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39778
40015
|
sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -41892,10 +42129,13 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
|
|
|
41892
42129
|
success: Scalars['Boolean']['output'];
|
|
41893
42130
|
};
|
|
41894
42131
|
export declare type EditSprintInput = {
|
|
42132
|
+
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
41895
42133
|
boardId: Scalars['ID']['input'];
|
|
41896
42134
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
41897
42135
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
42136
|
+
incompleteCardsDestination?: InputMaybe<SoftwareCardsDestination>;
|
|
41898
42137
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
42138
|
+
rollingSprint?: InputMaybe<RollingSprintSetting>;
|
|
41899
42139
|
sprintId: Scalars['ID']['input'];
|
|
41900
42140
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
41901
42141
|
};
|
|
@@ -41962,7 +42202,14 @@ export declare type EmbeddedMediaTokenV2 = {
|
|
|
41962
42202
|
};
|
|
41963
42203
|
export declare type EmbeddedSmartLink = SmartLink & {
|
|
41964
42204
|
__typename?: 'EmbeddedSmartLink';
|
|
42205
|
+
canView: Scalars['Boolean']['output'];
|
|
42206
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
42207
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
41965
42208
|
layout: Scalars['String']['output'];
|
|
42209
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
42210
|
+
resolved: Scalars['Boolean']['output'];
|
|
42211
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
42212
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
41966
42213
|
title?: Maybe<Scalars['String']['output']>;
|
|
41967
42214
|
url: Scalars['String']['output'];
|
|
41968
42215
|
width: Scalars['Float']['output'];
|
|
@@ -45546,7 +45793,6 @@ export declare type GlobalAppForgeContextToken = {
|
|
|
45546
45793
|
jwt: Scalars['String']['output'];
|
|
45547
45794
|
};
|
|
45548
45795
|
export declare type GlobalAppSignForgeContextTokensInput = {
|
|
45549
|
-
accountId: Scalars['ID']['input'];
|
|
45550
45796
|
contextIds: Array<Scalars['ID']['input']>;
|
|
45551
45797
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
45552
45798
|
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49990,6 +50236,10 @@ export declare type GraphStore = {
|
|
|
49990
50236
|
atlassianUserUpdatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseConnection>;
|
|
49991
50237
|
atlassianUserUpdatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusConnection>;
|
|
49992
50238
|
atlassianUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseConnection>;
|
|
50239
|
+
benefitItemHasWork?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkConnection>;
|
|
50240
|
+
benefitItemHasWorkBatch?: Maybe<GraphStoreBatchBenefitItemHasWorkConnection>;
|
|
50241
|
+
benefitItemHasWorkInverse?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseConnection>;
|
|
50242
|
+
benefitItemHasWorkInverseBatch?: Maybe<GraphStoreBatchBenefitItemHasWorkConnection>;
|
|
49993
50243
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
49994
50244
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
49995
50245
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -50058,6 +50308,10 @@ export declare type GraphStore = {
|
|
|
50058
50308
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
50059
50309
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
50060
50310
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
50311
|
+
costItemHasWork?: Maybe<GraphStoreSimplifiedCostItemHasWorkConnection>;
|
|
50312
|
+
costItemHasWorkBatch?: Maybe<GraphStoreBatchCostItemHasWorkConnection>;
|
|
50313
|
+
costItemHasWorkInverse?: Maybe<GraphStoreSimplifiedCostItemHasWorkInverseConnection>;
|
|
50314
|
+
costItemHasWorkInverseBatch?: Maybe<GraphStoreBatchCostItemHasWorkConnection>;
|
|
50061
50315
|
csmCustomerHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection>;
|
|
50062
50316
|
csmCustomerHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection>;
|
|
50063
50317
|
csmOrganizationHasCsmCustomer?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerConnection>;
|
|
@@ -50115,6 +50369,8 @@ export declare type GraphStore = {
|
|
|
50115
50369
|
externalCaseHasExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalCustomerOrgInverseConnection>;
|
|
50116
50370
|
externalCaseHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalWorkItemConnection>;
|
|
50117
50371
|
externalCaseHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseConnection>;
|
|
50372
|
+
externalConversationLinksExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection>;
|
|
50373
|
+
externalConversationLinksExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection>;
|
|
50118
50374
|
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
50119
50375
|
externalCustomerContactHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection>;
|
|
50120
50376
|
externalCustomerContactHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemConnection>;
|
|
@@ -52050,6 +52306,36 @@ export declare type GraphStoreAtlassianUserUpdatedExternalTestStatusInverseArgs
|
|
|
52050
52306
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52051
52307
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestStatusSortInput>;
|
|
52052
52308
|
};
|
|
52309
|
+
export declare type GraphStoreBenefitItemHasWorkArgs = {
|
|
52310
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52311
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52312
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52313
|
+
id: Scalars['ID']['input'];
|
|
52314
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52315
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52316
|
+
};
|
|
52317
|
+
export declare type GraphStoreBenefitItemHasWorkBatchArgs = {
|
|
52318
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52319
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52320
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52321
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52322
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52323
|
+
};
|
|
52324
|
+
export declare type GraphStoreBenefitItemHasWorkInverseArgs = {
|
|
52325
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52326
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52327
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52328
|
+
id: Scalars['ID']['input'];
|
|
52329
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52330
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52331
|
+
};
|
|
52332
|
+
export declare type GraphStoreBenefitItemHasWorkInverseBatchArgs = {
|
|
52333
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52334
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52335
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52336
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52337
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52338
|
+
};
|
|
52053
52339
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
52054
52340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52055
52341
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52572,6 +52858,36 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
52572
52858
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52573
52859
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
52574
52860
|
};
|
|
52861
|
+
export declare type GraphStoreCostItemHasWorkArgs = {
|
|
52862
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52863
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52864
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52865
|
+
id: Scalars['ID']['input'];
|
|
52866
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52867
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52868
|
+
};
|
|
52869
|
+
export declare type GraphStoreCostItemHasWorkBatchArgs = {
|
|
52870
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52871
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52872
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52873
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52874
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52875
|
+
};
|
|
52876
|
+
export declare type GraphStoreCostItemHasWorkInverseArgs = {
|
|
52877
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52878
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52880
|
+
id: Scalars['ID']['input'];
|
|
52881
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52882
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52883
|
+
};
|
|
52884
|
+
export declare type GraphStoreCostItemHasWorkInverseBatchArgs = {
|
|
52885
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52886
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52887
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52888
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52889
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52890
|
+
};
|
|
52575
52891
|
export declare type GraphStoreCsmCustomerHasJiraWorkItemArgs = {
|
|
52576
52892
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52577
52893
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53025,6 +53341,22 @@ export declare type GraphStoreExternalCaseHasExternalWorkItemInverseArgs = {
|
|
|
53025
53341
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53026
53342
|
sort?: InputMaybe<GraphStoreExternalCaseHasExternalWorkItemSortInput>;
|
|
53027
53343
|
};
|
|
53344
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventArgs = {
|
|
53345
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53346
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53348
|
+
id: Scalars['ID']['input'];
|
|
53349
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53350
|
+
sort?: InputMaybe<GraphStoreExternalConversationLinksExternalCalendarEventSortInput>;
|
|
53351
|
+
};
|
|
53352
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventInverseArgs = {
|
|
53353
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53354
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53356
|
+
id: Scalars['ID']['input'];
|
|
53357
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53358
|
+
sort?: InputMaybe<GraphStoreExternalConversationLinksExternalCalendarEventSortInput>;
|
|
53359
|
+
};
|
|
53028
53360
|
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventArgs = {
|
|
53029
53361
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53030
53362
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60060,6 +60392,47 @@ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode =
|
|
|
60060
60392
|
id: Scalars['ID']['output'];
|
|
60061
60393
|
};
|
|
60062
60394
|
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
60395
|
+
export declare type GraphStoreBatchBenefitItemHasWorkConnection = HasPageInfo & {
|
|
60396
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkConnection';
|
|
60397
|
+
edges: Array<Maybe<GraphStoreBatchBenefitItemHasWorkEdge>>;
|
|
60398
|
+
nodes: Array<Maybe<GraphStoreBatchBenefitItemHasWorkNode>>;
|
|
60399
|
+
pageInfo: PageInfo;
|
|
60400
|
+
};
|
|
60401
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEdge = {
|
|
60402
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkEdge';
|
|
60403
|
+
node: GraphStoreBatchBenefitItemHasWorkInnerConnection;
|
|
60404
|
+
};
|
|
60405
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEndNode = {
|
|
60406
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkEndNode';
|
|
60407
|
+
data?: Maybe<GraphStoreBatchBenefitItemHasWorkEndUnion>;
|
|
60408
|
+
id: Scalars['ID']['output'];
|
|
60409
|
+
};
|
|
60410
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
60411
|
+
export declare type GraphStoreBatchBenefitItemHasWorkInnerConnection = {
|
|
60412
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkInnerConnection';
|
|
60413
|
+
edges: Array<Maybe<GraphStoreBatchBenefitItemHasWorkInnerEdge>>;
|
|
60414
|
+
nodes: Array<Maybe<GraphStoreBatchBenefitItemHasWorkNode>>;
|
|
60415
|
+
requestedId: Scalars['ID']['output'];
|
|
60416
|
+
};
|
|
60417
|
+
export declare type GraphStoreBatchBenefitItemHasWorkInnerEdge = {
|
|
60418
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkInnerEdge';
|
|
60419
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60420
|
+
node: GraphStoreBatchBenefitItemHasWorkNode;
|
|
60421
|
+
};
|
|
60422
|
+
export declare type GraphStoreBatchBenefitItemHasWorkNode = Node & {
|
|
60423
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkNode';
|
|
60424
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60425
|
+
from: GraphStoreBatchBenefitItemHasWorkStartNode;
|
|
60426
|
+
id: Scalars['ID']['output'];
|
|
60427
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60428
|
+
to: GraphStoreBatchBenefitItemHasWorkEndNode;
|
|
60429
|
+
};
|
|
60430
|
+
export declare type GraphStoreBatchBenefitItemHasWorkStartNode = {
|
|
60431
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkStartNode';
|
|
60432
|
+
data?: Maybe<GraphStoreBatchBenefitItemHasWorkStartUnion>;
|
|
60433
|
+
id: Scalars['ID']['output'];
|
|
60434
|
+
};
|
|
60435
|
+
export declare type GraphStoreBatchBenefitItemHasWorkStartUnion = MercuryBenefitItem;
|
|
60063
60436
|
export declare type GraphStoreBatchChangeProposalHasAtlasGoalConnection = HasPageInfo & {
|
|
60064
60437
|
__typename?: 'GraphStoreBatchChangeProposalHasAtlasGoalConnection';
|
|
60065
60438
|
edges: Array<Maybe<GraphStoreBatchChangeProposalHasAtlasGoalEdge>>;
|
|
@@ -60183,6 +60556,47 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
60183
60556
|
id: Scalars['ID']['output'];
|
|
60184
60557
|
};
|
|
60185
60558
|
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;
|
|
60559
|
+
export declare type GraphStoreBatchCostItemHasWorkConnection = HasPageInfo & {
|
|
60560
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkConnection';
|
|
60561
|
+
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkEdge>>;
|
|
60562
|
+
nodes: Array<Maybe<GraphStoreBatchCostItemHasWorkNode>>;
|
|
60563
|
+
pageInfo: PageInfo;
|
|
60564
|
+
};
|
|
60565
|
+
export declare type GraphStoreBatchCostItemHasWorkEdge = {
|
|
60566
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkEdge';
|
|
60567
|
+
node: GraphStoreBatchCostItemHasWorkInnerConnection;
|
|
60568
|
+
};
|
|
60569
|
+
export declare type GraphStoreBatchCostItemHasWorkEndNode = {
|
|
60570
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkEndNode';
|
|
60571
|
+
data?: Maybe<GraphStoreBatchCostItemHasWorkEndUnion>;
|
|
60572
|
+
id: Scalars['ID']['output'];
|
|
60573
|
+
};
|
|
60574
|
+
export declare type GraphStoreBatchCostItemHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
60575
|
+
export declare type GraphStoreBatchCostItemHasWorkInnerConnection = {
|
|
60576
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkInnerConnection';
|
|
60577
|
+
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkInnerEdge>>;
|
|
60578
|
+
nodes: Array<Maybe<GraphStoreBatchCostItemHasWorkNode>>;
|
|
60579
|
+
requestedId: Scalars['ID']['output'];
|
|
60580
|
+
};
|
|
60581
|
+
export declare type GraphStoreBatchCostItemHasWorkInnerEdge = {
|
|
60582
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkInnerEdge';
|
|
60583
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60584
|
+
node: GraphStoreBatchCostItemHasWorkNode;
|
|
60585
|
+
};
|
|
60586
|
+
export declare type GraphStoreBatchCostItemHasWorkNode = Node & {
|
|
60587
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkNode';
|
|
60588
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60589
|
+
from: GraphStoreBatchCostItemHasWorkStartNode;
|
|
60590
|
+
id: Scalars['ID']['output'];
|
|
60591
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60592
|
+
to: GraphStoreBatchCostItemHasWorkEndNode;
|
|
60593
|
+
};
|
|
60594
|
+
export declare type GraphStoreBatchCostItemHasWorkStartNode = {
|
|
60595
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkStartNode';
|
|
60596
|
+
data?: Maybe<GraphStoreBatchCostItemHasWorkStartUnion>;
|
|
60597
|
+
id: Scalars['ID']['output'];
|
|
60598
|
+
};
|
|
60599
|
+
export declare type GraphStoreBatchCostItemHasWorkStartUnion = MercuryCostItem;
|
|
60186
60600
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
60187
60601
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
60188
60602
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -61481,6 +61895,9 @@ export declare type GraphStoreBatchUserViewedProjectUpdateStartNode = {
|
|
|
61481
61895
|
id: Scalars['ID']['output'];
|
|
61482
61896
|
};
|
|
61483
61897
|
export declare type GraphStoreBatchUserViewedProjectUpdateStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
61898
|
+
export declare type GraphStoreBenefitItemHasWorkSortInput = {
|
|
61899
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61900
|
+
};
|
|
61484
61901
|
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
61485
61902
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61486
61903
|
};
|
|
@@ -61568,6 +61985,9 @@ export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
|
61568
61985
|
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
61569
61986
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61570
61987
|
};
|
|
61988
|
+
export declare type GraphStoreCostItemHasWorkSortInput = {
|
|
61989
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61990
|
+
};
|
|
61571
61991
|
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput = {
|
|
61572
61992
|
category?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput>;
|
|
61573
61993
|
};
|
|
@@ -62909,6 +63329,9 @@ export declare type GraphStoreExternalCaseHasExternalCustomerOrgSortInput = {
|
|
|
62909
63329
|
export declare type GraphStoreExternalCaseHasExternalWorkItemSortInput = {
|
|
62910
63330
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
62911
63331
|
};
|
|
63332
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventSortInput = {
|
|
63333
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63334
|
+
};
|
|
62912
63335
|
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventSortInput = {
|
|
62913
63336
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
62914
63337
|
};
|
|
@@ -69561,6 +69984,34 @@ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusIn
|
|
|
69561
69984
|
};
|
|
69562
69985
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
69563
69986
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusUnion = ExternalTestStatus;
|
|
69987
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkConnection = HasPageInfo & {
|
|
69988
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkConnection';
|
|
69989
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBenefitItemHasWorkEdge>>>;
|
|
69990
|
+
pageInfo: PageInfo;
|
|
69991
|
+
};
|
|
69992
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkEdge = {
|
|
69993
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkEdge';
|
|
69994
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69995
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69996
|
+
id: Scalars['ID']['output'];
|
|
69997
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69998
|
+
node?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkUnion>;
|
|
69999
|
+
};
|
|
70000
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseConnection = HasPageInfo & {
|
|
70001
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkInverseConnection';
|
|
70002
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseEdge>>>;
|
|
70003
|
+
pageInfo: PageInfo;
|
|
70004
|
+
};
|
|
70005
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseEdge = {
|
|
70006
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkInverseEdge';
|
|
70007
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70008
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70009
|
+
id: Scalars['ID']['output'];
|
|
70010
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70011
|
+
node?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseUnion>;
|
|
70012
|
+
};
|
|
70013
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseUnion = MercuryBenefitItem;
|
|
70014
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
69564
70015
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
69565
70016
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
69566
70017
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -70321,6 +70772,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
70321
70772
|
};
|
|
70322
70773
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
70323
70774
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
70775
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkConnection = HasPageInfo & {
|
|
70776
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkConnection';
|
|
70777
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCostItemHasWorkEdge>>>;
|
|
70778
|
+
pageInfo: PageInfo;
|
|
70779
|
+
};
|
|
70780
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkEdge = {
|
|
70781
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkEdge';
|
|
70782
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70783
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70784
|
+
id: Scalars['ID']['output'];
|
|
70785
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70786
|
+
node?: Maybe<GraphStoreSimplifiedCostItemHasWorkUnion>;
|
|
70787
|
+
};
|
|
70788
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseConnection = HasPageInfo & {
|
|
70789
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkInverseConnection';
|
|
70790
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCostItemHasWorkInverseEdge>>>;
|
|
70791
|
+
pageInfo: PageInfo;
|
|
70792
|
+
};
|
|
70793
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseEdge = {
|
|
70794
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkInverseEdge';
|
|
70795
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70796
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70797
|
+
id: Scalars['ID']['output'];
|
|
70798
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70799
|
+
node?: Maybe<GraphStoreSimplifiedCostItemHasWorkInverseUnion>;
|
|
70800
|
+
};
|
|
70801
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseUnion = MercuryCostItem;
|
|
70802
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
70324
70803
|
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection = HasPageInfo & {
|
|
70325
70804
|
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection';
|
|
70326
70805
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemEdge>>>;
|
|
@@ -71077,6 +71556,34 @@ export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseEd
|
|
|
71077
71556
|
};
|
|
71078
71557
|
export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseUnion = ExternalCase;
|
|
71079
71558
|
export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemUnion = ExternalWorkItem;
|
|
71559
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection = HasPageInfo & {
|
|
71560
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection';
|
|
71561
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge>>>;
|
|
71562
|
+
pageInfo: PageInfo;
|
|
71563
|
+
};
|
|
71564
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge = {
|
|
71565
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge';
|
|
71566
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71567
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71568
|
+
id: Scalars['ID']['output'];
|
|
71569
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71570
|
+
node?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventUnion>;
|
|
71571
|
+
};
|
|
71572
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
71573
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection';
|
|
71574
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge>>>;
|
|
71575
|
+
pageInfo: PageInfo;
|
|
71576
|
+
};
|
|
71577
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge = {
|
|
71578
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge';
|
|
71579
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71580
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71581
|
+
id: Scalars['ID']['output'];
|
|
71582
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71583
|
+
node?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseUnion>;
|
|
71584
|
+
};
|
|
71585
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseUnion = ExternalConversation;
|
|
71586
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
71080
71587
|
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection = HasPageInfo & {
|
|
71081
71588
|
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection';
|
|
71082
71589
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventEdge>>>;
|
|
@@ -81552,6 +82059,8 @@ export declare type GraphStoreV2 = {
|
|
|
81552
82059
|
externalCaseHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCaseHasExternalWorkItemInverseConnection>;
|
|
81553
82060
|
externalConversationHasExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageConnection>;
|
|
81554
82061
|
externalConversationHasExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseConnection>;
|
|
82062
|
+
externalConversationLinksExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection>;
|
|
82063
|
+
externalConversationLinksExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection>;
|
|
81555
82064
|
externalConversationMentionsJiraWorkItem?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection>;
|
|
81556
82065
|
externalConversationMentionsJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseConnection>;
|
|
81557
82066
|
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
@@ -81801,8 +82310,12 @@ export declare type GraphStoreV2 = {
|
|
|
81801
82310
|
externalWorkerLinksThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksThirdPartyUserInverseConnection>;
|
|
81802
82311
|
focusAskImpactsWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityConnection>;
|
|
81803
82312
|
focusAskImpactsWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseConnection>;
|
|
82313
|
+
focusBenefitItemHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection>;
|
|
82314
|
+
focusBenefitItemHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection>;
|
|
81804
82315
|
focusChangeProposalHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection>;
|
|
81805
82316
|
focusChangeProposalHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection>;
|
|
82317
|
+
focusCostItemHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection>;
|
|
82318
|
+
focusCostItemHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection>;
|
|
81806
82319
|
focusFocusAreaHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection>;
|
|
81807
82320
|
focusFocusAreaHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalInverseConnection>;
|
|
81808
82321
|
focusFocusAreaHasChildFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasChildFocusFocusAreaConnection>;
|
|
@@ -84435,6 +84948,20 @@ export declare type GraphStoreV2ExternalConversationHasExternalMessageInverseArg
|
|
|
84435
84948
|
id: Scalars['ID']['input'];
|
|
84436
84949
|
sort?: InputMaybe<GraphStoreV2ExternalConversationHasExternalMessageSortInput>;
|
|
84437
84950
|
};
|
|
84951
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventArgs = {
|
|
84952
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84953
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84954
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84955
|
+
id: Scalars['ID']['input'];
|
|
84956
|
+
sort?: InputMaybe<GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput>;
|
|
84957
|
+
};
|
|
84958
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventInverseArgs = {
|
|
84959
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84960
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84961
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84962
|
+
id: Scalars['ID']['input'];
|
|
84963
|
+
sort?: InputMaybe<GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput>;
|
|
84964
|
+
};
|
|
84438
84965
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemArgs = {
|
|
84439
84966
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84440
84967
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86184,6 +86711,20 @@ export declare type GraphStoreV2FocusAskImpactsWorkEntityInverseArgs = {
|
|
|
86184
86711
|
id: Scalars['ID']['input'];
|
|
86185
86712
|
sort?: InputMaybe<GraphStoreV2FocusAskImpactsWorkEntitySortInput>;
|
|
86186
86713
|
};
|
|
86714
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntityArgs = {
|
|
86715
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86716
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86717
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86718
|
+
id: Scalars['ID']['input'];
|
|
86719
|
+
sort?: InputMaybe<GraphStoreV2FocusBenefitItemHasWorkEntitySortInput>;
|
|
86720
|
+
};
|
|
86721
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntityInverseArgs = {
|
|
86722
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86723
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86724
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86725
|
+
id: Scalars['ID']['input'];
|
|
86726
|
+
sort?: InputMaybe<GraphStoreV2FocusBenefitItemHasWorkEntitySortInput>;
|
|
86727
|
+
};
|
|
86187
86728
|
export declare type GraphStoreV2FocusChangeProposalHasWorkEntityArgs = {
|
|
86188
86729
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86189
86730
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86198,6 +86739,20 @@ export declare type GraphStoreV2FocusChangeProposalHasWorkEntityInverseArgs = {
|
|
|
86198
86739
|
id: Scalars['ID']['input'];
|
|
86199
86740
|
sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
|
|
86200
86741
|
};
|
|
86742
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntityArgs = {
|
|
86743
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86744
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86745
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86746
|
+
id: Scalars['ID']['input'];
|
|
86747
|
+
sort?: InputMaybe<GraphStoreV2FocusCostItemHasWorkEntitySortInput>;
|
|
86748
|
+
};
|
|
86749
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntityInverseArgs = {
|
|
86750
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86751
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86752
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86753
|
+
id: Scalars['ID']['input'];
|
|
86754
|
+
sort?: InputMaybe<GraphStoreV2FocusCostItemHasWorkEntitySortInput>;
|
|
86755
|
+
};
|
|
86201
86756
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalArgs = {
|
|
86202
86757
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86203
86758
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89229,6 +89784,9 @@ export declare type GraphStoreV2ExternalCaseHasExternalWorkItemSortInput = {
|
|
|
89229
89784
|
export declare type GraphStoreV2ExternalConversationHasExternalMessageSortInput = {
|
|
89230
89785
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89231
89786
|
};
|
|
89787
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput = {
|
|
89788
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89789
|
+
};
|
|
89232
89790
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput = {
|
|
89233
89791
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89234
89792
|
};
|
|
@@ -89689,9 +90247,15 @@ export declare type GraphStoreV2ExternalWorkerLinksThirdPartyUserSortInput = {
|
|
|
89689
90247
|
export declare type GraphStoreV2FocusAskImpactsWorkEntitySortInput = {
|
|
89690
90248
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89691
90249
|
};
|
|
90250
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntitySortInput = {
|
|
90251
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90252
|
+
};
|
|
89692
90253
|
export declare type GraphStoreV2FocusChangeProposalHasWorkEntitySortInput = {
|
|
89693
90254
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89694
90255
|
};
|
|
90256
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntitySortInput = {
|
|
90257
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90258
|
+
};
|
|
89695
90259
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalSortInput = {
|
|
89696
90260
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89697
90261
|
};
|
|
@@ -96110,6 +96674,34 @@ export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessage
|
|
|
96110
96674
|
};
|
|
96111
96675
|
export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseUnion = ExternalConversation;
|
|
96112
96676
|
export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessageUnion = ExternalMessage;
|
|
96677
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection = HasPageInfo & {
|
|
96678
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection';
|
|
96679
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge>>>;
|
|
96680
|
+
pageInfo: PageInfo;
|
|
96681
|
+
};
|
|
96682
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge = {
|
|
96683
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge';
|
|
96684
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96685
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96686
|
+
id: Scalars['ID']['output'];
|
|
96687
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96688
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventUnion>;
|
|
96689
|
+
};
|
|
96690
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
96691
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection';
|
|
96692
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge>>>;
|
|
96693
|
+
pageInfo: PageInfo;
|
|
96694
|
+
};
|
|
96695
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge = {
|
|
96696
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge';
|
|
96697
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96698
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96699
|
+
id: Scalars['ID']['output'];
|
|
96700
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96701
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseUnion>;
|
|
96702
|
+
};
|
|
96703
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseUnion = ExternalConversation;
|
|
96704
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
96113
96705
|
export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection = HasPageInfo & {
|
|
96114
96706
|
__typename?: 'GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection';
|
|
96115
96707
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemEdge>>>;
|
|
@@ -99628,6 +100220,34 @@ export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseEdge =
|
|
|
99628
100220
|
};
|
|
99629
100221
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseUnion = SpfAsk;
|
|
99630
100222
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
100223
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection = HasPageInfo & {
|
|
100224
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection';
|
|
100225
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge>>>;
|
|
100226
|
+
pageInfo: PageInfo;
|
|
100227
|
+
};
|
|
100228
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge = {
|
|
100229
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge';
|
|
100230
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100231
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100232
|
+
id: Scalars['ID']['output'];
|
|
100233
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100234
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityUnion>;
|
|
100235
|
+
};
|
|
100236
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection = HasPageInfo & {
|
|
100237
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection';
|
|
100238
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge>>>;
|
|
100239
|
+
pageInfo: PageInfo;
|
|
100240
|
+
};
|
|
100241
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge = {
|
|
100242
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge';
|
|
100243
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100244
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100245
|
+
id: Scalars['ID']['output'];
|
|
100246
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100247
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseUnion>;
|
|
100248
|
+
};
|
|
100249
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseUnion = MercuryBenefitItem;
|
|
100250
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99631
100251
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection = HasPageInfo & {
|
|
99632
100252
|
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection';
|
|
99633
100253
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge>>>;
|
|
@@ -99656,6 +100276,34 @@ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInvers
|
|
|
99656
100276
|
};
|
|
99657
100277
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion = MercuryChangeProposal;
|
|
99658
100278
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
100279
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection = HasPageInfo & {
|
|
100280
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection';
|
|
100281
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge>>>;
|
|
100282
|
+
pageInfo: PageInfo;
|
|
100283
|
+
};
|
|
100284
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge = {
|
|
100285
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge';
|
|
100286
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100287
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100288
|
+
id: Scalars['ID']['output'];
|
|
100289
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100290
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityUnion>;
|
|
100291
|
+
};
|
|
100292
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection = HasPageInfo & {
|
|
100293
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection';
|
|
100294
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge>>>;
|
|
100295
|
+
pageInfo: PageInfo;
|
|
100296
|
+
};
|
|
100297
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge = {
|
|
100298
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge';
|
|
100299
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100300
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100301
|
+
id: Scalars['ID']['output'];
|
|
100302
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100303
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseUnion>;
|
|
100304
|
+
};
|
|
100305
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseUnion = MercuryCostItem;
|
|
100306
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99659
100307
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection = HasPageInfo & {
|
|
99660
100308
|
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection';
|
|
99661
100309
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalEdge>>>;
|
|
@@ -105578,6 +106226,7 @@ export declare type HelpLayoutQueryApi = {
|
|
|
105578
106226
|
elements?: Maybe<Array<HelpLayoutElement>>;
|
|
105579
106227
|
layout?: Maybe<HelpLayoutResult>;
|
|
105580
106228
|
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
106229
|
+
layouts?: Maybe<Array<Maybe<HelpLayoutResult>>>;
|
|
105581
106230
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
105582
106231
|
};
|
|
105583
106232
|
export declare type HelpLayoutQueryApiElementsArgs = {
|
|
@@ -105593,6 +106242,9 @@ export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
|
105593
106242
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
105594
106243
|
parentAri: Scalars['ID']['input'];
|
|
105595
106244
|
};
|
|
106245
|
+
export declare type HelpLayoutQueryApiLayoutsArgs = {
|
|
106246
|
+
ids: Array<Scalars['ID']['input']>;
|
|
106247
|
+
};
|
|
105596
106248
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
105597
106249
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
105598
106250
|
parentAri: Scalars['ID']['input'];
|
|
@@ -106039,6 +106691,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
106039
106691
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
106040
106692
|
kbCategories?: Maybe<HelpObjectStoreKbCategoriesResult>;
|
|
106041
106693
|
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
106694
|
+
portals?: Maybe<Array<Maybe<HelpObjectStorePortalResult>>>;
|
|
106042
106695
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
106043
106696
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
106044
106697
|
suggestedRequestTypes?: Maybe<HelpObjectStoreSuggestedRequestTypesResult>;
|
|
@@ -106062,6 +106715,9 @@ export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
|
106062
106715
|
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
106063
106716
|
input: HelpObjectStoreProductEntityInput;
|
|
106064
106717
|
};
|
|
106718
|
+
export declare type HelpObjectStoreQueryApiPortalsArgs = {
|
|
106719
|
+
ids: Array<Scalars['ID']['input']>;
|
|
106720
|
+
};
|
|
106065
106721
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
106066
106722
|
ids: Array<Scalars['ID']['input']>;
|
|
106067
106723
|
};
|
|
@@ -106647,6 +107303,13 @@ export declare type InlineCommentResolveProperties = {
|
|
|
106647
107303
|
};
|
|
106648
107304
|
export declare type InlineSmartLink = SmartLink & {
|
|
106649
107305
|
__typename?: 'InlineSmartLink';
|
|
107306
|
+
canView: Scalars['Boolean']['output'];
|
|
107307
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
107308
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
107309
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
107310
|
+
resolved: Scalars['Boolean']['output'];
|
|
107311
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
107312
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
106650
107313
|
title?: Maybe<Scalars['String']['output']>;
|
|
106651
107314
|
url: Scalars['String']['output'];
|
|
106652
107315
|
};
|
|
@@ -107316,6 +107979,13 @@ export declare type IssueDevOpsTestSummary = {
|
|
|
107316
107979
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
107317
107980
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
107318
107981
|
};
|
|
107982
|
+
export declare type IssueParentTypeConfig = {
|
|
107983
|
+
__typename?: 'IssueParentTypeConfig';
|
|
107984
|
+
hierarchyLevelType?: Maybe<Scalars['CardTypeHierarchyLevelType']['output']>;
|
|
107985
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
107986
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
107987
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
107988
|
+
};
|
|
107319
107989
|
export declare type JiraAdf = {
|
|
107320
107990
|
__typename?: 'JiraADF';
|
|
107321
107991
|
convertedPlainText?: Maybe<JiraAdfToConvertedPlainText>;
|
|
@@ -107646,6 +108316,12 @@ export declare type JiraAffectedServicesInput = {
|
|
|
107646
108316
|
export declare type JiraAfterCustomFieldDefaultContextOptionPositionInput = {
|
|
107647
108317
|
relativeToOption: JiraCustomFieldDefaultContextOptionReference;
|
|
107648
108318
|
};
|
|
108319
|
+
export declare type JiraAgent = {
|
|
108320
|
+
__typename?: 'JiraAgent';
|
|
108321
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
108322
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
108323
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
108324
|
+
};
|
|
107649
108325
|
export declare type JiraAgentAssignability = {
|
|
107650
108326
|
__typename?: 'JiraAgentAssignability';
|
|
107651
108327
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -107663,6 +108339,11 @@ export declare enum JiraAgentCreatorType {
|
|
|
107663
108339
|
System = "SYSTEM",
|
|
107664
108340
|
ThirdParty = "THIRD_PARTY"
|
|
107665
108341
|
}
|
|
108342
|
+
export declare type JiraAgentSessionCreateEvent = {
|
|
108343
|
+
__typename?: 'JiraAgentSessionCreateEvent';
|
|
108344
|
+
agent?: Maybe<JiraAgent>;
|
|
108345
|
+
conversationId: Scalars['String']['output'];
|
|
108346
|
+
};
|
|
107666
108347
|
export declare type JiraAgenticUser = JiraActor & {
|
|
107667
108348
|
__typename?: 'JiraAgenticUser';
|
|
107668
108349
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -109473,6 +110154,66 @@ export declare type JiraBaseCustomFieldDefaultContextOptionPositionInput = {
|
|
|
109473
110154
|
top?: InputMaybe<JiraTopCustomFieldDefaultContextOptionPositionInput>;
|
|
109474
110155
|
topChild?: InputMaybe<JiraTopChildCustomFieldDefaultContextOptionPositionInput>;
|
|
109475
110156
|
};
|
|
110157
|
+
export declare type JiraBaseTimelineView = {
|
|
110158
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
110159
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
110160
|
+
error?: Maybe<QueryError>;
|
|
110161
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
110162
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
110163
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
110164
|
+
id: Scalars['ID']['output'];
|
|
110165
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
110166
|
+
isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
110167
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
110168
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
110169
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
110170
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
110171
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
110172
|
+
timelineProjectSettings?: Maybe<JiraTimelineProjectSettings>;
|
|
110173
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
110174
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
110175
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
110176
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
110177
|
+
};
|
|
110178
|
+
export declare type JiraBaseTimelineViewConditionalFormattingRulesArgs = {
|
|
110179
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110180
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110181
|
+
};
|
|
110182
|
+
export declare type JiraBaseTimelineViewFieldSetsArgs = {
|
|
110183
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110184
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
110185
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
110186
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110187
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110188
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110189
|
+
};
|
|
110190
|
+
export declare type JiraBaseTimelineViewHasDefaultFieldSetsArgs = {
|
|
110191
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110192
|
+
};
|
|
110193
|
+
export declare type JiraBaseTimelineViewIsTimelineViewConfigModifiedArgs = {
|
|
110194
|
+
timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
|
|
110195
|
+
};
|
|
110196
|
+
export declare type JiraBaseTimelineViewIsViewConfigModifiedArgs = {
|
|
110197
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
110198
|
+
};
|
|
110199
|
+
export declare type JiraBaseTimelineViewTimelineProjectSettingsArgs = {
|
|
110200
|
+
input?: InputMaybe<JiraTimelineProjectOrBoardInput>;
|
|
110201
|
+
};
|
|
110202
|
+
export declare type JiraBaseTimelineViewTimelineSettingsArgs = {
|
|
110203
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
110204
|
+
timelineStaticViewInput?: InputMaybe<JiraTimelineStaticViewInput>;
|
|
110205
|
+
};
|
|
110206
|
+
export declare type JiraBaseTimelineViewValidateJqlArgs = {
|
|
110207
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
110208
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
110209
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110210
|
+
};
|
|
110211
|
+
export declare type JiraBaseTimelineViewViewSettingsArgs = {
|
|
110212
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
110213
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
110214
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
110215
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
110216
|
+
};
|
|
109476
110217
|
export declare enum JiraBatchWindowPreference {
|
|
109477
110218
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
109478
110219
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -109521,6 +110262,7 @@ export declare type JiraBoard = Node & {
|
|
|
109521
110262
|
boardType?: Maybe<JiraBoardType>;
|
|
109522
110263
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
109523
110264
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
110265
|
+
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
109524
110266
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
109525
110267
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
109526
110268
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -109529,6 +110271,12 @@ export declare type JiraBoard = Node & {
|
|
|
109529
110271
|
name?: Maybe<Scalars['String']['output']>;
|
|
109530
110272
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
109531
110273
|
};
|
|
110274
|
+
export declare type JiraBoardCustomFiltersArgs = {
|
|
110275
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110276
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
110277
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110278
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110279
|
+
};
|
|
109532
110280
|
export declare type JiraBoardReportCategoriesArgs = {
|
|
109533
110281
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
109534
110282
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -109825,6 +110573,7 @@ export declare type JiraBoardViewInput = {
|
|
|
109825
110573
|
export declare type JiraBoardViewIssuePositions = {
|
|
109826
110574
|
__typename?: 'JiraBoardViewIssuePositions';
|
|
109827
110575
|
issuesToInsert?: Maybe<Array<JiraBoardViewCellIssuePositionMapping>>;
|
|
110576
|
+
swimlaneIdsToRemove?: Maybe<Array<Scalars['ID']['output']>>;
|
|
109828
110577
|
swimlanesToInsert?: Maybe<Array<JiraBoardViewSwimlanePosition>>;
|
|
109829
110578
|
};
|
|
109830
110579
|
export declare type JiraBoardViewLayout = JiraBoardViewColumnLayout | JiraBoardViewSwimlaneLayout;
|
|
@@ -109861,6 +110610,7 @@ export declare type JiraBoardViewSettingsCardOptionEdge = {
|
|
|
109861
110610
|
node?: Maybe<JiraBoardViewSettingsCardOption>;
|
|
109862
110611
|
};
|
|
109863
110612
|
export declare enum JiraBoardViewSettingsGroupBy {
|
|
110613
|
+
Agents = "AGENTS",
|
|
109864
110614
|
Assignee = "ASSIGNEE",
|
|
109865
110615
|
Epic = "EPIC",
|
|
109866
110616
|
None = "NONE",
|
|
@@ -111294,6 +112044,8 @@ export declare enum JiraCollapsibleSection {
|
|
|
111294
112044
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
111295
112045
|
Description = "DESCRIPTION",
|
|
111296
112046
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
112047
|
+
ProformaForms = "PROFORMA_FORMS",
|
|
112048
|
+
SimilarIssues = "SIMILAR_ISSUES",
|
|
111297
112049
|
UnifiedWorkSection = "UNIFIED_WORK_SECTION"
|
|
111298
112050
|
}
|
|
111299
112051
|
export declare type JiraColor = {
|
|
@@ -114132,8 +114884,10 @@ export declare type JiraFieldSetPreferencesUpdatePayload = Payload & {
|
|
|
114132
114884
|
view?: Maybe<JiraView>;
|
|
114133
114885
|
};
|
|
114134
114886
|
export declare type JiraFieldSetPreferencesUpdatePayloadFieldSetViewArgs = {
|
|
114887
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
114135
114888
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
114136
114889
|
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
114890
|
+
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
114137
114891
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
114138
114892
|
};
|
|
114139
114893
|
export declare type JiraFieldSetView = JiraFieldSetsViewMetadata & Node & {
|
|
@@ -114999,6 +115753,7 @@ export declare type JiraFormulaFieldFixContext = {
|
|
|
114999
115753
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
115000
115754
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115001
115755
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
115756
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115002
115757
|
};
|
|
115003
115758
|
export declare type JiraFormulaFieldFunctionInfo = {
|
|
115004
115759
|
__typename?: 'JiraFormulaFieldFunctionInfo';
|
|
@@ -115065,6 +115820,7 @@ export declare type JiraFormulaFieldSuggestionContext = {
|
|
|
115065
115820
|
naturalLanguagePrompt: Scalars['String']['input'];
|
|
115066
115821
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115067
115822
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
115823
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115068
115824
|
};
|
|
115069
115825
|
export declare type JiraFormulaFieldSupportedFunctions = {
|
|
115070
115826
|
__typename?: 'JiraFormulaFieldSupportedFunctions';
|
|
@@ -115404,7 +116160,7 @@ export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
|
115404
116160
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
115405
116161
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
115406
116162
|
};
|
|
115407
|
-
export declare type JiraGroupedTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
116163
|
+
export declare type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
115408
116164
|
__typename?: 'JiraGroupedTimelineView';
|
|
115409
116165
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
115410
116166
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -117964,6 +118720,7 @@ export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
117964
118720
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
117965
118721
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
117966
118722
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
118723
|
+
lastAppliedFilters?: Maybe<JiraTimelineLastAppliedFilters>;
|
|
117967
118724
|
rangeMode?: Maybe<JiraTimelineViewRangeMode>;
|
|
117968
118725
|
};
|
|
117969
118726
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
@@ -128492,7 +129249,7 @@ export declare type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
|
128492
129249
|
cursor: Scalars['String']['output'];
|
|
128493
129250
|
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
128494
129251
|
};
|
|
128495
|
-
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = {
|
|
129252
|
+
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = Payload & {
|
|
128496
129253
|
__typename?: 'JiraSetAgentSessionIsPlanModeEnabledResponsePayload';
|
|
128497
129254
|
errors?: Maybe<Array<MutationError>>;
|
|
128498
129255
|
isPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129421,6 +130178,7 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
129421
130178
|
export declare type JiraSoftwareCustomFilter = {
|
|
129422
130179
|
__typename?: 'JiraSoftwareCustomFilter';
|
|
129423
130180
|
description?: Maybe<Scalars['String']['output']>;
|
|
130181
|
+
filterId: Scalars['String']['output'];
|
|
129424
130182
|
id: Scalars['ID']['output'];
|
|
129425
130183
|
jql?: Maybe<Scalars['String']['output']>;
|
|
129426
130184
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -129871,6 +130629,7 @@ export declare type JiraSubscription = {
|
|
|
129871
130629
|
__typename?: 'JiraSubscription';
|
|
129872
130630
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
129873
130631
|
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
130632
|
+
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
129874
130633
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
129875
130634
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
129876
130635
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -129919,6 +130678,11 @@ export declare type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
|
129919
130678
|
cloudId: Scalars['ID']['input'];
|
|
129920
130679
|
issueId: Scalars['String']['input'];
|
|
129921
130680
|
};
|
|
130681
|
+
export declare type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
|
|
130682
|
+
accountId: Scalars['String']['input'];
|
|
130683
|
+
cloudId: Scalars['ID']['input'];
|
|
130684
|
+
issueId: Scalars['String']['input'];
|
|
130685
|
+
};
|
|
129922
130686
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
129923
130687
|
cloudId: Scalars['ID']['input'];
|
|
129924
130688
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -130488,6 +131252,12 @@ export declare type JiraTimelineIssueSearchCustomInput = {
|
|
|
130488
131252
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
130489
131253
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130490
131254
|
};
|
|
131255
|
+
export declare type JiraTimelineLastAppliedFilters = {
|
|
131256
|
+
__typename?: 'JiraTimelineLastAppliedFilters';
|
|
131257
|
+
additionalJql?: Maybe<Scalars['String']['output']>;
|
|
131258
|
+
customFilterIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
131259
|
+
quickFilterIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
131260
|
+
};
|
|
130491
131261
|
export declare type JiraTimelineProjectOrBoardInput = {
|
|
130492
131262
|
boardId?: InputMaybe<Scalars['Int']['input']>;
|
|
130493
131263
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130513,7 +131283,7 @@ export declare type JiraTimelineStaticViewInput = {
|
|
|
130513
131283
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130514
131284
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
130515
131285
|
};
|
|
130516
|
-
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
131286
|
+
export declare type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
130517
131287
|
__typename?: 'JiraTimelineView';
|
|
130518
131288
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
130519
131289
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -131649,6 +132419,7 @@ export declare type JiraUserPreferences = {
|
|
|
131649
132419
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
131650
132420
|
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131651
132421
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132422
|
+
isIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131652
132423
|
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131653
132424
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
131654
132425
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131720,6 +132491,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
131720
132491
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
131721
132492
|
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
131722
132493
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132494
|
+
setIsIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131723
132495
|
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
131724
132496
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
131725
132497
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
@@ -131743,6 +132515,9 @@ export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
|
|
|
131743
132515
|
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
131744
132516
|
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
131745
132517
|
};
|
|
132518
|
+
export declare type JiraUserPreferencesMutationSetIsIssueViewWivEnabledArgs = {
|
|
132519
|
+
isWivEnabled: Scalars['Boolean']['input'];
|
|
132520
|
+
};
|
|
131746
132521
|
export declare type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
131747
132522
|
isEnabled: Scalars['Boolean']['input'];
|
|
131748
132523
|
};
|
|
@@ -133256,6 +134031,7 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
133256
134031
|
};
|
|
133257
134032
|
export declare type JpdViewsServiceCloneGlobalViewInput = {
|
|
133258
134033
|
id: Scalars['ID']['input'];
|
|
134034
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
133259
134035
|
};
|
|
133260
134036
|
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
133261
134037
|
id: Scalars['ID']['input'];
|
|
@@ -133847,9 +134623,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
133847
134623
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
133848
134624
|
export declare type JsmChannelsFilterConfiguration = {
|
|
133849
134625
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
134626
|
+
evaluationStrategy?: Maybe<JsmChannelsRuleEvaluationStrategy>;
|
|
134627
|
+
jqlRules?: Maybe<Array<JsmChannelsJqlEnablementRule>>;
|
|
133850
134628
|
requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
|
|
133851
134629
|
};
|
|
133852
134630
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
134631
|
+
evaluationStrategy?: InputMaybe<JsmChannelsRuleEvaluationStrategy>;
|
|
134632
|
+
jqlRules?: InputMaybe<Array<JsmChannelsJqlEnablementRuleInput>>;
|
|
133853
134633
|
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
133854
134634
|
};
|
|
133855
134635
|
export declare type JsmChannelsIdentityNowTaskAgentConfiguration = {
|
|
@@ -133858,6 +134638,21 @@ export declare type JsmChannelsIdentityNowTaskAgentConfiguration = {
|
|
|
133858
134638
|
baseUrl: Scalars['String']['output'];
|
|
133859
134639
|
serviceKey: Scalars['String']['output'];
|
|
133860
134640
|
};
|
|
134641
|
+
export declare type JsmChannelsJqlEnablementRule = {
|
|
134642
|
+
__typename?: 'JsmChannelsJqlEnablementRule';
|
|
134643
|
+
id: Scalars['String']['output'];
|
|
134644
|
+
jqlExpression: Scalars['String']['output'];
|
|
134645
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
134646
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
134647
|
+
priority: Scalars['Int']['output'];
|
|
134648
|
+
};
|
|
134649
|
+
export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
134650
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
134651
|
+
jqlExpression: Scalars['String']['input'];
|
|
134652
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
134653
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
134654
|
+
priority: Scalars['Int']['input'];
|
|
134655
|
+
};
|
|
133861
134656
|
export declare type JsmChannelsOktaTaskAgentConfiguration = {
|
|
133862
134657
|
__typename?: 'JsmChannelsOktaTaskAgentConfiguration';
|
|
133863
134658
|
accountId: Scalars['String']['output'];
|
|
@@ -134003,6 +134798,11 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
134003
134798
|
Pending = "PENDING",
|
|
134004
134799
|
Waiting = "WAITING"
|
|
134005
134800
|
}
|
|
134801
|
+
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
134802
|
+
JqlFirst = "JQL_FIRST",
|
|
134803
|
+
JqlOnly = "JQL_ONLY",
|
|
134804
|
+
RequestTypeFirst = "REQUEST_TYPE_FIRST"
|
|
134805
|
+
}
|
|
134006
134806
|
export declare type JsmChannelsServiceAgentResolutionContentSource = {
|
|
134007
134807
|
__typename?: 'JsmChannelsServiceAgentResolutionContentSource';
|
|
134008
134808
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -134038,6 +134838,7 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
134038
134838
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
134039
134839
|
__typename?: 'JsmChannelsStepNode';
|
|
134040
134840
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
134841
|
+
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
134041
134842
|
id: Scalars['ID']['output'];
|
|
134042
134843
|
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
134043
134844
|
nodeDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -134855,6 +135656,10 @@ export declare type JsonContentPropertyEdge = {
|
|
|
134855
135656
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
134856
135657
|
node?: Maybe<JsonContentProperty>;
|
|
134857
135658
|
};
|
|
135659
|
+
export declare type JswApplicationProperties = {
|
|
135660
|
+
__typename?: 'JswApplicationProperties';
|
|
135661
|
+
createStatusIsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
135662
|
+
};
|
|
134858
135663
|
export declare type JswAvailableCardLayoutField = Node & {
|
|
134859
135664
|
__typename?: 'JswAvailableCardLayoutField';
|
|
134860
135665
|
fieldId: Scalars['ID']['output'];
|
|
@@ -134977,6 +135782,11 @@ export declare type JswCustomSwimlaneEdge = {
|
|
|
134977
135782
|
cursor: Scalars['String']['output'];
|
|
134978
135783
|
node?: Maybe<JswCustomSwimlane>;
|
|
134979
135784
|
};
|
|
135785
|
+
export declare type JswGlobalConfig = {
|
|
135786
|
+
__typename?: 'JswGlobalConfig';
|
|
135787
|
+
applicationProperties?: Maybe<JswApplicationProperties>;
|
|
135788
|
+
issueParentTypeConfig?: Maybe<IssueParentTypeConfig>;
|
|
135789
|
+
};
|
|
134980
135790
|
export declare type JswMapOfStringToString = {
|
|
134981
135791
|
__typename?: 'JswMapOfStringToString';
|
|
134982
135792
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -135461,6 +136271,15 @@ export declare type KitsuneOrganizationConnection = KitsuneConnection & {
|
|
|
135461
136271
|
__typename?: 'KitsuneOrganizationConnection';
|
|
135462
136272
|
edges: Array<KitsuneOrganizationEdge>;
|
|
135463
136273
|
pageInfo: PageInfo;
|
|
136274
|
+
totalCount: Scalars['Int']['output'];
|
|
136275
|
+
};
|
|
136276
|
+
export declare enum KitsuneOrganizationDomainAction {
|
|
136277
|
+
Add = "ADD",
|
|
136278
|
+
Remove = "REMOVE"
|
|
136279
|
+
}
|
|
136280
|
+
export declare type KitsuneOrganizationDomainInput = {
|
|
136281
|
+
action: KitsuneOrganizationDomainAction;
|
|
136282
|
+
domainName: Scalars['String']['input'];
|
|
135464
136283
|
};
|
|
135465
136284
|
export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
135466
136285
|
__typename?: 'KitsuneOrganizationEdge';
|
|
@@ -136537,6 +137356,7 @@ export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
|
136537
137356
|
};
|
|
136538
137357
|
export declare type KnowledgeDiscoveryJiraSearchClassification = {
|
|
136539
137358
|
__typename?: 'KnowledgeDiscoveryJiraSearchClassification';
|
|
137359
|
+
pattern?: Maybe<KnowledgeDiscoveryJiraSearchPatternType>;
|
|
136540
137360
|
type?: Maybe<KnowledgeDiscoveryJiraSearchClassificationType>;
|
|
136541
137361
|
};
|
|
136542
137362
|
export declare enum KnowledgeDiscoveryJiraSearchClassificationType {
|
|
@@ -136546,6 +137366,16 @@ export declare enum KnowledgeDiscoveryJiraSearchClassificationType {
|
|
|
136546
137366
|
export declare enum KnowledgeDiscoveryJiraSearchExperience {
|
|
136547
137367
|
QuickFind = "QUICK_FIND"
|
|
136548
137368
|
}
|
|
137369
|
+
export declare enum KnowledgeDiscoveryJiraSearchPatternType {
|
|
137370
|
+
Empty = "EMPTY",
|
|
137371
|
+
ExtendedPhrase = "EXTENDED_PHRASE",
|
|
137372
|
+
JiraNlPattern = "JIRA_NL_PATTERN",
|
|
137373
|
+
Jql = "JQL",
|
|
137374
|
+
NoPattern = "NO_PATTERN",
|
|
137375
|
+
Numeric = "NUMERIC",
|
|
137376
|
+
QuestionPattern = "QUESTION_PATTERN",
|
|
137377
|
+
SingleWord = "SINGLE_WORD"
|
|
137378
|
+
}
|
|
136549
137379
|
export declare type KnowledgeDiscoveryJobTitleIntent = KnowledgeDiscoveryIntent & {
|
|
136550
137380
|
__typename?: 'KnowledgeDiscoveryJobTitleIntent';
|
|
136551
137381
|
classification: KnowledgeDiscoveryQueryClassification;
|
|
@@ -141067,6 +141897,7 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
|
141067
141897
|
product: MarketplaceStoreInstallationTargetProduct;
|
|
141068
141898
|
};
|
|
141069
141899
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
141900
|
+
Bitbucket = "BITBUCKET",
|
|
141070
141901
|
Compass = "COMPASS",
|
|
141071
141902
|
Confluence = "CONFLUENCE",
|
|
141072
141903
|
Jira = "JIRA",
|
|
@@ -141381,7 +142212,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
141381
142212
|
userLocation?: InputMaybe<Scalars['String']['input']>;
|
|
141382
142213
|
};
|
|
141383
142214
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
141384
|
-
|
|
142215
|
+
UnifiedStore = "UNIFIED_STORE"
|
|
141385
142216
|
}
|
|
141386
142217
|
export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
141387
142218
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141889,7 +142720,7 @@ export declare type MarketplaceStoreUpdateAppRequestStatusInput = {
|
|
|
141889
142720
|
appRequestStatus: MarketplaceStoreAppRequestStatus;
|
|
141890
142721
|
cloudId: Scalars['String']['input'];
|
|
141891
142722
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
141892
|
-
edition?: InputMaybe<
|
|
142723
|
+
edition?: InputMaybe<MarketplaceStoreEditionType>;
|
|
141893
142724
|
productId: Scalars['ID']['input'];
|
|
141894
142725
|
productName: Scalars['String']['input'];
|
|
141895
142726
|
};
|
|
@@ -142130,6 +142961,15 @@ export declare type MercuryAddWatcherToFocusAreaPayload = Payload & {
|
|
|
142130
142961
|
errors?: Maybe<Array<MutationError>>;
|
|
142131
142962
|
success: Scalars['Boolean']['output'];
|
|
142132
142963
|
};
|
|
142964
|
+
export declare type MercuryAddWatcherToOrganizationInput = {
|
|
142965
|
+
organizationId: Scalars['ID']['input'];
|
|
142966
|
+
userId: Scalars['ID']['input'];
|
|
142967
|
+
};
|
|
142968
|
+
export declare type MercuryAddWatcherToOrganizationPayload = Payload & {
|
|
142969
|
+
__typename?: 'MercuryAddWatcherToOrganizationPayload';
|
|
142970
|
+
errors?: Maybe<Array<MutationError>>;
|
|
142971
|
+
success: Scalars['Boolean']['output'];
|
|
142972
|
+
};
|
|
142133
142973
|
export declare type MercuryAggregatedBusinessDomainStatusCount = {
|
|
142134
142974
|
__typename?: 'MercuryAggregatedBusinessDomainStatusCount';
|
|
142135
142975
|
children: MercuryBusinessDomainStatusCount;
|
|
@@ -142146,6 +142986,16 @@ export declare type MercuryAggregatedFocusAreaStatusCount = {
|
|
|
142146
142986
|
current: MercuryFocusAreaStatusCount;
|
|
142147
142987
|
subtree: MercuryFocusAreaStatusCount;
|
|
142148
142988
|
};
|
|
142989
|
+
export declare type MercuryAggregatedOrganizationStatusCount = {
|
|
142990
|
+
__typename?: 'MercuryAggregatedOrganizationStatusCount';
|
|
142991
|
+
children: MercuryOrganizationStatusCount;
|
|
142992
|
+
current: MercuryOrganizationStatusCount;
|
|
142993
|
+
subtree: MercuryOrganizationStatusCount;
|
|
142994
|
+
};
|
|
142995
|
+
export declare type MercuryAggregatedOrganizationViewStatusCount = {
|
|
142996
|
+
__typename?: 'MercuryAggregatedOrganizationViewStatusCount';
|
|
142997
|
+
children?: Maybe<MercuryOrganizationStatusCount>;
|
|
142998
|
+
};
|
|
142149
142999
|
export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
142150
143000
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
142151
143001
|
children: MercuryFocusAreaStatusCount;
|
|
@@ -142204,6 +143054,25 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
142204
143054
|
errors?: Maybe<Array<MutationError>>;
|
|
142205
143055
|
success: Scalars['Boolean']['output'];
|
|
142206
143056
|
};
|
|
143057
|
+
export declare type MercuryArchiveOrganizationInput = {
|
|
143058
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143059
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
143060
|
+
id: Scalars['ID']['input'];
|
|
143061
|
+
};
|
|
143062
|
+
export declare type MercuryArchiveOrganizationPayload = Payload & {
|
|
143063
|
+
__typename?: 'MercuryArchiveOrganizationPayload';
|
|
143064
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143065
|
+
success: Scalars['Boolean']['output'];
|
|
143066
|
+
};
|
|
143067
|
+
export declare type MercuryArchiveOrganizationValidationInput = {
|
|
143068
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143069
|
+
id: Scalars['ID']['input'];
|
|
143070
|
+
};
|
|
143071
|
+
export declare type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
143072
|
+
__typename?: 'MercuryArchiveOrganizationValidationPayload';
|
|
143073
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143074
|
+
success: Scalars['Boolean']['output'];
|
|
143075
|
+
};
|
|
142207
143076
|
export declare type MercuryAssignUserAccessToBusinessDomainInput = {
|
|
142208
143077
|
businessDomainAri: Scalars['ID']['input'];
|
|
142209
143078
|
businessDomainUserAccessAssignment?: InputMaybe<Array<InputMaybe<MercuryBusinessDomainUserAccessInput>>>;
|
|
@@ -142224,6 +143093,16 @@ export declare type MercuryAssignUserAccessToFocusAreaPayload = Payload & {
|
|
|
142224
143093
|
focusAreaUserAccessAssignment?: Maybe<Array<Maybe<MercuryFocusAreaUserAccessMutation>>>;
|
|
142225
143094
|
success: Scalars['Boolean']['output'];
|
|
142226
143095
|
};
|
|
143096
|
+
export declare type MercuryAssignUserAccessToOrganizationInput = {
|
|
143097
|
+
organizationAri: Scalars['ID']['input'];
|
|
143098
|
+
organizationUserAccessAssignment?: InputMaybe<Array<InputMaybe<MercuryOrganizationUserAccessInput>>>;
|
|
143099
|
+
};
|
|
143100
|
+
export declare type MercuryAssignUserAccessToOrganizationPayload = Payload & {
|
|
143101
|
+
__typename?: 'MercuryAssignUserAccessToOrganizationPayload';
|
|
143102
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143103
|
+
organizationUserAccessAssignment?: Maybe<Array<Maybe<MercuryOrganizationUserAccessMutation>>>;
|
|
143104
|
+
success: Scalars['Boolean']['output'];
|
|
143105
|
+
};
|
|
142227
143106
|
export declare type MercuryBaseJiraWorkStatusMapping = {
|
|
142228
143107
|
jiraStatus?: Maybe<MercuryJiraStatus>;
|
|
142229
143108
|
jiraStatusCategory?: Maybe<MercuryJiraStatusCategory>;
|
|
@@ -142339,6 +143218,17 @@ export declare type MercuryBulkCreateBusinessDomainTypesPayload = Payload & {
|
|
|
142339
143218
|
errors?: Maybe<Array<MutationError>>;
|
|
142340
143219
|
success: Scalars['Boolean']['output'];
|
|
142341
143220
|
};
|
|
143221
|
+
export declare type MercuryBulkCreateOrganizationTypesInput = {
|
|
143222
|
+
cloudId: Scalars['ID']['input'];
|
|
143223
|
+
names?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
143224
|
+
organizationHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
143225
|
+
};
|
|
143226
|
+
export declare type MercuryBulkCreateOrganizationTypesPayload = Payload & {
|
|
143227
|
+
__typename?: 'MercuryBulkCreateOrganizationTypesPayload';
|
|
143228
|
+
createdOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
143229
|
+
errors?: Maybe<Array<MutationError>>;
|
|
143230
|
+
success: Scalars['Boolean']['output'];
|
|
143231
|
+
};
|
|
142342
143232
|
export declare type MercuryBusinessDomain = Node & {
|
|
142343
143233
|
__typename?: 'MercuryBusinessDomain';
|
|
142344
143234
|
aboutContent: MercuryBusinessDomainAbout;
|
|
@@ -142360,7 +143250,6 @@ export declare type MercuryBusinessDomain = Node & {
|
|
|
142360
143250
|
name: Scalars['String']['output'];
|
|
142361
143251
|
owner?: Maybe<User>;
|
|
142362
143252
|
parent?: Maybe<MercuryBusinessDomain>;
|
|
142363
|
-
rank?: Maybe<Scalars['Int']['output']>;
|
|
142364
143253
|
sharedUsers?: Maybe<MercuryBusinessDomainUserAccessConnection>;
|
|
142365
143254
|
starred: Scalars['Boolean']['output'];
|
|
142366
143255
|
status: MercuryBusinessDomainStatus;
|
|
@@ -142525,22 +143414,6 @@ export declare enum MercuryBusinessDomainPermission {
|
|
|
142525
143414
|
Export = "EXPORT",
|
|
142526
143415
|
ViewFund = "VIEW_FUND"
|
|
142527
143416
|
}
|
|
142528
|
-
export declare type MercuryBusinessDomainRankingValidation = {
|
|
142529
|
-
__typename?: 'MercuryBusinessDomainRankingValidation';
|
|
142530
|
-
isValid: Scalars['Boolean']['output'];
|
|
142531
|
-
validationErrors?: Maybe<Array<MercuryBusinessDomainRankingValidationError>>;
|
|
142532
|
-
};
|
|
142533
|
-
export declare type MercuryBusinessDomainRankingValidationError = {
|
|
142534
|
-
__typename?: 'MercuryBusinessDomainRankingValidationError';
|
|
142535
|
-
businessDomain?: Maybe<MercuryBusinessDomain>;
|
|
142536
|
-
errorCode: MercuryBusinessDomainRankingValidationErrorCode;
|
|
142537
|
-
rankingView?: Maybe<MercuryBusinessDomainView>;
|
|
142538
|
-
};
|
|
142539
|
-
export declare enum MercuryBusinessDomainRankingValidationErrorCode {
|
|
142540
|
-
FaRanked = "FA_RANKED",
|
|
142541
|
-
FaTypeMismatch = "FA_TYPE_MISMATCH",
|
|
142542
|
-
FaVersionMismatch = "FA_VERSION_MISMATCH"
|
|
142543
|
-
}
|
|
142544
143417
|
export declare type MercuryBusinessDomainSort = {
|
|
142545
143418
|
field?: InputMaybe<MercuryBusinessDomainSortField>;
|
|
142546
143419
|
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142553,7 +143426,6 @@ export declare enum MercuryBusinessDomainSortField {
|
|
|
142553
143426
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
142554
143427
|
LastUpdated = "LAST_UPDATED",
|
|
142555
143428
|
Name = "NAME",
|
|
142556
|
-
Rank = "RANK",
|
|
142557
143429
|
Starred = "STARRED",
|
|
142558
143430
|
Status = "STATUS",
|
|
142559
143431
|
TargetDate = "TARGET_DATE",
|
|
@@ -142748,8 +143620,7 @@ export declare enum MercuryBusinessDomainViewSortField {
|
|
|
142748
143620
|
Starred = "STARRED"
|
|
142749
143621
|
}
|
|
142750
143622
|
export declare enum MercuryBusinessDomainViewType {
|
|
142751
|
-
HierarchyView = "HIERARCHY_VIEW"
|
|
142752
|
-
RankingView = "RANKING_VIEW"
|
|
143623
|
+
HierarchyView = "HIERARCHY_VIEW"
|
|
142753
143624
|
}
|
|
142754
143625
|
export declare type MercuryBusinessDomainsMutationApi = {
|
|
142755
143626
|
__typename?: 'MercuryBusinessDomainsMutationApi';
|
|
@@ -142779,7 +143650,6 @@ export declare type MercuryBusinessDomainsMutationApi = {
|
|
|
142779
143650
|
linkBusinessDomainsToBusinessDomainView?: Maybe<MercuryLinkBusinessDomainsToBusinessDomainViewPayload>;
|
|
142780
143651
|
linkGoalsToBusinessDomain?: Maybe<MercuryLinkGoalsToBusinessDomainPayload>;
|
|
142781
143652
|
publishBusinessDomain?: Maybe<MercuryPublishBusinessDomainPayload>;
|
|
142782
|
-
rankBusinessDomainsInView?: Maybe<MercuryRankBusinessDomainsInBusinessDomainViewPayload>;
|
|
142783
143653
|
recreateBusinessDomainViewBusinessDomains?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
142784
143654
|
removeUserAccessToBusinessDomain?: Maybe<MercuryRemoveUserAccessToBusinessDomainPayload>;
|
|
142785
143655
|
removeWatcherFromBusinessDomain?: Maybe<MercuryRemoveWatcherFromBusinessDomainPayload>;
|
|
@@ -142804,7 +143674,6 @@ export declare type MercuryBusinessDomainsMutationApi = {
|
|
|
142804
143674
|
updateBusinessDomainTypeName?: Maybe<MercuryUpdateBusinessDomainTypeNamePayload>;
|
|
142805
143675
|
updateBusinessDomainViewName?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
142806
143676
|
validateBusinessDomainArchival?: Maybe<MercuryArchiveBusinessDomainValidationPayload>;
|
|
142807
|
-
validateBusinessDomainsForRanking?: Maybe<MercuryValidateBusinessDomainsForRankingPayload>;
|
|
142808
143677
|
};
|
|
142809
143678
|
export declare type MercuryBusinessDomainsMutationApiAddBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
142810
143679
|
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
@@ -142884,9 +143753,6 @@ export declare type MercuryBusinessDomainsMutationApiLinkGoalsToBusinessDomainAr
|
|
|
142884
143753
|
export declare type MercuryBusinessDomainsMutationApiPublishBusinessDomainArgs = {
|
|
142885
143754
|
input: MercuryPublishBusinessDomainInput;
|
|
142886
143755
|
};
|
|
142887
|
-
export declare type MercuryBusinessDomainsMutationApiRankBusinessDomainsInViewArgs = {
|
|
142888
|
-
input: MercuryRankBusinessDomainsInBusinessDomainViewInput;
|
|
142889
|
-
};
|
|
142890
143756
|
export declare type MercuryBusinessDomainsMutationApiRecreateBusinessDomainViewBusinessDomainsArgs = {
|
|
142891
143757
|
input: MercuryRecreateBusinessDomainViewBusinessDomainsInput;
|
|
142892
143758
|
};
|
|
@@ -142959,9 +143825,6 @@ export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainViewNam
|
|
|
142959
143825
|
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainArchivalArgs = {
|
|
142960
143826
|
input: MercuryArchiveBusinessDomainValidationInput;
|
|
142961
143827
|
};
|
|
142962
|
-
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainsForRankingArgs = {
|
|
142963
|
-
input: MercuryValidateBusinessDomainsForRankingInput;
|
|
142964
|
-
};
|
|
142965
143828
|
export declare type MercuryBusinessDomainsQueryApi = {
|
|
142966
143829
|
__typename?: 'MercuryBusinessDomainsQueryApi';
|
|
142967
143830
|
aiBusinessDomainListSummary?: Maybe<MercuryBusinessDomainListSummary>;
|
|
@@ -143394,8 +144257,12 @@ export declare type MercuryCommentMutationApiUpdateCommentArgs = {
|
|
|
143394
144257
|
};
|
|
143395
144258
|
export declare type MercuryCommentQueryApi = {
|
|
143396
144259
|
__typename?: 'MercuryCommentQueryApi';
|
|
144260
|
+
commentsByIds?: Maybe<Array<Maybe<MercuryThreadedComment>>>;
|
|
143397
144261
|
commentsByParentId?: Maybe<MercuryThreadedCommentConnection>;
|
|
143398
144262
|
};
|
|
144263
|
+
export declare type MercuryCommentQueryApiCommentsByIdsArgs = {
|
|
144264
|
+
ids: Array<Scalars['ID']['input']>;
|
|
144265
|
+
};
|
|
143399
144266
|
export declare type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
143400
144267
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143401
144268
|
cloudId: Scalars['ID']['input'];
|
|
@@ -143663,8 +144530,10 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
143663
144530
|
booleanField?: InputMaybe<MercuryCreateBooleanCustomFieldDefinitionInput>;
|
|
143664
144531
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
143665
144532
|
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
144533
|
+
multiUserField?: InputMaybe<MercuryCreateMultiUserCustomFieldDefinitionInput>;
|
|
143666
144534
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
143667
144535
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
144536
|
+
singleUserField?: InputMaybe<MercuryCreateSingleUserCustomFieldDefinitionInput>;
|
|
143668
144537
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
143669
144538
|
};
|
|
143670
144539
|
export declare type MercuryCreateCostItemInput = {
|
|
@@ -143806,9 +144675,80 @@ export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
|
143806
144675
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143807
144676
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
143808
144677
|
};
|
|
144678
|
+
export declare type MercuryCreateMultiUserCustomFieldDefinitionInput = {
|
|
144679
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144680
|
+
};
|
|
143809
144681
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
143810
144682
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143811
144683
|
};
|
|
144684
|
+
export declare type MercuryCreateOrganizationCustomFieldDefinitionInput = {
|
|
144685
|
+
cloudId: Scalars['ID']['input'];
|
|
144686
|
+
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
144687
|
+
};
|
|
144688
|
+
export declare type MercuryCreateOrganizationHierarchyInput = {
|
|
144689
|
+
cloudId: Scalars['ID']['input'];
|
|
144690
|
+
hierarchyTypeKey: MercuryOrganizationHierarchyTypeKey;
|
|
144691
|
+
name: Scalars['String']['input'];
|
|
144692
|
+
};
|
|
144693
|
+
export declare type MercuryCreateOrganizationHierarchyPayload = Payload & {
|
|
144694
|
+
__typename?: 'MercuryCreateOrganizationHierarchyPayload';
|
|
144695
|
+
createdOrganizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
144696
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144697
|
+
success: Scalars['Boolean']['output'];
|
|
144698
|
+
};
|
|
144699
|
+
export declare type MercuryCreateOrganizationInput = {
|
|
144700
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144701
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
144702
|
+
name: Scalars['String']['input'];
|
|
144703
|
+
organizationTypeId: Scalars['ID']['input'];
|
|
144704
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
144705
|
+
parentOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
144706
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
144707
|
+
targetDateType?: InputMaybe<MercuryOrganizationTargetDateType>;
|
|
144708
|
+
};
|
|
144709
|
+
export declare type MercuryCreateOrganizationPayload = Payload & {
|
|
144710
|
+
__typename?: 'MercuryCreateOrganizationPayload';
|
|
144711
|
+
createdOrganization?: Maybe<MercuryOrganization>;
|
|
144712
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144713
|
+
success: Scalars['Boolean']['output'];
|
|
144714
|
+
};
|
|
144715
|
+
export declare type MercuryCreateOrganizationStatusUpdateInput = {
|
|
144716
|
+
newTargetDate?: InputMaybe<MercuryOrganizationTargetDateInput>;
|
|
144717
|
+
organizationId: Scalars['ID']['input'];
|
|
144718
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
144719
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
144720
|
+
};
|
|
144721
|
+
export declare type MercuryCreateOrganizationStatusUpdatePayload = Payload & {
|
|
144722
|
+
__typename?: 'MercuryCreateOrganizationStatusUpdatePayload';
|
|
144723
|
+
createdOrganizationUpdateStatus?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
144724
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144725
|
+
success: Scalars['Boolean']['output'];
|
|
144726
|
+
};
|
|
144727
|
+
export declare type MercuryCreateOrganizationTypeInput = {
|
|
144728
|
+
cloudId: Scalars['ID']['input'];
|
|
144729
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
144730
|
+
name: Scalars['String']['input'];
|
|
144731
|
+
organizationHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
144732
|
+
};
|
|
144733
|
+
export declare type MercuryCreateOrganizationTypePayload = Payload & {
|
|
144734
|
+
__typename?: 'MercuryCreateOrganizationTypePayload';
|
|
144735
|
+
createdOrganizationType?: Maybe<MercuryOrganizationType>;
|
|
144736
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144737
|
+
success: Scalars['Boolean']['output'];
|
|
144738
|
+
};
|
|
144739
|
+
export declare type MercuryCreateOrganizationViewOrganizationsInput = {
|
|
144740
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
144741
|
+
name: Scalars['String']['input'];
|
|
144742
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
144743
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
144744
|
+
viewType?: InputMaybe<MercuryOrganizationViewType>;
|
|
144745
|
+
};
|
|
144746
|
+
export declare type MercuryCreateOrganizationViewPayload = Payload & {
|
|
144747
|
+
__typename?: 'MercuryCreateOrganizationViewPayload';
|
|
144748
|
+
createdOrganizationView?: Maybe<MercuryOrganizationView>;
|
|
144749
|
+
errors?: Maybe<Array<MutationError>>;
|
|
144750
|
+
success: Scalars['Boolean']['output'];
|
|
144751
|
+
};
|
|
143812
144752
|
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
143813
144753
|
cloudId: Scalars['ID']['input'];
|
|
143814
144754
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -143852,6 +144792,9 @@ export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
|
143852
144792
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143853
144793
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
143854
144794
|
};
|
|
144795
|
+
export declare type MercuryCreateSingleUserCustomFieldDefinitionInput = {
|
|
144796
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144797
|
+
};
|
|
143855
144798
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
143856
144799
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143857
144800
|
content: Scalars['String']['input'];
|
|
@@ -144279,6 +145222,83 @@ export declare type MercuryDeleteInvestmentCategoryPayload = Payload & {
|
|
|
144279
145222
|
errors?: Maybe<Array<MutationError>>;
|
|
144280
145223
|
success: Scalars['Boolean']['output'];
|
|
144281
145224
|
};
|
|
145225
|
+
export declare type MercuryDeleteOrganizationGoalLinksInput = {
|
|
145226
|
+
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
145227
|
+
organizationAri: Scalars['String']['input'];
|
|
145228
|
+
};
|
|
145229
|
+
export declare type MercuryDeleteOrganizationGoalLinksPayload = Payload & {
|
|
145230
|
+
__typename?: 'MercuryDeleteOrganizationGoalLinksPayload';
|
|
145231
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145232
|
+
success: Scalars['Boolean']['output'];
|
|
145233
|
+
};
|
|
145234
|
+
export declare type MercuryDeleteOrganizationHierarchyInput = {
|
|
145235
|
+
id: Scalars['ID']['input'];
|
|
145236
|
+
};
|
|
145237
|
+
export declare type MercuryDeleteOrganizationHierarchyPayload = Payload & {
|
|
145238
|
+
__typename?: 'MercuryDeleteOrganizationHierarchyPayload';
|
|
145239
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145240
|
+
success: Scalars['Boolean']['output'];
|
|
145241
|
+
};
|
|
145242
|
+
export declare type MercuryDeleteOrganizationInput = {
|
|
145243
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145244
|
+
id: Scalars['ID']['input'];
|
|
145245
|
+
};
|
|
145246
|
+
export declare type MercuryDeleteOrganizationLinkInput = {
|
|
145247
|
+
cloudId: Scalars['ID']['input'];
|
|
145248
|
+
id: Scalars['ID']['input'];
|
|
145249
|
+
organizationLinkAction?: InputMaybe<MercuryOrganizationLinkAction>;
|
|
145250
|
+
};
|
|
145251
|
+
export declare type MercuryDeleteOrganizationLinkPayload = Payload & {
|
|
145252
|
+
__typename?: 'MercuryDeleteOrganizationLinkPayload';
|
|
145253
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145254
|
+
success: Scalars['Boolean']['output'];
|
|
145255
|
+
};
|
|
145256
|
+
export declare type MercuryDeleteOrganizationPayload = Payload & {
|
|
145257
|
+
__typename?: 'MercuryDeleteOrganizationPayload';
|
|
145258
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145259
|
+
success: Scalars['Boolean']['output'];
|
|
145260
|
+
};
|
|
145261
|
+
export declare type MercuryDeleteOrganizationStatusUpdateInput = {
|
|
145262
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145263
|
+
id: Scalars['ID']['input'];
|
|
145264
|
+
};
|
|
145265
|
+
export declare type MercuryDeleteOrganizationStatusUpdatePayload = Payload & {
|
|
145266
|
+
__typename?: 'MercuryDeleteOrganizationStatusUpdatePayload';
|
|
145267
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145268
|
+
success: Scalars['Boolean']['output'];
|
|
145269
|
+
};
|
|
145270
|
+
export declare type MercuryDeleteOrganizationTypeInput = {
|
|
145271
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145272
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145273
|
+
id: Scalars['ID']['input'];
|
|
145274
|
+
};
|
|
145275
|
+
export declare type MercuryDeleteOrganizationTypePayload = Payload & {
|
|
145276
|
+
__typename?: 'MercuryDeleteOrganizationTypePayload';
|
|
145277
|
+
deletedLinks?: Maybe<Array<MercuryOrganizationLink>>;
|
|
145278
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
145279
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145280
|
+
reassignedOrganizations?: Maybe<Array<MercuryOrganization>>;
|
|
145281
|
+
remainingOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
145282
|
+
success: Scalars['Boolean']['output'];
|
|
145283
|
+
};
|
|
145284
|
+
export declare type MercuryDeleteOrganizationViewInput = {
|
|
145285
|
+
id: Scalars['ID']['input'];
|
|
145286
|
+
};
|
|
145287
|
+
export declare type MercuryDeleteOrganizationViewOrganizationLinkInput = {
|
|
145288
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145289
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
145290
|
+
organizationViewId: Scalars['ID']['input'];
|
|
145291
|
+
};
|
|
145292
|
+
export declare type MercuryDeleteOrganizationViewOrganizationLinkPayload = Payload & {
|
|
145293
|
+
__typename?: 'MercuryDeleteOrganizationViewOrganizationLinkPayload';
|
|
145294
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145295
|
+
success: Scalars['Boolean']['output'];
|
|
145296
|
+
};
|
|
145297
|
+
export declare type MercuryDeleteOrganizationViewPayload = Payload & {
|
|
145298
|
+
__typename?: 'MercuryDeleteOrganizationViewPayload';
|
|
145299
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145300
|
+
success: Scalars['Boolean']['output'];
|
|
145301
|
+
};
|
|
144282
145302
|
export declare type MercuryDeletePortfolioFocusAreaLinkInput = {
|
|
144283
145303
|
cloudId: Scalars['ID']['input'];
|
|
144284
145304
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -144580,6 +145600,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
144580
145600
|
name: Scalars['String']['output'];
|
|
144581
145601
|
owner?: Maybe<User>;
|
|
144582
145602
|
parent?: Maybe<MercuryFocusArea>;
|
|
145603
|
+
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
144583
145604
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
144584
145605
|
status: MercuryFocusAreaStatus;
|
|
144585
145606
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
@@ -145267,7 +146288,6 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategoryNameArgs = {
|
|
|
145267
146288
|
input: MercuryUpdateInvestmentCategoryNameInput;
|
|
145268
146289
|
};
|
|
145269
146290
|
export declare enum MercuryFundsPermission {
|
|
145270
|
-
CreateCostItem = "CREATE_COST_ITEM",
|
|
145271
146291
|
EditBaseline = "EDIT_BASELINE",
|
|
145272
146292
|
EditBudget = "EDIT_BUDGET",
|
|
145273
146293
|
EditFundItem = "EDIT_FUND_ITEM",
|
|
@@ -145835,6 +146855,46 @@ export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
|
145835
146855
|
errors?: Maybe<Array<MutationError>>;
|
|
145836
146856
|
success: Scalars['Boolean']['output'];
|
|
145837
146857
|
};
|
|
146858
|
+
export declare type MercuryLinkGoalsToOrganizationInput = {
|
|
146859
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
146860
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
146861
|
+
parentOrganizationId: Scalars['ID']['input'];
|
|
146862
|
+
};
|
|
146863
|
+
export declare type MercuryLinkGoalsToOrganizationPayload = Payload & {
|
|
146864
|
+
__typename?: 'MercuryLinkGoalsToOrganizationPayload';
|
|
146865
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146866
|
+
success: Scalars['Boolean']['output'];
|
|
146867
|
+
};
|
|
146868
|
+
export declare type MercuryLinkOrganizationThirdPartyDocumentPayload = Payload & {
|
|
146869
|
+
__typename?: 'MercuryLinkOrganizationThirdPartyDocumentPayload';
|
|
146870
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146871
|
+
success: Scalars['Boolean']['output'];
|
|
146872
|
+
};
|
|
146873
|
+
export declare type MercuryLinkOrganizationToThirdPartyDocumentInput = {
|
|
146874
|
+
id: Scalars['ID']['input'];
|
|
146875
|
+
thirdPartyDocumentId: Scalars['ID']['input'];
|
|
146876
|
+
};
|
|
146877
|
+
export declare type MercuryLinkOrganizationsToOrganizationInput = {
|
|
146878
|
+
childOrganizationIds: Array<Scalars['ID']['input']>;
|
|
146879
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146880
|
+
organizationLinkAction?: InputMaybe<MercuryOrganizationLinkAction>;
|
|
146881
|
+
parentOrganizationId: Scalars['ID']['input'];
|
|
146882
|
+
};
|
|
146883
|
+
export declare type MercuryLinkOrganizationsToOrganizationPayload = Payload & {
|
|
146884
|
+
__typename?: 'MercuryLinkOrganizationsToOrganizationPayload';
|
|
146885
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146886
|
+
success: Scalars['Boolean']['output'];
|
|
146887
|
+
};
|
|
146888
|
+
export declare type MercuryLinkOrganizationsToOrganizationViewInput = {
|
|
146889
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
146890
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
146891
|
+
organizationViewId: Scalars['ID']['input'];
|
|
146892
|
+
};
|
|
146893
|
+
export declare type MercuryLinkOrganizationsToOrganizationViewPayload = Payload & {
|
|
146894
|
+
__typename?: 'MercuryLinkOrganizationsToOrganizationViewPayload';
|
|
146895
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146896
|
+
success: Scalars['Boolean']['output'];
|
|
146897
|
+
};
|
|
145838
146898
|
export declare type MercuryLinkRiskToFocusAreasInput = {
|
|
145839
146899
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
145840
146900
|
id: Scalars['ID']['input'];
|
|
@@ -146257,7 +147317,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
146257
147317
|
export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
146258
147318
|
__typename?: 'MercuryNormalizedWork';
|
|
146259
147319
|
connectedFocusArea: Scalars['ID']['output'];
|
|
146260
|
-
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
146261
147320
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
146262
147321
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
146263
147322
|
id: Scalars['ID']['output'];
|
|
@@ -146364,6 +147423,698 @@ export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
146364
147423
|
strategicEventId: Scalars['ID']['output'];
|
|
146365
147424
|
success: Scalars['Boolean']['output'];
|
|
146366
147425
|
};
|
|
147426
|
+
export declare type MercuryOrganization = Node & {
|
|
147427
|
+
__typename?: 'MercuryOrganization';
|
|
147428
|
+
aboutContent: MercuryOrganizationAbout;
|
|
147429
|
+
aggregatedOrganizationStatusCount?: Maybe<MercuryAggregatedOrganizationStatusCount>;
|
|
147430
|
+
archived: Scalars['Boolean']['output'];
|
|
147431
|
+
createdDate: Scalars['String']['output'];
|
|
147432
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
147433
|
+
draft: Scalars['Boolean']['output'];
|
|
147434
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
147435
|
+
goalLinks?: Maybe<MercuryOrganizationGoalLinks>;
|
|
147436
|
+
health?: Maybe<MercuryOrganizationHealth>;
|
|
147437
|
+
icon: MercuryOrganizationIcon;
|
|
147438
|
+
id: Scalars['ID']['output'];
|
|
147439
|
+
linkedGoalSummary?: Maybe<MercuryOrganizationLinkedGoalSummary>;
|
|
147440
|
+
linkedWorkSummary?: Maybe<MercuryOrganizationLinkedWorkSummary>;
|
|
147441
|
+
name: Scalars['String']['output'];
|
|
147442
|
+
organizationLinks?: Maybe<MercuryOrganizationLinks>;
|
|
147443
|
+
organizationStatusUpdates?: Maybe<MercuryOrganizationStatusUpdateConnection>;
|
|
147444
|
+
organizationType: MercuryOrganizationType;
|
|
147445
|
+
owner?: Maybe<User>;
|
|
147446
|
+
parent?: Maybe<MercuryOrganization>;
|
|
147447
|
+
sharedUsers?: Maybe<MercuryOrganizationUserAccessConnection>;
|
|
147448
|
+
starred: Scalars['Boolean']['output'];
|
|
147449
|
+
status: MercuryOrganizationStatus;
|
|
147450
|
+
statusTransitions: MercuryOrganizationStatusTransitions;
|
|
147451
|
+
subOrganizations?: Maybe<MercuryOrganizationConnection>;
|
|
147452
|
+
targetDate?: Maybe<MercuryOrganizationTargetDate>;
|
|
147453
|
+
updatedDate: Scalars['String']['output'];
|
|
147454
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
147455
|
+
userPermissions?: Maybe<Array<MercuryOrganizationPermission>>;
|
|
147456
|
+
views?: Maybe<Array<MercuryOrganizationView>>;
|
|
147457
|
+
watchers?: Maybe<MercuryUserConnection>;
|
|
147458
|
+
watching: Scalars['Boolean']['output'];
|
|
147459
|
+
};
|
|
147460
|
+
export declare type MercuryOrganizationOrganizationStatusUpdatesArgs = {
|
|
147461
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147462
|
+
createdAtOrAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
147463
|
+
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
147464
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147465
|
+
};
|
|
147466
|
+
export declare type MercuryOrganizationSharedUsersArgs = {
|
|
147467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147469
|
+
};
|
|
147470
|
+
export declare type MercuryOrganizationSubOrganizationsArgs = {
|
|
147471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147472
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147473
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
147474
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationSort>>>;
|
|
147475
|
+
};
|
|
147476
|
+
export declare type MercuryOrganizationWatchersArgs = {
|
|
147477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147478
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147479
|
+
};
|
|
147480
|
+
export declare type MercuryOrganizationAbout = {
|
|
147481
|
+
__typename?: 'MercuryOrganizationAbout';
|
|
147482
|
+
editorAdfContent?: Maybe<Scalars['String']['output']>;
|
|
147483
|
+
};
|
|
147484
|
+
export declare type MercuryOrganizationConnection = {
|
|
147485
|
+
__typename?: 'MercuryOrganizationConnection';
|
|
147486
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationEdge>>>;
|
|
147487
|
+
pageInfo: PageInfo;
|
|
147488
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147489
|
+
};
|
|
147490
|
+
export declare type MercuryOrganizationCustomFieldDefinitionScope = MercuryCustomFieldDefinitionScope & {
|
|
147491
|
+
__typename?: 'MercuryOrganizationCustomFieldDefinitionScope';
|
|
147492
|
+
entityType: Scalars['String']['output'];
|
|
147493
|
+
};
|
|
147494
|
+
export declare type MercuryOrganizationEdge = {
|
|
147495
|
+
__typename?: 'MercuryOrganizationEdge';
|
|
147496
|
+
cursor: Scalars['String']['output'];
|
|
147497
|
+
node?: Maybe<MercuryOrganization>;
|
|
147498
|
+
};
|
|
147499
|
+
export declare type MercuryOrganizationGoalLink = {
|
|
147500
|
+
__typename?: 'MercuryOrganizationGoalLink';
|
|
147501
|
+
atlasGoalAri: Scalars['String']['output'];
|
|
147502
|
+
atlasGoalId: Scalars['String']['output'];
|
|
147503
|
+
createdBy?: Maybe<User>;
|
|
147504
|
+
createdDate: Scalars['String']['output'];
|
|
147505
|
+
id: Scalars['ID']['output'];
|
|
147506
|
+
parentOrganizationId: Scalars['ID']['output'];
|
|
147507
|
+
};
|
|
147508
|
+
export declare type MercuryOrganizationGoalLinks = {
|
|
147509
|
+
__typename?: 'MercuryOrganizationGoalLinks';
|
|
147510
|
+
links: Array<MercuryOrganizationGoalLink>;
|
|
147511
|
+
};
|
|
147512
|
+
export declare type MercuryOrganizationHealth = {
|
|
147513
|
+
__typename?: 'MercuryOrganizationHealth';
|
|
147514
|
+
color: MercuryOrganizationHealthColor;
|
|
147515
|
+
displayName: Scalars['String']['output'];
|
|
147516
|
+
id: Scalars['ID']['output'];
|
|
147517
|
+
key: Scalars['String']['output'];
|
|
147518
|
+
order: Scalars['Int']['output'];
|
|
147519
|
+
};
|
|
147520
|
+
export declare enum MercuryOrganizationHealthColor {
|
|
147521
|
+
Green = "GREEN",
|
|
147522
|
+
Red = "RED",
|
|
147523
|
+
Yellow = "YELLOW"
|
|
147524
|
+
}
|
|
147525
|
+
export declare type MercuryOrganizationHierarchy = Node & {
|
|
147526
|
+
__typename?: 'MercuryOrganizationHierarchy';
|
|
147527
|
+
hierarchyTypeKey?: Maybe<MercuryOrganizationHierarchyTypeKey>;
|
|
147528
|
+
id: Scalars['ID']['output'];
|
|
147529
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
147530
|
+
name: Scalars['String']['output'];
|
|
147531
|
+
organizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
147532
|
+
};
|
|
147533
|
+
export declare type MercuryOrganizationHierarchyConnection = {
|
|
147534
|
+
__typename?: 'MercuryOrganizationHierarchyConnection';
|
|
147535
|
+
edges?: Maybe<Array<MercuryOrganizationHierarchyEdge>>;
|
|
147536
|
+
pageInfo: PageInfo;
|
|
147537
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147538
|
+
};
|
|
147539
|
+
export declare type MercuryOrganizationHierarchyEdge = {
|
|
147540
|
+
__typename?: 'MercuryOrganizationHierarchyEdge';
|
|
147541
|
+
cursor: Scalars['String']['output'];
|
|
147542
|
+
node?: Maybe<MercuryOrganizationHierarchy>;
|
|
147543
|
+
};
|
|
147544
|
+
export declare type MercuryOrganizationHierarchySort = {
|
|
147545
|
+
field: MercuryOrganizationHierarchySortField;
|
|
147546
|
+
order: SortOrder;
|
|
147547
|
+
};
|
|
147548
|
+
export declare enum MercuryOrganizationHierarchySortField {
|
|
147549
|
+
Name = "NAME"
|
|
147550
|
+
}
|
|
147551
|
+
export declare enum MercuryOrganizationHierarchyTypeKey {
|
|
147552
|
+
Investment = "INVESTMENT",
|
|
147553
|
+
Portfolio = "PORTFOLIO"
|
|
147554
|
+
}
|
|
147555
|
+
export declare type MercuryOrganizationIcon = {
|
|
147556
|
+
__typename?: 'MercuryOrganizationIcon';
|
|
147557
|
+
url: Scalars['String']['output'];
|
|
147558
|
+
};
|
|
147559
|
+
export declare type MercuryOrganizationLink = {
|
|
147560
|
+
__typename?: 'MercuryOrganizationLink';
|
|
147561
|
+
childOrganizationId: Scalars['ID']['output'];
|
|
147562
|
+
createdBy?: Maybe<User>;
|
|
147563
|
+
createdDate: Scalars['String']['output'];
|
|
147564
|
+
id: Scalars['ID']['output'];
|
|
147565
|
+
parentOrganizationId: Scalars['ID']['output'];
|
|
147566
|
+
};
|
|
147567
|
+
export declare enum MercuryOrganizationLinkAction {
|
|
147568
|
+
LinkChildren = "LINK_CHILDREN",
|
|
147569
|
+
LinkParent = "LINK_PARENT",
|
|
147570
|
+
UnlinkChildren = "UNLINK_CHILDREN",
|
|
147571
|
+
UnlinkParent = "UNLINK_PARENT"
|
|
147572
|
+
}
|
|
147573
|
+
export declare type MercuryOrganizationLinkedGoalSummary = {
|
|
147574
|
+
__typename?: 'MercuryOrganizationLinkedGoalSummary';
|
|
147575
|
+
count: Scalars['Int']['output'];
|
|
147576
|
+
countIncludingSubOrganizations?: Maybe<Scalars['Int']['output']>;
|
|
147577
|
+
};
|
|
147578
|
+
export declare type MercuryOrganizationLinkedWorkSummary = {
|
|
147579
|
+
__typename?: 'MercuryOrganizationLinkedWorkSummary';
|
|
147580
|
+
count: Scalars['Int']['output'];
|
|
147581
|
+
countIncludingSubOrganizations?: Maybe<Scalars['Int']['output']>;
|
|
147582
|
+
};
|
|
147583
|
+
export declare type MercuryOrganizationLinks = {
|
|
147584
|
+
__typename?: 'MercuryOrganizationLinks';
|
|
147585
|
+
links: Array<MercuryOrganizationLink>;
|
|
147586
|
+
};
|
|
147587
|
+
export declare type MercuryOrganizationListSummary = {
|
|
147588
|
+
__typename?: 'MercuryOrganizationListSummary';
|
|
147589
|
+
ids: Array<Scalars['ID']['output']>;
|
|
147590
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
147591
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
147592
|
+
};
|
|
147593
|
+
export declare enum MercuryOrganizationPermission {
|
|
147594
|
+
Archive = "ARCHIVE",
|
|
147595
|
+
CreateGoalLink = "CREATE_GOAL_LINK",
|
|
147596
|
+
CreateLink = "CREATE_LINK",
|
|
147597
|
+
CreateUpdate = "CREATE_UPDATE",
|
|
147598
|
+
CreateWorkLink = "CREATE_WORK_LINK",
|
|
147599
|
+
Delete = "DELETE",
|
|
147600
|
+
DeleteGoalLink = "DELETE_GOAL_LINK",
|
|
147601
|
+
DeleteLink = "DELETE_LINK",
|
|
147602
|
+
DeleteUpdate = "DELETE_UPDATE",
|
|
147603
|
+
DeleteWorkLink = "DELETE_WORK_LINK",
|
|
147604
|
+
EditAbout = "EDIT_ABOUT",
|
|
147605
|
+
EditName = "EDIT_NAME",
|
|
147606
|
+
EditOwner = "EDIT_OWNER",
|
|
147607
|
+
EditType = "EDIT_TYPE",
|
|
147608
|
+
Export = "EXPORT",
|
|
147609
|
+
ViewFund = "VIEW_FUND"
|
|
147610
|
+
}
|
|
147611
|
+
export declare type MercuryOrganizationSort = {
|
|
147612
|
+
field?: InputMaybe<MercuryOrganizationSortField>;
|
|
147613
|
+
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
147614
|
+
order: SortOrder;
|
|
147615
|
+
};
|
|
147616
|
+
export declare enum MercuryOrganizationSortField {
|
|
147617
|
+
HasParent = "HAS_PARENT",
|
|
147618
|
+
Health = "HEALTH",
|
|
147619
|
+
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
147620
|
+
LastUpdated = "LAST_UPDATED",
|
|
147621
|
+
Name = "NAME",
|
|
147622
|
+
OrganizationType = "ORGANIZATION_TYPE",
|
|
147623
|
+
Starred = "STARRED",
|
|
147624
|
+
Status = "STATUS",
|
|
147625
|
+
TargetDate = "TARGET_DATE",
|
|
147626
|
+
Watching = "WATCHING"
|
|
147627
|
+
}
|
|
147628
|
+
export declare type MercuryOrganizationStatus = {
|
|
147629
|
+
__typename?: 'MercuryOrganizationStatus';
|
|
147630
|
+
displayName: Scalars['String']['output'];
|
|
147631
|
+
id: Scalars['ID']['output'];
|
|
147632
|
+
key: Scalars['String']['output'];
|
|
147633
|
+
order: Scalars['Int']['output'];
|
|
147634
|
+
};
|
|
147635
|
+
export declare type MercuryOrganizationStatusCount = {
|
|
147636
|
+
__typename?: 'MercuryOrganizationStatusCount';
|
|
147637
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
147638
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
147639
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
147640
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
147641
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
147642
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
147643
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
147644
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
147645
|
+
};
|
|
147646
|
+
export declare type MercuryOrganizationStatusTransition = {
|
|
147647
|
+
__typename?: 'MercuryOrganizationStatusTransition';
|
|
147648
|
+
health?: Maybe<MercuryOrganizationHealth>;
|
|
147649
|
+
id: Scalars['ID']['output'];
|
|
147650
|
+
status: MercuryOrganizationStatus;
|
|
147651
|
+
};
|
|
147652
|
+
export declare type MercuryOrganizationStatusTransitions = {
|
|
147653
|
+
__typename?: 'MercuryOrganizationStatusTransitions';
|
|
147654
|
+
available: Array<MercuryOrganizationStatusTransition>;
|
|
147655
|
+
};
|
|
147656
|
+
export declare type MercuryOrganizationStatusUpdate = Node & {
|
|
147657
|
+
__typename?: 'MercuryOrganizationStatusUpdate';
|
|
147658
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
147659
|
+
comments?: Maybe<MercuryCommentConnection>;
|
|
147660
|
+
createdBy?: Maybe<User>;
|
|
147661
|
+
createdDate: Scalars['String']['output'];
|
|
147662
|
+
id: Scalars['ID']['output'];
|
|
147663
|
+
newHealth?: Maybe<MercuryOrganizationHealth>;
|
|
147664
|
+
newStatus?: Maybe<MercuryOrganizationStatus>;
|
|
147665
|
+
newTargetDate?: Maybe<MercuryTargetDate>;
|
|
147666
|
+
organizationId: Scalars['ID']['output'];
|
|
147667
|
+
previousHealth?: Maybe<MercuryOrganizationHealth>;
|
|
147668
|
+
previousStatus?: Maybe<MercuryOrganizationStatus>;
|
|
147669
|
+
previousTargetDate?: Maybe<MercuryTargetDate>;
|
|
147670
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
147671
|
+
updatedBy?: Maybe<User>;
|
|
147672
|
+
updatedDate: Scalars['String']['output'];
|
|
147673
|
+
uuid: Scalars['ID']['output'];
|
|
147674
|
+
};
|
|
147675
|
+
export declare type MercuryOrganizationStatusUpdateCommentsArgs = {
|
|
147676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
147677
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147678
|
+
};
|
|
147679
|
+
export declare type MercuryOrganizationStatusUpdateConnection = {
|
|
147680
|
+
__typename?: 'MercuryOrganizationStatusUpdateConnection';
|
|
147681
|
+
edges?: Maybe<Array<Maybe<MercuryOrganizationStatusUpdateEdge>>>;
|
|
147682
|
+
pageInfo: PageInfo;
|
|
147683
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147684
|
+
};
|
|
147685
|
+
export declare type MercuryOrganizationStatusUpdateEdge = {
|
|
147686
|
+
__typename?: 'MercuryOrganizationStatusUpdateEdge';
|
|
147687
|
+
cursor: Scalars['String']['output'];
|
|
147688
|
+
node?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
147689
|
+
};
|
|
147690
|
+
export declare type MercuryOrganizationSummary = {
|
|
147691
|
+
__typename?: 'MercuryOrganizationSummary';
|
|
147692
|
+
id: Scalars['ID']['output'];
|
|
147693
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
147694
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
147695
|
+
};
|
|
147696
|
+
export declare enum MercuryOrganizationSummaryType {
|
|
147697
|
+
Goals = "GOALS",
|
|
147698
|
+
Organization = "ORGANIZATION",
|
|
147699
|
+
Work = "WORK"
|
|
147700
|
+
}
|
|
147701
|
+
export declare type MercuryOrganizationTargetDate = {
|
|
147702
|
+
__typename?: 'MercuryOrganizationTargetDate';
|
|
147703
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
147704
|
+
targetDateType?: Maybe<MercuryOrganizationTargetDateType>;
|
|
147705
|
+
};
|
|
147706
|
+
export declare type MercuryOrganizationTargetDateInput = {
|
|
147707
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
147708
|
+
targetDateType?: InputMaybe<MercuryOrganizationTargetDateType>;
|
|
147709
|
+
};
|
|
147710
|
+
export declare enum MercuryOrganizationTargetDateType {
|
|
147711
|
+
Day = "DAY",
|
|
147712
|
+
Month = "MONTH",
|
|
147713
|
+
Quarter = "QUARTER"
|
|
147714
|
+
}
|
|
147715
|
+
export declare type MercuryOrganizationType = {
|
|
147716
|
+
__typename?: 'MercuryOrganizationType';
|
|
147717
|
+
hierarchyLevel: Scalars['Int']['output'];
|
|
147718
|
+
id: Scalars['ID']['output'];
|
|
147719
|
+
name: Scalars['String']['output'];
|
|
147720
|
+
organizationCount?: Maybe<MercuryOrganizationTypeAggregation>;
|
|
147721
|
+
organizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
147722
|
+
};
|
|
147723
|
+
export declare type MercuryOrganizationTypeOrganizationCountArgs = {
|
|
147724
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
147725
|
+
};
|
|
147726
|
+
export declare type MercuryOrganizationTypeAggregation = {
|
|
147727
|
+
__typename?: 'MercuryOrganizationTypeAggregation';
|
|
147728
|
+
totalCount: Scalars['Int']['output'];
|
|
147729
|
+
};
|
|
147730
|
+
export declare type MercuryOrganizationUserAccess = {
|
|
147731
|
+
__typename?: 'MercuryOrganizationUserAccess';
|
|
147732
|
+
accessLevel?: Maybe<MercuryOrganizationUserAccessLevel>;
|
|
147733
|
+
accessReason?: Maybe<MercuryOrganizationUserAccessReason>;
|
|
147734
|
+
following?: Maybe<Scalars['Boolean']['output']>;
|
|
147735
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
147736
|
+
user?: Maybe<User>;
|
|
147737
|
+
};
|
|
147738
|
+
export declare type MercuryOrganizationUserAccessConnection = {
|
|
147739
|
+
__typename?: 'MercuryOrganizationUserAccessConnection';
|
|
147740
|
+
edges?: Maybe<Array<MercuryOrganizationUserAccessEdge>>;
|
|
147741
|
+
pageInfo: PageInfo;
|
|
147742
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147743
|
+
};
|
|
147744
|
+
export declare type MercuryOrganizationUserAccessEdge = {
|
|
147745
|
+
__typename?: 'MercuryOrganizationUserAccessEdge';
|
|
147746
|
+
cursor: Scalars['String']['output'];
|
|
147747
|
+
node?: Maybe<MercuryOrganizationUserAccess>;
|
|
147748
|
+
};
|
|
147749
|
+
export declare type MercuryOrganizationUserAccessInput = {
|
|
147750
|
+
accessLevel?: InputMaybe<MercuryOrganizationUserAccessLevel>;
|
|
147751
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147752
|
+
principalId: Scalars['ID']['input'];
|
|
147753
|
+
};
|
|
147754
|
+
export declare enum MercuryOrganizationUserAccessLevel {
|
|
147755
|
+
Edit = "EDIT",
|
|
147756
|
+
View = "VIEW"
|
|
147757
|
+
}
|
|
147758
|
+
export declare type MercuryOrganizationUserAccessMutation = {
|
|
147759
|
+
__typename?: 'MercuryOrganizationUserAccessMutation';
|
|
147760
|
+
addedAsFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
147761
|
+
userAccess?: Maybe<MercuryOrganizationUserAccess>;
|
|
147762
|
+
};
|
|
147763
|
+
export declare enum MercuryOrganizationUserAccessReason {
|
|
147764
|
+
AccessGranted = "ACCESS_GRANTED",
|
|
147765
|
+
AlreadyHasAccess = "ALREADY_HAS_ACCESS",
|
|
147766
|
+
RequiresAppAccess = "REQUIRES_APP_ACCESS",
|
|
147767
|
+
RequiresNewProductRole = "REQUIRES_NEW_PRODUCT_ROLE",
|
|
147768
|
+
RequiresSiteAccess = "REQUIRES_SITE_ACCESS"
|
|
147769
|
+
}
|
|
147770
|
+
export declare type MercuryOrganizationView = Node & {
|
|
147771
|
+
__typename?: 'MercuryOrganizationView';
|
|
147772
|
+
aggregatedOrganizationStatusCount?: Maybe<MercuryAggregatedOrganizationViewStatusCount>;
|
|
147773
|
+
id: Scalars['ID']['output'];
|
|
147774
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
147775
|
+
linkedOrganizationGoalCount: Scalars['Int']['output'];
|
|
147776
|
+
linkedOrganizationSummary?: Maybe<MercuryOrganizationViewOrganizationSummary>;
|
|
147777
|
+
name: Scalars['String']['output'];
|
|
147778
|
+
owner?: Maybe<User>;
|
|
147779
|
+
starred: Scalars['Boolean']['output'];
|
|
147780
|
+
updatedBy?: Maybe<User>;
|
|
147781
|
+
updatedDate: Scalars['String']['output'];
|
|
147782
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
147783
|
+
uuid?: Maybe<Scalars['ID']['output']>;
|
|
147784
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
147785
|
+
viewType: MercuryOrganizationViewType;
|
|
147786
|
+
};
|
|
147787
|
+
export declare type MercuryOrganizationViewConnection = {
|
|
147788
|
+
__typename?: 'MercuryOrganizationViewConnection';
|
|
147789
|
+
edges?: Maybe<Array<MercuryOrganizationViewEdge>>;
|
|
147790
|
+
pageInfo: PageInfo;
|
|
147791
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147792
|
+
};
|
|
147793
|
+
export declare type MercuryOrganizationViewEdge = {
|
|
147794
|
+
__typename?: 'MercuryOrganizationViewEdge';
|
|
147795
|
+
cursor: Scalars['String']['output'];
|
|
147796
|
+
node: MercuryOrganizationView;
|
|
147797
|
+
};
|
|
147798
|
+
export declare type MercuryOrganizationViewOrganizationSummary = {
|
|
147799
|
+
__typename?: 'MercuryOrganizationViewOrganizationSummary';
|
|
147800
|
+
organizationTypeBreakdown?: Maybe<Array<Maybe<MercuryOrganizationViewOrganizationTypeBreakdown>>>;
|
|
147801
|
+
};
|
|
147802
|
+
export declare type MercuryOrganizationViewOrganizationTypeBreakdown = {
|
|
147803
|
+
__typename?: 'MercuryOrganizationViewOrganizationTypeBreakdown';
|
|
147804
|
+
count: Scalars['Int']['output'];
|
|
147805
|
+
organizationType: MercuryOrganizationType;
|
|
147806
|
+
};
|
|
147807
|
+
export declare type MercuryOrganizationViewSort = {
|
|
147808
|
+
field: MercuryOrganizationViewSortField;
|
|
147809
|
+
order: SortOrder;
|
|
147810
|
+
};
|
|
147811
|
+
export declare enum MercuryOrganizationViewSortField {
|
|
147812
|
+
Name = "NAME",
|
|
147813
|
+
Owner = "OWNER",
|
|
147814
|
+
Starred = "STARRED"
|
|
147815
|
+
}
|
|
147816
|
+
export declare enum MercuryOrganizationViewType {
|
|
147817
|
+
HierarchyView = "HIERARCHY_VIEW"
|
|
147818
|
+
}
|
|
147819
|
+
export declare type MercuryOrganizationsMutationApi = {
|
|
147820
|
+
__typename?: 'MercuryOrganizationsMutationApi';
|
|
147821
|
+
addOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
147822
|
+
addWatcherToOrganization?: Maybe<MercuryAddWatcherToOrganizationPayload>;
|
|
147823
|
+
archiveOrganization?: Maybe<MercuryArchiveOrganizationPayload>;
|
|
147824
|
+
assignUserAccessToOrganization?: Maybe<MercuryAssignUserAccessToOrganizationPayload>;
|
|
147825
|
+
bulkCreateOrganizationTypes?: Maybe<MercuryBulkCreateOrganizationTypesPayload>;
|
|
147826
|
+
createOrganization?: Maybe<MercuryCreateOrganizationPayload>;
|
|
147827
|
+
createOrganizationCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
147828
|
+
createOrganizationHierarchy?: Maybe<MercuryCreateOrganizationHierarchyPayload>;
|
|
147829
|
+
createOrganizationStatusUpdate?: Maybe<MercuryCreateOrganizationStatusUpdatePayload>;
|
|
147830
|
+
createOrganizationType?: Maybe<MercuryCreateOrganizationTypePayload>;
|
|
147831
|
+
createOrganizationViewWithOrganizations?: Maybe<MercuryCreateOrganizationViewPayload>;
|
|
147832
|
+
deleteOrganization?: Maybe<MercuryDeleteOrganizationPayload>;
|
|
147833
|
+
deleteOrganizationCustomFieldDefinition?: Maybe<MercuryDeleteCustomFieldDefinitionPayload>;
|
|
147834
|
+
deleteOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryDeleteCustomFieldDefinitionOptionsPayload>;
|
|
147835
|
+
deleteOrganizationGoalLinks?: Maybe<MercuryDeleteOrganizationGoalLinksPayload>;
|
|
147836
|
+
deleteOrganizationHierarchy?: Maybe<MercuryDeleteOrganizationHierarchyPayload>;
|
|
147837
|
+
deleteOrganizationLink?: Maybe<MercuryDeleteOrganizationLinkPayload>;
|
|
147838
|
+
deleteOrganizationStatusUpdate?: Maybe<MercuryDeleteOrganizationStatusUpdatePayload>;
|
|
147839
|
+
deleteOrganizationType?: Maybe<MercuryDeleteOrganizationTypePayload>;
|
|
147840
|
+
deleteOrganizationView?: Maybe<MercuryDeleteOrganizationViewPayload>;
|
|
147841
|
+
deleteOrganizationViewOrganizationLink?: Maybe<MercuryDeleteOrganizationViewOrganizationLinkPayload>;
|
|
147842
|
+
linkGoalsToOrganization?: Maybe<MercuryLinkGoalsToOrganizationPayload>;
|
|
147843
|
+
linkOrganizationToThirdPartyDocument?: Maybe<MercuryLinkOrganizationThirdPartyDocumentPayload>;
|
|
147844
|
+
linkOrganizationsToOrganization?: Maybe<MercuryLinkOrganizationsToOrganizationPayload>;
|
|
147845
|
+
linkOrganizationsToOrganizationView?: Maybe<MercuryLinkOrganizationsToOrganizationViewPayload>;
|
|
147846
|
+
publishOrganization?: Maybe<MercuryPublishOrganizationPayload>;
|
|
147847
|
+
recreateOrganizationViewOrganizations?: Maybe<MercuryUpdateOrganizationViewPayload>;
|
|
147848
|
+
removeUserAccessToOrganization?: Maybe<MercuryRemoveUserAccessToOrganizationPayload>;
|
|
147849
|
+
removeWatcherFromOrganization?: Maybe<MercuryRemoveWatcherFromOrganizationPayload>;
|
|
147850
|
+
reorderOrganizationCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
147851
|
+
reorderOrganizationTypes?: Maybe<MercuryReorderOrganizationTypesPayload>;
|
|
147852
|
+
setOrganizationCustomFieldValue?: Maybe<MercurySetOrganizationCustomFieldPayload>;
|
|
147853
|
+
setOrganizationCustomFieldValues?: Maybe<MercurySetOrganizationCustomFieldsPayload>;
|
|
147854
|
+
starOrganization?: Maybe<MercuryStarOrganizationPayload>;
|
|
147855
|
+
transitionOrganizationStatus?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147856
|
+
unStarOrganization?: Maybe<MercuryUnStarOrganizationPayload>;
|
|
147857
|
+
unarchiveOrganization?: Maybe<MercuryUnarchiveOrganizationPayload>;
|
|
147858
|
+
updateOrganizationAboutContent?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147859
|
+
updateOrganizationCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
147860
|
+
updateOrganizationCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
147861
|
+
updateOrganizationCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
147862
|
+
updateOrganizationHierarchyName?: Maybe<MercuryUpdateOrganizationHierarchyPayload>;
|
|
147863
|
+
updateOrganizationName?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147864
|
+
updateOrganizationOwner?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147865
|
+
updateOrganizationStatusUpdate?: Maybe<MercuryUpdateOrganizationStatusUpdatePayload>;
|
|
147866
|
+
updateOrganizationTargetDate?: Maybe<MercuryUpdateOrganizationPayload>;
|
|
147867
|
+
updateOrganizationType?: Maybe<MercuryUpdateOrganizationTypePayload>;
|
|
147868
|
+
updateOrganizationTypeName?: Maybe<MercuryUpdateOrganizationTypeNamePayload>;
|
|
147869
|
+
updateOrganizationViewName?: Maybe<MercuryUpdateOrganizationViewPayload>;
|
|
147870
|
+
validateOrganizationArchival?: Maybe<MercuryArchiveOrganizationValidationPayload>;
|
|
147871
|
+
};
|
|
147872
|
+
export declare type MercuryOrganizationsMutationApiAddOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
147873
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
147874
|
+
};
|
|
147875
|
+
export declare type MercuryOrganizationsMutationApiAddWatcherToOrganizationArgs = {
|
|
147876
|
+
input: MercuryAddWatcherToOrganizationInput;
|
|
147877
|
+
};
|
|
147878
|
+
export declare type MercuryOrganizationsMutationApiArchiveOrganizationArgs = {
|
|
147879
|
+
input: MercuryArchiveOrganizationInput;
|
|
147880
|
+
};
|
|
147881
|
+
export declare type MercuryOrganizationsMutationApiAssignUserAccessToOrganizationArgs = {
|
|
147882
|
+
input: MercuryAssignUserAccessToOrganizationInput;
|
|
147883
|
+
};
|
|
147884
|
+
export declare type MercuryOrganizationsMutationApiBulkCreateOrganizationTypesArgs = {
|
|
147885
|
+
input: MercuryBulkCreateOrganizationTypesInput;
|
|
147886
|
+
};
|
|
147887
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationArgs = {
|
|
147888
|
+
input: MercuryCreateOrganizationInput;
|
|
147889
|
+
};
|
|
147890
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationCustomFieldDefinitionArgs = {
|
|
147891
|
+
input: MercuryCreateOrganizationCustomFieldDefinitionInput;
|
|
147892
|
+
};
|
|
147893
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationHierarchyArgs = {
|
|
147894
|
+
input: MercuryCreateOrganizationHierarchyInput;
|
|
147895
|
+
};
|
|
147896
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationStatusUpdateArgs = {
|
|
147897
|
+
input: MercuryCreateOrganizationStatusUpdateInput;
|
|
147898
|
+
};
|
|
147899
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationTypeArgs = {
|
|
147900
|
+
input: MercuryCreateOrganizationTypeInput;
|
|
147901
|
+
};
|
|
147902
|
+
export declare type MercuryOrganizationsMutationApiCreateOrganizationViewWithOrganizationsArgs = {
|
|
147903
|
+
input: MercuryCreateOrganizationViewOrganizationsInput;
|
|
147904
|
+
};
|
|
147905
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationArgs = {
|
|
147906
|
+
input: MercuryDeleteOrganizationInput;
|
|
147907
|
+
};
|
|
147908
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationCustomFieldDefinitionArgs = {
|
|
147909
|
+
input: MercuryDeleteCustomFieldDefinitionInput;
|
|
147910
|
+
};
|
|
147911
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
147912
|
+
input: MercuryDeleteCustomFieldDefinitionOptionsInput;
|
|
147913
|
+
};
|
|
147914
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationGoalLinksArgs = {
|
|
147915
|
+
input: MercuryDeleteOrganizationGoalLinksInput;
|
|
147916
|
+
};
|
|
147917
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationHierarchyArgs = {
|
|
147918
|
+
input: MercuryDeleteOrganizationHierarchyInput;
|
|
147919
|
+
};
|
|
147920
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationLinkArgs = {
|
|
147921
|
+
input: MercuryDeleteOrganizationLinkInput;
|
|
147922
|
+
};
|
|
147923
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationStatusUpdateArgs = {
|
|
147924
|
+
input: MercuryDeleteOrganizationStatusUpdateInput;
|
|
147925
|
+
};
|
|
147926
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationTypeArgs = {
|
|
147927
|
+
input: MercuryDeleteOrganizationTypeInput;
|
|
147928
|
+
};
|
|
147929
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationViewArgs = {
|
|
147930
|
+
input: MercuryDeleteOrganizationViewInput;
|
|
147931
|
+
};
|
|
147932
|
+
export declare type MercuryOrganizationsMutationApiDeleteOrganizationViewOrganizationLinkArgs = {
|
|
147933
|
+
input: MercuryDeleteOrganizationViewOrganizationLinkInput;
|
|
147934
|
+
};
|
|
147935
|
+
export declare type MercuryOrganizationsMutationApiLinkGoalsToOrganizationArgs = {
|
|
147936
|
+
input: MercuryLinkGoalsToOrganizationInput;
|
|
147937
|
+
};
|
|
147938
|
+
export declare type MercuryOrganizationsMutationApiLinkOrganizationToThirdPartyDocumentArgs = {
|
|
147939
|
+
input: MercuryLinkOrganizationToThirdPartyDocumentInput;
|
|
147940
|
+
};
|
|
147941
|
+
export declare type MercuryOrganizationsMutationApiLinkOrganizationsToOrganizationArgs = {
|
|
147942
|
+
input: MercuryLinkOrganizationsToOrganizationInput;
|
|
147943
|
+
};
|
|
147944
|
+
export declare type MercuryOrganizationsMutationApiLinkOrganizationsToOrganizationViewArgs = {
|
|
147945
|
+
input: MercuryLinkOrganizationsToOrganizationViewInput;
|
|
147946
|
+
};
|
|
147947
|
+
export declare type MercuryOrganizationsMutationApiPublishOrganizationArgs = {
|
|
147948
|
+
input: MercuryPublishOrganizationInput;
|
|
147949
|
+
};
|
|
147950
|
+
export declare type MercuryOrganizationsMutationApiRecreateOrganizationViewOrganizationsArgs = {
|
|
147951
|
+
input: MercuryRecreateOrganizationViewOrganizationsInput;
|
|
147952
|
+
};
|
|
147953
|
+
export declare type MercuryOrganizationsMutationApiRemoveUserAccessToOrganizationArgs = {
|
|
147954
|
+
input: MercuryRemoveUserAccessToOrganizationInput;
|
|
147955
|
+
};
|
|
147956
|
+
export declare type MercuryOrganizationsMutationApiRemoveWatcherFromOrganizationArgs = {
|
|
147957
|
+
input: MercuryRemoveWatcherFromOrganizationInput;
|
|
147958
|
+
};
|
|
147959
|
+
export declare type MercuryOrganizationsMutationApiReorderOrganizationCustomFieldDefinitionOptionsArgs = {
|
|
147960
|
+
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
147961
|
+
};
|
|
147962
|
+
export declare type MercuryOrganizationsMutationApiReorderOrganizationTypesArgs = {
|
|
147963
|
+
input: MercuryReorderOrganizationTypesInput;
|
|
147964
|
+
};
|
|
147965
|
+
export declare type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValueArgs = {
|
|
147966
|
+
input: MercurySetOrganizationCustomFieldInput;
|
|
147967
|
+
};
|
|
147968
|
+
export declare type MercuryOrganizationsMutationApiSetOrganizationCustomFieldValuesArgs = {
|
|
147969
|
+
input: MercurySetOrganizationCustomFieldsInput;
|
|
147970
|
+
};
|
|
147971
|
+
export declare type MercuryOrganizationsMutationApiStarOrganizationArgs = {
|
|
147972
|
+
input: MercuryStarOrganizationInput;
|
|
147973
|
+
};
|
|
147974
|
+
export declare type MercuryOrganizationsMutationApiTransitionOrganizationStatusArgs = {
|
|
147975
|
+
input: MercuryTransitionOrganizationStatusInput;
|
|
147976
|
+
};
|
|
147977
|
+
export declare type MercuryOrganizationsMutationApiUnStarOrganizationArgs = {
|
|
147978
|
+
input: MercuryUnStarOrganizationInput;
|
|
147979
|
+
};
|
|
147980
|
+
export declare type MercuryOrganizationsMutationApiUnarchiveOrganizationArgs = {
|
|
147981
|
+
input: MercuryUnarchiveOrganizationInput;
|
|
147982
|
+
};
|
|
147983
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationAboutContentArgs = {
|
|
147984
|
+
input: MercuryUpdateOrganizationAboutContentInput;
|
|
147985
|
+
};
|
|
147986
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomFieldDefinitionDescriptionArgs = {
|
|
147987
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
147988
|
+
};
|
|
147989
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomFieldDefinitionNameArgs = {
|
|
147990
|
+
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
147991
|
+
};
|
|
147992
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationCustomFieldDefinitionOptionArgs = {
|
|
147993
|
+
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
147994
|
+
};
|
|
147995
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationHierarchyNameArgs = {
|
|
147996
|
+
input: MercuryUpdateOrganizationHierarchyNameInput;
|
|
147997
|
+
};
|
|
147998
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationNameArgs = {
|
|
147999
|
+
input: MercuryUpdateOrganizationNameInput;
|
|
148000
|
+
};
|
|
148001
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationOwnerArgs = {
|
|
148002
|
+
input: MercuryUpdateOrganizationOwnerInput;
|
|
148003
|
+
};
|
|
148004
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationStatusUpdateArgs = {
|
|
148005
|
+
input: MercuryUpdateOrganizationStatusUpdateInput;
|
|
148006
|
+
};
|
|
148007
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationTargetDateArgs = {
|
|
148008
|
+
input: MercuryUpdateOrganizationTargetDateInput;
|
|
148009
|
+
};
|
|
148010
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationTypeArgs = {
|
|
148011
|
+
input: MercuryUpdateOrganizationTypeInput;
|
|
148012
|
+
};
|
|
148013
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationTypeNameArgs = {
|
|
148014
|
+
input: MercuryUpdateOrganizationTypeNameInput;
|
|
148015
|
+
};
|
|
148016
|
+
export declare type MercuryOrganizationsMutationApiUpdateOrganizationViewNameArgs = {
|
|
148017
|
+
input: MercuryUpdateOrganizationViewNameInput;
|
|
148018
|
+
};
|
|
148019
|
+
export declare type MercuryOrganizationsMutationApiValidateOrganizationArchivalArgs = {
|
|
148020
|
+
input: MercuryArchiveOrganizationValidationInput;
|
|
148021
|
+
};
|
|
148022
|
+
export declare type MercuryOrganizationsQueryApi = {
|
|
148023
|
+
__typename?: 'MercuryOrganizationsQueryApi';
|
|
148024
|
+
aiOrganizationListSummary?: Maybe<MercuryOrganizationListSummary>;
|
|
148025
|
+
aiOrganizationSummary?: Maybe<MercuryOrganizationSummary>;
|
|
148026
|
+
organization?: Maybe<MercuryOrganization>;
|
|
148027
|
+
organizationCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
148028
|
+
organizationHierarchies?: Maybe<Array<MercuryOrganizationHierarchy>>;
|
|
148029
|
+
organizationHierarchiesSearch?: Maybe<MercuryOrganizationHierarchyConnection>;
|
|
148030
|
+
organizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
148031
|
+
organizationStatusTransitions?: Maybe<Array<MercuryOrganizationStatusTransition>>;
|
|
148032
|
+
organizationStatusUpdates?: Maybe<Array<MercuryOrganizationStatusUpdate>>;
|
|
148033
|
+
organizationTypes?: Maybe<Array<Maybe<MercuryOrganizationType>>>;
|
|
148034
|
+
organizationTypesSearch?: Maybe<Array<MercuryOrganizationType>>;
|
|
148035
|
+
organizationView?: Maybe<MercuryOrganizationView>;
|
|
148036
|
+
organizationViews?: Maybe<Array<MercuryOrganizationView>>;
|
|
148037
|
+
organizationViewsSearch?: Maybe<MercuryOrganizationViewConnection>;
|
|
148038
|
+
organizations?: Maybe<Array<MercuryOrganization>>;
|
|
148039
|
+
organizationsByExternalIds?: Maybe<Array<Maybe<MercuryOrganization>>>;
|
|
148040
|
+
organizationsSearch?: Maybe<MercuryOrganizationConnection>;
|
|
148041
|
+
};
|
|
148042
|
+
export declare type MercuryOrganizationsQueryApiAiOrganizationListSummaryArgs = {
|
|
148043
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148044
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148045
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148046
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
148047
|
+
};
|
|
148048
|
+
export declare type MercuryOrganizationsQueryApiAiOrganizationSummaryArgs = {
|
|
148049
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148050
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148051
|
+
id: Scalars['ID']['input'];
|
|
148052
|
+
includeGoalsFromSubOrganizations?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148053
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
148054
|
+
summaryType?: InputMaybe<MercuryOrganizationSummaryType>;
|
|
148055
|
+
};
|
|
148056
|
+
export declare type MercuryOrganizationsQueryApiOrganizationArgs = {
|
|
148057
|
+
id: Scalars['ID']['input'];
|
|
148058
|
+
};
|
|
148059
|
+
export declare type MercuryOrganizationsQueryApiOrganizationCustomFieldDefinitionsSearchArgs = {
|
|
148060
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148061
|
+
cloudId: Scalars['ID']['input'];
|
|
148062
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148063
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148064
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
148065
|
+
};
|
|
148066
|
+
export declare type MercuryOrganizationsQueryApiOrganizationHierarchiesArgs = {
|
|
148067
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148068
|
+
};
|
|
148069
|
+
export declare type MercuryOrganizationsQueryApiOrganizationHierarchiesSearchArgs = {
|
|
148070
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148071
|
+
cloudId: Scalars['ID']['input'];
|
|
148072
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148073
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148074
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationHierarchySort>>>;
|
|
148075
|
+
};
|
|
148076
|
+
export declare type MercuryOrganizationsQueryApiOrganizationHierarchyArgs = {
|
|
148077
|
+
id: Scalars['ID']['input'];
|
|
148078
|
+
};
|
|
148079
|
+
export declare type MercuryOrganizationsQueryApiOrganizationStatusTransitionsArgs = {
|
|
148080
|
+
cloudId: Scalars['ID']['input'];
|
|
148081
|
+
};
|
|
148082
|
+
export declare type MercuryOrganizationsQueryApiOrganizationStatusUpdatesArgs = {
|
|
148083
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148084
|
+
};
|
|
148085
|
+
export declare type MercuryOrganizationsQueryApiOrganizationTypesArgs = {
|
|
148086
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148087
|
+
};
|
|
148088
|
+
export declare type MercuryOrganizationsQueryApiOrganizationTypesSearchArgs = {
|
|
148089
|
+
cloudId: Scalars['ID']['input'];
|
|
148090
|
+
};
|
|
148091
|
+
export declare type MercuryOrganizationsQueryApiOrganizationViewArgs = {
|
|
148092
|
+
id: Scalars['ID']['input'];
|
|
148093
|
+
};
|
|
148094
|
+
export declare type MercuryOrganizationsQueryApiOrganizationViewsArgs = {
|
|
148095
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148096
|
+
};
|
|
148097
|
+
export declare type MercuryOrganizationsQueryApiOrganizationViewsSearchArgs = {
|
|
148098
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148099
|
+
cloudId: Scalars['ID']['input'];
|
|
148100
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148101
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148102
|
+
sort?: InputMaybe<Array<MercuryOrganizationViewSort>>;
|
|
148103
|
+
};
|
|
148104
|
+
export declare type MercuryOrganizationsQueryApiOrganizationsArgs = {
|
|
148105
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148106
|
+
};
|
|
148107
|
+
export declare type MercuryOrganizationsQueryApiOrganizationsByExternalIdsArgs = {
|
|
148108
|
+
cloudId: Scalars['ID']['input'];
|
|
148109
|
+
ids: Array<Scalars['String']['input']>;
|
|
148110
|
+
};
|
|
148111
|
+
export declare type MercuryOrganizationsQueryApiOrganizationsSearchArgs = {
|
|
148112
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148113
|
+
cloudId: Scalars['ID']['input'];
|
|
148114
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148115
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148116
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryOrganizationSort>>>;
|
|
148117
|
+
};
|
|
146367
148118
|
export declare type MercuryOriginalProjectStatus = {
|
|
146368
148119
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
146369
148120
|
};
|
|
@@ -146840,6 +148591,15 @@ export declare type MercuryPublishFocusAreaPayload = Payload & {
|
|
|
146840
148591
|
errors?: Maybe<Array<MutationError>>;
|
|
146841
148592
|
success: Scalars['Boolean']['output'];
|
|
146842
148593
|
};
|
|
148594
|
+
export declare type MercuryPublishOrganizationInput = {
|
|
148595
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148596
|
+
id: Scalars['ID']['input'];
|
|
148597
|
+
};
|
|
148598
|
+
export declare type MercuryPublishOrganizationPayload = Payload & {
|
|
148599
|
+
__typename?: 'MercuryPublishOrganizationPayload';
|
|
148600
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148601
|
+
success: Scalars['Boolean']['output'];
|
|
148602
|
+
};
|
|
146843
148603
|
export declare type MercuryQueryApi = {
|
|
146844
148604
|
__typename?: 'MercuryQueryApi';
|
|
146845
148605
|
aiFocusAreaGoalContextData?: Maybe<MercuryFocusAreaGoalContext>;
|
|
@@ -146864,6 +148624,7 @@ export declare type MercuryQueryApi = {
|
|
|
146864
148624
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
146865
148625
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
146866
148626
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
148627
|
+
focusAreasTopologicallySorted?: Maybe<Array<MercuryFocusArea>>;
|
|
146867
148628
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
146868
148629
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
146869
148630
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -146975,6 +148736,9 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
146975
148736
|
cloudId: Scalars['ID']['input'];
|
|
146976
148737
|
ids: Array<Scalars['String']['input']>;
|
|
146977
148738
|
};
|
|
148739
|
+
export declare type MercuryQueryApiFocusAreasTopologicallySortedArgs = {
|
|
148740
|
+
focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
148741
|
+
};
|
|
146978
148742
|
export declare type MercuryQueryApiMediaReadTokenArgs = {
|
|
146979
148743
|
cloudId: Scalars['ID']['input'];
|
|
146980
148744
|
entityId: Scalars['ID']['input'];
|
|
@@ -147005,24 +148769,6 @@ export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
147005
148769
|
export declare type MercuryQueryApiWorkspaceContextArgs = {
|
|
147006
148770
|
cloudId: Scalars['ID']['input'];
|
|
147007
148771
|
};
|
|
147008
|
-
export declare type MercuryRankBusinessDomainsInBusinessDomainViewInput = {
|
|
147009
|
-
businessDomainViewId: Scalars['ID']['input'];
|
|
147010
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147011
|
-
rankVersion: Scalars['String']['input'];
|
|
147012
|
-
rankedBusinessDomains: Array<MercuryRankedBusinessDomain>;
|
|
147013
|
-
};
|
|
147014
|
-
export declare type MercuryRankBusinessDomainsInBusinessDomainViewPayload = Payload & {
|
|
147015
|
-
__typename?: 'MercuryRankBusinessDomainsInBusinessDomainViewPayload';
|
|
147016
|
-
errorCode?: Maybe<MercuryBusinessDomainRankingValidationErrorCode>;
|
|
147017
|
-
errors?: Maybe<Array<MutationError>>;
|
|
147018
|
-
rankedBusinessDomainView?: Maybe<MercuryBusinessDomainView>;
|
|
147019
|
-
success: Scalars['Boolean']['output'];
|
|
147020
|
-
};
|
|
147021
|
-
export declare type MercuryRankedBusinessDomain = {
|
|
147022
|
-
businessDomainId: Scalars['ID']['input'];
|
|
147023
|
-
newRank: Scalars['Int']['input'];
|
|
147024
|
-
oldRank: Scalars['Int']['input'];
|
|
147025
|
-
};
|
|
147026
148772
|
export declare type MercuryRankedChangeProposal = {
|
|
147027
148773
|
__typename?: 'MercuryRankedChangeProposal';
|
|
147028
148774
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -147032,7 +148778,10 @@ export declare type MercuryRankedChangeProposal = {
|
|
|
147032
148778
|
export declare type MercuryRecreateBusinessDomainViewBusinessDomainsInput = {
|
|
147033
148779
|
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
147034
148780
|
id: Scalars['ID']['input'];
|
|
147035
|
-
|
|
148781
|
+
};
|
|
148782
|
+
export declare type MercuryRecreateOrganizationViewOrganizationsInput = {
|
|
148783
|
+
id: Scalars['ID']['input'];
|
|
148784
|
+
organizationIds: Array<Scalars['ID']['input']>;
|
|
147036
148785
|
};
|
|
147037
148786
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
147038
148787
|
cloudId: Scalars['ID']['input'];
|
|
@@ -147068,6 +148817,15 @@ export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
|
147068
148817
|
errors?: Maybe<Array<MutationError>>;
|
|
147069
148818
|
success: Scalars['Boolean']['output'];
|
|
147070
148819
|
};
|
|
148820
|
+
export declare type MercuryRemoveUserAccessToOrganizationInput = {
|
|
148821
|
+
organizationAri: Scalars['ID']['input'];
|
|
148822
|
+
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
148823
|
+
};
|
|
148824
|
+
export declare type MercuryRemoveUserAccessToOrganizationPayload = Payload & {
|
|
148825
|
+
__typename?: 'MercuryRemoveUserAccessToOrganizationPayload';
|
|
148826
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148827
|
+
success: Scalars['Boolean']['output'];
|
|
148828
|
+
};
|
|
147071
148829
|
export declare type MercuryRemoveWatcherFromBusinessDomainInput = {
|
|
147072
148830
|
businessDomainId: Scalars['ID']['input'];
|
|
147073
148831
|
userId: Scalars['ID']['input'];
|
|
@@ -147087,6 +148845,15 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
147087
148845
|
errors?: Maybe<Array<MutationError>>;
|
|
147088
148846
|
success: Scalars['Boolean']['output'];
|
|
147089
148847
|
};
|
|
148848
|
+
export declare type MercuryRemoveWatcherFromOrganizationInput = {
|
|
148849
|
+
organizationId: Scalars['ID']['input'];
|
|
148850
|
+
userId: Scalars['ID']['input'];
|
|
148851
|
+
};
|
|
148852
|
+
export declare type MercuryRemoveWatcherFromOrganizationPayload = Payload & {
|
|
148853
|
+
__typename?: 'MercuryRemoveWatcherFromOrganizationPayload';
|
|
148854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148855
|
+
success: Scalars['Boolean']['output'];
|
|
148856
|
+
};
|
|
147090
148857
|
export declare type MercuryRenameFocusAreaChange = MercuryChangeInterface & Node & {
|
|
147091
148858
|
__typename?: 'MercuryRenameFocusAreaChange';
|
|
147092
148859
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -147130,6 +148897,20 @@ export declare type MercuryReorderCustomFieldDefinitionOptionsPayload = Payload
|
|
|
147130
148897
|
errors?: Maybe<Array<MutationError>>;
|
|
147131
148898
|
success: Scalars['Boolean']['output'];
|
|
147132
148899
|
};
|
|
148900
|
+
export declare type MercuryReorderOrganizationTypesInput = {
|
|
148901
|
+
cloudId: Scalars['ID']['input'];
|
|
148902
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
148903
|
+
organizationHierarchyId?: InputMaybe<Scalars['ID']['input']>;
|
|
148904
|
+
organizationTypeIds: Array<Scalars['ID']['input']>;
|
|
148905
|
+
};
|
|
148906
|
+
export declare type MercuryReorderOrganizationTypesPayload = Payload & {
|
|
148907
|
+
__typename?: 'MercuryReorderOrganizationTypesPayload';
|
|
148908
|
+
deletedLinks?: Maybe<Array<MercuryOrganizationLink>>;
|
|
148909
|
+
dryRun?: Maybe<Scalars['Boolean']['output']>;
|
|
148910
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148911
|
+
reorderedOrganizationTypes?: Maybe<Array<MercuryOrganizationType>>;
|
|
148912
|
+
success: Scalars['Boolean']['output'];
|
|
148913
|
+
};
|
|
147133
148914
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
147134
148915
|
__typename?: 'MercuryRequestFundsChange';
|
|
147135
148916
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -147238,6 +149019,30 @@ export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
|
147238
149019
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147239
149020
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147240
149021
|
};
|
|
149022
|
+
export declare type MercuryRiskActivityHistory = {
|
|
149023
|
+
__typename?: 'MercuryRiskActivityHistory';
|
|
149024
|
+
eventTimestamp: Scalars['String']['output'];
|
|
149025
|
+
eventType: MercuryRiskEventType;
|
|
149026
|
+
fields?: Maybe<Array<MercuryRiskUpdatedField>>;
|
|
149027
|
+
fieldsChanged?: Maybe<Array<Scalars['String']['output']>>;
|
|
149028
|
+
id: Scalars['ID']['output'];
|
|
149029
|
+
riskId: Scalars['ID']['output'];
|
|
149030
|
+
user?: Maybe<User>;
|
|
149031
|
+
};
|
|
149032
|
+
export declare type MercuryRiskActivityHistoryConnection = {
|
|
149033
|
+
__typename?: 'MercuryRiskActivityHistoryConnection';
|
|
149034
|
+
edges?: Maybe<Array<Maybe<MercuryRiskActivityHistoryEdge>>>;
|
|
149035
|
+
pageInfo: PageInfo;
|
|
149036
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
149037
|
+
};
|
|
149038
|
+
export declare type MercuryRiskActivityHistoryEdge = {
|
|
149039
|
+
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
149040
|
+
cursor: Scalars['String']['output'];
|
|
149041
|
+
node?: Maybe<MercuryRiskActivityHistory>;
|
|
149042
|
+
};
|
|
149043
|
+
export declare type MercuryRiskActivitySort = {
|
|
149044
|
+
order: SortOrder;
|
|
149045
|
+
};
|
|
147241
149046
|
export declare type MercuryRiskConnection = {
|
|
147242
149047
|
__typename?: 'MercuryRiskConnection';
|
|
147243
149048
|
edges?: Maybe<Array<Maybe<MercuryRiskEdge>>>;
|
|
@@ -147249,11 +149054,29 @@ export declare type MercuryRiskEdge = {
|
|
|
147249
149054
|
cursor: Scalars['String']['output'];
|
|
147250
149055
|
node?: Maybe<MercuryRisk>;
|
|
147251
149056
|
};
|
|
149057
|
+
export declare enum MercuryRiskEventType {
|
|
149058
|
+
Create = "CREATE",
|
|
149059
|
+
Delete = "DELETE",
|
|
149060
|
+
LinkFocusArea = "LINK_FOCUS_AREA",
|
|
149061
|
+
UnlinkFocusArea = "UNLINK_FOCUS_AREA",
|
|
149062
|
+
Update = "UPDATE"
|
|
149063
|
+
}
|
|
147252
149064
|
export declare type MercuryRiskImpact = {
|
|
147253
149065
|
__typename?: 'MercuryRiskImpact';
|
|
147254
149066
|
key: Scalars['String']['output'];
|
|
147255
149067
|
value: Scalars['Int']['output'];
|
|
147256
149068
|
};
|
|
149069
|
+
export declare type MercuryRiskImpactLikelihoodMatrix = {
|
|
149070
|
+
__typename?: 'MercuryRiskImpactLikelihoodMatrix';
|
|
149071
|
+
cells?: Maybe<Array<MercuryRiskImpactLikelihoodMatrixCell>>;
|
|
149072
|
+
};
|
|
149073
|
+
export declare type MercuryRiskImpactLikelihoodMatrixCell = {
|
|
149074
|
+
__typename?: 'MercuryRiskImpactLikelihoodMatrixCell';
|
|
149075
|
+
impact?: Maybe<MercuryRiskImpact>;
|
|
149076
|
+
likelihood?: Maybe<MercuryRiskLikelihood>;
|
|
149077
|
+
topRisks?: Maybe<Array<MercuryRisk>>;
|
|
149078
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
149079
|
+
};
|
|
147257
149080
|
export declare type MercuryRiskLikelihood = {
|
|
147258
149081
|
__typename?: 'MercuryRiskLikelihood';
|
|
147259
149082
|
key: Scalars['String']['output'];
|
|
@@ -147341,6 +149164,12 @@ export declare enum MercuryRiskTargetDateType {
|
|
|
147341
149164
|
Month = "MONTH",
|
|
147342
149165
|
Quarter = "QUARTER"
|
|
147343
149166
|
}
|
|
149167
|
+
export declare type MercuryRiskUpdatedField = {
|
|
149168
|
+
__typename?: 'MercuryRiskUpdatedField';
|
|
149169
|
+
field: Scalars['String']['output'];
|
|
149170
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
149171
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
149172
|
+
};
|
|
147344
149173
|
export declare type MercuryRisksMutationApi = {
|
|
147345
149174
|
__typename?: 'MercuryRisksMutationApi';
|
|
147346
149175
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
@@ -147407,16 +149236,22 @@ export declare type MercuryRisksMutationApiUpdateRiskTargetDateArgs = {
|
|
|
147407
149236
|
export declare type MercuryRisksQueryApi = {
|
|
147408
149237
|
__typename?: 'MercuryRisksQueryApi';
|
|
147409
149238
|
risk?: Maybe<MercuryRisk>;
|
|
149239
|
+
riskActivityHistoryByIds?: Maybe<Array<Maybe<MercuryRiskActivityHistory>>>;
|
|
147410
149240
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
147411
149241
|
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
147412
149242
|
riskStatusUpdatesByIds?: Maybe<Array<Maybe<MercuryRiskStatusUpdate>>>;
|
|
147413
149243
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
147414
149244
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
149245
|
+
risksByLikelihoodAndImpact?: Maybe<MercuryRiskImpactLikelihoodMatrix>;
|
|
147415
149246
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
149247
|
+
searchRiskActivityHistory?: Maybe<MercuryRiskActivityHistoryConnection>;
|
|
147416
149248
|
};
|
|
147417
149249
|
export declare type MercuryRisksQueryApiRiskArgs = {
|
|
147418
149250
|
id: Scalars['ID']['input'];
|
|
147419
149251
|
};
|
|
149252
|
+
export declare type MercuryRisksQueryApiRiskActivityHistoryByIdsArgs = {
|
|
149253
|
+
ids: Array<Scalars['ID']['input']>;
|
|
149254
|
+
};
|
|
147420
149255
|
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
147421
149256
|
cloudId: Scalars['ID']['input'];
|
|
147422
149257
|
};
|
|
@@ -147432,6 +149267,10 @@ export declare type MercuryRisksQueryApiRiskStatusesArgs = {
|
|
|
147432
149267
|
export declare type MercuryRisksQueryApiRisksArgs = {
|
|
147433
149268
|
ids: Array<Scalars['ID']['input']>;
|
|
147434
149269
|
};
|
|
149270
|
+
export declare type MercuryRisksQueryApiRisksByLikelihoodAndImpactArgs = {
|
|
149271
|
+
cloudId: Scalars['ID']['input'];
|
|
149272
|
+
riskStatusId: Scalars['ID']['input'];
|
|
149273
|
+
};
|
|
147435
149274
|
export declare type MercuryRisksQueryApiRisksSearchArgs = {
|
|
147436
149275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147437
149276
|
cloudId: Scalars['ID']['input'];
|
|
@@ -147439,6 +149278,13 @@ export declare type MercuryRisksQueryApiRisksSearchArgs = {
|
|
|
147439
149278
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
147440
149279
|
sort?: InputMaybe<Array<InputMaybe<MercuryRiskSort>>>;
|
|
147441
149280
|
};
|
|
149281
|
+
export declare type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
|
|
149282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
149283
|
+
cloudId: Scalars['ID']['input'];
|
|
149284
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
149285
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
149286
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
|
|
149287
|
+
};
|
|
147442
149288
|
export declare type MercurySetBaselineInput = {
|
|
147443
149289
|
endYearMonth: Scalars['String']['input'];
|
|
147444
149290
|
financialVersionId: Scalars['ID']['input'];
|
|
@@ -147514,6 +149360,27 @@ export declare type MercurySetFocusAreaCustomFieldsPayload = Payload & {
|
|
|
147514
149360
|
errors?: Maybe<Array<MutationError>>;
|
|
147515
149361
|
success: Scalars['Boolean']['output'];
|
|
147516
149362
|
};
|
|
149363
|
+
export declare type MercurySetOrganizationCustomFieldInput = {
|
|
149364
|
+
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
149365
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
149366
|
+
organizationId: Scalars['ID']['input'];
|
|
149367
|
+
};
|
|
149368
|
+
export declare type MercurySetOrganizationCustomFieldPayload = Payload & {
|
|
149369
|
+
__typename?: 'MercurySetOrganizationCustomFieldPayload';
|
|
149370
|
+
customField?: Maybe<MercuryCustomField>;
|
|
149371
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149372
|
+
success: Scalars['Boolean']['output'];
|
|
149373
|
+
};
|
|
149374
|
+
export declare type MercurySetOrganizationCustomFieldsInput = {
|
|
149375
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
149376
|
+
customFields: Array<MercurySetOrganizationCustomFieldInput>;
|
|
149377
|
+
};
|
|
149378
|
+
export declare type MercurySetOrganizationCustomFieldsPayload = Payload & {
|
|
149379
|
+
__typename?: 'MercurySetOrganizationCustomFieldsPayload';
|
|
149380
|
+
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
149381
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149382
|
+
success: Scalars['Boolean']['output'];
|
|
149383
|
+
};
|
|
147517
149384
|
export declare type MercurySetPreferenceInput = {
|
|
147518
149385
|
cloudId: Scalars['ID']['input'];
|
|
147519
149386
|
key: Scalars['String']['input'];
|
|
@@ -147599,6 +149466,14 @@ export declare type MercuryStarFocusAreaPayload = Payload & {
|
|
|
147599
149466
|
errors?: Maybe<Array<MutationError>>;
|
|
147600
149467
|
success: Scalars['Boolean']['output'];
|
|
147601
149468
|
};
|
|
149469
|
+
export declare type MercuryStarOrganizationInput = {
|
|
149470
|
+
organizationId: Scalars['ID']['input'];
|
|
149471
|
+
};
|
|
149472
|
+
export declare type MercuryStarOrganizationPayload = Payload & {
|
|
149473
|
+
__typename?: 'MercuryStarOrganizationPayload';
|
|
149474
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149475
|
+
success: Scalars['Boolean']['output'];
|
|
149476
|
+
};
|
|
147602
149477
|
export declare enum MercuryStatusColor {
|
|
147603
149478
|
Blue = "BLUE",
|
|
147604
149479
|
Gray = "GRAY",
|
|
@@ -148034,6 +149909,17 @@ export declare type MercurySubBusinessDomainCountByStatusHealth = {
|
|
|
148034
149909
|
pending?: Maybe<Scalars['Int']['output']>;
|
|
148035
149910
|
total?: Maybe<Scalars['Int']['output']>;
|
|
148036
149911
|
};
|
|
149912
|
+
export declare type MercurySubOrganizationCountByStatusHealth = {
|
|
149913
|
+
__typename?: 'MercurySubOrganizationCountByStatusHealth';
|
|
149914
|
+
atRisk?: Maybe<Scalars['Int']['output']>;
|
|
149915
|
+
completed?: Maybe<Scalars['Int']['output']>;
|
|
149916
|
+
inProgress?: Maybe<Scalars['Int']['output']>;
|
|
149917
|
+
offTrack?: Maybe<Scalars['Int']['output']>;
|
|
149918
|
+
onTrack?: Maybe<Scalars['Int']['output']>;
|
|
149919
|
+
paused?: Maybe<Scalars['Int']['output']>;
|
|
149920
|
+
pending?: Maybe<Scalars['Int']['output']>;
|
|
149921
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
149922
|
+
};
|
|
148037
149923
|
export declare type MercurySubscriptionApi = {
|
|
148038
149924
|
__typename?: 'MercurySubscriptionApi';
|
|
148039
149925
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
@@ -148140,6 +150026,11 @@ export declare type MercuryTransitionFocusAreaStatusInput = {
|
|
|
148140
150026
|
id: Scalars['ID']['input'];
|
|
148141
150027
|
statusTransitionId: Scalars['ID']['input'];
|
|
148142
150028
|
};
|
|
150029
|
+
export declare type MercuryTransitionOrganizationStatusInput = {
|
|
150030
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150031
|
+
id: Scalars['ID']['input'];
|
|
150032
|
+
statusTransitionId: Scalars['ID']['input'];
|
|
150033
|
+
};
|
|
148143
150034
|
export declare type MercuryTransitionRiskPayload = Payload & {
|
|
148144
150035
|
__typename?: 'MercuryTransitionRiskPayload';
|
|
148145
150036
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -148177,6 +150068,14 @@ export declare type MercuryUnStarFocusAreaPayload = Payload & {
|
|
|
148177
150068
|
errors?: Maybe<Array<MutationError>>;
|
|
148178
150069
|
success: Scalars['Boolean']['output'];
|
|
148179
150070
|
};
|
|
150071
|
+
export declare type MercuryUnStarOrganizationInput = {
|
|
150072
|
+
organizationId: Scalars['ID']['input'];
|
|
150073
|
+
};
|
|
150074
|
+
export declare type MercuryUnStarOrganizationPayload = Payload & {
|
|
150075
|
+
__typename?: 'MercuryUnStarOrganizationPayload';
|
|
150076
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150077
|
+
success: Scalars['Boolean']['output'];
|
|
150078
|
+
};
|
|
148180
150079
|
export declare type MercuryUnarchiveBusinessDomainInput = {
|
|
148181
150080
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148182
150081
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -148197,6 +150096,16 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
148197
150096
|
errors?: Maybe<Array<MutationError>>;
|
|
148198
150097
|
success: Scalars['Boolean']['output'];
|
|
148199
150098
|
};
|
|
150099
|
+
export declare type MercuryUnarchiveOrganizationInput = {
|
|
150100
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150101
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
150102
|
+
id: Scalars['ID']['input'];
|
|
150103
|
+
};
|
|
150104
|
+
export declare type MercuryUnarchiveOrganizationPayload = Payload & {
|
|
150105
|
+
__typename?: 'MercuryUnarchiveOrganizationPayload';
|
|
150106
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150107
|
+
success: Scalars['Boolean']['output'];
|
|
150108
|
+
};
|
|
148200
150109
|
export declare type MercuryUndoDismissInsightInput = {
|
|
148201
150110
|
cloudId: Scalars['ID']['input'];
|
|
148202
150111
|
dismissalId: Scalars['ID']['input'];
|
|
@@ -148710,6 +150619,87 @@ export declare type MercuryUpdateMovePositionsChangeInput = {
|
|
|
148710
150619
|
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
148711
150620
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
148712
150621
|
};
|
|
150622
|
+
export declare type MercuryUpdateOrganizationAboutContentInput = {
|
|
150623
|
+
aboutContent: Scalars['String']['input'];
|
|
150624
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150625
|
+
id: Scalars['ID']['input'];
|
|
150626
|
+
};
|
|
150627
|
+
export declare type MercuryUpdateOrganizationHierarchyNameInput = {
|
|
150628
|
+
id: Scalars['ID']['input'];
|
|
150629
|
+
name: Scalars['String']['input'];
|
|
150630
|
+
};
|
|
150631
|
+
export declare type MercuryUpdateOrganizationHierarchyPayload = Payload & {
|
|
150632
|
+
__typename?: 'MercuryUpdateOrganizationHierarchyPayload';
|
|
150633
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150634
|
+
success: Scalars['Boolean']['output'];
|
|
150635
|
+
updatedOrganizationHierarchy?: Maybe<MercuryOrganizationHierarchy>;
|
|
150636
|
+
};
|
|
150637
|
+
export declare type MercuryUpdateOrganizationNameInput = {
|
|
150638
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150639
|
+
id: Scalars['ID']['input'];
|
|
150640
|
+
name: Scalars['String']['input'];
|
|
150641
|
+
};
|
|
150642
|
+
export declare type MercuryUpdateOrganizationOwnerInput = {
|
|
150643
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150644
|
+
id: Scalars['ID']['input'];
|
|
150645
|
+
owner: Scalars['ID']['input'];
|
|
150646
|
+
};
|
|
150647
|
+
export declare type MercuryUpdateOrganizationPayload = Payload & {
|
|
150648
|
+
__typename?: 'MercuryUpdateOrganizationPayload';
|
|
150649
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150650
|
+
success: Scalars['Boolean']['output'];
|
|
150651
|
+
updatedOrganization?: Maybe<MercuryOrganization>;
|
|
150652
|
+
};
|
|
150653
|
+
export declare type MercuryUpdateOrganizationStatusUpdateInput = {
|
|
150654
|
+
id: Scalars['ID']['input'];
|
|
150655
|
+
newTargetDate?: InputMaybe<MercuryOrganizationTargetDateInput>;
|
|
150656
|
+
statusTransitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
150657
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
150658
|
+
};
|
|
150659
|
+
export declare type MercuryUpdateOrganizationStatusUpdatePayload = Payload & {
|
|
150660
|
+
__typename?: 'MercuryUpdateOrganizationStatusUpdatePayload';
|
|
150661
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150662
|
+
success: Scalars['Boolean']['output'];
|
|
150663
|
+
updatedOrganizationStatusUpdate?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
150664
|
+
};
|
|
150665
|
+
export declare type MercuryUpdateOrganizationTargetDateInput = {
|
|
150666
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150667
|
+
id: Scalars['ID']['input'];
|
|
150668
|
+
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
150669
|
+
targetDateType?: InputMaybe<MercuryOrganizationTargetDateType>;
|
|
150670
|
+
};
|
|
150671
|
+
export declare type MercuryUpdateOrganizationTypeInput = {
|
|
150672
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150673
|
+
id: Scalars['ID']['input'];
|
|
150674
|
+
organizationTypeId: Scalars['ID']['input'];
|
|
150675
|
+
};
|
|
150676
|
+
export declare type MercuryUpdateOrganizationTypeNameInput = {
|
|
150677
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
150678
|
+
id: Scalars['ID']['input'];
|
|
150679
|
+
name: Scalars['String']['input'];
|
|
150680
|
+
};
|
|
150681
|
+
export declare type MercuryUpdateOrganizationTypeNamePayload = Payload & {
|
|
150682
|
+
__typename?: 'MercuryUpdateOrganizationTypeNamePayload';
|
|
150683
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150684
|
+
success: Scalars['Boolean']['output'];
|
|
150685
|
+
updatedOrganizationType?: Maybe<MercuryOrganizationType>;
|
|
150686
|
+
};
|
|
150687
|
+
export declare type MercuryUpdateOrganizationTypePayload = Payload & {
|
|
150688
|
+
__typename?: 'MercuryUpdateOrganizationTypePayload';
|
|
150689
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150690
|
+
success: Scalars['Boolean']['output'];
|
|
150691
|
+
updatedOrganization?: Maybe<MercuryOrganization>;
|
|
150692
|
+
};
|
|
150693
|
+
export declare type MercuryUpdateOrganizationViewNameInput = {
|
|
150694
|
+
id: Scalars['ID']['input'];
|
|
150695
|
+
name: Scalars['String']['input'];
|
|
150696
|
+
};
|
|
150697
|
+
export declare type MercuryUpdateOrganizationViewPayload = Payload & {
|
|
150698
|
+
__typename?: 'MercuryUpdateOrganizationViewPayload';
|
|
150699
|
+
errors?: Maybe<Array<MutationError>>;
|
|
150700
|
+
success: Scalars['Boolean']['output'];
|
|
150701
|
+
updatedOrganizationView?: Maybe<MercuryOrganizationView>;
|
|
150702
|
+
};
|
|
148713
150703
|
export declare type MercuryUpdatePortfolioNameInput = {
|
|
148714
150704
|
cloudId: Scalars['ID']['input'];
|
|
148715
150705
|
id: Scalars['ID']['input'];
|
|
@@ -148846,17 +150836,6 @@ export declare type MercuryUserEdge = {
|
|
|
148846
150836
|
cursor: Scalars['String']['output'];
|
|
148847
150837
|
node?: Maybe<User>;
|
|
148848
150838
|
};
|
|
148849
|
-
export declare type MercuryValidateBusinessDomainsForRankingInput = {
|
|
148850
|
-
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
148851
|
-
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148852
|
-
rankingViewId?: InputMaybe<Scalars['ID']['input']>;
|
|
148853
|
-
};
|
|
148854
|
-
export declare type MercuryValidateBusinessDomainsForRankingPayload = Payload & {
|
|
148855
|
-
__typename?: 'MercuryValidateBusinessDomainsForRankingPayload';
|
|
148856
|
-
errors?: Maybe<Array<MutationError>>;
|
|
148857
|
-
success: Scalars['Boolean']['output'];
|
|
148858
|
-
validation?: Maybe<MercuryBusinessDomainRankingValidation>;
|
|
148859
|
-
};
|
|
148860
150839
|
export declare type MercuryValidateFocusAreasForRankingInput = {
|
|
148861
150840
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148862
150841
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -149163,8 +151142,10 @@ export declare type Mutation = {
|
|
|
149163
151142
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
149164
151143
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
149165
151144
|
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
|
|
151145
|
+
admin_cancelAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
149166
151146
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
149167
151147
|
admin_createAiPolicy?: Maybe<AdminCreateAiPolicyResponsePayload>;
|
|
151148
|
+
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
149168
151149
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
149169
151150
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
149170
151151
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
@@ -149175,9 +151156,13 @@ export declare type Mutation = {
|
|
|
149175
151156
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
149176
151157
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
149177
151158
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
151159
|
+
admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
|
|
151160
|
+
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
151161
|
+
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
149178
151162
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
149179
151163
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
149180
151164
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
151165
|
+
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
149181
151166
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
149182
151167
|
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
149183
151168
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
@@ -149507,7 +151492,6 @@ export declare type Mutation = {
|
|
|
149507
151492
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
149508
151493
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
149509
151494
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
149510
|
-
confluence_setCutoverRoleConfig?: Maybe<ConfluenceSetCutoverRoleConfigPayload>;
|
|
149511
151495
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
149512
151496
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
149513
151497
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
@@ -149535,6 +151519,7 @@ export declare type Mutation = {
|
|
|
149535
151519
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
149536
151520
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
149537
151521
|
confluence_updateMarkdownMode?: Maybe<ConfluenceUpdateMarkdownModePayload>;
|
|
151522
|
+
confluence_updateModeChange?: Maybe<ConfluenceUpdateModeChangePayload>;
|
|
149538
151523
|
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
149539
151524
|
confluence_updatePage?: Maybe<ConfluenceUpdatePagePayload>;
|
|
149540
151525
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
@@ -150006,8 +151991,10 @@ export declare type Mutation = {
|
|
|
150006
151991
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
150007
151992
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
150008
151993
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
151994
|
+
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
150009
151995
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
150010
151996
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
151997
|
+
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
150011
151998
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
150012
151999
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
150013
152000
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -150039,6 +152026,7 @@ export declare type Mutation = {
|
|
|
150039
152026
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
150040
152027
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
150041
152028
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
152029
|
+
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
150042
152030
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
150043
152031
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
150044
152032
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
@@ -150271,9 +152259,11 @@ export declare type Mutation = {
|
|
|
150271
152259
|
spf_updatePlanTimeframe?: Maybe<SpfUpsertPlanPayload>;
|
|
150272
152260
|
spf_updatePlanVisibility?: Maybe<SpfUpsertPlanPayload>;
|
|
150273
152261
|
spf_updateViewName?: Maybe<SpfUpsertViewPayload>;
|
|
152262
|
+
spf_updateViewOwner?: Maybe<SpfUpsertViewPayload>;
|
|
150274
152263
|
spf_updateViewSettings?: Maybe<SpfUpsertViewPayload>;
|
|
150275
152264
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
150276
152265
|
spss_exportFullSiteScanResults?: Maybe<SpssExportFullSiteScanResultsPayload>;
|
|
152266
|
+
stakeholderComms_addPageSubscribersAdmin?: Maybe<StakeholderCommsBulkAddSubscriberFromAdminResponse>;
|
|
150277
152267
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
150278
152268
|
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
150279
152269
|
stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
|
|
@@ -150434,6 +152424,10 @@ export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
|
150434
152424
|
input?: InputMaybe<AdminAuditLogEventExportInput>;
|
|
150435
152425
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
150436
152426
|
};
|
|
152427
|
+
export declare type MutationAdmin_CancelAuditLogBackgroundQueryArgs = {
|
|
152428
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
152429
|
+
container: AdminAuditLogContainer;
|
|
152430
|
+
};
|
|
150437
152431
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
150438
152432
|
resourceAri: Scalars['ID']['input'];
|
|
150439
152433
|
};
|
|
@@ -150441,6 +152435,12 @@ export declare type MutationAdmin_CreateAiPolicyArgs = {
|
|
|
150441
152435
|
createAiPolicyInput?: InputMaybe<AdminCreateAiPolicyInput>;
|
|
150442
152436
|
orgId: Scalars['ID']['input'];
|
|
150443
152437
|
};
|
|
152438
|
+
export declare type MutationAdmin_CreateAuditLogBackgroundQueryArgs = {
|
|
152439
|
+
container: AdminAuditLogContainer;
|
|
152440
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
152441
|
+
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
152442
|
+
name: Scalars['String']['input'];
|
|
152443
|
+
};
|
|
150444
152444
|
export declare type MutationAdmin_CreateInvitePolicyArgs = {
|
|
150445
152445
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
150446
152446
|
orgId: Scalars['ID']['input'];
|
|
@@ -150479,6 +152479,19 @@ export declare type MutationAdmin_RevokeRoleArgs = {
|
|
|
150479
152479
|
orgId: Scalars['ID']['input'];
|
|
150480
152480
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
150481
152481
|
};
|
|
152482
|
+
export declare type MutationAdmin_ScimRuleCreateArgs = {
|
|
152483
|
+
input: AdminScimRuleCreateInput;
|
|
152484
|
+
orgId: Scalars['ID']['input'];
|
|
152485
|
+
};
|
|
152486
|
+
export declare type MutationAdmin_ScimRuleDeleteArgs = {
|
|
152487
|
+
orgId: Scalars['ID']['input'];
|
|
152488
|
+
ruleId: Scalars['ID']['input'];
|
|
152489
|
+
};
|
|
152490
|
+
export declare type MutationAdmin_ScimRuleUpdateArgs = {
|
|
152491
|
+
input: AdminScimRuleUpdateInput;
|
|
152492
|
+
orgId: Scalars['ID']['input'];
|
|
152493
|
+
ruleId: Scalars['ID']['input'];
|
|
152494
|
+
};
|
|
150482
152495
|
export declare type MutationAdmin_UnitCreateArgs = {
|
|
150483
152496
|
orgId: Scalars['ID']['input'];
|
|
150484
152497
|
unit: AdminUnitCreateInput;
|
|
@@ -150493,6 +152506,12 @@ export declare type MutationAdmin_UpdateAiPolicyArgs = {
|
|
|
150493
152506
|
policyId: Scalars['ID']['input'];
|
|
150494
152507
|
updateAiPolicyInput?: InputMaybe<AdminUpdateAiPolicyInput>;
|
|
150495
152508
|
};
|
|
152509
|
+
export declare type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
|
|
152510
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
152511
|
+
container: AdminAuditLogContainer;
|
|
152512
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
152513
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
152514
|
+
};
|
|
150496
152515
|
export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
150497
152516
|
orgId: Scalars['ID']['input'];
|
|
150498
152517
|
policyId: Scalars['ID']['input'];
|
|
@@ -150898,6 +152917,7 @@ export declare type MutationAssetsDm_CreateSavedSearchArgs = {
|
|
|
150898
152917
|
isPublic?: Scalars['Boolean']['input'];
|
|
150899
152918
|
name: Scalars['String']['input'];
|
|
150900
152919
|
objectId: Scalars['ID']['input'];
|
|
152920
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
150901
152921
|
searchInput: AssetsDmSavedSearchInput;
|
|
150902
152922
|
workspaceId: Scalars['ID']['input'];
|
|
150903
152923
|
};
|
|
@@ -151742,10 +153762,6 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
|
151742
153762
|
cloudId: Scalars['ID']['input'];
|
|
151743
153763
|
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
151744
153764
|
};
|
|
151745
|
-
export declare type MutationConfluence_SetCutoverRoleConfigArgs = {
|
|
151746
|
-
cloudId: Scalars['ID']['input'];
|
|
151747
|
-
input: ConfluenceSetCutoverRoleConfigInput;
|
|
151748
|
-
};
|
|
151749
153765
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
151750
153766
|
cloudId: Scalars['ID']['input'];
|
|
151751
153767
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -151855,6 +153871,10 @@ export declare type MutationConfluence_UpdateMarkdownModeArgs = {
|
|
|
151855
153871
|
cloudId: Scalars['ID']['input'];
|
|
151856
153872
|
input: ConfluenceUpdateMarkdownModeInput;
|
|
151857
153873
|
};
|
|
153874
|
+
export declare type MutationConfluence_UpdateModeChangeArgs = {
|
|
153875
|
+
cloudId: Scalars['ID']['input'];
|
|
153876
|
+
input: ConfluenceUpdateModeChangeInput;
|
|
153877
|
+
};
|
|
151858
153878
|
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
151859
153879
|
cloudId: Scalars['ID']['input'];
|
|
151860
153880
|
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
@@ -153394,6 +155414,7 @@ export declare type MutationKitsune_CreateSnippetArgs = {
|
|
|
153394
155414
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
153395
155415
|
};
|
|
153396
155416
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
155417
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
153397
155418
|
name: Scalars['String']['input'];
|
|
153398
155419
|
workspaceAri: Scalars['ID']['input'];
|
|
153399
155420
|
};
|
|
@@ -153421,12 +155442,18 @@ export declare type MutationKitsune_MoveViewArgs = {
|
|
|
153421
155442
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
153422
155443
|
viewAri: Scalars['ID']['input'];
|
|
153423
155444
|
};
|
|
155445
|
+
export declare type MutationKitsune_RemoveCustomerArgs = {
|
|
155446
|
+
ari: Scalars['ID']['input'];
|
|
155447
|
+
};
|
|
153424
155448
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
153425
155449
|
feedbackAri: Scalars['ID']['input'];
|
|
153426
155450
|
};
|
|
153427
155451
|
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
153428
155452
|
id: Scalars['ID']['input'];
|
|
153429
155453
|
};
|
|
155454
|
+
export declare type MutationKitsune_RemoveOrganizationArgs = {
|
|
155455
|
+
ari: Scalars['ID']['input'];
|
|
155456
|
+
};
|
|
153430
155457
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
153431
155458
|
sectionAri: Scalars['ID']['input'];
|
|
153432
155459
|
};
|
|
@@ -153453,6 +155480,8 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
153453
155480
|
};
|
|
153454
155481
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
153455
155482
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
155483
|
+
domain?: InputMaybe<KitsuneOrganizationDomainInput>;
|
|
155484
|
+
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
153456
155485
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
153457
155486
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
153458
155487
|
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -153757,6 +155786,7 @@ export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
|
153757
155786
|
pageIds: Array<Scalars['ID']['input']>;
|
|
153758
155787
|
};
|
|
153759
155788
|
export declare type MutationPublicLinkSpacesActionArgs = {
|
|
155789
|
+
accessType?: InputMaybe<ConfluenceShareableLinkAccessType>;
|
|
153760
155790
|
action: PublicLinkAdminAction;
|
|
153761
155791
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
153762
155792
|
};
|
|
@@ -154248,6 +156278,9 @@ export declare type MutationSpf_UpdatePlanVisibilityArgs = {
|
|
|
154248
156278
|
export declare type MutationSpf_UpdateViewNameArgs = {
|
|
154249
156279
|
input: SpfUpdateViewNameInput;
|
|
154250
156280
|
};
|
|
156281
|
+
export declare type MutationSpf_UpdateViewOwnerArgs = {
|
|
156282
|
+
input: SpfUpdateViewOwnerInput;
|
|
156283
|
+
};
|
|
154251
156284
|
export declare type MutationSpf_UpdateViewSettingsArgs = {
|
|
154252
156285
|
input: SpfUpdateViewSettingsInput;
|
|
154253
156286
|
};
|
|
@@ -154258,6 +156291,11 @@ export declare type MutationSpss_ExportFullSiteScanResultsArgs = {
|
|
|
154258
156291
|
input: SpssExportFullSiteScanResultsInput;
|
|
154259
156292
|
orgId: Scalars['ID']['input'];
|
|
154260
156293
|
};
|
|
156294
|
+
export declare type MutationStakeholderComms_AddPageSubscribersAdminArgs = {
|
|
156295
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
156296
|
+
emails: Array<Scalars['String']['input']>;
|
|
156297
|
+
pageId: Scalars['String']['input'];
|
|
156298
|
+
};
|
|
154261
156299
|
export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
154262
156300
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
154263
156301
|
groupId: Scalars['String']['input'];
|
|
@@ -155513,7 +157551,6 @@ export declare type PtPage = {
|
|
|
155513
157551
|
lastUpdatedDate?: Maybe<ConfluenceDate>;
|
|
155514
157552
|
links?: Maybe<Map_LinkType_String>;
|
|
155515
157553
|
nearestAncestors?: Maybe<PtPaginatedPageList>;
|
|
155516
|
-
page?: Maybe<Page>;
|
|
155517
157554
|
previousSiblings?: Maybe<PtPaginatedPageList>;
|
|
155518
157555
|
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
155519
157556
|
status?: Maybe<PtGraphQlPageStatus>;
|
|
@@ -157354,6 +159391,7 @@ export declare type Properties = {
|
|
|
157354
159391
|
};
|
|
157355
159392
|
export declare type PublicLink = {
|
|
157356
159393
|
__typename?: 'PublicLink';
|
|
159394
|
+
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
157357
159395
|
id: Scalars['ID']['output'];
|
|
157358
159396
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
157359
159397
|
lastEnabledByUser?: Maybe<Person>;
|
|
@@ -157546,6 +159584,7 @@ export declare type PublicLinkVersion = {
|
|
|
157546
159584
|
syncRev?: Maybe<Scalars['String']['output']>;
|
|
157547
159585
|
};
|
|
157548
159586
|
export declare enum PublicLinksByCriteriaOrder {
|
|
159587
|
+
AccessType = "ACCESS_TYPE",
|
|
157549
159588
|
DateEnabled = "DATE_ENABLED",
|
|
157550
159589
|
Status = "STATUS",
|
|
157551
159590
|
Title = "TITLE"
|
|
@@ -157685,6 +159724,8 @@ export declare type Query = {
|
|
|
157685
159724
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
157686
159725
|
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
157687
159726
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
159727
|
+
admin_scimRule?: Maybe<AdminScimRule>;
|
|
159728
|
+
admin_scimRuleSearch?: Maybe<AdminScimRuleSearchConnection>;
|
|
157688
159729
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
157689
159730
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
157690
159731
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -157882,7 +159923,9 @@ export declare type Query = {
|
|
|
157882
159923
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
157883
159924
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
157884
159925
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
159926
|
+
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
157885
159927
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
159928
|
+
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
157886
159929
|
assetsVertical_insights?: Maybe<AssetsVerticalInsightsResult>;
|
|
157887
159930
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
157888
159931
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
@@ -157925,6 +159968,7 @@ export declare type Query = {
|
|
|
157925
159968
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
157926
159969
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
157927
159970
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
159971
|
+
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
157928
159972
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
157929
159973
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
157930
159974
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
@@ -158040,8 +160084,6 @@ export declare type Query = {
|
|
|
158040
160084
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
158041
160085
|
confluence_calendarsByCriteria?: Maybe<ConfluenceCalendarConnection>;
|
|
158042
160086
|
confluence_categorizeNbmChains?: Maybe<ConfluenceCategorizeNbmChainsResult>;
|
|
158043
|
-
confluence_classificationLevelsForContent?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
158044
|
-
confluence_classificationLevelsForSpaceDefault?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
158045
160087
|
confluence_commentMediaSession?: Maybe<ContentMediaSession>;
|
|
158046
160088
|
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
158047
160089
|
confluence_contentAISummariesByContentId?: Maybe<Array<Maybe<ConfluenceContentAiSummaryByContentId>>>;
|
|
@@ -158113,6 +160155,7 @@ export declare type Query = {
|
|
|
158113
160155
|
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
158114
160156
|
confluence_note?: Maybe<NoteResponse>;
|
|
158115
160157
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
160158
|
+
confluence_pageBriefing?: Maybe<ConfluencePageBriefing>;
|
|
158116
160159
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
158117
160160
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
158118
160161
|
confluence_pendingRequestExists?: Maybe<ConfluencePendingAccessRequest>;
|
|
@@ -158363,6 +160406,7 @@ export declare type Query = {
|
|
|
158363
160406
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
158364
160407
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
158365
160408
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
160409
|
+
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
158366
160410
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
158367
160411
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
158368
160412
|
goals_goalTypesByIds?: Maybe<Array<Maybe<TownsquareGoalType>>>;
|
|
@@ -158477,6 +160521,7 @@ export declare type Query = {
|
|
|
158477
160521
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
158478
160522
|
jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
|
|
158479
160523
|
jira_jswBoardViewSettings?: Maybe<JiraJswBoardViewSettings>;
|
|
160524
|
+
jira_jswGlobalConfig?: Maybe<JswGlobalConfig>;
|
|
158480
160525
|
jira_lookAndFeel?: Maybe<JiraLookAndFeel>;
|
|
158481
160526
|
jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
|
|
158482
160527
|
jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
|
|
@@ -158611,6 +160656,7 @@ export declare type Query = {
|
|
|
158611
160656
|
mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
|
|
158612
160657
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
158613
160658
|
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
160659
|
+
mercury_organizations?: Maybe<MercuryOrganizationsQueryApi>;
|
|
158614
160660
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
158615
160661
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
158616
160662
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
@@ -158712,12 +160758,14 @@ export declare type Query = {
|
|
|
158712
160758
|
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
158713
160759
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
158714
160760
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
160761
|
+
radar_metricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
158715
160762
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
158716
160763
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
158717
160764
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
158718
160765
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
158719
160766
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
158720
160767
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
160768
|
+
radar_skillAssignmentMetadata?: Maybe<Array<RadarSkillAssignmentMetadata>>;
|
|
158721
160769
|
radar_skillByAri?: Maybe<RadarSkill>;
|
|
158722
160770
|
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
158723
160771
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
@@ -158779,7 +160827,6 @@ export declare type Query = {
|
|
|
158779
160827
|
spaceRoleAssignmentsByCriteria?: Maybe<SpaceRoleAssignmentConnection>;
|
|
158780
160828
|
spaceRoleAssignmentsByPrincipal?: Maybe<SpaceRoleAssignmentConnection>;
|
|
158781
160829
|
spaceRolesByCriteria?: Maybe<SpaceRoleConnection>;
|
|
158782
|
-
spaceRolesBySpace?: Maybe<SpaceRoleConnection>;
|
|
158783
160830
|
spaceSidebarLinks?: Maybe<SpaceSidebarLinks>;
|
|
158784
160831
|
spaceTheme?: Maybe<Theme>;
|
|
158785
160832
|
spaceWatchers?: Maybe<PaginatedPersonList>;
|
|
@@ -158966,6 +161013,7 @@ export declare type QueryAdmin_AiPoliciesArgs = {
|
|
|
158966
161013
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158967
161014
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
158968
161015
|
orgId: Scalars['ID']['input'];
|
|
161016
|
+
searchInput?: InputMaybe<AdminAiPoliciesSearchInput>;
|
|
158969
161017
|
};
|
|
158970
161018
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
158971
161019
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -159133,6 +161181,18 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
159133
161181
|
principalId: Scalars['ID']['input'];
|
|
159134
161182
|
resourceId: Scalars['ID']['input'];
|
|
159135
161183
|
};
|
|
161184
|
+
export declare type QueryAdmin_ScimRuleArgs = {
|
|
161185
|
+
orgId: Scalars['ID']['input'];
|
|
161186
|
+
ruleId: Scalars['ID']['input'];
|
|
161187
|
+
};
|
|
161188
|
+
export declare type QueryAdmin_ScimRuleSearchArgs = {
|
|
161189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
161190
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
161191
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
161192
|
+
input: AdminScimRuleSearchInput;
|
|
161193
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
161194
|
+
orgId: Scalars['ID']['input'];
|
|
161195
|
+
};
|
|
159136
161196
|
export declare type QueryAdmin_TokensArgs = {
|
|
159137
161197
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159138
161198
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160182,9 +162242,16 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
160182
162242
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
160183
162243
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
160184
162244
|
};
|
|
162245
|
+
export declare type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
162246
|
+
cloudId: Scalars['ID']['input'];
|
|
162247
|
+
};
|
|
160185
162248
|
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
160186
162249
|
cloudId: Scalars['ID']['input'];
|
|
160187
162250
|
};
|
|
162251
|
+
export declare type QueryAssetsVertical_InsightDetailsByDefinitionArgs = {
|
|
162252
|
+
cloudId: Scalars['ID']['input'];
|
|
162253
|
+
insightDefinitionId: Scalars['ID']['input'];
|
|
162254
|
+
};
|
|
160188
162255
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
160189
162256
|
cloudId: Scalars['ID']['input'];
|
|
160190
162257
|
};
|
|
@@ -160361,6 +162428,13 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
|
160361
162428
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
160362
162429
|
input: AvpGetReadOnlyDashboardInput;
|
|
160363
162430
|
};
|
|
162431
|
+
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
162432
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
162433
|
+
cloudId: Scalars['ID']['input'];
|
|
162434
|
+
first: Scalars['Int']['input'];
|
|
162435
|
+
input: AvpSearchDashboardsInput;
|
|
162436
|
+
workspaceAri: Scalars['ID']['input'];
|
|
162437
|
+
};
|
|
160364
162438
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
160365
162439
|
cloudId: Scalars['ID']['input'];
|
|
160366
162440
|
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -160789,13 +162863,6 @@ export declare type QueryConfluence_CategorizeNbmChainsArgs = {
|
|
|
160789
162863
|
cloudId: Scalars['ID']['input'];
|
|
160790
162864
|
nbmChains: Array<InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>>;
|
|
160791
162865
|
};
|
|
160792
|
-
export declare type QueryConfluence_ClassificationLevelsForContentArgs = {
|
|
160793
|
-
cloudId: Scalars['ID']['input'];
|
|
160794
|
-
contentId: Scalars['ID']['input'];
|
|
160795
|
-
};
|
|
160796
|
-
export declare type QueryConfluence_ClassificationLevelsForSpaceDefaultArgs = {
|
|
160797
|
-
cloudId: Scalars['ID']['input'];
|
|
160798
|
-
};
|
|
160799
162866
|
export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
160800
162867
|
cloudId: Scalars['ID']['input'];
|
|
160801
162868
|
contentId: Scalars['ID']['input'];
|
|
@@ -161141,6 +163208,9 @@ export declare type QueryConfluence_NotesByProductLinkArgs = {
|
|
|
161141
163208
|
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
161142
163209
|
productLink: Scalars['ID']['input'];
|
|
161143
163210
|
};
|
|
163211
|
+
export declare type QueryConfluence_PageBriefingArgs = {
|
|
163212
|
+
pageId: Scalars['ID']['input'];
|
|
163213
|
+
};
|
|
161144
163214
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
161145
163215
|
cloudId: Scalars['ID']['input'];
|
|
161146
163216
|
id: Scalars['ID']['input'];
|
|
@@ -162286,6 +164356,9 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
162286
164356
|
containerId: Scalars['ID']['input'];
|
|
162287
164357
|
goalKey: Scalars['String']['input'];
|
|
162288
164358
|
};
|
|
164359
|
+
export declare type QueryGoals_GoalStatusesArgs = {
|
|
164360
|
+
containerId: Scalars['ID']['input'];
|
|
164361
|
+
};
|
|
162289
164362
|
export declare type QueryGoals_GoalTypeByIdArgs = {
|
|
162290
164363
|
goalTypeId: Scalars['ID']['input'];
|
|
162291
164364
|
};
|
|
@@ -162703,6 +164776,9 @@ export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs =
|
|
|
162703
164776
|
export declare type QueryJira_JswBoardViewSettingsArgs = {
|
|
162704
164777
|
input: JiraJswBoardViewSettingsQueryInput;
|
|
162705
164778
|
};
|
|
164779
|
+
export declare type QueryJira_JswGlobalConfigArgs = {
|
|
164780
|
+
cloudId: Scalars['ID']['input'];
|
|
164781
|
+
};
|
|
162706
164782
|
export declare type QueryJira_LookAndFeelArgs = {
|
|
162707
164783
|
cloudId: Scalars['ID']['input'];
|
|
162708
164784
|
};
|
|
@@ -162876,6 +164952,7 @@ export declare type QueryKitsune_CustomersArgs = {
|
|
|
162876
164952
|
workspaceAri: Scalars['ID']['input'];
|
|
162877
164953
|
};
|
|
162878
164954
|
export declare type QueryKitsune_EntitlementsArgs = {
|
|
164955
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162879
164956
|
workspaceAri: Scalars['ID']['input'];
|
|
162880
164957
|
};
|
|
162881
164958
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
@@ -162910,6 +164987,7 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
162910
164987
|
workspaceAri: Scalars['ID']['input'];
|
|
162911
164988
|
};
|
|
162912
164989
|
export declare type QueryKitsune_SearchChunkArgs = {
|
|
164990
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162913
164991
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
162914
164992
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
162915
164993
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -162919,6 +164997,7 @@ export declare type QueryKitsune_SearchChunkArgs = {
|
|
|
162919
164997
|
export declare type QueryKitsune_SearchCustomersArgs = {
|
|
162920
164998
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162921
164999
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165000
|
+
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
162922
165001
|
organizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
162923
165002
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
162924
165003
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -162926,6 +165005,7 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
162926
165005
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
162927
165006
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162928
165007
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
165008
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162929
165009
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162930
165010
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
162931
165011
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -162937,9 +165017,11 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
162937
165017
|
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
162938
165018
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162939
165019
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
165020
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162940
165021
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162941
165022
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
162942
165023
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
165024
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
162943
165025
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162944
165026
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
162945
165027
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -162947,6 +165029,7 @@ export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
|
162947
165029
|
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
162948
165030
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162949
165031
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
165032
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162950
165033
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162951
165034
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
162952
165035
|
name: Scalars['String']['input'];
|
|
@@ -162971,6 +165054,7 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
162971
165054
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
162972
165055
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162973
165056
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
165057
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162974
165058
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162975
165059
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
162976
165060
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
@@ -163496,6 +165580,7 @@ export declare type QueryPublicLinkSpacesByCriteriaArgs = {
|
|
|
163496
165580
|
status?: InputMaybe<Array<PublicLinkSpaceStatus>>;
|
|
163497
165581
|
};
|
|
163498
165582
|
export declare type QueryPublicLinksByCriteriaArgs = {
|
|
165583
|
+
accessType?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkAccessType>>>;
|
|
163499
165584
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163500
165585
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163501
165586
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -163551,6 +165636,9 @@ export declare type QueryRadar_LastAppliedFilterArgs = {
|
|
|
163551
165636
|
cloudId: Scalars['ID']['input'];
|
|
163552
165637
|
pageName: Scalars['String']['input'];
|
|
163553
165638
|
};
|
|
165639
|
+
export declare type QueryRadar_MetricsSettingsArgs = {
|
|
165640
|
+
cloudId: Scalars['ID']['input'];
|
|
165641
|
+
};
|
|
163554
165642
|
export declare type QueryRadar_NotificationSettingsArgs = {
|
|
163555
165643
|
cloudId: Scalars['ID']['input'];
|
|
163556
165644
|
};
|
|
@@ -163581,6 +165669,9 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
163581
165669
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163582
165670
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
163583
165671
|
};
|
|
165672
|
+
export declare type QueryRadar_SkillAssignmentMetadataArgs = {
|
|
165673
|
+
skillAssignments: Array<RadarSkillAssignmentInput>;
|
|
165674
|
+
};
|
|
163584
165675
|
export declare type QueryRadar_SkillByAriArgs = {
|
|
163585
165676
|
id: Scalars['ID']['input'];
|
|
163586
165677
|
};
|
|
@@ -163807,11 +165898,6 @@ export declare type QuerySpaceRolesByCriteriaArgs = {
|
|
|
163807
165898
|
principal?: InputMaybe<RoleAssignmentPrincipalInput>;
|
|
163808
165899
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
163809
165900
|
};
|
|
163810
|
-
export declare type QuerySpaceRolesBySpaceArgs = {
|
|
163811
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
163812
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163813
|
-
spaceId: Scalars['Long']['input'];
|
|
163814
|
-
};
|
|
163815
165901
|
export declare type QuerySpaceSidebarLinksArgs = {
|
|
163816
165902
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
163817
165903
|
};
|
|
@@ -165160,6 +167246,16 @@ export declare type RadarSkill = Node & {
|
|
|
165160
167246
|
parent?: Maybe<RadarSkill>;
|
|
165161
167247
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
165162
167248
|
};
|
|
167249
|
+
export declare type RadarSkillAssignmentInput = {
|
|
167250
|
+
skillId: Scalars['ID']['input'];
|
|
167251
|
+
workerId: Scalars['ID']['input'];
|
|
167252
|
+
};
|
|
167253
|
+
export declare type RadarSkillAssignmentMetadata = {
|
|
167254
|
+
__typename?: 'RadarSkillAssignmentMetadata';
|
|
167255
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
167256
|
+
skillId: Scalars['ID']['output'];
|
|
167257
|
+
workerId: Scalars['ID']['output'];
|
|
167258
|
+
};
|
|
165163
167259
|
export declare type RadarStarredEntity = RadarView;
|
|
165164
167260
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
165165
167261
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
@@ -166541,6 +168637,10 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
166541
168637
|
Group = "GROUP",
|
|
166542
168638
|
User = "USER"
|
|
166543
168639
|
}
|
|
168640
|
+
export declare enum RollingSprintSetting {
|
|
168641
|
+
Disabled = "DISABLED",
|
|
168642
|
+
Enabled = "ENABLED"
|
|
168643
|
+
}
|
|
166544
168644
|
export declare type RunImportError = {
|
|
166545
168645
|
__typename?: 'RunImportError';
|
|
166546
168646
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -167013,8 +169113,12 @@ export declare enum Scope {
|
|
|
167013
169113
|
TrelloAtlassianExternal = "TRELLO_ATLASSIAN_EXTERNAL",
|
|
167014
169114
|
TrelloReadBoard = "TRELLO_READ_BOARD",
|
|
167015
169115
|
TrelloReadMember = "TRELLO_READ_MEMBER",
|
|
169116
|
+
TrelloReadMemberInbox = "TRELLO_READ_MEMBER_INBOX",
|
|
169117
|
+
TrelloReadMemberPlanner = "TRELLO_READ_MEMBER_PLANNER",
|
|
167016
169118
|
TrelloReadOrganization = "TRELLO_READ_ORGANIZATION",
|
|
167017
169119
|
TrelloWriteBoard = "TRELLO_WRITE_BOARD",
|
|
169120
|
+
TrelloWriteMemberInbox = "TRELLO_WRITE_MEMBER_INBOX",
|
|
169121
|
+
TrelloWriteMemberPlanner = "TRELLO_WRITE_MEMBER_PLANNER",
|
|
167018
169122
|
UserColumnsRead = "USER_COLUMNS_READ",
|
|
167019
169123
|
UserConfigurationDelete = "USER_CONFIGURATION_DELETE",
|
|
167020
169124
|
UserConfigurationRead = "USER_CONFIGURATION_READ",
|
|
@@ -167433,6 +169537,7 @@ export declare type SearchGraphQlConfigurationResponse = {
|
|
|
167433
169537
|
};
|
|
167434
169538
|
export declare type SearchGraphQlConfigurationResponseThirdPartyFilterOptionsArgs = {
|
|
167435
169539
|
datasourceId: Scalars['String']['input'];
|
|
169540
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
167436
169541
|
};
|
|
167437
169542
|
export declare type SearchGraphQlConfigurationResponseThirdPartySlackChannelsArgs = {
|
|
167438
169543
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167529,6 +169634,7 @@ export declare type SearchLayerDefinition = {
|
|
|
167529
169634
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
167530
169635
|
};
|
|
167531
169636
|
export declare enum SearchLinkedEntitiesType {
|
|
169637
|
+
Comments = "comments",
|
|
167532
169638
|
Messages = "messages",
|
|
167533
169639
|
Thread = "thread"
|
|
167534
169640
|
}
|
|
@@ -187669,6 +189775,13 @@ export declare type SmartFeaturesUserResultResponse = SmartFeaturesResultRespons
|
|
|
187669
189775
|
result?: Maybe<Array<Maybe<SmartFeaturesUserResult>>>;
|
|
187670
189776
|
};
|
|
187671
189777
|
export declare type SmartLink = {
|
|
189778
|
+
canView: Scalars['Boolean']['output'];
|
|
189779
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
189780
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
189781
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
189782
|
+
resolved: Scalars['Boolean']['output'];
|
|
189783
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
189784
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
187672
189785
|
title?: Maybe<Scalars['String']['output']>;
|
|
187673
189786
|
url: Scalars['String']['output'];
|
|
187674
189787
|
};
|
|
@@ -188811,6 +190924,7 @@ export declare type SpfAskActivity = {
|
|
|
188811
190924
|
updatedValues?: Maybe<Array<Maybe<SpfAskActivityUpdatedValue>>>;
|
|
188812
190925
|
};
|
|
188813
190926
|
export declare enum SpfAskActivityAttribute {
|
|
190927
|
+
ConnectedWork = "CONNECTED_WORK",
|
|
188814
190928
|
Description = "DESCRIPTION",
|
|
188815
190929
|
ImpactedWork = "IMPACTED_WORK",
|
|
188816
190930
|
Justification = "JUSTIFICATION",
|
|
@@ -188853,6 +190967,12 @@ export declare enum SpfAskActivityType {
|
|
|
188853
190967
|
Created = "CREATED",
|
|
188854
190968
|
Updated = "UPDATED"
|
|
188855
190969
|
}
|
|
190970
|
+
export declare type SpfAskActivityUpdatedConnectedWork = SpfAskActivityUpdatedValue & {
|
|
190971
|
+
__typename?: 'SpfAskActivityUpdatedConnectedWork';
|
|
190972
|
+
attribute: SpfAskActivityAttribute;
|
|
190973
|
+
newValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
190974
|
+
oldValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
190975
|
+
};
|
|
188856
190976
|
export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue & {
|
|
188857
190977
|
__typename?: 'SpfAskActivityUpdatedDocument';
|
|
188858
190978
|
attribute: SpfAskActivityAttribute;
|
|
@@ -189022,6 +191142,7 @@ export declare enum SpfAskStatus {
|
|
|
189022
191142
|
Deferred = "DEFERRED",
|
|
189023
191143
|
Draft = "DRAFT",
|
|
189024
191144
|
InReview = "IN_REVIEW",
|
|
191145
|
+
Resolved = "RESOLVED",
|
|
189025
191146
|
Revising = "REVISING",
|
|
189026
191147
|
Submitted = "SUBMITTED"
|
|
189027
191148
|
}
|
|
@@ -189166,6 +191287,7 @@ export declare type SpfCreateViewInput = {
|
|
|
189166
191287
|
cloudId: Scalars['ID']['input'];
|
|
189167
191288
|
entityType: Scalars['String']['input'];
|
|
189168
191289
|
name: Scalars['String']['input'];
|
|
191290
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
189169
191291
|
settings: SpfViewSettingsInput;
|
|
189170
191292
|
};
|
|
189171
191293
|
export declare type SpfDeleteAskCommentInput = {
|
|
@@ -189669,6 +191791,10 @@ export declare type SpfUpdateViewNameInput = {
|
|
|
189669
191791
|
id: Scalars['ID']['input'];
|
|
189670
191792
|
name: Scalars['String']['input'];
|
|
189671
191793
|
};
|
|
191794
|
+
export declare type SpfUpdateViewOwnerInput = {
|
|
191795
|
+
id: Scalars['ID']['input'];
|
|
191796
|
+
ownerId: Scalars['String']['input'];
|
|
191797
|
+
};
|
|
189672
191798
|
export declare type SpfUpdateViewSettingsInput = {
|
|
189673
191799
|
id: Scalars['ID']['input'];
|
|
189674
191800
|
settings: SpfViewSettingsInput;
|
|
@@ -189746,6 +191872,8 @@ export declare type SpfView = Node & {
|
|
|
189746
191872
|
entityType: Scalars['String']['output'];
|
|
189747
191873
|
id: Scalars['ID']['output'];
|
|
189748
191874
|
name: Scalars['String']['output'];
|
|
191875
|
+
owner?: Maybe<User>;
|
|
191876
|
+
ownerId?: Maybe<Scalars['String']['output']>;
|
|
189749
191877
|
settings: SpfViewSettings;
|
|
189750
191878
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
189751
191879
|
updatedBy?: Maybe<User>;
|
|
@@ -189793,17 +191921,22 @@ export declare type SplitIssueOutput = MutationResponse & {
|
|
|
189793
191921
|
};
|
|
189794
191922
|
export declare type Sprint = BaseSprint & {
|
|
189795
191923
|
__typename?: 'Sprint';
|
|
191924
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
189796
191925
|
cardChildren: Array<SoftwareCard>;
|
|
189797
191926
|
cards: Array<Maybe<SoftwareCard>>;
|
|
191927
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189798
191928
|
daysRemaining?: Maybe<Scalars['Int']['output']>;
|
|
189799
191929
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189800
191930
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
189801
191931
|
goal?: Maybe<Scalars['String']['output']>;
|
|
189802
191932
|
id?: Maybe<Scalars['ID']['output']>;
|
|
191933
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
189803
191934
|
name?: Maybe<Scalars['String']['output']>;
|
|
191935
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
189804
191936
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
189805
191937
|
sprintState: SprintState;
|
|
189806
191938
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
191939
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189807
191940
|
};
|
|
189808
191941
|
export declare type SprintCardsArgs = {
|
|
189809
191942
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -189860,17 +191993,22 @@ export declare enum SprintState {
|
|
|
189860
191993
|
}
|
|
189861
191994
|
export declare type SprintWithStatistics = BaseSprint & {
|
|
189862
191995
|
__typename?: 'SprintWithStatistics';
|
|
191996
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
191997
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189863
191998
|
defaultEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189864
191999
|
defaultStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189865
192000
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189866
192001
|
goal?: Maybe<Scalars['String']['output']>;
|
|
189867
192002
|
id?: Maybe<Scalars['ID']['output']>;
|
|
192003
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
189868
192004
|
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
189869
192005
|
lastColumnName?: Maybe<Scalars['String']['output']>;
|
|
189870
192006
|
name?: Maybe<Scalars['String']['output']>;
|
|
192007
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
189871
192008
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
189872
192009
|
sprintState: SprintState;
|
|
189873
192010
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
192011
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189874
192012
|
};
|
|
189875
192013
|
export declare type SpssExportFullSiteScanResultsInput = {
|
|
189876
192014
|
bootstrapId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -189969,6 +192107,18 @@ export declare type StakeholderCommsBodyConfigType = {
|
|
|
189969
192107
|
overallUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
189970
192108
|
uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
|
|
189971
192109
|
};
|
|
192110
|
+
export declare type StakeholderCommsBulkAddSubscriberFromAdminResponse = {
|
|
192111
|
+
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResponse';
|
|
192112
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
192113
|
+
results: Array<StakeholderCommsBulkAddSubscriberFromAdminResultItem>;
|
|
192114
|
+
success: Scalars['Boolean']['output'];
|
|
192115
|
+
};
|
|
192116
|
+
export declare type StakeholderCommsBulkAddSubscriberFromAdminResultItem = {
|
|
192117
|
+
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResultItem';
|
|
192118
|
+
email: Scalars['String']['output'];
|
|
192119
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
192120
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
192121
|
+
};
|
|
189972
192122
|
export declare type StakeholderCommsBulkStakeholderCreationResponse = {
|
|
189973
192123
|
__typename?: 'StakeholderCommsBulkStakeholderCreationResponse';
|
|
189974
192124
|
errors?: Maybe<Array<StakeholderCommsStakeholderCreationError>>;
|
|
@@ -191344,10 +193494,13 @@ export declare enum StalePagesSortingType {
|
|
|
191344
193494
|
Desc = "DESC"
|
|
191345
193495
|
}
|
|
191346
193496
|
export declare type StartSprintInput = {
|
|
193497
|
+
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
191347
193498
|
boardId: Scalars['ID']['input'];
|
|
191348
193499
|
endDate: Scalars['String']['input'];
|
|
191349
193500
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
193501
|
+
incompleteCardsDestination?: InputMaybe<SoftwareCardsDestination>;
|
|
191350
193502
|
name: Scalars['String']['input'];
|
|
193503
|
+
rollingSprint?: InputMaybe<RollingSprintSetting>;
|
|
191351
193504
|
sprintId: Scalars['ID']['input'];
|
|
191352
193505
|
startDate: Scalars['String']['input'];
|
|
191353
193506
|
};
|
|
@@ -192297,6 +194450,12 @@ export declare type TeamCreateCustomFieldValuePayload = {
|
|
|
192297
194450
|
customFieldAri: Scalars['ID']['input'];
|
|
192298
194451
|
value: Scalars['String']['input'];
|
|
192299
194452
|
};
|
|
194453
|
+
export declare type TeamCreateExternalTeamInput = {
|
|
194454
|
+
description: Scalars['String']['input'];
|
|
194455
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
194456
|
+
externalReference: TeamExternalReferenceInput;
|
|
194457
|
+
scopeId: Scalars['ID']['input'];
|
|
194458
|
+
};
|
|
192300
194459
|
export declare type TeamCreatePayload = Payload & {
|
|
192301
194460
|
__typename?: 'TeamCreatePayload';
|
|
192302
194461
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -192366,6 +194525,11 @@ export declare type TeamDetailedCustomFieldInfo = {
|
|
|
192366
194525
|
options?: Maybe<Array<TeamCustomFieldValue>>;
|
|
192367
194526
|
type: TeamCustomFieldType;
|
|
192368
194527
|
};
|
|
194528
|
+
export declare type TeamExternalReferenceInput = {
|
|
194529
|
+
id: Scalars['String']['input'];
|
|
194530
|
+
source: TeamSource;
|
|
194531
|
+
syncTeamName?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194532
|
+
};
|
|
192369
194533
|
export declare type TeamHierarchy = {
|
|
192370
194534
|
__typename?: 'TeamHierarchy';
|
|
192371
194535
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -192394,6 +194558,15 @@ export declare type TeamMember = {
|
|
|
192394
194558
|
role?: Maybe<MembershipRole>;
|
|
192395
194559
|
state?: Maybe<MembershipState>;
|
|
192396
194560
|
};
|
|
194561
|
+
export declare type TeamMemberAccountId = {
|
|
194562
|
+
__typename?: 'TeamMemberAccountId';
|
|
194563
|
+
accountId: Scalars['ID']['output'];
|
|
194564
|
+
};
|
|
194565
|
+
export declare type TeamMemberAccountIdError = {
|
|
194566
|
+
__typename?: 'TeamMemberAccountIdError';
|
|
194567
|
+
accountId: Scalars['ID']['output'];
|
|
194568
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
194569
|
+
};
|
|
192397
194570
|
export declare type TeamMemberConnection = {
|
|
192398
194571
|
__typename?: 'TeamMemberConnection';
|
|
192399
194572
|
edges?: Maybe<Array<Maybe<TeamMemberEdge>>>;
|
|
@@ -192425,6 +194598,9 @@ export declare type TeamMemberV2 = {
|
|
|
192425
194598
|
export declare type TeamMembershipFilter = {
|
|
192426
194599
|
memberIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
192427
194600
|
};
|
|
194601
|
+
export declare enum TeamMembershipProcessingStatus {
|
|
194602
|
+
Async = "ASYNC"
|
|
194603
|
+
}
|
|
192428
194604
|
export declare enum TeamMembershipRole {
|
|
192429
194605
|
Admin = "ADMIN",
|
|
192430
194606
|
Regular = "REGULAR"
|
|
@@ -192440,6 +194616,12 @@ export declare enum TeamMembershipState {
|
|
|
192440
194616
|
FullMember = "FULL_MEMBER",
|
|
192441
194617
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
192442
194618
|
}
|
|
194619
|
+
export declare type TeamMembershipSyncResult = {
|
|
194620
|
+
__typename?: 'TeamMembershipSyncResult';
|
|
194621
|
+
errors: Array<TeamMemberAccountIdError>;
|
|
194622
|
+
members: Array<TeamMemberAccountId>;
|
|
194623
|
+
status: TeamMembershipProcessingStatus;
|
|
194624
|
+
};
|
|
192443
194625
|
export declare type TeamMutation = {
|
|
192444
194626
|
__typename?: 'TeamMutation';
|
|
192445
194627
|
addChild?: Maybe<TeamV2>;
|
|
@@ -192449,6 +194631,7 @@ export declare type TeamMutation = {
|
|
|
192449
194631
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
192450
194632
|
createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
192451
194633
|
createCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
194634
|
+
createExternalTeam?: Maybe<TeamWithMembershipSyncPayload>;
|
|
192452
194635
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
192453
194636
|
createTeamType?: Maybe<TeamType>;
|
|
192454
194637
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -192500,6 +194683,9 @@ export declare type TeamMutationCreateCustomFieldArgs = {
|
|
|
192500
194683
|
export declare type TeamMutationCreateCustomFieldValueArgs = {
|
|
192501
194684
|
customFieldValueData: TeamCreateCustomFieldValuePayload;
|
|
192502
194685
|
};
|
|
194686
|
+
export declare type TeamMutationCreateExternalTeamArgs = {
|
|
194687
|
+
input: TeamCreateExternalTeamInput;
|
|
194688
|
+
};
|
|
192503
194689
|
export declare type TeamMutationCreateTeamArgs = {
|
|
192504
194690
|
input: TeamCreateTeamInput;
|
|
192505
194691
|
};
|
|
@@ -192791,6 +194977,10 @@ export declare enum TeamSortOrder {
|
|
|
192791
194977
|
Asc = "ASC",
|
|
192792
194978
|
Desc = "DESC"
|
|
192793
194979
|
}
|
|
194980
|
+
export declare enum TeamSource {
|
|
194981
|
+
AtlassianGroup = "ATLASSIAN_GROUP",
|
|
194982
|
+
Hris = "HRIS"
|
|
194983
|
+
}
|
|
192794
194984
|
export declare enum TeamState {
|
|
192795
194985
|
Active = "ACTIVE",
|
|
192796
194986
|
Disbanded = "DISBANDED",
|
|
@@ -192986,6 +195176,13 @@ export declare type TeamV2MembersArgs = {
|
|
|
192986
195176
|
first?: Scalars['Int']['input'];
|
|
192987
195177
|
state?: Array<TeamMembershipState>;
|
|
192988
195178
|
};
|
|
195179
|
+
export declare type TeamWithMembershipSyncPayload = Payload & {
|
|
195180
|
+
__typename?: 'TeamWithMembershipSyncPayload';
|
|
195181
|
+
errors?: Maybe<Array<MutationError>>;
|
|
195182
|
+
membership?: Maybe<TeamMembershipSyncResult>;
|
|
195183
|
+
success: Scalars['Boolean']['output'];
|
|
195184
|
+
team?: Maybe<TeamV2>;
|
|
195185
|
+
};
|
|
192989
195186
|
export declare enum TeamworkGraphUserViewedEntityType {
|
|
192990
195187
|
ConfluenceBlogpost = "ConfluenceBlogpost",
|
|
192991
195188
|
ConfluencePage = "ConfluencePage",
|
|
@@ -194313,6 +196510,7 @@ export declare type TownsquareGoalCreateMetricInput = {
|
|
|
194313
196510
|
name: Scalars['String']['input'];
|
|
194314
196511
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
194315
196512
|
subType?: InputMaybe<Scalars['String']['input']>;
|
|
196513
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
194316
196514
|
type: TownsquareMetricType;
|
|
194317
196515
|
value: Scalars['Float']['input'];
|
|
194318
196516
|
};
|
|
@@ -194810,6 +197008,7 @@ export declare type TownsquareGoalsCreateRiskPayload = {
|
|
|
194810
197008
|
success: Scalars['Boolean']['output'];
|
|
194811
197009
|
};
|
|
194812
197010
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
197011
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
194813
197012
|
goalId: Scalars['ID']['input'];
|
|
194814
197013
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
194815
197014
|
isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -197736,6 +199935,7 @@ export declare type TrelloBaseCard = {
|
|
|
197736
199935
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
197737
199936
|
limits?: Maybe<TrelloCardLimits>;
|
|
197738
199937
|
list?: Maybe<TrelloList>;
|
|
199938
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
197739
199939
|
name?: Maybe<Scalars['String']['output']>;
|
|
197740
199940
|
objectId: Scalars['ID']['output'];
|
|
197741
199941
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -197957,6 +200157,10 @@ export declare type TrelloBoardCustomFieldsLimits = {
|
|
|
197957
200157
|
__typename?: 'TrelloBoardCustomFieldsLimits';
|
|
197958
200158
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
197959
200159
|
};
|
|
200160
|
+
export declare type TrelloBoardDeleted = {
|
|
200161
|
+
__typename?: 'TrelloBoardDeleted';
|
|
200162
|
+
id: Scalars['ID']['output'];
|
|
200163
|
+
};
|
|
197960
200164
|
export declare type TrelloBoardEdge = {
|
|
197961
200165
|
__typename?: 'TrelloBoardEdge';
|
|
197962
200166
|
cursor: Scalars['String']['output'];
|
|
@@ -198240,6 +200444,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
198240
200444
|
limits?: Maybe<TrelloCardLimits>;
|
|
198241
200445
|
list?: Maybe<TrelloList>;
|
|
198242
200446
|
location?: Maybe<TrelloCardLocation>;
|
|
200447
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
198243
200448
|
members?: Maybe<TrelloMemberConnection>;
|
|
198244
200449
|
membersVoted?: Maybe<TrelloMemberConnection>;
|
|
198245
200450
|
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
@@ -198593,6 +200798,11 @@ export declare type TrelloCardLocation = {
|
|
|
198593
200798
|
name?: Maybe<Scalars['String']['output']>;
|
|
198594
200799
|
staticMapUrl?: Maybe<Scalars['URL']['output']>;
|
|
198595
200800
|
};
|
|
200801
|
+
export declare type TrelloCardManifest = {
|
|
200802
|
+
__typename?: 'TrelloCardManifest';
|
|
200803
|
+
contents?: Maybe<Scalars['JSON']['output']>;
|
|
200804
|
+
schemaVersion: Scalars['Int']['output'];
|
|
200805
|
+
};
|
|
198596
200806
|
export declare type TrelloCardMemberEdgeUpdated = {
|
|
198597
200807
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
198598
200808
|
node?: Maybe<TrelloMember>;
|
|
@@ -198622,6 +200832,7 @@ export declare type TrelloCardPlannerEventEdgeUpdated = {
|
|
|
198622
200832
|
export declare enum TrelloCardRole {
|
|
198623
200833
|
Board = "BOARD",
|
|
198624
200834
|
Link = "LINK",
|
|
200835
|
+
Manifest = "MANIFEST",
|
|
198625
200836
|
Mirror = "MIRROR",
|
|
198626
200837
|
Separator = "SEPARATOR"
|
|
198627
200838
|
}
|
|
@@ -198749,6 +200960,13 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
198749
200960
|
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
198750
200961
|
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
198751
200962
|
};
|
|
200963
|
+
export declare enum TrelloChecklistCreationMethod {
|
|
200964
|
+
Ai = "AI",
|
|
200965
|
+
Assisted = "ASSISTED",
|
|
200966
|
+
Automatic = "AUTOMATIC",
|
|
200967
|
+
Demo = "DEMO",
|
|
200968
|
+
EmailSource = "EMAIL_SOURCE"
|
|
200969
|
+
}
|
|
198752
200970
|
export declare type TrelloChecklistDeleted = {
|
|
198753
200971
|
__typename?: 'TrelloChecklistDeleted';
|
|
198754
200972
|
id: Scalars['ID']['output'];
|
|
@@ -198763,6 +200981,12 @@ export declare type TrelloChecklistEdgeUpdated = {
|
|
|
198763
200981
|
__typename?: 'TrelloChecklistEdgeUpdated';
|
|
198764
200982
|
node: TrelloChecklistUpdated;
|
|
198765
200983
|
};
|
|
200984
|
+
export declare enum TrelloChecklistMediaType {
|
|
200985
|
+
ImageGif = "IMAGE_GIF",
|
|
200986
|
+
ImageJpeg = "IMAGE_JPEG",
|
|
200987
|
+
ImagePng = "IMAGE_PNG",
|
|
200988
|
+
ImageWebp = "IMAGE_WEBP"
|
|
200989
|
+
}
|
|
198766
200990
|
export declare type TrelloChecklistTarget = {
|
|
198767
200991
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
198768
200992
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -198793,6 +201017,15 @@ export declare type TrelloCloseCardPayload = Payload & {
|
|
|
198793
201017
|
errors?: Maybe<Array<MutationError>>;
|
|
198794
201018
|
success: Scalars['Boolean']['output'];
|
|
198795
201019
|
};
|
|
201020
|
+
export declare type TrelloCloseListInput = {
|
|
201021
|
+
listId: Scalars['ID']['input'];
|
|
201022
|
+
};
|
|
201023
|
+
export declare type TrelloCloseListPayload = Payload & {
|
|
201024
|
+
__typename?: 'TrelloCloseListPayload';
|
|
201025
|
+
errors?: Maybe<Array<MutationError>>;
|
|
201026
|
+
list?: Maybe<TrelloList>;
|
|
201027
|
+
success: Scalars['Boolean']['output'];
|
|
201028
|
+
};
|
|
198796
201029
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
198797
201030
|
__typename?: 'TrelloCommentCardAction';
|
|
198798
201031
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -199042,6 +201275,21 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
199042
201275
|
errors?: Maybe<Array<MutationError>>;
|
|
199043
201276
|
success: Scalars['Boolean']['output'];
|
|
199044
201277
|
};
|
|
201278
|
+
export declare type TrelloCreateChecklistInput = {
|
|
201279
|
+
cardId: Scalars['ID']['input'];
|
|
201280
|
+
creationMethod?: InputMaybe<TrelloChecklistCreationMethod>;
|
|
201281
|
+
imageUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
201282
|
+
mediaType?: InputMaybe<TrelloChecklistMediaType>;
|
|
201283
|
+
name: Scalars['String']['input'];
|
|
201284
|
+
position?: InputMaybe<TrelloPosition>;
|
|
201285
|
+
sourceChecklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
201286
|
+
};
|
|
201287
|
+
export declare type TrelloCreateChecklistPayload = Payload & {
|
|
201288
|
+
__typename?: 'TrelloCreateChecklistPayload';
|
|
201289
|
+
card?: Maybe<TrelloCard>;
|
|
201290
|
+
errors?: Maybe<Array<MutationError>>;
|
|
201291
|
+
success: Scalars['Boolean']['output'];
|
|
201292
|
+
};
|
|
199045
201293
|
export declare type TrelloCreateCustomFieldInput = {
|
|
199046
201294
|
boardId: Scalars['ID']['input'];
|
|
199047
201295
|
display?: InputMaybe<TrelloCustomFieldDisplayInput>;
|
|
@@ -199332,6 +201580,7 @@ export declare type TrelloDeleteBoardInput = {
|
|
|
199332
201580
|
};
|
|
199333
201581
|
export declare type TrelloDeleteBoardPayload = Payload & {
|
|
199334
201582
|
__typename?: 'TrelloDeleteBoardPayload';
|
|
201583
|
+
board?: Maybe<TrelloBoardDeleted>;
|
|
199335
201584
|
errors?: Maybe<Array<MutationError>>;
|
|
199336
201585
|
success: Scalars['Boolean']['output'];
|
|
199337
201586
|
};
|
|
@@ -199608,6 +201857,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
199608
201857
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
199609
201858
|
limits?: Maybe<TrelloCardLimits>;
|
|
199610
201859
|
list?: Maybe<TrelloList>;
|
|
201860
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
199611
201861
|
name?: Maybe<Scalars['String']['output']>;
|
|
199612
201862
|
objectId: Scalars['ID']['output'];
|
|
199613
201863
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -199730,6 +201980,16 @@ export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
|
199730
201980
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
199731
201981
|
workspace?: Maybe<TrelloBoardWorkspaceUpdated>;
|
|
199732
201982
|
};
|
|
201983
|
+
export declare type TrelloInitializeVoiceCaptureSessionInput = {
|
|
201984
|
+
boardId: Scalars['ID']['input'];
|
|
201985
|
+
listId: Scalars['ID']['input'];
|
|
201986
|
+
};
|
|
201987
|
+
export declare type TrelloInitializeVoiceCaptureSessionPayload = Payload & {
|
|
201988
|
+
__typename?: 'TrelloInitializeVoiceCaptureSessionPayload';
|
|
201989
|
+
errors?: Maybe<Array<MutationError>>;
|
|
201990
|
+
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
201991
|
+
success: Scalars['Boolean']['output'];
|
|
201992
|
+
};
|
|
199733
201993
|
export declare type TrelloJwmWorkspaceLink = {
|
|
199734
201994
|
__typename?: 'TrelloJwmWorkspaceLink';
|
|
199735
201995
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -199806,6 +202066,7 @@ export declare type TrelloLimitProps = {
|
|
|
199806
202066
|
export declare type TrelloList = Node & {
|
|
199807
202067
|
__typename?: 'TrelloList';
|
|
199808
202068
|
board?: Maybe<TrelloBoard>;
|
|
202069
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
199809
202070
|
cards?: Maybe<TrelloCardConnection>;
|
|
199810
202071
|
closed: Scalars['Boolean']['output'];
|
|
199811
202072
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -200318,12 +202579,14 @@ export declare type TrelloMutationApi = {
|
|
|
200318
202579
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
200319
202580
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
200320
202581
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
202582
|
+
closeList?: Maybe<TrelloCloseListPayload>;
|
|
200321
202583
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
200322
202584
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
200323
202585
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
200324
202586
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
200325
202587
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
200326
202588
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
202589
|
+
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
200327
202590
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
200328
202591
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
200329
202592
|
createList?: Maybe<TrelloCreateListPayload>;
|
|
@@ -200350,6 +202613,7 @@ export declare type TrelloMutationApi = {
|
|
|
200350
202613
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
200351
202614
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
200352
202615
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
202616
|
+
initializeVoiceCaptureSession?: Maybe<TrelloInitializeVoiceCaptureSessionPayload>;
|
|
200353
202617
|
markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
|
|
200354
202618
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
200355
202619
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
@@ -200454,6 +202718,9 @@ export declare type TrelloMutationApiCloseBoardArgs = {
|
|
|
200454
202718
|
export declare type TrelloMutationApiCloseCardArgs = {
|
|
200455
202719
|
input: TrelloCloseCardInput;
|
|
200456
202720
|
};
|
|
202721
|
+
export declare type TrelloMutationApiCloseListArgs = {
|
|
202722
|
+
input: TrelloCloseListInput;
|
|
202723
|
+
};
|
|
200457
202724
|
export declare type TrelloMutationApiCompleteOnboardingArgs = {
|
|
200458
202725
|
input: TrelloCompleteOnboardingInput;
|
|
200459
202726
|
};
|
|
@@ -200472,6 +202739,9 @@ export declare type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
|
200472
202739
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
200473
202740
|
input: TrelloCreateCardInput;
|
|
200474
202741
|
};
|
|
202742
|
+
export declare type TrelloMutationApiCreateChecklistArgs = {
|
|
202743
|
+
input: TrelloCreateChecklistInput;
|
|
202744
|
+
};
|
|
200475
202745
|
export declare type TrelloMutationApiCreateCustomFieldArgs = {
|
|
200476
202746
|
input: TrelloCreateCustomFieldInput;
|
|
200477
202747
|
};
|
|
@@ -200550,6 +202820,9 @@ export declare type TrelloMutationApiHideCardCoversOnCardFrontArgs = {
|
|
|
200550
202820
|
export declare type TrelloMutationApiHideVotesOnBoardArgs = {
|
|
200551
202821
|
input: TrelloHideVotesOnBoardInput;
|
|
200552
202822
|
};
|
|
202823
|
+
export declare type TrelloMutationApiInitializeVoiceCaptureSessionArgs = {
|
|
202824
|
+
input: TrelloInitializeVoiceCaptureSessionInput;
|
|
202825
|
+
};
|
|
200553
202826
|
export declare type TrelloMutationApiMarkCardCompleteArgs = {
|
|
200554
202827
|
input: TrelloMarkCardCompleteInput;
|
|
200555
202828
|
};
|
|
@@ -200821,6 +203094,7 @@ export declare type TrelloPlanner = {
|
|
|
200821
203094
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
200822
203095
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
|
|
200823
203096
|
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
|
|
203097
|
+
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
200824
203098
|
id: Scalars['ID']['output'];
|
|
200825
203099
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
200826
203100
|
primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
|
|
@@ -201477,6 +203751,10 @@ export declare type TrelloPlannerUpdated = {
|
|
|
201477
203751
|
export declare type TrelloPlannerUpdatedCardsWithDueDatesArgs = {
|
|
201478
203752
|
filter: TrelloPlannerCardsWithDueDatesUpdatedFilter;
|
|
201479
203753
|
};
|
|
203754
|
+
export declare type TrelloPosition = {
|
|
203755
|
+
absolute?: InputMaybe<Scalars['Float']['input']>;
|
|
203756
|
+
relative?: InputMaybe<TrelloRelativePosition>;
|
|
203757
|
+
};
|
|
201480
203758
|
export declare type TrelloPowerUp = {
|
|
201481
203759
|
__typename?: 'TrelloPowerUp';
|
|
201482
203760
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -201629,6 +203907,7 @@ export declare type TrelloProposedEventUpdated = {
|
|
|
201629
203907
|
export declare type TrelloProviderCalendarDeleted = {
|
|
201630
203908
|
__typename?: 'TrelloProviderCalendarDeleted';
|
|
201631
203909
|
id: Scalars['ID']['output'];
|
|
203910
|
+
providerAccountId: Scalars['ID']['output'];
|
|
201632
203911
|
};
|
|
201633
203912
|
export declare type TrelloProviderCalendarInterface = {
|
|
201634
203913
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -202367,7 +204646,7 @@ export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
|
202367
204646
|
};
|
|
202368
204647
|
export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
202369
204648
|
__typename?: 'TrelloUpdateBoardIsTemplatePayload';
|
|
202370
|
-
board?: Maybe<
|
|
204649
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
202371
204650
|
errors?: Maybe<Array<MutationError>>;
|
|
202372
204651
|
success: Scalars['Boolean']['output'];
|
|
202373
204652
|
};
|
|
@@ -202378,6 +204657,7 @@ export declare type TrelloUpdateBoardNameInput = {
|
|
|
202378
204657
|
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
202379
204658
|
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
202380
204659
|
board?: Maybe<TrelloBoard>;
|
|
204660
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
202381
204661
|
errors?: Maybe<Array<MutationError>>;
|
|
202382
204662
|
success: Scalars['Boolean']['output'];
|
|
202383
204663
|
};
|