@forge/cli-shared 8.20.0-next.3 → 8.20.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/out/graphql/graphql-types.d.ts +1137 -107
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +178 -52
- package/package.json +2 -2
|
@@ -303,6 +303,17 @@ export declare type AvpAddFilterExpressionsPayload = Payload & {
|
|
|
303
303
|
filterExpression?: Maybe<AvpFilterExpression>;
|
|
304
304
|
success: Scalars['Boolean']['output'];
|
|
305
305
|
};
|
|
306
|
+
export declare enum AvpAnalyticsAcknowledgeableError {
|
|
307
|
+
ConcurrentUpdates = "CONCURRENT_UPDATES",
|
|
308
|
+
InvalidModelDefinition = "INVALID_MODEL_DEFINITION",
|
|
309
|
+
LineageImpact = "LINEAGE_IMPACT"
|
|
310
|
+
}
|
|
311
|
+
export declare type AvpAnalyticsAcknowledgeableMutationErrorExtension = MutationErrorExtension & {
|
|
312
|
+
__typename?: 'AVPAnalyticsAcknowledgeableMutationErrorExtension';
|
|
313
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
314
|
+
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
315
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
316
|
+
};
|
|
306
317
|
export declare type AvpAnalyticsArithmeticFormula = {
|
|
307
318
|
__typename?: 'AVPAnalyticsArithmeticFormula';
|
|
308
319
|
leftOperand: AvpAnalyticsFormulaParameter;
|
|
@@ -416,16 +427,19 @@ export declare enum AvpAnalyticsDateFormatBucket {
|
|
|
416
427
|
Year = "YEAR"
|
|
417
428
|
}
|
|
418
429
|
export declare type AvpAnalyticsDeleteModelInput = {
|
|
419
|
-
|
|
430
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
431
|
+
forceDelete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
420
432
|
modelId: Scalars['ID']['input'];
|
|
421
433
|
modelVersion?: InputMaybe<Scalars['String']['input']>;
|
|
422
434
|
};
|
|
423
435
|
export declare type AvpAnalyticsDeleteModelPayload = Payload & {
|
|
424
436
|
__typename?: 'AVPAnalyticsDeleteModelPayload';
|
|
425
437
|
errors?: Maybe<Array<MutationError>>;
|
|
438
|
+
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
426
439
|
success: Scalars['Boolean']['output'];
|
|
427
440
|
};
|
|
428
441
|
export declare type AvpAnalyticsDiscardModelUpdatesInput = {
|
|
442
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
429
443
|
forceDiscard?: InputMaybe<Scalars['Boolean']['input']>;
|
|
430
444
|
modelId: Scalars['ID']['input'];
|
|
431
445
|
modelVersion?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -434,6 +448,7 @@ export declare type AvpAnalyticsDiscardModelUpdatesPayload = Payload & {
|
|
|
434
448
|
__typename?: 'AVPAnalyticsDiscardModelUpdatesPayload';
|
|
435
449
|
errors?: Maybe<Array<MutationError>>;
|
|
436
450
|
model?: Maybe<AvpAnalyticsModel>;
|
|
451
|
+
needAcknowledgement?: Maybe<AvpAnalyticsAcknowledgeableError>;
|
|
437
452
|
success: Scalars['Boolean']['output'];
|
|
438
453
|
};
|
|
439
454
|
export declare type AvpAnalyticsError = {
|
|
@@ -840,7 +855,8 @@ export declare enum AvpAnalyticsSortType {
|
|
|
840
855
|
Desc = "DESC"
|
|
841
856
|
}
|
|
842
857
|
export declare type AvpAnalyticsUpdateModelInput = {
|
|
843
|
-
|
|
858
|
+
acknowledgedErrors?: InputMaybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
859
|
+
forceUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
844
860
|
modelCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
845
861
|
modelDefinition: AvpAnalyticsModelDefinitionInput;
|
|
846
862
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -851,6 +867,7 @@ export declare type AvpAnalyticsUpdateModelInput = {
|
|
|
851
867
|
};
|
|
852
868
|
export declare type AvpAnalyticsUpdateModelPayload = Payload & {
|
|
853
869
|
__typename?: 'AVPAnalyticsUpdateModelPayload';
|
|
870
|
+
acknowledgedErrors?: Maybe<Array<AvpAnalyticsAcknowledgeableError>>;
|
|
854
871
|
errors?: Maybe<Array<MutationError>>;
|
|
855
872
|
model?: Maybe<AvpAnalyticsModel>;
|
|
856
873
|
success: Scalars['Boolean']['output'];
|
|
@@ -1305,6 +1322,13 @@ export declare type AvpDashboardSettingsInput = {
|
|
|
1305
1322
|
subscriptionsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1306
1323
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
1307
1324
|
};
|
|
1325
|
+
export declare enum AvpDashboardSortKey {
|
|
1326
|
+
Category = "CATEGORY",
|
|
1327
|
+
CreatedAt = "CREATED_AT",
|
|
1328
|
+
CreatedBy = "CREATED_BY",
|
|
1329
|
+
Title = "TITLE",
|
|
1330
|
+
UpdatedAt = "UPDATED_AT"
|
|
1331
|
+
}
|
|
1308
1332
|
export declare enum AvpDashboardStatus {
|
|
1309
1333
|
Active = "ACTIVE",
|
|
1310
1334
|
Archived = "ARCHIVED",
|
|
@@ -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';
|
|
@@ -28138,6 +28332,9 @@ export declare type ConfluenceForgeExtensionDataContent = {
|
|
|
28138
28332
|
};
|
|
28139
28333
|
export declare type ConfluenceForgeExtensionDataMacro = {
|
|
28140
28334
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
28335
|
+
isConfiguring?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28336
|
+
isInserting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28337
|
+
layout?: InputMaybe<Scalars['String']['input']>;
|
|
28141
28338
|
};
|
|
28142
28339
|
export declare type ConfluenceForgeExtensionDataSpace = {
|
|
28143
28340
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39566,6 +39763,8 @@ export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
|
39566
39763
|
functionCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39567
39764
|
kvsRead?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39568
39765
|
kvsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39766
|
+
llmInput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39767
|
+
llmOutput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39569
39768
|
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39570
39769
|
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
39571
39770
|
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
@@ -39756,6 +39955,8 @@ export declare enum DevConsoleResource {
|
|
|
39756
39955
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
39757
39956
|
KvsRead = "KVS_READ",
|
|
39758
39957
|
KvsWrite = "KVS_WRITE",
|
|
39958
|
+
LlmInput = "LLM_INPUT",
|
|
39959
|
+
LlmOutput = "LLM_OUTPUT",
|
|
39759
39960
|
LogsWrite = "LOGS_WRITE",
|
|
39760
39961
|
SqlCompute = "SQL_COMPUTE",
|
|
39761
39962
|
SqlRequests = "SQL_REQUESTS",
|
|
@@ -39773,6 +39974,8 @@ export declare type DevConsoleResourceUsageData = {
|
|
|
39773
39974
|
functionCompute?: Maybe<Array<DevConsoleComputeResourceUsage>>;
|
|
39774
39975
|
kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39775
39976
|
kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39977
|
+
llmInput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39978
|
+
llmOutput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39776
39979
|
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39777
39980
|
sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
39778
39981
|
sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -41892,10 +42095,13 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
|
|
|
41892
42095
|
success: Scalars['Boolean']['output'];
|
|
41893
42096
|
};
|
|
41894
42097
|
export declare type EditSprintInput = {
|
|
42098
|
+
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
41895
42099
|
boardId: Scalars['ID']['input'];
|
|
41896
42100
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
41897
42101
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
42102
|
+
incompleteCardsDestination?: InputMaybe<SoftwareCardsDestination>;
|
|
41898
42103
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
42104
|
+
rollingSprint?: InputMaybe<RollingSprintSetting>;
|
|
41899
42105
|
sprintId: Scalars['ID']['input'];
|
|
41900
42106
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
41901
42107
|
};
|
|
@@ -45546,7 +45752,6 @@ export declare type GlobalAppForgeContextToken = {
|
|
|
45546
45752
|
jwt: Scalars['String']['output'];
|
|
45547
45753
|
};
|
|
45548
45754
|
export declare type GlobalAppSignForgeContextTokensInput = {
|
|
45549
|
-
accountId: Scalars['ID']['input'];
|
|
45550
45755
|
contextIds: Array<Scalars['ID']['input']>;
|
|
45551
45756
|
extensionContexts: Array<GlobalAppExtensionContextInput>;
|
|
45552
45757
|
unlicensed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49990,6 +50195,10 @@ export declare type GraphStore = {
|
|
|
49990
50195
|
atlassianUserUpdatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseConnection>;
|
|
49991
50196
|
atlassianUserUpdatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusConnection>;
|
|
49992
50197
|
atlassianUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseConnection>;
|
|
50198
|
+
benefitItemHasWork?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkConnection>;
|
|
50199
|
+
benefitItemHasWorkBatch?: Maybe<GraphStoreBatchBenefitItemHasWorkConnection>;
|
|
50200
|
+
benefitItemHasWorkInverse?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseConnection>;
|
|
50201
|
+
benefitItemHasWorkInverseBatch?: Maybe<GraphStoreBatchBenefitItemHasWorkConnection>;
|
|
49993
50202
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
49994
50203
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
49995
50204
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -50058,6 +50267,10 @@ export declare type GraphStore = {
|
|
|
50058
50267
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
50059
50268
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
50060
50269
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
50270
|
+
costItemHasWork?: Maybe<GraphStoreSimplifiedCostItemHasWorkConnection>;
|
|
50271
|
+
costItemHasWorkBatch?: Maybe<GraphStoreBatchCostItemHasWorkConnection>;
|
|
50272
|
+
costItemHasWorkInverse?: Maybe<GraphStoreSimplifiedCostItemHasWorkInverseConnection>;
|
|
50273
|
+
costItemHasWorkInverseBatch?: Maybe<GraphStoreBatchCostItemHasWorkConnection>;
|
|
50061
50274
|
csmCustomerHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection>;
|
|
50062
50275
|
csmCustomerHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection>;
|
|
50063
50276
|
csmOrganizationHasCsmCustomer?: Maybe<GraphStoreSimplifiedCsmOrganizationHasCsmCustomerConnection>;
|
|
@@ -50115,6 +50328,8 @@ export declare type GraphStore = {
|
|
|
50115
50328
|
externalCaseHasExternalCustomerOrgInverse?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalCustomerOrgInverseConnection>;
|
|
50116
50329
|
externalCaseHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalWorkItemConnection>;
|
|
50117
50330
|
externalCaseHasExternalWorkItemInverse?: Maybe<GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseConnection>;
|
|
50331
|
+
externalConversationLinksExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection>;
|
|
50332
|
+
externalConversationLinksExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection>;
|
|
50118
50333
|
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
50119
50334
|
externalCustomerContactHasExternalCalendarEventInverse?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventInverseConnection>;
|
|
50120
50335
|
externalCustomerContactHasExternalWorkItem?: Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalWorkItemConnection>;
|
|
@@ -52050,6 +52265,36 @@ export declare type GraphStoreAtlassianUserUpdatedExternalTestStatusInverseArgs
|
|
|
52050
52265
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52051
52266
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestStatusSortInput>;
|
|
52052
52267
|
};
|
|
52268
|
+
export declare type GraphStoreBenefitItemHasWorkArgs = {
|
|
52269
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52270
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52271
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52272
|
+
id: Scalars['ID']['input'];
|
|
52273
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52274
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52275
|
+
};
|
|
52276
|
+
export declare type GraphStoreBenefitItemHasWorkBatchArgs = {
|
|
52277
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52278
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52279
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52280
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52281
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52282
|
+
};
|
|
52283
|
+
export declare type GraphStoreBenefitItemHasWorkInverseArgs = {
|
|
52284
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52285
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52286
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52287
|
+
id: Scalars['ID']['input'];
|
|
52288
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52289
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52290
|
+
};
|
|
52291
|
+
export declare type GraphStoreBenefitItemHasWorkInverseBatchArgs = {
|
|
52292
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52293
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52294
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52295
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52296
|
+
sort?: InputMaybe<GraphStoreBenefitItemHasWorkSortInput>;
|
|
52297
|
+
};
|
|
52053
52298
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
52054
52299
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52055
52300
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52572,6 +52817,36 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
52572
52817
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52573
52818
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
52574
52819
|
};
|
|
52820
|
+
export declare type GraphStoreCostItemHasWorkArgs = {
|
|
52821
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52822
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52823
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52824
|
+
id: Scalars['ID']['input'];
|
|
52825
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52826
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52827
|
+
};
|
|
52828
|
+
export declare type GraphStoreCostItemHasWorkBatchArgs = {
|
|
52829
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52830
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52831
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52832
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52833
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52834
|
+
};
|
|
52835
|
+
export declare type GraphStoreCostItemHasWorkInverseArgs = {
|
|
52836
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52837
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52838
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52839
|
+
id: Scalars['ID']['input'];
|
|
52840
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52841
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52842
|
+
};
|
|
52843
|
+
export declare type GraphStoreCostItemHasWorkInverseBatchArgs = {
|
|
52844
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
52845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52846
|
+
ids: Array<Scalars['ID']['input']>;
|
|
52847
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
52848
|
+
sort?: InputMaybe<GraphStoreCostItemHasWorkSortInput>;
|
|
52849
|
+
};
|
|
52575
52850
|
export declare type GraphStoreCsmCustomerHasJiraWorkItemArgs = {
|
|
52576
52851
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52577
52852
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53025,6 +53300,22 @@ export declare type GraphStoreExternalCaseHasExternalWorkItemInverseArgs = {
|
|
|
53025
53300
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53026
53301
|
sort?: InputMaybe<GraphStoreExternalCaseHasExternalWorkItemSortInput>;
|
|
53027
53302
|
};
|
|
53303
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventArgs = {
|
|
53304
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53305
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53306
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53307
|
+
id: Scalars['ID']['input'];
|
|
53308
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53309
|
+
sort?: InputMaybe<GraphStoreExternalConversationLinksExternalCalendarEventSortInput>;
|
|
53310
|
+
};
|
|
53311
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventInverseArgs = {
|
|
53312
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53313
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53314
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53315
|
+
id: Scalars['ID']['input'];
|
|
53316
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53317
|
+
sort?: InputMaybe<GraphStoreExternalConversationLinksExternalCalendarEventSortInput>;
|
|
53318
|
+
};
|
|
53028
53319
|
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventArgs = {
|
|
53029
53320
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53030
53321
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60060,6 +60351,47 @@ export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartNode =
|
|
|
60060
60351
|
id: Scalars['ID']['output'];
|
|
60061
60352
|
};
|
|
60062
60353
|
export declare type GraphStoreBatchAtlassianUserInvitedToLoomMeetingStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
60354
|
+
export declare type GraphStoreBatchBenefitItemHasWorkConnection = HasPageInfo & {
|
|
60355
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkConnection';
|
|
60356
|
+
edges: Array<Maybe<GraphStoreBatchBenefitItemHasWorkEdge>>;
|
|
60357
|
+
nodes: Array<Maybe<GraphStoreBatchBenefitItemHasWorkNode>>;
|
|
60358
|
+
pageInfo: PageInfo;
|
|
60359
|
+
};
|
|
60360
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEdge = {
|
|
60361
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkEdge';
|
|
60362
|
+
node: GraphStoreBatchBenefitItemHasWorkInnerConnection;
|
|
60363
|
+
};
|
|
60364
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEndNode = {
|
|
60365
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkEndNode';
|
|
60366
|
+
data?: Maybe<GraphStoreBatchBenefitItemHasWorkEndUnion>;
|
|
60367
|
+
id: Scalars['ID']['output'];
|
|
60368
|
+
};
|
|
60369
|
+
export declare type GraphStoreBatchBenefitItemHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
60370
|
+
export declare type GraphStoreBatchBenefitItemHasWorkInnerConnection = {
|
|
60371
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkInnerConnection';
|
|
60372
|
+
edges: Array<Maybe<GraphStoreBatchBenefitItemHasWorkInnerEdge>>;
|
|
60373
|
+
nodes: Array<Maybe<GraphStoreBatchBenefitItemHasWorkNode>>;
|
|
60374
|
+
requestedId: Scalars['ID']['output'];
|
|
60375
|
+
};
|
|
60376
|
+
export declare type GraphStoreBatchBenefitItemHasWorkInnerEdge = {
|
|
60377
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkInnerEdge';
|
|
60378
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60379
|
+
node: GraphStoreBatchBenefitItemHasWorkNode;
|
|
60380
|
+
};
|
|
60381
|
+
export declare type GraphStoreBatchBenefitItemHasWorkNode = Node & {
|
|
60382
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkNode';
|
|
60383
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60384
|
+
from: GraphStoreBatchBenefitItemHasWorkStartNode;
|
|
60385
|
+
id: Scalars['ID']['output'];
|
|
60386
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60387
|
+
to: GraphStoreBatchBenefitItemHasWorkEndNode;
|
|
60388
|
+
};
|
|
60389
|
+
export declare type GraphStoreBatchBenefitItemHasWorkStartNode = {
|
|
60390
|
+
__typename?: 'GraphStoreBatchBenefitItemHasWorkStartNode';
|
|
60391
|
+
data?: Maybe<GraphStoreBatchBenefitItemHasWorkStartUnion>;
|
|
60392
|
+
id: Scalars['ID']['output'];
|
|
60393
|
+
};
|
|
60394
|
+
export declare type GraphStoreBatchBenefitItemHasWorkStartUnion = MercuryBenefitItem;
|
|
60063
60395
|
export declare type GraphStoreBatchChangeProposalHasAtlasGoalConnection = HasPageInfo & {
|
|
60064
60396
|
__typename?: 'GraphStoreBatchChangeProposalHasAtlasGoalConnection';
|
|
60065
60397
|
edges: Array<Maybe<GraphStoreBatchChangeProposalHasAtlasGoalEdge>>;
|
|
@@ -60183,6 +60515,47 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
60183
60515
|
id: Scalars['ID']['output'];
|
|
60184
60516
|
};
|
|
60185
60517
|
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
60518
|
+
export declare type GraphStoreBatchCostItemHasWorkConnection = HasPageInfo & {
|
|
60519
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkConnection';
|
|
60520
|
+
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkEdge>>;
|
|
60521
|
+
nodes: Array<Maybe<GraphStoreBatchCostItemHasWorkNode>>;
|
|
60522
|
+
pageInfo: PageInfo;
|
|
60523
|
+
};
|
|
60524
|
+
export declare type GraphStoreBatchCostItemHasWorkEdge = {
|
|
60525
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkEdge';
|
|
60526
|
+
node: GraphStoreBatchCostItemHasWorkInnerConnection;
|
|
60527
|
+
};
|
|
60528
|
+
export declare type GraphStoreBatchCostItemHasWorkEndNode = {
|
|
60529
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkEndNode';
|
|
60530
|
+
data?: Maybe<GraphStoreBatchCostItemHasWorkEndUnion>;
|
|
60531
|
+
id: Scalars['ID']['output'];
|
|
60532
|
+
};
|
|
60533
|
+
export declare type GraphStoreBatchCostItemHasWorkEndUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
60534
|
+
export declare type GraphStoreBatchCostItemHasWorkInnerConnection = {
|
|
60535
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkInnerConnection';
|
|
60536
|
+
edges: Array<Maybe<GraphStoreBatchCostItemHasWorkInnerEdge>>;
|
|
60537
|
+
nodes: Array<Maybe<GraphStoreBatchCostItemHasWorkNode>>;
|
|
60538
|
+
requestedId: Scalars['ID']['output'];
|
|
60539
|
+
};
|
|
60540
|
+
export declare type GraphStoreBatchCostItemHasWorkInnerEdge = {
|
|
60541
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkInnerEdge';
|
|
60542
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
60543
|
+
node: GraphStoreBatchCostItemHasWorkNode;
|
|
60544
|
+
};
|
|
60545
|
+
export declare type GraphStoreBatchCostItemHasWorkNode = Node & {
|
|
60546
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkNode';
|
|
60547
|
+
createdAt: Scalars['DateTime']['output'];
|
|
60548
|
+
from: GraphStoreBatchCostItemHasWorkStartNode;
|
|
60549
|
+
id: Scalars['ID']['output'];
|
|
60550
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
60551
|
+
to: GraphStoreBatchCostItemHasWorkEndNode;
|
|
60552
|
+
};
|
|
60553
|
+
export declare type GraphStoreBatchCostItemHasWorkStartNode = {
|
|
60554
|
+
__typename?: 'GraphStoreBatchCostItemHasWorkStartNode';
|
|
60555
|
+
data?: Maybe<GraphStoreBatchCostItemHasWorkStartUnion>;
|
|
60556
|
+
id: Scalars['ID']['output'];
|
|
60557
|
+
};
|
|
60558
|
+
export declare type GraphStoreBatchCostItemHasWorkStartUnion = MercuryCostItem;
|
|
60186
60559
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
60187
60560
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
60188
60561
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -61481,6 +61854,9 @@ export declare type GraphStoreBatchUserViewedProjectUpdateStartNode = {
|
|
|
61481
61854
|
id: Scalars['ID']['output'];
|
|
61482
61855
|
};
|
|
61483
61856
|
export declare type GraphStoreBatchUserViewedProjectUpdateStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
61857
|
+
export declare type GraphStoreBenefitItemHasWorkSortInput = {
|
|
61858
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61859
|
+
};
|
|
61484
61860
|
export declare type GraphStoreBoardBelongsToProjectSortInput = {
|
|
61485
61861
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61486
61862
|
};
|
|
@@ -61568,6 +61944,9 @@ export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
|
61568
61944
|
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
61569
61945
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61570
61946
|
};
|
|
61947
|
+
export declare type GraphStoreCostItemHasWorkSortInput = {
|
|
61948
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61949
|
+
};
|
|
61571
61950
|
export declare type GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalInput = {
|
|
61572
61951
|
category?: InputMaybe<GraphStoreCreateAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryInput>;
|
|
61573
61952
|
};
|
|
@@ -62909,6 +63288,9 @@ export declare type GraphStoreExternalCaseHasExternalCustomerOrgSortInput = {
|
|
|
62909
63288
|
export declare type GraphStoreExternalCaseHasExternalWorkItemSortInput = {
|
|
62910
63289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
62911
63290
|
};
|
|
63291
|
+
export declare type GraphStoreExternalConversationLinksExternalCalendarEventSortInput = {
|
|
63292
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
63293
|
+
};
|
|
62912
63294
|
export declare type GraphStoreExternalCustomerContactHasExternalCalendarEventSortInput = {
|
|
62913
63295
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
62914
63296
|
};
|
|
@@ -69561,6 +69943,34 @@ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusIn
|
|
|
69561
69943
|
};
|
|
69562
69944
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
69563
69945
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusUnion = ExternalTestStatus;
|
|
69946
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkConnection = HasPageInfo & {
|
|
69947
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkConnection';
|
|
69948
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBenefitItemHasWorkEdge>>>;
|
|
69949
|
+
pageInfo: PageInfo;
|
|
69950
|
+
};
|
|
69951
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkEdge = {
|
|
69952
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkEdge';
|
|
69953
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69954
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69955
|
+
id: Scalars['ID']['output'];
|
|
69956
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69957
|
+
node?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkUnion>;
|
|
69958
|
+
};
|
|
69959
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseConnection = HasPageInfo & {
|
|
69960
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkInverseConnection';
|
|
69961
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseEdge>>>;
|
|
69962
|
+
pageInfo: PageInfo;
|
|
69963
|
+
};
|
|
69964
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseEdge = {
|
|
69965
|
+
__typename?: 'GraphStoreSimplifiedBenefitItemHasWorkInverseEdge';
|
|
69966
|
+
createdAt: Scalars['DateTime']['output'];
|
|
69967
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
69968
|
+
id: Scalars['ID']['output'];
|
|
69969
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
69970
|
+
node?: Maybe<GraphStoreSimplifiedBenefitItemHasWorkInverseUnion>;
|
|
69971
|
+
};
|
|
69972
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkInverseUnion = MercuryBenefitItem;
|
|
69973
|
+
export declare type GraphStoreSimplifiedBenefitItemHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
69564
69974
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
69565
69975
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
69566
69976
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -70321,6 +70731,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
70321
70731
|
};
|
|
70322
70732
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
70323
70733
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
70734
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkConnection = HasPageInfo & {
|
|
70735
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkConnection';
|
|
70736
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCostItemHasWorkEdge>>>;
|
|
70737
|
+
pageInfo: PageInfo;
|
|
70738
|
+
};
|
|
70739
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkEdge = {
|
|
70740
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkEdge';
|
|
70741
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70742
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70743
|
+
id: Scalars['ID']['output'];
|
|
70744
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70745
|
+
node?: Maybe<GraphStoreSimplifiedCostItemHasWorkUnion>;
|
|
70746
|
+
};
|
|
70747
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseConnection = HasPageInfo & {
|
|
70748
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkInverseConnection';
|
|
70749
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCostItemHasWorkInverseEdge>>>;
|
|
70750
|
+
pageInfo: PageInfo;
|
|
70751
|
+
};
|
|
70752
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseEdge = {
|
|
70753
|
+
__typename?: 'GraphStoreSimplifiedCostItemHasWorkInverseEdge';
|
|
70754
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70755
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70756
|
+
id: Scalars['ID']['output'];
|
|
70757
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70758
|
+
node?: Maybe<GraphStoreSimplifiedCostItemHasWorkInverseUnion>;
|
|
70759
|
+
};
|
|
70760
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkInverseUnion = MercuryCostItem;
|
|
70761
|
+
export declare type GraphStoreSimplifiedCostItemHasWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
70324
70762
|
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection = HasPageInfo & {
|
|
70325
70763
|
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection';
|
|
70326
70764
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemEdge>>>;
|
|
@@ -71077,6 +71515,34 @@ export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseEd
|
|
|
71077
71515
|
};
|
|
71078
71516
|
export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemInverseUnion = ExternalCase;
|
|
71079
71517
|
export declare type GraphStoreSimplifiedExternalCaseHasExternalWorkItemUnion = ExternalWorkItem;
|
|
71518
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection = HasPageInfo & {
|
|
71519
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventConnection';
|
|
71520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge>>>;
|
|
71521
|
+
pageInfo: PageInfo;
|
|
71522
|
+
};
|
|
71523
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge = {
|
|
71524
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventEdge';
|
|
71525
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71526
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71527
|
+
id: Scalars['ID']['output'];
|
|
71528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71529
|
+
node?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventUnion>;
|
|
71530
|
+
};
|
|
71531
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
71532
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseConnection';
|
|
71533
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge>>>;
|
|
71534
|
+
pageInfo: PageInfo;
|
|
71535
|
+
};
|
|
71536
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge = {
|
|
71537
|
+
__typename?: 'GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseEdge';
|
|
71538
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71539
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71540
|
+
id: Scalars['ID']['output'];
|
|
71541
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71542
|
+
node?: Maybe<GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseUnion>;
|
|
71543
|
+
};
|
|
71544
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventInverseUnion = ExternalConversation;
|
|
71545
|
+
export declare type GraphStoreSimplifiedExternalConversationLinksExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
71080
71546
|
export declare type GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection = HasPageInfo & {
|
|
71081
71547
|
__typename?: 'GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventConnection';
|
|
71082
71548
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalCustomerContactHasExternalCalendarEventEdge>>>;
|
|
@@ -81552,6 +82018,8 @@ export declare type GraphStoreV2 = {
|
|
|
81552
82018
|
externalCaseHasExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalCaseHasExternalWorkItemInverseConnection>;
|
|
81553
82019
|
externalConversationHasExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageConnection>;
|
|
81554
82020
|
externalConversationHasExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseConnection>;
|
|
82021
|
+
externalConversationLinksExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection>;
|
|
82022
|
+
externalConversationLinksExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection>;
|
|
81555
82023
|
externalConversationMentionsJiraWorkItem?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection>;
|
|
81556
82024
|
externalConversationMentionsJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemInverseConnection>;
|
|
81557
82025
|
externalCustomerContactHasExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalCustomerContactHasExternalCalendarEventConnection>;
|
|
@@ -81801,8 +82269,12 @@ export declare type GraphStoreV2 = {
|
|
|
81801
82269
|
externalWorkerLinksThirdPartyUserInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksThirdPartyUserInverseConnection>;
|
|
81802
82270
|
focusAskImpactsWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityConnection>;
|
|
81803
82271
|
focusAskImpactsWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseConnection>;
|
|
82272
|
+
focusBenefitItemHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection>;
|
|
82273
|
+
focusBenefitItemHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection>;
|
|
81804
82274
|
focusChangeProposalHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection>;
|
|
81805
82275
|
focusChangeProposalHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseConnection>;
|
|
82276
|
+
focusCostItemHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection>;
|
|
82277
|
+
focusCostItemHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection>;
|
|
81806
82278
|
focusFocusAreaHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection>;
|
|
81807
82279
|
focusFocusAreaHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalInverseConnection>;
|
|
81808
82280
|
focusFocusAreaHasChildFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasChildFocusFocusAreaConnection>;
|
|
@@ -84435,6 +84907,20 @@ export declare type GraphStoreV2ExternalConversationHasExternalMessageInverseArg
|
|
|
84435
84907
|
id: Scalars['ID']['input'];
|
|
84436
84908
|
sort?: InputMaybe<GraphStoreV2ExternalConversationHasExternalMessageSortInput>;
|
|
84437
84909
|
};
|
|
84910
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventArgs = {
|
|
84911
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84912
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84914
|
+
id: Scalars['ID']['input'];
|
|
84915
|
+
sort?: InputMaybe<GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput>;
|
|
84916
|
+
};
|
|
84917
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventInverseArgs = {
|
|
84918
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84919
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84920
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84921
|
+
id: Scalars['ID']['input'];
|
|
84922
|
+
sort?: InputMaybe<GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput>;
|
|
84923
|
+
};
|
|
84438
84924
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemArgs = {
|
|
84439
84925
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84440
84926
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86184,6 +86670,20 @@ export declare type GraphStoreV2FocusAskImpactsWorkEntityInverseArgs = {
|
|
|
86184
86670
|
id: Scalars['ID']['input'];
|
|
86185
86671
|
sort?: InputMaybe<GraphStoreV2FocusAskImpactsWorkEntitySortInput>;
|
|
86186
86672
|
};
|
|
86673
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntityArgs = {
|
|
86674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86675
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86676
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86677
|
+
id: Scalars['ID']['input'];
|
|
86678
|
+
sort?: InputMaybe<GraphStoreV2FocusBenefitItemHasWorkEntitySortInput>;
|
|
86679
|
+
};
|
|
86680
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntityInverseArgs = {
|
|
86681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86682
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86684
|
+
id: Scalars['ID']['input'];
|
|
86685
|
+
sort?: InputMaybe<GraphStoreV2FocusBenefitItemHasWorkEntitySortInput>;
|
|
86686
|
+
};
|
|
86187
86687
|
export declare type GraphStoreV2FocusChangeProposalHasWorkEntityArgs = {
|
|
86188
86688
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86189
86689
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -86198,6 +86698,20 @@ export declare type GraphStoreV2FocusChangeProposalHasWorkEntityInverseArgs = {
|
|
|
86198
86698
|
id: Scalars['ID']['input'];
|
|
86199
86699
|
sort?: InputMaybe<GraphStoreV2FocusChangeProposalHasWorkEntitySortInput>;
|
|
86200
86700
|
};
|
|
86701
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntityArgs = {
|
|
86702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86703
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86704
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86705
|
+
id: Scalars['ID']['input'];
|
|
86706
|
+
sort?: InputMaybe<GraphStoreV2FocusCostItemHasWorkEntitySortInput>;
|
|
86707
|
+
};
|
|
86708
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntityInverseArgs = {
|
|
86709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
86710
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86712
|
+
id: Scalars['ID']['input'];
|
|
86713
|
+
sort?: InputMaybe<GraphStoreV2FocusCostItemHasWorkEntitySortInput>;
|
|
86714
|
+
};
|
|
86201
86715
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalArgs = {
|
|
86202
86716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86203
86717
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89229,6 +89743,9 @@ export declare type GraphStoreV2ExternalCaseHasExternalWorkItemSortInput = {
|
|
|
89229
89743
|
export declare type GraphStoreV2ExternalConversationHasExternalMessageSortInput = {
|
|
89230
89744
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89231
89745
|
};
|
|
89746
|
+
export declare type GraphStoreV2ExternalConversationLinksExternalCalendarEventSortInput = {
|
|
89747
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89748
|
+
};
|
|
89232
89749
|
export declare type GraphStoreV2ExternalConversationMentionsJiraWorkItemSortInput = {
|
|
89233
89750
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89234
89751
|
};
|
|
@@ -89689,9 +90206,15 @@ export declare type GraphStoreV2ExternalWorkerLinksThirdPartyUserSortInput = {
|
|
|
89689
90206
|
export declare type GraphStoreV2FocusAskImpactsWorkEntitySortInput = {
|
|
89690
90207
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89691
90208
|
};
|
|
90209
|
+
export declare type GraphStoreV2FocusBenefitItemHasWorkEntitySortInput = {
|
|
90210
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90211
|
+
};
|
|
89692
90212
|
export declare type GraphStoreV2FocusChangeProposalHasWorkEntitySortInput = {
|
|
89693
90213
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89694
90214
|
};
|
|
90215
|
+
export declare type GraphStoreV2FocusCostItemHasWorkEntitySortInput = {
|
|
90216
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90217
|
+
};
|
|
89695
90218
|
export declare type GraphStoreV2FocusFocusAreaHasAtlassianGoalSortInput = {
|
|
89696
90219
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89697
90220
|
};
|
|
@@ -96110,6 +96633,34 @@ export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessage
|
|
|
96110
96633
|
};
|
|
96111
96634
|
export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessageInverseUnion = ExternalConversation;
|
|
96112
96635
|
export declare type GraphStoreV2SimplifiedExternalConversationHasExternalMessageUnion = ExternalMessage;
|
|
96636
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection = HasPageInfo & {
|
|
96637
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventConnection';
|
|
96638
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge>>>;
|
|
96639
|
+
pageInfo: PageInfo;
|
|
96640
|
+
};
|
|
96641
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge = {
|
|
96642
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventEdge';
|
|
96643
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96644
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96645
|
+
id: Scalars['ID']['output'];
|
|
96646
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96647
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventUnion>;
|
|
96648
|
+
};
|
|
96649
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection = HasPageInfo & {
|
|
96650
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseConnection';
|
|
96651
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge>>>;
|
|
96652
|
+
pageInfo: PageInfo;
|
|
96653
|
+
};
|
|
96654
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge = {
|
|
96655
|
+
__typename?: 'GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseEdge';
|
|
96656
|
+
createdAt: Scalars['DateTime']['output'];
|
|
96657
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
96658
|
+
id: Scalars['ID']['output'];
|
|
96659
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
96660
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseUnion>;
|
|
96661
|
+
};
|
|
96662
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventInverseUnion = ExternalConversation;
|
|
96663
|
+
export declare type GraphStoreV2SimplifiedExternalConversationLinksExternalCalendarEventUnion = ExternalCalendarEvent;
|
|
96113
96664
|
export declare type GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection = HasPageInfo & {
|
|
96114
96665
|
__typename?: 'GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemConnection';
|
|
96115
96666
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalConversationMentionsJiraWorkItemEdge>>>;
|
|
@@ -99628,6 +100179,34 @@ export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseEdge =
|
|
|
99628
100179
|
};
|
|
99629
100180
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityInverseUnion = SpfAsk;
|
|
99630
100181
|
export declare type GraphStoreV2SimplifiedFocusAskImpactsWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
100182
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection = HasPageInfo & {
|
|
100183
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityConnection';
|
|
100184
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge>>>;
|
|
100185
|
+
pageInfo: PageInfo;
|
|
100186
|
+
};
|
|
100187
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge = {
|
|
100188
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityEdge';
|
|
100189
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100190
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100191
|
+
id: Scalars['ID']['output'];
|
|
100192
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100193
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityUnion>;
|
|
100194
|
+
};
|
|
100195
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection = HasPageInfo & {
|
|
100196
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseConnection';
|
|
100197
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge>>>;
|
|
100198
|
+
pageInfo: PageInfo;
|
|
100199
|
+
};
|
|
100200
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge = {
|
|
100201
|
+
__typename?: 'GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseEdge';
|
|
100202
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100203
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100204
|
+
id: Scalars['ID']['output'];
|
|
100205
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100206
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseUnion>;
|
|
100207
|
+
};
|
|
100208
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityInverseUnion = MercuryBenefitItem;
|
|
100209
|
+
export declare type GraphStoreV2SimplifiedFocusBenefitItemHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99631
100210
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection = HasPageInfo & {
|
|
99632
100211
|
__typename?: 'GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityConnection';
|
|
99633
100212
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityEdge>>>;
|
|
@@ -99656,6 +100235,34 @@ export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInvers
|
|
|
99656
100235
|
};
|
|
99657
100236
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityInverseUnion = MercuryChangeProposal;
|
|
99658
100237
|
export declare type GraphStoreV2SimplifiedFocusChangeProposalHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
100238
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection = HasPageInfo & {
|
|
100239
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityConnection';
|
|
100240
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge>>>;
|
|
100241
|
+
pageInfo: PageInfo;
|
|
100242
|
+
};
|
|
100243
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge = {
|
|
100244
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityEdge';
|
|
100245
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100246
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100247
|
+
id: Scalars['ID']['output'];
|
|
100248
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100249
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityUnion>;
|
|
100250
|
+
};
|
|
100251
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection = HasPageInfo & {
|
|
100252
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseConnection';
|
|
100253
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge>>>;
|
|
100254
|
+
pageInfo: PageInfo;
|
|
100255
|
+
};
|
|
100256
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge = {
|
|
100257
|
+
__typename?: 'GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseEdge';
|
|
100258
|
+
createdAt: Scalars['DateTime']['output'];
|
|
100259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
100260
|
+
id: Scalars['ID']['output'];
|
|
100261
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
100262
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseUnion>;
|
|
100263
|
+
};
|
|
100264
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityInverseUnion = MercuryCostItem;
|
|
100265
|
+
export declare type GraphStoreV2SimplifiedFocusCostItemHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99659
100266
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection = HasPageInfo & {
|
|
99660
100267
|
__typename?: 'GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalConnection';
|
|
99661
100268
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasAtlassianGoalEdge>>>;
|
|
@@ -105578,6 +106185,7 @@ export declare type HelpLayoutQueryApi = {
|
|
|
105578
106185
|
elements?: Maybe<Array<HelpLayoutElement>>;
|
|
105579
106186
|
layout?: Maybe<HelpLayoutResult>;
|
|
105580
106187
|
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
106188
|
+
layouts?: Maybe<Array<Maybe<HelpLayoutResult>>>;
|
|
105581
106189
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
105582
106190
|
};
|
|
105583
106191
|
export declare type HelpLayoutQueryApiElementsArgs = {
|
|
@@ -105593,6 +106201,9 @@ export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
|
105593
106201
|
helpCenterAri?: InputMaybe<Scalars['ID']['input']>;
|
|
105594
106202
|
parentAri: Scalars['ID']['input'];
|
|
105595
106203
|
};
|
|
106204
|
+
export declare type HelpLayoutQueryApiLayoutsArgs = {
|
|
106205
|
+
ids: Array<Scalars['ID']['input']>;
|
|
106206
|
+
};
|
|
105596
106207
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
105597
106208
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
105598
106209
|
parentAri: Scalars['ID']['input'];
|
|
@@ -106039,6 +106650,7 @@ export declare type HelpObjectStoreQueryApi = {
|
|
|
106039
106650
|
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
106040
106651
|
kbCategories?: Maybe<HelpObjectStoreKbCategoriesResult>;
|
|
106041
106652
|
portalGroups?: Maybe<HelpObjectStorePortalGroupsResult>;
|
|
106653
|
+
portals?: Maybe<Array<Maybe<HelpObjectStorePortalResult>>>;
|
|
106042
106654
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
106043
106655
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
106044
106656
|
suggestedRequestTypes?: Maybe<HelpObjectStoreSuggestedRequestTypesResult>;
|
|
@@ -106062,6 +106674,9 @@ export declare type HelpObjectStoreQueryApiPortalGroupsArgs = {
|
|
|
106062
106674
|
filters?: InputMaybe<HelpObjectStoreFilters>;
|
|
106063
106675
|
input: HelpObjectStoreProductEntityInput;
|
|
106064
106676
|
};
|
|
106677
|
+
export declare type HelpObjectStoreQueryApiPortalsArgs = {
|
|
106678
|
+
ids: Array<Scalars['ID']['input']>;
|
|
106679
|
+
};
|
|
106065
106680
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
106066
106681
|
ids: Array<Scalars['ID']['input']>;
|
|
106067
106682
|
};
|
|
@@ -107646,6 +108261,12 @@ export declare type JiraAffectedServicesInput = {
|
|
|
107646
108261
|
export declare type JiraAfterCustomFieldDefaultContextOptionPositionInput = {
|
|
107647
108262
|
relativeToOption: JiraCustomFieldDefaultContextOptionReference;
|
|
107648
108263
|
};
|
|
108264
|
+
export declare type JiraAgent = {
|
|
108265
|
+
__typename?: 'JiraAgent';
|
|
108266
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
108267
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
108268
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
108269
|
+
};
|
|
107649
108270
|
export declare type JiraAgentAssignability = {
|
|
107650
108271
|
__typename?: 'JiraAgentAssignability';
|
|
107651
108272
|
agentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -107663,6 +108284,11 @@ export declare enum JiraAgentCreatorType {
|
|
|
107663
108284
|
System = "SYSTEM",
|
|
107664
108285
|
ThirdParty = "THIRD_PARTY"
|
|
107665
108286
|
}
|
|
108287
|
+
export declare type JiraAgentSessionCreateEvent = {
|
|
108288
|
+
__typename?: 'JiraAgentSessionCreateEvent';
|
|
108289
|
+
agent?: Maybe<JiraAgent>;
|
|
108290
|
+
conversationId: Scalars['String']['output'];
|
|
108291
|
+
};
|
|
107666
108292
|
export declare type JiraAgenticUser = JiraActor & {
|
|
107667
108293
|
__typename?: 'JiraAgenticUser';
|
|
107668
108294
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -109473,6 +110099,66 @@ export declare type JiraBaseCustomFieldDefaultContextOptionPositionInput = {
|
|
|
109473
110099
|
top?: InputMaybe<JiraTopCustomFieldDefaultContextOptionPositionInput>;
|
|
109474
110100
|
topChild?: InputMaybe<JiraTopChildCustomFieldDefaultContextOptionPositionInput>;
|
|
109475
110101
|
};
|
|
110102
|
+
export declare type JiraBaseTimelineView = {
|
|
110103
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
110104
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
110105
|
+
error?: Maybe<QueryError>;
|
|
110106
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
110107
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
110108
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
110109
|
+
id: Scalars['ID']['output'];
|
|
110110
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
110111
|
+
isTimelineViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
110112
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
110113
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
110114
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
110115
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
110116
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
110117
|
+
timelineProjectSettings?: Maybe<JiraTimelineProjectSettings>;
|
|
110118
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
110119
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
110120
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
110121
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
110122
|
+
};
|
|
110123
|
+
export declare type JiraBaseTimelineViewConditionalFormattingRulesArgs = {
|
|
110124
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110125
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110126
|
+
};
|
|
110127
|
+
export declare type JiraBaseTimelineViewFieldSetsArgs = {
|
|
110128
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110129
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
110130
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
110131
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110132
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110133
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110134
|
+
};
|
|
110135
|
+
export declare type JiraBaseTimelineViewHasDefaultFieldSetsArgs = {
|
|
110136
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110137
|
+
};
|
|
110138
|
+
export declare type JiraBaseTimelineViewIsTimelineViewConfigModifiedArgs = {
|
|
110139
|
+
timelineViewSettings?: InputMaybe<JiraTimelineViewSettings>;
|
|
110140
|
+
};
|
|
110141
|
+
export declare type JiraBaseTimelineViewIsViewConfigModifiedArgs = {
|
|
110142
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
110143
|
+
};
|
|
110144
|
+
export declare type JiraBaseTimelineViewTimelineProjectSettingsArgs = {
|
|
110145
|
+
input?: InputMaybe<JiraTimelineProjectOrBoardInput>;
|
|
110146
|
+
};
|
|
110147
|
+
export declare type JiraBaseTimelineViewTimelineSettingsArgs = {
|
|
110148
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
110149
|
+
timelineStaticViewInput?: InputMaybe<JiraTimelineStaticViewInput>;
|
|
110150
|
+
};
|
|
110151
|
+
export declare type JiraBaseTimelineViewValidateJqlArgs = {
|
|
110152
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
110153
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
110154
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
110155
|
+
};
|
|
110156
|
+
export declare type JiraBaseTimelineViewViewSettingsArgs = {
|
|
110157
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
110158
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
110159
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
110160
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
110161
|
+
};
|
|
109476
110162
|
export declare enum JiraBatchWindowPreference {
|
|
109477
110163
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
109478
110164
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -109521,6 +110207,7 @@ export declare type JiraBoard = Node & {
|
|
|
109521
110207
|
boardType?: Maybe<JiraBoardType>;
|
|
109522
110208
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
109523
110209
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
110210
|
+
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
109524
110211
|
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
109525
110212
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
109526
110213
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -109529,6 +110216,12 @@ export declare type JiraBoard = Node & {
|
|
|
109529
110216
|
name?: Maybe<Scalars['String']['output']>;
|
|
109530
110217
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
109531
110218
|
};
|
|
110219
|
+
export declare type JiraBoardCustomFiltersArgs = {
|
|
110220
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
110221
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
110222
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
110223
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
110224
|
+
};
|
|
109532
110225
|
export declare type JiraBoardReportCategoriesArgs = {
|
|
109533
110226
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
109534
110227
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -109861,6 +110554,7 @@ export declare type JiraBoardViewSettingsCardOptionEdge = {
|
|
|
109861
110554
|
node?: Maybe<JiraBoardViewSettingsCardOption>;
|
|
109862
110555
|
};
|
|
109863
110556
|
export declare enum JiraBoardViewSettingsGroupBy {
|
|
110557
|
+
Agents = "AGENTS",
|
|
109864
110558
|
Assignee = "ASSIGNEE",
|
|
109865
110559
|
Epic = "EPIC",
|
|
109866
110560
|
None = "NONE",
|
|
@@ -111294,6 +111988,8 @@ export declare enum JiraCollapsibleSection {
|
|
|
111294
111988
|
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
111295
111989
|
Description = "DESCRIPTION",
|
|
111296
111990
|
LinkedWorkItem = "LINKED_WORK_ITEM",
|
|
111991
|
+
ProformaForms = "PROFORMA_FORMS",
|
|
111992
|
+
SimilarIssues = "SIMILAR_ISSUES",
|
|
111297
111993
|
UnifiedWorkSection = "UNIFIED_WORK_SECTION"
|
|
111298
111994
|
}
|
|
111299
111995
|
export declare type JiraColor = {
|
|
@@ -114999,6 +115695,7 @@ export declare type JiraFormulaFieldFixContext = {
|
|
|
114999
115695
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
115000
115696
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115001
115697
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
115698
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115002
115699
|
};
|
|
115003
115700
|
export declare type JiraFormulaFieldFunctionInfo = {
|
|
115004
115701
|
__typename?: 'JiraFormulaFieldFunctionInfo';
|
|
@@ -115065,6 +115762,7 @@ export declare type JiraFormulaFieldSuggestionContext = {
|
|
|
115065
115762
|
naturalLanguagePrompt: Scalars['String']['input'];
|
|
115066
115763
|
previousResponses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115067
115764
|
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
115765
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
115068
115766
|
};
|
|
115069
115767
|
export declare type JiraFormulaFieldSupportedFunctions = {
|
|
115070
115768
|
__typename?: 'JiraFormulaFieldSupportedFunctions';
|
|
@@ -115404,7 +116102,7 @@ export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
|
115404
116102
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
115405
116103
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
115406
116104
|
};
|
|
115407
|
-
export declare type JiraGroupedTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
116105
|
+
export declare type JiraGroupedTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
115408
116106
|
__typename?: 'JiraGroupedTimelineView';
|
|
115409
116107
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
115410
116108
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -117964,6 +118662,7 @@ export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
117964
118662
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
117965
118663
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
117966
118664
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
118665
|
+
lastAppliedFilters?: Maybe<JiraTimelineLastAppliedFilters>;
|
|
117967
118666
|
rangeMode?: Maybe<JiraTimelineViewRangeMode>;
|
|
117968
118667
|
};
|
|
117969
118668
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
@@ -128492,7 +129191,7 @@ export declare type JiraServiceManagementWorkflowTemplatesMetadataEdge = {
|
|
|
128492
129191
|
cursor: Scalars['String']['output'];
|
|
128493
129192
|
node?: Maybe<JiraServiceManagementWorkflowTemplateMetadata>;
|
|
128494
129193
|
};
|
|
128495
|
-
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = {
|
|
129194
|
+
export declare type JiraSetAgentSessionIsPlanModeEnabledResponsePayload = Payload & {
|
|
128496
129195
|
__typename?: 'JiraSetAgentSessionIsPlanModeEnabledResponsePayload';
|
|
128497
129196
|
errors?: Maybe<Array<MutationError>>;
|
|
128498
129197
|
isPlanModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -129421,6 +130120,7 @@ export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Nod
|
|
|
129421
130120
|
export declare type JiraSoftwareCustomFilter = {
|
|
129422
130121
|
__typename?: 'JiraSoftwareCustomFilter';
|
|
129423
130122
|
description?: Maybe<Scalars['String']['output']>;
|
|
130123
|
+
filterId: Scalars['String']['output'];
|
|
129424
130124
|
id: Scalars['ID']['output'];
|
|
129425
130125
|
jql?: Maybe<Scalars['String']['output']>;
|
|
129426
130126
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -129871,6 +130571,7 @@ export declare type JiraSubscription = {
|
|
|
129871
130571
|
__typename?: 'JiraSubscription';
|
|
129872
130572
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
129873
130573
|
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
130574
|
+
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
129874
130575
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
129875
130576
|
onAttachmentCreatedByProjectsV2?: Maybe<JiraAttachmentByAriResult>;
|
|
129876
130577
|
onAttachmentDeletedByProjects?: Maybe<JiraAttachmentDeletedStreamHubPayload>;
|
|
@@ -129919,6 +130620,11 @@ export declare type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
|
129919
130620
|
cloudId: Scalars['ID']['input'];
|
|
129920
130621
|
issueId: Scalars['String']['input'];
|
|
129921
130622
|
};
|
|
130623
|
+
export declare type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
|
|
130624
|
+
accountId: Scalars['String']['input'];
|
|
130625
|
+
cloudId: Scalars['ID']['input'];
|
|
130626
|
+
issueId: Scalars['String']['input'];
|
|
130627
|
+
};
|
|
129922
130628
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
129923
130629
|
cloudId: Scalars['ID']['input'];
|
|
129924
130630
|
projectIds: Array<Scalars['String']['input']>;
|
|
@@ -130488,6 +131194,12 @@ export declare type JiraTimelineIssueSearchCustomInput = {
|
|
|
130488
131194
|
quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
130489
131195
|
useSavedFilters?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130490
131196
|
};
|
|
131197
|
+
export declare type JiraTimelineLastAppliedFilters = {
|
|
131198
|
+
__typename?: 'JiraTimelineLastAppliedFilters';
|
|
131199
|
+
additionalJql?: Maybe<Scalars['String']['output']>;
|
|
131200
|
+
customFilterIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
131201
|
+
quickFilterIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
131202
|
+
};
|
|
130491
131203
|
export declare type JiraTimelineProjectOrBoardInput = {
|
|
130492
131204
|
boardId?: InputMaybe<Scalars['Int']['input']>;
|
|
130493
131205
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -130513,7 +131225,7 @@ export declare type JiraTimelineStaticViewInput = {
|
|
|
130513
131225
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
130514
131226
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
130515
131227
|
};
|
|
130516
|
-
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
131228
|
+
export declare type JiraTimelineView = JiraBaseTimelineView & JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
130517
131229
|
__typename?: 'JiraTimelineView';
|
|
130518
131230
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
130519
131231
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -131649,6 +132361,7 @@ export declare type JiraUserPreferences = {
|
|
|
131649
132361
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
131650
132362
|
isIssueViewProactiveCommentSummariesFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131651
132363
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132364
|
+
isIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131652
132365
|
isJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131653
132366
|
isMiniModalGlobalIssueCreateDiscoverabilityPushComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
131654
132367
|
isNaturalLanguageSpotlightTourEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131720,6 +132433,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
131720
132433
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
131721
132434
|
setFilterSearchMode?: Maybe<JiraFilterSearchModeMutationPayload>;
|
|
131722
132435
|
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132436
|
+
setIsIssueViewWivEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
131723
132437
|
setIsJsmIssueViewAIPanelForServiceDeskEnabled?: Maybe<JiraJsmIssueViewAiPanelForServiceDeskEnabledMutationPayload>;
|
|
131724
132438
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
131725
132439
|
setIssueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
@@ -131743,6 +132457,9 @@ export declare type JiraUserPreferencesMutationSetFilterSearchModeArgs = {
|
|
|
131743
132457
|
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
131744
132458
|
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
131745
132459
|
};
|
|
132460
|
+
export declare type JiraUserPreferencesMutationSetIsIssueViewWivEnabledArgs = {
|
|
132461
|
+
isWivEnabled: Scalars['Boolean']['input'];
|
|
132462
|
+
};
|
|
131746
132463
|
export declare type JiraUserPreferencesMutationSetIsJsmIssueViewAiPanelForServiceDeskEnabledArgs = {
|
|
131747
132464
|
isEnabled: Scalars['Boolean']['input'];
|
|
131748
132465
|
};
|
|
@@ -133256,6 +133973,7 @@ export declare type JpdViewsServiceAxisConfigInput = {
|
|
|
133256
133973
|
};
|
|
133257
133974
|
export declare type JpdViewsServiceCloneGlobalViewInput = {
|
|
133258
133975
|
id: Scalars['ID']['input'];
|
|
133976
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
133259
133977
|
};
|
|
133260
133978
|
export declare type JpdViewsServiceCloneViewIntoGlobalInput = {
|
|
133261
133979
|
id: Scalars['ID']['input'];
|
|
@@ -133847,9 +134565,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
133847
134565
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
133848
134566
|
export declare type JsmChannelsFilterConfiguration = {
|
|
133849
134567
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
134568
|
+
evaluationStrategy?: Maybe<JsmChannelsRuleEvaluationStrategy>;
|
|
134569
|
+
jqlRules?: Maybe<Array<JsmChannelsJqlEnablementRule>>;
|
|
133850
134570
|
requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
|
|
133851
134571
|
};
|
|
133852
134572
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
134573
|
+
evaluationStrategy?: InputMaybe<JsmChannelsRuleEvaluationStrategy>;
|
|
134574
|
+
jqlRules?: InputMaybe<Array<JsmChannelsJqlEnablementRuleInput>>;
|
|
133853
134575
|
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
133854
134576
|
};
|
|
133855
134577
|
export declare type JsmChannelsIdentityNowTaskAgentConfiguration = {
|
|
@@ -133858,6 +134580,21 @@ export declare type JsmChannelsIdentityNowTaskAgentConfiguration = {
|
|
|
133858
134580
|
baseUrl: Scalars['String']['output'];
|
|
133859
134581
|
serviceKey: Scalars['String']['output'];
|
|
133860
134582
|
};
|
|
134583
|
+
export declare type JsmChannelsJqlEnablementRule = {
|
|
134584
|
+
__typename?: 'JsmChannelsJqlEnablementRule';
|
|
134585
|
+
id: Scalars['String']['output'];
|
|
134586
|
+
jqlExpression: Scalars['String']['output'];
|
|
134587
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
134588
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
134589
|
+
priority: Scalars['Int']['output'];
|
|
134590
|
+
};
|
|
134591
|
+
export declare type JsmChannelsJqlEnablementRuleInput = {
|
|
134592
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
134593
|
+
jqlExpression: Scalars['String']['input'];
|
|
134594
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
134595
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
134596
|
+
priority: Scalars['Int']['input'];
|
|
134597
|
+
};
|
|
133861
134598
|
export declare type JsmChannelsOktaTaskAgentConfiguration = {
|
|
133862
134599
|
__typename?: 'JsmChannelsOktaTaskAgentConfiguration';
|
|
133863
134600
|
accountId: Scalars['String']['output'];
|
|
@@ -134003,6 +134740,11 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
134003
134740
|
Pending = "PENDING",
|
|
134004
134741
|
Waiting = "WAITING"
|
|
134005
134742
|
}
|
|
134743
|
+
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
134744
|
+
JqlFirst = "JQL_FIRST",
|
|
134745
|
+
JqlOnly = "JQL_ONLY",
|
|
134746
|
+
RequestTypeFirst = "REQUEST_TYPE_FIRST"
|
|
134747
|
+
}
|
|
134006
134748
|
export declare type JsmChannelsServiceAgentResolutionContentSource = {
|
|
134007
134749
|
__typename?: 'JsmChannelsServiceAgentResolutionContentSource';
|
|
134008
134750
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -134038,6 +134780,7 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
134038
134780
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
134039
134781
|
__typename?: 'JsmChannelsStepNode';
|
|
134040
134782
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
134783
|
+
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
134041
134784
|
id: Scalars['ID']['output'];
|
|
134042
134785
|
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
134043
134786
|
nodeDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -135462,6 +136205,14 @@ export declare type KitsuneOrganizationConnection = KitsuneConnection & {
|
|
|
135462
136205
|
edges: Array<KitsuneOrganizationEdge>;
|
|
135463
136206
|
pageInfo: PageInfo;
|
|
135464
136207
|
};
|
|
136208
|
+
export declare enum KitsuneOrganizationDomainAction {
|
|
136209
|
+
Add = "ADD",
|
|
136210
|
+
Remove = "REMOVE"
|
|
136211
|
+
}
|
|
136212
|
+
export declare type KitsuneOrganizationDomainInput = {
|
|
136213
|
+
action: KitsuneOrganizationDomainAction;
|
|
136214
|
+
domainName: Scalars['String']['input'];
|
|
136215
|
+
};
|
|
135465
136216
|
export declare type KitsuneOrganizationEdge = KitsuneEdge & {
|
|
135466
136217
|
__typename?: 'KitsuneOrganizationEdge';
|
|
135467
136218
|
cursor: Scalars['String']['output'];
|
|
@@ -136537,6 +137288,7 @@ export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
|
136537
137288
|
};
|
|
136538
137289
|
export declare type KnowledgeDiscoveryJiraSearchClassification = {
|
|
136539
137290
|
__typename?: 'KnowledgeDiscoveryJiraSearchClassification';
|
|
137291
|
+
pattern?: Maybe<KnowledgeDiscoveryJiraSearchPatternType>;
|
|
136540
137292
|
type?: Maybe<KnowledgeDiscoveryJiraSearchClassificationType>;
|
|
136541
137293
|
};
|
|
136542
137294
|
export declare enum KnowledgeDiscoveryJiraSearchClassificationType {
|
|
@@ -136546,6 +137298,16 @@ export declare enum KnowledgeDiscoveryJiraSearchClassificationType {
|
|
|
136546
137298
|
export declare enum KnowledgeDiscoveryJiraSearchExperience {
|
|
136547
137299
|
QuickFind = "QUICK_FIND"
|
|
136548
137300
|
}
|
|
137301
|
+
export declare enum KnowledgeDiscoveryJiraSearchPatternType {
|
|
137302
|
+
Empty = "EMPTY",
|
|
137303
|
+
ExtendedPhrase = "EXTENDED_PHRASE",
|
|
137304
|
+
JiraNlPattern = "JIRA_NL_PATTERN",
|
|
137305
|
+
Jql = "JQL",
|
|
137306
|
+
NoPattern = "NO_PATTERN",
|
|
137307
|
+
Numeric = "NUMERIC",
|
|
137308
|
+
QuestionPattern = "QUESTION_PATTERN",
|
|
137309
|
+
SingleWord = "SINGLE_WORD"
|
|
137310
|
+
}
|
|
136549
137311
|
export declare type KnowledgeDiscoveryJobTitleIntent = KnowledgeDiscoveryIntent & {
|
|
136550
137312
|
__typename?: 'KnowledgeDiscoveryJobTitleIntent';
|
|
136551
137313
|
classification: KnowledgeDiscoveryQueryClassification;
|
|
@@ -141067,6 +141829,7 @@ export declare type MarketplaceStoreInstallAppTargetInput = {
|
|
|
141067
141829
|
product: MarketplaceStoreInstallationTargetProduct;
|
|
141068
141830
|
};
|
|
141069
141831
|
export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
141832
|
+
Bitbucket = "BITBUCKET",
|
|
141070
141833
|
Compass = "COMPASS",
|
|
141071
141834
|
Confluence = "CONFLUENCE",
|
|
141072
141835
|
Jira = "JIRA",
|
|
@@ -141381,7 +142144,7 @@ export declare type MarketplaceStorePersonalisationContextInput = {
|
|
|
141381
142144
|
userLocation?: InputMaybe<Scalars['String']['input']>;
|
|
141382
142145
|
};
|
|
141383
142146
|
export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
141384
|
-
|
|
142147
|
+
UnifiedStore = "UNIFIED_STORE"
|
|
141385
142148
|
}
|
|
141386
142149
|
export declare type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
141387
142150
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -141889,7 +142652,7 @@ export declare type MarketplaceStoreUpdateAppRequestStatusInput = {
|
|
|
141889
142652
|
appRequestStatus: MarketplaceStoreAppRequestStatus;
|
|
141890
142653
|
cloudId: Scalars['String']['input'];
|
|
141891
142654
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
141892
|
-
edition?: InputMaybe<
|
|
142655
|
+
edition?: InputMaybe<MarketplaceStoreEditionType>;
|
|
141893
142656
|
productId: Scalars['ID']['input'];
|
|
141894
142657
|
productName: Scalars['String']['input'];
|
|
141895
142658
|
};
|
|
@@ -142360,7 +143123,6 @@ export declare type MercuryBusinessDomain = Node & {
|
|
|
142360
143123
|
name: Scalars['String']['output'];
|
|
142361
143124
|
owner?: Maybe<User>;
|
|
142362
143125
|
parent?: Maybe<MercuryBusinessDomain>;
|
|
142363
|
-
rank?: Maybe<Scalars['Int']['output']>;
|
|
142364
143126
|
sharedUsers?: Maybe<MercuryBusinessDomainUserAccessConnection>;
|
|
142365
143127
|
starred: Scalars['Boolean']['output'];
|
|
142366
143128
|
status: MercuryBusinessDomainStatus;
|
|
@@ -142525,22 +143287,6 @@ export declare enum MercuryBusinessDomainPermission {
|
|
|
142525
143287
|
Export = "EXPORT",
|
|
142526
143288
|
ViewFund = "VIEW_FUND"
|
|
142527
143289
|
}
|
|
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
143290
|
export declare type MercuryBusinessDomainSort = {
|
|
142545
143291
|
field?: InputMaybe<MercuryBusinessDomainSortField>;
|
|
142546
143292
|
fieldKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -142553,7 +143299,6 @@ export declare enum MercuryBusinessDomainSortField {
|
|
|
142553
143299
|
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
142554
143300
|
LastUpdated = "LAST_UPDATED",
|
|
142555
143301
|
Name = "NAME",
|
|
142556
|
-
Rank = "RANK",
|
|
142557
143302
|
Starred = "STARRED",
|
|
142558
143303
|
Status = "STATUS",
|
|
142559
143304
|
TargetDate = "TARGET_DATE",
|
|
@@ -142748,8 +143493,7 @@ export declare enum MercuryBusinessDomainViewSortField {
|
|
|
142748
143493
|
Starred = "STARRED"
|
|
142749
143494
|
}
|
|
142750
143495
|
export declare enum MercuryBusinessDomainViewType {
|
|
142751
|
-
HierarchyView = "HIERARCHY_VIEW"
|
|
142752
|
-
RankingView = "RANKING_VIEW"
|
|
143496
|
+
HierarchyView = "HIERARCHY_VIEW"
|
|
142753
143497
|
}
|
|
142754
143498
|
export declare type MercuryBusinessDomainsMutationApi = {
|
|
142755
143499
|
__typename?: 'MercuryBusinessDomainsMutationApi';
|
|
@@ -142779,7 +143523,6 @@ export declare type MercuryBusinessDomainsMutationApi = {
|
|
|
142779
143523
|
linkBusinessDomainsToBusinessDomainView?: Maybe<MercuryLinkBusinessDomainsToBusinessDomainViewPayload>;
|
|
142780
143524
|
linkGoalsToBusinessDomain?: Maybe<MercuryLinkGoalsToBusinessDomainPayload>;
|
|
142781
143525
|
publishBusinessDomain?: Maybe<MercuryPublishBusinessDomainPayload>;
|
|
142782
|
-
rankBusinessDomainsInView?: Maybe<MercuryRankBusinessDomainsInBusinessDomainViewPayload>;
|
|
142783
143526
|
recreateBusinessDomainViewBusinessDomains?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
142784
143527
|
removeUserAccessToBusinessDomain?: Maybe<MercuryRemoveUserAccessToBusinessDomainPayload>;
|
|
142785
143528
|
removeWatcherFromBusinessDomain?: Maybe<MercuryRemoveWatcherFromBusinessDomainPayload>;
|
|
@@ -142804,7 +143547,6 @@ export declare type MercuryBusinessDomainsMutationApi = {
|
|
|
142804
143547
|
updateBusinessDomainTypeName?: Maybe<MercuryUpdateBusinessDomainTypeNamePayload>;
|
|
142805
143548
|
updateBusinessDomainViewName?: Maybe<MercuryUpdateBusinessDomainViewPayload>;
|
|
142806
143549
|
validateBusinessDomainArchival?: Maybe<MercuryArchiveBusinessDomainValidationPayload>;
|
|
142807
|
-
validateBusinessDomainsForRanking?: Maybe<MercuryValidateBusinessDomainsForRankingPayload>;
|
|
142808
143550
|
};
|
|
142809
143551
|
export declare type MercuryBusinessDomainsMutationApiAddBusinessDomainCustomFieldDefinitionOptionsArgs = {
|
|
142810
143552
|
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
@@ -142884,9 +143626,6 @@ export declare type MercuryBusinessDomainsMutationApiLinkGoalsToBusinessDomainAr
|
|
|
142884
143626
|
export declare type MercuryBusinessDomainsMutationApiPublishBusinessDomainArgs = {
|
|
142885
143627
|
input: MercuryPublishBusinessDomainInput;
|
|
142886
143628
|
};
|
|
142887
|
-
export declare type MercuryBusinessDomainsMutationApiRankBusinessDomainsInViewArgs = {
|
|
142888
|
-
input: MercuryRankBusinessDomainsInBusinessDomainViewInput;
|
|
142889
|
-
};
|
|
142890
143629
|
export declare type MercuryBusinessDomainsMutationApiRecreateBusinessDomainViewBusinessDomainsArgs = {
|
|
142891
143630
|
input: MercuryRecreateBusinessDomainViewBusinessDomainsInput;
|
|
142892
143631
|
};
|
|
@@ -142959,9 +143698,6 @@ export declare type MercuryBusinessDomainsMutationApiUpdateBusinessDomainViewNam
|
|
|
142959
143698
|
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainArchivalArgs = {
|
|
142960
143699
|
input: MercuryArchiveBusinessDomainValidationInput;
|
|
142961
143700
|
};
|
|
142962
|
-
export declare type MercuryBusinessDomainsMutationApiValidateBusinessDomainsForRankingArgs = {
|
|
142963
|
-
input: MercuryValidateBusinessDomainsForRankingInput;
|
|
142964
|
-
};
|
|
142965
143701
|
export declare type MercuryBusinessDomainsQueryApi = {
|
|
142966
143702
|
__typename?: 'MercuryBusinessDomainsQueryApi';
|
|
142967
143703
|
aiBusinessDomainListSummary?: Maybe<MercuryBusinessDomainListSummary>;
|
|
@@ -143394,8 +144130,12 @@ export declare type MercuryCommentMutationApiUpdateCommentArgs = {
|
|
|
143394
144130
|
};
|
|
143395
144131
|
export declare type MercuryCommentQueryApi = {
|
|
143396
144132
|
__typename?: 'MercuryCommentQueryApi';
|
|
144133
|
+
commentsByIds?: Maybe<Array<Maybe<MercuryThreadedComment>>>;
|
|
143397
144134
|
commentsByParentId?: Maybe<MercuryThreadedCommentConnection>;
|
|
143398
144135
|
};
|
|
144136
|
+
export declare type MercuryCommentQueryApiCommentsByIdsArgs = {
|
|
144137
|
+
ids: Array<Scalars['ID']['input']>;
|
|
144138
|
+
};
|
|
143399
144139
|
export declare type MercuryCommentQueryApiCommentsByParentIdArgs = {
|
|
143400
144140
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143401
144141
|
cloudId: Scalars['ID']['input'];
|
|
@@ -143663,8 +144403,10 @@ export declare type MercuryCreateCoreCustomFieldDefinitionInput = {
|
|
|
143663
144403
|
booleanField?: InputMaybe<MercuryCreateBooleanCustomFieldDefinitionInput>;
|
|
143664
144404
|
dateField?: InputMaybe<MercuryCreateDateCustomFieldDefinitionInput>;
|
|
143665
144405
|
multiSelectField?: InputMaybe<MercuryCreateMultiSelectCustomFieldDefinitionInput>;
|
|
144406
|
+
multiUserField?: InputMaybe<MercuryCreateMultiUserCustomFieldDefinitionInput>;
|
|
143666
144407
|
numberField?: InputMaybe<MercuryCreateNumberCustomFieldDefinitionInput>;
|
|
143667
144408
|
singleSelectField?: InputMaybe<MercuryCreateSingleSelectCustomFieldDefinitionInput>;
|
|
144409
|
+
singleUserField?: InputMaybe<MercuryCreateSingleUserCustomFieldDefinitionInput>;
|
|
143668
144410
|
textField?: InputMaybe<MercuryCreateTextCustomFieldDefinitionInput>;
|
|
143669
144411
|
};
|
|
143670
144412
|
export declare type MercuryCreateCostItemInput = {
|
|
@@ -143806,6 +144548,9 @@ export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
|
143806
144548
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143807
144549
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
143808
144550
|
};
|
|
144551
|
+
export declare type MercuryCreateMultiUserCustomFieldDefinitionInput = {
|
|
144552
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144553
|
+
};
|
|
143809
144554
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
143810
144555
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143811
144556
|
};
|
|
@@ -143852,6 +144597,9 @@ export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
|
143852
144597
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
143853
144598
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
143854
144599
|
};
|
|
144600
|
+
export declare type MercuryCreateSingleUserCustomFieldDefinitionInput = {
|
|
144601
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
144602
|
+
};
|
|
143855
144603
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
143856
144604
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
143857
144605
|
content: Scalars['String']['input'];
|
|
@@ -144580,6 +145328,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
144580
145328
|
name: Scalars['String']['output'];
|
|
144581
145329
|
owner?: Maybe<User>;
|
|
144582
145330
|
parent?: Maybe<MercuryFocusArea>;
|
|
145331
|
+
path?: Maybe<Array<Scalars['String']['output']>>;
|
|
144583
145332
|
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
144584
145333
|
status: MercuryFocusAreaStatus;
|
|
144585
145334
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
@@ -146257,7 +147006,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
146257
147006
|
export declare type MercuryNormalizedWork = HasMercuryProjectFields & {
|
|
146258
147007
|
__typename?: 'MercuryNormalizedWork';
|
|
146259
147008
|
connectedFocusArea: Scalars['ID']['output'];
|
|
146260
|
-
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
146261
147009
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
146262
147010
|
externalOwner?: Maybe<MercuryExternalOwner>;
|
|
146263
147011
|
id: Scalars['ID']['output'];
|
|
@@ -146864,6 +147612,7 @@ export declare type MercuryQueryApi = {
|
|
|
146864
147612
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
146865
147613
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
146866
147614
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
147615
|
+
focusAreasTopologicallySorted?: Maybe<Array<MercuryFocusArea>>;
|
|
146867
147616
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
146868
147617
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
146869
147618
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -146975,6 +147724,9 @@ export declare type MercuryQueryApiFocusAreasByExternalIdsArgs = {
|
|
|
146975
147724
|
cloudId: Scalars['ID']['input'];
|
|
146976
147725
|
ids: Array<Scalars['String']['input']>;
|
|
146977
147726
|
};
|
|
147727
|
+
export declare type MercuryQueryApiFocusAreasTopologicallySortedArgs = {
|
|
147728
|
+
focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
147729
|
+
};
|
|
146978
147730
|
export declare type MercuryQueryApiMediaReadTokenArgs = {
|
|
146979
147731
|
cloudId: Scalars['ID']['input'];
|
|
146980
147732
|
entityId: Scalars['ID']['input'];
|
|
@@ -147005,24 +147757,6 @@ export declare type MercuryQueryApiSearchFocusAreaActivityHistoryArgs = {
|
|
|
147005
147757
|
export declare type MercuryQueryApiWorkspaceContextArgs = {
|
|
147006
147758
|
cloudId: Scalars['ID']['input'];
|
|
147007
147759
|
};
|
|
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
147760
|
export declare type MercuryRankedChangeProposal = {
|
|
147027
147761
|
__typename?: 'MercuryRankedChangeProposal';
|
|
147028
147762
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -147032,7 +147766,6 @@ export declare type MercuryRankedChangeProposal = {
|
|
|
147032
147766
|
export declare type MercuryRecreateBusinessDomainViewBusinessDomainsInput = {
|
|
147033
147767
|
businessDomainIds: Array<Scalars['ID']['input']>;
|
|
147034
147768
|
id: Scalars['ID']['input'];
|
|
147035
|
-
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
147036
147769
|
};
|
|
147037
147770
|
export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
147038
147771
|
cloudId: Scalars['ID']['input'];
|
|
@@ -147238,6 +147971,30 @@ export declare type MercuryRiskRiskStatusUpdatesArgs = {
|
|
|
147238
147971
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
147239
147972
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147240
147973
|
};
|
|
147974
|
+
export declare type MercuryRiskActivityHistory = Node & {
|
|
147975
|
+
__typename?: 'MercuryRiskActivityHistory';
|
|
147976
|
+
eventTimestamp: Scalars['String']['output'];
|
|
147977
|
+
eventType: MercuryRiskEventType;
|
|
147978
|
+
fields?: Maybe<Array<MercuryRiskUpdatedField>>;
|
|
147979
|
+
fieldsChanged?: Maybe<Array<Scalars['String']['output']>>;
|
|
147980
|
+
id: Scalars['ID']['output'];
|
|
147981
|
+
riskId: Scalars['ID']['output'];
|
|
147982
|
+
user?: Maybe<User>;
|
|
147983
|
+
};
|
|
147984
|
+
export declare type MercuryRiskActivityHistoryConnection = {
|
|
147985
|
+
__typename?: 'MercuryRiskActivityHistoryConnection';
|
|
147986
|
+
edges?: Maybe<Array<Maybe<MercuryRiskActivityHistoryEdge>>>;
|
|
147987
|
+
pageInfo: PageInfo;
|
|
147988
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
147989
|
+
};
|
|
147990
|
+
export declare type MercuryRiskActivityHistoryEdge = {
|
|
147991
|
+
__typename?: 'MercuryRiskActivityHistoryEdge';
|
|
147992
|
+
cursor: Scalars['String']['output'];
|
|
147993
|
+
node?: Maybe<MercuryRiskActivityHistory>;
|
|
147994
|
+
};
|
|
147995
|
+
export declare type MercuryRiskActivitySort = {
|
|
147996
|
+
order: SortOrder;
|
|
147997
|
+
};
|
|
147241
147998
|
export declare type MercuryRiskConnection = {
|
|
147242
147999
|
__typename?: 'MercuryRiskConnection';
|
|
147243
148000
|
edges?: Maybe<Array<Maybe<MercuryRiskEdge>>>;
|
|
@@ -147249,6 +148006,13 @@ export declare type MercuryRiskEdge = {
|
|
|
147249
148006
|
cursor: Scalars['String']['output'];
|
|
147250
148007
|
node?: Maybe<MercuryRisk>;
|
|
147251
148008
|
};
|
|
148009
|
+
export declare enum MercuryRiskEventType {
|
|
148010
|
+
Create = "CREATE",
|
|
148011
|
+
Delete = "DELETE",
|
|
148012
|
+
LinkFocusArea = "LINK_FOCUS_AREA",
|
|
148013
|
+
UnlinkFocusArea = "UNLINK_FOCUS_AREA",
|
|
148014
|
+
Update = "UPDATE"
|
|
148015
|
+
}
|
|
147252
148016
|
export declare type MercuryRiskImpact = {
|
|
147253
148017
|
__typename?: 'MercuryRiskImpact';
|
|
147254
148018
|
key: Scalars['String']['output'];
|
|
@@ -147341,6 +148105,12 @@ export declare enum MercuryRiskTargetDateType {
|
|
|
147341
148105
|
Month = "MONTH",
|
|
147342
148106
|
Quarter = "QUARTER"
|
|
147343
148107
|
}
|
|
148108
|
+
export declare type MercuryRiskUpdatedField = {
|
|
148109
|
+
__typename?: 'MercuryRiskUpdatedField';
|
|
148110
|
+
field: Scalars['String']['output'];
|
|
148111
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
148112
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
148113
|
+
};
|
|
147344
148114
|
export declare type MercuryRisksMutationApi = {
|
|
147345
148115
|
__typename?: 'MercuryRisksMutationApi';
|
|
147346
148116
|
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
@@ -147407,16 +148177,21 @@ export declare type MercuryRisksMutationApiUpdateRiskTargetDateArgs = {
|
|
|
147407
148177
|
export declare type MercuryRisksQueryApi = {
|
|
147408
148178
|
__typename?: 'MercuryRisksQueryApi';
|
|
147409
148179
|
risk?: Maybe<MercuryRisk>;
|
|
148180
|
+
riskActivityHistoryByIds?: Maybe<Array<Maybe<MercuryRiskActivityHistory>>>;
|
|
147410
148181
|
riskImpactValues: Array<MercuryRiskImpact>;
|
|
147411
148182
|
riskLikelihoodValues: Array<MercuryRiskLikelihood>;
|
|
147412
148183
|
riskStatusUpdatesByIds?: Maybe<Array<Maybe<MercuryRiskStatusUpdate>>>;
|
|
147413
148184
|
riskStatuses: Array<MercuryRiskStatus>;
|
|
147414
148185
|
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
147415
148186
|
risksSearch?: Maybe<MercuryRiskConnection>;
|
|
148187
|
+
searchRiskActivityHistory?: Maybe<MercuryRiskActivityHistoryConnection>;
|
|
147416
148188
|
};
|
|
147417
148189
|
export declare type MercuryRisksQueryApiRiskArgs = {
|
|
147418
148190
|
id: Scalars['ID']['input'];
|
|
147419
148191
|
};
|
|
148192
|
+
export declare type MercuryRisksQueryApiRiskActivityHistoryByIdsArgs = {
|
|
148193
|
+
ids: Array<Scalars['ID']['input']>;
|
|
148194
|
+
};
|
|
147420
148195
|
export declare type MercuryRisksQueryApiRiskImpactValuesArgs = {
|
|
147421
148196
|
cloudId: Scalars['ID']['input'];
|
|
147422
148197
|
};
|
|
@@ -147439,6 +148214,13 @@ export declare type MercuryRisksQueryApiRisksSearchArgs = {
|
|
|
147439
148214
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
147440
148215
|
sort?: InputMaybe<Array<InputMaybe<MercuryRiskSort>>>;
|
|
147441
148216
|
};
|
|
148217
|
+
export declare type MercuryRisksQueryApiSearchRiskActivityHistoryArgs = {
|
|
148218
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
148219
|
+
cloudId: Scalars['ID']['input'];
|
|
148220
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
148221
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148222
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryRiskActivitySort>>>;
|
|
148223
|
+
};
|
|
147442
148224
|
export declare type MercurySetBaselineInput = {
|
|
147443
148225
|
endYearMonth: Scalars['String']['input'];
|
|
147444
148226
|
financialVersionId: Scalars['ID']['input'];
|
|
@@ -148846,17 +149628,6 @@ export declare type MercuryUserEdge = {
|
|
|
148846
149628
|
cursor: Scalars['String']['output'];
|
|
148847
149629
|
node?: Maybe<User>;
|
|
148848
149630
|
};
|
|
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
149631
|
export declare type MercuryValidateFocusAreasForRankingInput = {
|
|
148861
149632
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
148862
149633
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -149163,8 +149934,10 @@ export declare type Mutation = {
|
|
|
149163
149934
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
149164
149935
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
149165
149936
|
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
|
|
149937
|
+
admin_cancelAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
149166
149938
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
149167
149939
|
admin_createAiPolicy?: Maybe<AdminCreateAiPolicyResponsePayload>;
|
|
149940
|
+
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
149168
149941
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
149169
149942
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
149170
149943
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
@@ -149175,9 +149948,13 @@ export declare type Mutation = {
|
|
|
149175
149948
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
149176
149949
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
149177
149950
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
149951
|
+
admin_scimRuleCreate?: Maybe<AdminScimRuleMutationPayload>;
|
|
149952
|
+
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
149953
|
+
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
149178
149954
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
149179
149955
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
149180
149956
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
149957
|
+
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
149181
149958
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
149182
149959
|
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
149183
149960
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
@@ -150006,8 +150783,10 @@ export declare type Mutation = {
|
|
|
150006
150783
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
150007
150784
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
150008
150785
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
150786
|
+
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
150009
150787
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
150010
150788
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
150789
|
+
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
150011
150790
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
150012
150791
|
kitsune_removeSnippet?: Maybe<KitsuneDeletedRecord>;
|
|
150013
150792
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -150274,6 +151053,7 @@ export declare type Mutation = {
|
|
|
150274
151053
|
spf_updateViewSettings?: Maybe<SpfUpsertViewPayload>;
|
|
150275
151054
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
150276
151055
|
spss_exportFullSiteScanResults?: Maybe<SpssExportFullSiteScanResultsPayload>;
|
|
151056
|
+
stakeholderComms_addPageSubscribersAdmin?: Maybe<StakeholderCommsBulkAddSubscriberFromAdminResponse>;
|
|
150277
151057
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
150278
151058
|
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
150279
151059
|
stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
|
|
@@ -150434,6 +151214,10 @@ export declare type MutationAdmin_AuditLogEventExportArgs = {
|
|
|
150434
151214
|
input?: InputMaybe<AdminAuditLogEventExportInput>;
|
|
150435
151215
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
150436
151216
|
};
|
|
151217
|
+
export declare type MutationAdmin_CancelAuditLogBackgroundQueryArgs = {
|
|
151218
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
151219
|
+
container: AdminAuditLogContainer;
|
|
151220
|
+
};
|
|
150437
151221
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
150438
151222
|
resourceAri: Scalars['ID']['input'];
|
|
150439
151223
|
};
|
|
@@ -150441,6 +151225,12 @@ export declare type MutationAdmin_CreateAiPolicyArgs = {
|
|
|
150441
151225
|
createAiPolicyInput?: InputMaybe<AdminCreateAiPolicyInput>;
|
|
150442
151226
|
orgId: Scalars['ID']['input'];
|
|
150443
151227
|
};
|
|
151228
|
+
export declare type MutationAdmin_CreateAuditLogBackgroundQueryArgs = {
|
|
151229
|
+
container: AdminAuditLogContainer;
|
|
151230
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
151231
|
+
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
151232
|
+
name: Scalars['String']['input'];
|
|
151233
|
+
};
|
|
150444
151234
|
export declare type MutationAdmin_CreateInvitePolicyArgs = {
|
|
150445
151235
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
150446
151236
|
orgId: Scalars['ID']['input'];
|
|
@@ -150479,6 +151269,19 @@ export declare type MutationAdmin_RevokeRoleArgs = {
|
|
|
150479
151269
|
orgId: Scalars['ID']['input'];
|
|
150480
151270
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
150481
151271
|
};
|
|
151272
|
+
export declare type MutationAdmin_ScimRuleCreateArgs = {
|
|
151273
|
+
input: AdminScimRuleCreateInput;
|
|
151274
|
+
orgId: Scalars['ID']['input'];
|
|
151275
|
+
};
|
|
151276
|
+
export declare type MutationAdmin_ScimRuleDeleteArgs = {
|
|
151277
|
+
orgId: Scalars['ID']['input'];
|
|
151278
|
+
ruleId: Scalars['ID']['input'];
|
|
151279
|
+
};
|
|
151280
|
+
export declare type MutationAdmin_ScimRuleUpdateArgs = {
|
|
151281
|
+
input: AdminScimRuleUpdateInput;
|
|
151282
|
+
orgId: Scalars['ID']['input'];
|
|
151283
|
+
ruleId: Scalars['ID']['input'];
|
|
151284
|
+
};
|
|
150482
151285
|
export declare type MutationAdmin_UnitCreateArgs = {
|
|
150483
151286
|
orgId: Scalars['ID']['input'];
|
|
150484
151287
|
unit: AdminUnitCreateInput;
|
|
@@ -150493,6 +151296,12 @@ export declare type MutationAdmin_UpdateAiPolicyArgs = {
|
|
|
150493
151296
|
policyId: Scalars['ID']['input'];
|
|
150494
151297
|
updateAiPolicyInput?: InputMaybe<AdminUpdateAiPolicyInput>;
|
|
150495
151298
|
};
|
|
151299
|
+
export declare type MutationAdmin_UpdateAuditLogBackgroundQueryArgs = {
|
|
151300
|
+
backgroundQueryId: Scalars['String']['input'];
|
|
151301
|
+
container: AdminAuditLogContainer;
|
|
151302
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
151303
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
151304
|
+
};
|
|
150496
151305
|
export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
150497
151306
|
orgId: Scalars['ID']['input'];
|
|
150498
151307
|
policyId: Scalars['ID']['input'];
|
|
@@ -150898,6 +151707,7 @@ export declare type MutationAssetsDm_CreateSavedSearchArgs = {
|
|
|
150898
151707
|
isPublic?: Scalars['Boolean']['input'];
|
|
150899
151708
|
name: Scalars['String']['input'];
|
|
150900
151709
|
objectId: Scalars['ID']['input'];
|
|
151710
|
+
savedSearchId?: InputMaybe<Scalars['ID']['input']>;
|
|
150901
151711
|
searchInput: AssetsDmSavedSearchInput;
|
|
150902
151712
|
workspaceId: Scalars['ID']['input'];
|
|
150903
151713
|
};
|
|
@@ -153394,6 +154204,7 @@ export declare type MutationKitsune_CreateSnippetArgs = {
|
|
|
153394
154204
|
markId?: InputMaybe<Scalars['ID']['input']>;
|
|
153395
154205
|
};
|
|
153396
154206
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
154207
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
153397
154208
|
name: Scalars['String']['input'];
|
|
153398
154209
|
workspaceAri: Scalars['ID']['input'];
|
|
153399
154210
|
};
|
|
@@ -153421,12 +154232,18 @@ export declare type MutationKitsune_MoveViewArgs = {
|
|
|
153421
154232
|
rank?: InputMaybe<KitsuneRankInput>;
|
|
153422
154233
|
viewAri: Scalars['ID']['input'];
|
|
153423
154234
|
};
|
|
154235
|
+
export declare type MutationKitsune_RemoveCustomerArgs = {
|
|
154236
|
+
ari: Scalars['ID']['input'];
|
|
154237
|
+
};
|
|
153424
154238
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
153425
154239
|
feedbackAri: Scalars['ID']['input'];
|
|
153426
154240
|
};
|
|
153427
154241
|
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
153428
154242
|
id: Scalars['ID']['input'];
|
|
153429
154243
|
};
|
|
154244
|
+
export declare type MutationKitsune_RemoveOrganizationArgs = {
|
|
154245
|
+
ari: Scalars['ID']['input'];
|
|
154246
|
+
};
|
|
153430
154247
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
153431
154248
|
sectionAri: Scalars['ID']['input'];
|
|
153432
154249
|
};
|
|
@@ -153453,6 +154270,8 @@ export declare type MutationKitsune_UpdateInsightArgs = {
|
|
|
153453
154270
|
};
|
|
153454
154271
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
153455
154272
|
defaultCustomerId?: InputMaybe<Scalars['ID']['input']>;
|
|
154273
|
+
domain?: InputMaybe<KitsuneOrganizationDomainInput>;
|
|
154274
|
+
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
153456
154275
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
153457
154276
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
153458
154277
|
organizationAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -153757,6 +154576,7 @@ export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
|
153757
154576
|
pageIds: Array<Scalars['ID']['input']>;
|
|
153758
154577
|
};
|
|
153759
154578
|
export declare type MutationPublicLinkSpacesActionArgs = {
|
|
154579
|
+
accessType?: InputMaybe<ConfluenceShareableLinkAccessType>;
|
|
153760
154580
|
action: PublicLinkAdminAction;
|
|
153761
154581
|
spaceIds: Array<Scalars['ID']['input']>;
|
|
153762
154582
|
};
|
|
@@ -154258,6 +155078,11 @@ export declare type MutationSpss_ExportFullSiteScanResultsArgs = {
|
|
|
154258
155078
|
input: SpssExportFullSiteScanResultsInput;
|
|
154259
155079
|
orgId: Scalars['ID']['input'];
|
|
154260
155080
|
};
|
|
155081
|
+
export declare type MutationStakeholderComms_AddPageSubscribersAdminArgs = {
|
|
155082
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
155083
|
+
emails: Array<Scalars['String']['input']>;
|
|
155084
|
+
pageId: Scalars['String']['input'];
|
|
155085
|
+
};
|
|
154261
155086
|
export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
154262
155087
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
154263
155088
|
groupId: Scalars['String']['input'];
|
|
@@ -157354,6 +158179,7 @@ export declare type Properties = {
|
|
|
157354
158179
|
};
|
|
157355
158180
|
export declare type PublicLink = {
|
|
157356
158181
|
__typename?: 'PublicLink';
|
|
158182
|
+
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
157357
158183
|
id: Scalars['ID']['output'];
|
|
157358
158184
|
lastEnabledBy?: Maybe<Scalars['String']['output']>;
|
|
157359
158185
|
lastEnabledByUser?: Maybe<Person>;
|
|
@@ -157546,6 +158372,7 @@ export declare type PublicLinkVersion = {
|
|
|
157546
158372
|
syncRev?: Maybe<Scalars['String']['output']>;
|
|
157547
158373
|
};
|
|
157548
158374
|
export declare enum PublicLinksByCriteriaOrder {
|
|
158375
|
+
AccessType = "ACCESS_TYPE",
|
|
157549
158376
|
DateEnabled = "DATE_ENABLED",
|
|
157550
158377
|
Status = "STATUS",
|
|
157551
158378
|
Title = "TITLE"
|
|
@@ -157685,6 +158512,8 @@ export declare type Query = {
|
|
|
157685
158512
|
admin_orgDetails?: Maybe<AdminOrgDetails>;
|
|
157686
158513
|
admin_orgPolicies?: Maybe<AdminOrgPolicyConnection>;
|
|
157687
158514
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
158515
|
+
admin_scimRule?: Maybe<AdminScimRule>;
|
|
158516
|
+
admin_scimRuleSearch?: Maybe<AdminScimRuleSearchConnection>;
|
|
157688
158517
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
157689
158518
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
157690
158519
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -157882,7 +158711,9 @@ export declare type Query = {
|
|
|
157882
158711
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
157883
158712
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
157884
158713
|
assetsVertical_depreciationRules?: Maybe<AssetsVerticalDepreciationRuleConnection>;
|
|
158714
|
+
assetsVertical_insightDefinitions?: Maybe<AssetsVerticalInsightDefinitionResult>;
|
|
157885
158715
|
assetsVertical_insightDetails?: Maybe<AssetsVerticalInsightDetailsResult>;
|
|
158716
|
+
assetsVertical_insightDetailsByDefinition?: Maybe<AssetsVerticalInsightDetailsByDefinitionResult>;
|
|
157886
158717
|
assetsVertical_insights?: Maybe<AssetsVerticalInsightsResult>;
|
|
157887
158718
|
assetsVertical_instantiatedBundle?: Maybe<AssetsVerticalBundleInstantiationResult>;
|
|
157888
158719
|
assetsVertical_itemMapping?: Maybe<AssetsVerticalItemMappingResult>;
|
|
@@ -157925,6 +158756,7 @@ export declare type Query = {
|
|
|
157925
158756
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
157926
158757
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
157927
158758
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
158759
|
+
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
157928
158760
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
157929
158761
|
avpanalytics_getDataSources?: Maybe<Array<AvpAnalyticsDataSource>>;
|
|
157930
158762
|
avpanalytics_getJoinTypeConfigurations?: Maybe<Array<AvpAnalyticsJoinTypeConfiguration>>;
|
|
@@ -158712,12 +159544,14 @@ export declare type Query = {
|
|
|
158712
159544
|
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
158713
159545
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
158714
159546
|
radar_lastAppliedFilter?: Maybe<RadarLastAppliedFilter>;
|
|
159547
|
+
radar_metricsSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
158715
159548
|
radar_notificationSettings?: Maybe<Array<RadarNotification>>;
|
|
158716
159549
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
158717
159550
|
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
158718
159551
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
158719
159552
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
158720
159553
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
159554
|
+
radar_skillAssignmentMetadata?: Maybe<Array<RadarSkillAssignmentMetadata>>;
|
|
158721
159555
|
radar_skillByAri?: Maybe<RadarSkill>;
|
|
158722
159556
|
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
158723
159557
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
@@ -158966,6 +159800,7 @@ export declare type QueryAdmin_AiPoliciesArgs = {
|
|
|
158966
159800
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
158967
159801
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
158968
159802
|
orgId: Scalars['ID']['input'];
|
|
159803
|
+
searchInput?: InputMaybe<AdminAiPoliciesSearchInput>;
|
|
158969
159804
|
};
|
|
158970
159805
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
158971
159806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -159133,6 +159968,18 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
159133
159968
|
principalId: Scalars['ID']['input'];
|
|
159134
159969
|
resourceId: Scalars['ID']['input'];
|
|
159135
159970
|
};
|
|
159971
|
+
export declare type QueryAdmin_ScimRuleArgs = {
|
|
159972
|
+
orgId: Scalars['ID']['input'];
|
|
159973
|
+
ruleId: Scalars['ID']['input'];
|
|
159974
|
+
};
|
|
159975
|
+
export declare type QueryAdmin_ScimRuleSearchArgs = {
|
|
159976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159977
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
159978
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159979
|
+
input: AdminScimRuleSearchInput;
|
|
159980
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
159981
|
+
orgId: Scalars['ID']['input'];
|
|
159982
|
+
};
|
|
159136
159983
|
export declare type QueryAdmin_TokensArgs = {
|
|
159137
159984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159138
159985
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -160182,9 +161029,16 @@ export declare type QueryAssetsVertical_DepreciationRulesArgs = {
|
|
|
160182
161029
|
objTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
160183
161030
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
160184
161031
|
};
|
|
161032
|
+
export declare type QueryAssetsVertical_InsightDefinitionsArgs = {
|
|
161033
|
+
cloudId: Scalars['ID']['input'];
|
|
161034
|
+
};
|
|
160185
161035
|
export declare type QueryAssetsVertical_InsightDetailsArgs = {
|
|
160186
161036
|
cloudId: Scalars['ID']['input'];
|
|
160187
161037
|
};
|
|
161038
|
+
export declare type QueryAssetsVertical_InsightDetailsByDefinitionArgs = {
|
|
161039
|
+
cloudId: Scalars['ID']['input'];
|
|
161040
|
+
insightDefinitionId: Scalars['ID']['input'];
|
|
161041
|
+
};
|
|
160188
161042
|
export declare type QueryAssetsVertical_InsightsArgs = {
|
|
160189
161043
|
cloudId: Scalars['ID']['input'];
|
|
160190
161044
|
};
|
|
@@ -160361,6 +161215,13 @@ export declare type QueryAvp_GetFilterExpressionArgs = {
|
|
|
160361
161215
|
export declare type QueryAvp_GetReadOnlyDashboardArgs = {
|
|
160362
161216
|
input: AvpGetReadOnlyDashboardInput;
|
|
160363
161217
|
};
|
|
161218
|
+
export declare type QueryAvp_SearchDashboardsArgs = {
|
|
161219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
161220
|
+
cloudId: Scalars['ID']['input'];
|
|
161221
|
+
first: Scalars['Int']['input'];
|
|
161222
|
+
input: AvpSearchDashboardsInput;
|
|
161223
|
+
workspaceAri: Scalars['ID']['input'];
|
|
161224
|
+
};
|
|
160364
161225
|
export declare type QueryAvpanalytics_GetDataSourceArgs = {
|
|
160365
161226
|
cloudId: Scalars['ID']['input'];
|
|
160366
161227
|
dataSourceCloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -162876,6 +163737,7 @@ export declare type QueryKitsune_CustomersArgs = {
|
|
|
162876
163737
|
workspaceAri: Scalars['ID']['input'];
|
|
162877
163738
|
};
|
|
162878
163739
|
export declare type QueryKitsune_EntitlementsArgs = {
|
|
163740
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162879
163741
|
workspaceAri: Scalars['ID']['input'];
|
|
162880
163742
|
};
|
|
162881
163743
|
export declare type QueryKitsune_FeedbackEventArgs = {
|
|
@@ -162910,6 +163772,7 @@ export declare type QueryKitsune_OrganizationsByNameArgs = {
|
|
|
162910
163772
|
workspaceAri: Scalars['ID']['input'];
|
|
162911
163773
|
};
|
|
162912
163774
|
export declare type QueryKitsune_SearchChunkArgs = {
|
|
163775
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162913
163776
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
162914
163777
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
162915
163778
|
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -162926,6 +163789,7 @@ export declare type QueryKitsune_SearchCustomersArgs = {
|
|
|
162926
163789
|
export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
162927
163790
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162928
163791
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163792
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162929
163793
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162930
163794
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
162931
163795
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -162937,9 +163801,11 @@ export declare type QueryKitsune_SearchFeedbackArgs = {
|
|
|
162937
163801
|
export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
162938
163802
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162939
163803
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163804
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162940
163805
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162941
163806
|
input?: InputMaybe<KitsuneSearchFeedbackInput>;
|
|
162942
163807
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163808
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
162943
163809
|
withTotalCount?: InputMaybe<Scalars['Boolean']['input']>;
|
|
162944
163810
|
workspace?: InputMaybe<KitsuneWorkspaceIdentifierInput>;
|
|
162945
163811
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -162947,6 +163813,7 @@ export declare type QueryKitsune_SearchFeedbackWithHighlightsArgs = {
|
|
|
162947
163813
|
export declare type QueryKitsune_SearchFieldsArgs = {
|
|
162948
163814
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162949
163815
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163816
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162950
163817
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162951
163818
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
162952
163819
|
name: Scalars['String']['input'];
|
|
@@ -162971,6 +163838,7 @@ export declare type QueryKitsune_SpacesArgs = {
|
|
|
162971
163838
|
export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
162972
163839
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
162973
163840
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
163841
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
162974
163842
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
162975
163843
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
162976
163844
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
@@ -163496,6 +164364,7 @@ export declare type QueryPublicLinkSpacesByCriteriaArgs = {
|
|
|
163496
164364
|
status?: InputMaybe<Array<PublicLinkSpaceStatus>>;
|
|
163497
164365
|
};
|
|
163498
164366
|
export declare type QueryPublicLinksByCriteriaArgs = {
|
|
164367
|
+
accessType?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkAccessType>>>;
|
|
163499
164368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163500
164369
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163501
164370
|
isAscending?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -163551,6 +164420,9 @@ export declare type QueryRadar_LastAppliedFilterArgs = {
|
|
|
163551
164420
|
cloudId: Scalars['ID']['input'];
|
|
163552
164421
|
pageName: Scalars['String']['input'];
|
|
163553
164422
|
};
|
|
164423
|
+
export declare type QueryRadar_MetricsSettingsArgs = {
|
|
164424
|
+
cloudId: Scalars['ID']['input'];
|
|
164425
|
+
};
|
|
163554
164426
|
export declare type QueryRadar_NotificationSettingsArgs = {
|
|
163555
164427
|
cloudId: Scalars['ID']['input'];
|
|
163556
164428
|
};
|
|
@@ -163581,6 +164453,9 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
163581
164453
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163582
164454
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
163583
164455
|
};
|
|
164456
|
+
export declare type QueryRadar_SkillAssignmentMetadataArgs = {
|
|
164457
|
+
skillAssignments: Array<RadarSkillAssignmentInput>;
|
|
164458
|
+
};
|
|
163584
164459
|
export declare type QueryRadar_SkillByAriArgs = {
|
|
163585
164460
|
id: Scalars['ID']['input'];
|
|
163586
164461
|
};
|
|
@@ -165160,6 +166035,16 @@ export declare type RadarSkill = Node & {
|
|
|
165160
166035
|
parent?: Maybe<RadarSkill>;
|
|
165161
166036
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
165162
166037
|
};
|
|
166038
|
+
export declare type RadarSkillAssignmentInput = {
|
|
166039
|
+
skillId: Scalars['ID']['input'];
|
|
166040
|
+
workerId: Scalars['ID']['input'];
|
|
166041
|
+
};
|
|
166042
|
+
export declare type RadarSkillAssignmentMetadata = {
|
|
166043
|
+
__typename?: 'RadarSkillAssignmentMetadata';
|
|
166044
|
+
reasoning?: Maybe<Scalars['String']['output']>;
|
|
166045
|
+
skillId: Scalars['ID']['output'];
|
|
166046
|
+
workerId: Scalars['ID']['output'];
|
|
166047
|
+
};
|
|
165163
166048
|
export declare type RadarStarredEntity = RadarView;
|
|
165164
166049
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
165165
166050
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
@@ -166541,6 +167426,10 @@ export declare enum RoleAssignmentPrincipalType {
|
|
|
166541
167426
|
Group = "GROUP",
|
|
166542
167427
|
User = "USER"
|
|
166543
167428
|
}
|
|
167429
|
+
export declare enum RollingSprintSetting {
|
|
167430
|
+
Disabled = "DISABLED",
|
|
167431
|
+
Enabled = "ENABLED"
|
|
167432
|
+
}
|
|
166544
167433
|
export declare type RunImportError = {
|
|
166545
167434
|
__typename?: 'RunImportError';
|
|
166546
167435
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -167433,6 +168322,7 @@ export declare type SearchGraphQlConfigurationResponse = {
|
|
|
167433
168322
|
};
|
|
167434
168323
|
export declare type SearchGraphQlConfigurationResponseThirdPartyFilterOptionsArgs = {
|
|
167435
168324
|
datasourceId: Scalars['String']['input'];
|
|
168325
|
+
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
167436
168326
|
};
|
|
167437
168327
|
export declare type SearchGraphQlConfigurationResponseThirdPartySlackChannelsArgs = {
|
|
167438
168328
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167529,6 +168419,7 @@ export declare type SearchLayerDefinition = {
|
|
|
167529
168419
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
167530
168420
|
};
|
|
167531
168421
|
export declare enum SearchLinkedEntitiesType {
|
|
168422
|
+
Comments = "comments",
|
|
167532
168423
|
Messages = "messages",
|
|
167533
168424
|
Thread = "thread"
|
|
167534
168425
|
}
|
|
@@ -188811,6 +189702,7 @@ export declare type SpfAskActivity = {
|
|
|
188811
189702
|
updatedValues?: Maybe<Array<Maybe<SpfAskActivityUpdatedValue>>>;
|
|
188812
189703
|
};
|
|
188813
189704
|
export declare enum SpfAskActivityAttribute {
|
|
189705
|
+
ConnectedWork = "CONNECTED_WORK",
|
|
188814
189706
|
Description = "DESCRIPTION",
|
|
188815
189707
|
ImpactedWork = "IMPACTED_WORK",
|
|
188816
189708
|
Justification = "JUSTIFICATION",
|
|
@@ -188853,6 +189745,12 @@ export declare enum SpfAskActivityType {
|
|
|
188853
189745
|
Created = "CREATED",
|
|
188854
189746
|
Updated = "UPDATED"
|
|
188855
189747
|
}
|
|
189748
|
+
export declare type SpfAskActivityUpdatedConnectedWork = SpfAskActivityUpdatedValue & {
|
|
189749
|
+
__typename?: 'SpfAskActivityUpdatedConnectedWork';
|
|
189750
|
+
attribute: SpfAskActivityAttribute;
|
|
189751
|
+
newValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189752
|
+
oldValue?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
189753
|
+
};
|
|
188856
189754
|
export declare type SpfAskActivityUpdatedDocument = SpfAskActivityUpdatedValue & {
|
|
188857
189755
|
__typename?: 'SpfAskActivityUpdatedDocument';
|
|
188858
189756
|
attribute: SpfAskActivityAttribute;
|
|
@@ -189022,6 +189920,7 @@ export declare enum SpfAskStatus {
|
|
|
189022
189920
|
Deferred = "DEFERRED",
|
|
189023
189921
|
Draft = "DRAFT",
|
|
189024
189922
|
InReview = "IN_REVIEW",
|
|
189923
|
+
Resolved = "RESOLVED",
|
|
189025
189924
|
Revising = "REVISING",
|
|
189026
189925
|
Submitted = "SUBMITTED"
|
|
189027
189926
|
}
|
|
@@ -189793,17 +190692,22 @@ export declare type SplitIssueOutput = MutationResponse & {
|
|
|
189793
190692
|
};
|
|
189794
190693
|
export declare type Sprint = BaseSprint & {
|
|
189795
190694
|
__typename?: 'Sprint';
|
|
190695
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
189796
190696
|
cardChildren: Array<SoftwareCard>;
|
|
189797
190697
|
cards: Array<Maybe<SoftwareCard>>;
|
|
190698
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189798
190699
|
daysRemaining?: Maybe<Scalars['Int']['output']>;
|
|
189799
190700
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189800
190701
|
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
189801
190702
|
goal?: Maybe<Scalars['String']['output']>;
|
|
189802
190703
|
id?: Maybe<Scalars['ID']['output']>;
|
|
190704
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
189803
190705
|
name?: Maybe<Scalars['String']['output']>;
|
|
190706
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
189804
190707
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
189805
190708
|
sprintState: SprintState;
|
|
189806
190709
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
190710
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189807
190711
|
};
|
|
189808
190712
|
export declare type SprintCardsArgs = {
|
|
189809
190713
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
@@ -189860,17 +190764,22 @@ export declare enum SprintState {
|
|
|
189860
190764
|
}
|
|
189861
190765
|
export declare type SprintWithStatistics = BaseSprint & {
|
|
189862
190766
|
__typename?: 'SprintWithStatistics';
|
|
190767
|
+
autoManaged?: Maybe<AutoManagedSprintSetting>;
|
|
190768
|
+
completeSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189863
190769
|
defaultEndDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189864
190770
|
defaultStartDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189865
190771
|
endDate?: Maybe<Scalars['DateTime']['output']>;
|
|
189866
190772
|
goal?: Maybe<Scalars['String']['output']>;
|
|
189867
190773
|
id?: Maybe<Scalars['ID']['output']>;
|
|
190774
|
+
incompleteCardsDestination?: Maybe<InCompleteCardsDestination>;
|
|
189868
190775
|
incompleteCardsDestinations?: Maybe<Array<Maybe<InCompleteCardsDestination>>>;
|
|
189869
190776
|
lastColumnName?: Maybe<Scalars['String']['output']>;
|
|
189870
190777
|
name?: Maybe<Scalars['String']['output']>;
|
|
190778
|
+
rollingSprint?: Maybe<RollingSprintSetting>;
|
|
189871
190779
|
sprintMetadata?: Maybe<SoftwareSprintMetadata>;
|
|
189872
190780
|
sprintState: SprintState;
|
|
189873
190781
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
190782
|
+
startSprintError?: Maybe<AutoManagedSprintJobError>;
|
|
189874
190783
|
};
|
|
189875
190784
|
export declare type SpssExportFullSiteScanResultsInput = {
|
|
189876
190785
|
bootstrapId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -189969,6 +190878,18 @@ export declare type StakeholderCommsBodyConfigType = {
|
|
|
189969
190878
|
overallUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
189970
190879
|
uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
|
|
189971
190880
|
};
|
|
190881
|
+
export declare type StakeholderCommsBulkAddSubscriberFromAdminResponse = {
|
|
190882
|
+
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResponse';
|
|
190883
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
190884
|
+
results: Array<StakeholderCommsBulkAddSubscriberFromAdminResultItem>;
|
|
190885
|
+
success: Scalars['Boolean']['output'];
|
|
190886
|
+
};
|
|
190887
|
+
export declare type StakeholderCommsBulkAddSubscriberFromAdminResultItem = {
|
|
190888
|
+
__typename?: 'StakeholderCommsBulkAddSubscriberFromAdminResultItem';
|
|
190889
|
+
email: Scalars['String']['output'];
|
|
190890
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
190891
|
+
subscriberId?: Maybe<Scalars['String']['output']>;
|
|
190892
|
+
};
|
|
189972
190893
|
export declare type StakeholderCommsBulkStakeholderCreationResponse = {
|
|
189973
190894
|
__typename?: 'StakeholderCommsBulkStakeholderCreationResponse';
|
|
189974
190895
|
errors?: Maybe<Array<StakeholderCommsStakeholderCreationError>>;
|
|
@@ -191344,10 +192265,13 @@ export declare enum StalePagesSortingType {
|
|
|
191344
192265
|
Desc = "DESC"
|
|
191345
192266
|
}
|
|
191346
192267
|
export declare type StartSprintInput = {
|
|
192268
|
+
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
191347
192269
|
boardId: Scalars['ID']['input'];
|
|
191348
192270
|
endDate: Scalars['String']['input'];
|
|
191349
192271
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
192272
|
+
incompleteCardsDestination?: InputMaybe<SoftwareCardsDestination>;
|
|
191350
192273
|
name: Scalars['String']['input'];
|
|
192274
|
+
rollingSprint?: InputMaybe<RollingSprintSetting>;
|
|
191351
192275
|
sprintId: Scalars['ID']['input'];
|
|
191352
192276
|
startDate: Scalars['String']['input'];
|
|
191353
192277
|
};
|
|
@@ -192297,6 +193221,12 @@ export declare type TeamCreateCustomFieldValuePayload = {
|
|
|
192297
193221
|
customFieldAri: Scalars['ID']['input'];
|
|
192298
193222
|
value: Scalars['String']['input'];
|
|
192299
193223
|
};
|
|
193224
|
+
export declare type TeamCreateExternalTeamInput = {
|
|
193225
|
+
description: Scalars['String']['input'];
|
|
193226
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
193227
|
+
externalReference: TeamExternalReferenceInput;
|
|
193228
|
+
scopeId: Scalars['ID']['input'];
|
|
193229
|
+
};
|
|
192300
193230
|
export declare type TeamCreatePayload = Payload & {
|
|
192301
193231
|
__typename?: 'TeamCreatePayload';
|
|
192302
193232
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -192366,6 +193296,11 @@ export declare type TeamDetailedCustomFieldInfo = {
|
|
|
192366
193296
|
options?: Maybe<Array<TeamCustomFieldValue>>;
|
|
192367
193297
|
type: TeamCustomFieldType;
|
|
192368
193298
|
};
|
|
193299
|
+
export declare type TeamExternalReferenceInput = {
|
|
193300
|
+
id: Scalars['String']['input'];
|
|
193301
|
+
source: TeamSource;
|
|
193302
|
+
syncTeamName?: InputMaybe<Scalars['Boolean']['input']>;
|
|
193303
|
+
};
|
|
192369
193304
|
export declare type TeamHierarchy = {
|
|
192370
193305
|
__typename?: 'TeamHierarchy';
|
|
192371
193306
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -192394,6 +193329,15 @@ export declare type TeamMember = {
|
|
|
192394
193329
|
role?: Maybe<MembershipRole>;
|
|
192395
193330
|
state?: Maybe<MembershipState>;
|
|
192396
193331
|
};
|
|
193332
|
+
export declare type TeamMemberAccountId = {
|
|
193333
|
+
__typename?: 'TeamMemberAccountId';
|
|
193334
|
+
accountId: Scalars['ID']['output'];
|
|
193335
|
+
};
|
|
193336
|
+
export declare type TeamMemberAccountIdError = {
|
|
193337
|
+
__typename?: 'TeamMemberAccountIdError';
|
|
193338
|
+
accountId: Scalars['ID']['output'];
|
|
193339
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
193340
|
+
};
|
|
192397
193341
|
export declare type TeamMemberConnection = {
|
|
192398
193342
|
__typename?: 'TeamMemberConnection';
|
|
192399
193343
|
edges?: Maybe<Array<Maybe<TeamMemberEdge>>>;
|
|
@@ -192425,6 +193369,9 @@ export declare type TeamMemberV2 = {
|
|
|
192425
193369
|
export declare type TeamMembershipFilter = {
|
|
192426
193370
|
memberIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
192427
193371
|
};
|
|
193372
|
+
export declare enum TeamMembershipProcessingStatus {
|
|
193373
|
+
Async = "ASYNC"
|
|
193374
|
+
}
|
|
192428
193375
|
export declare enum TeamMembershipRole {
|
|
192429
193376
|
Admin = "ADMIN",
|
|
192430
193377
|
Regular = "REGULAR"
|
|
@@ -192440,6 +193387,12 @@ export declare enum TeamMembershipState {
|
|
|
192440
193387
|
FullMember = "FULL_MEMBER",
|
|
192441
193388
|
RequestingToJoin = "REQUESTING_TO_JOIN"
|
|
192442
193389
|
}
|
|
193390
|
+
export declare type TeamMembershipSyncResult = {
|
|
193391
|
+
__typename?: 'TeamMembershipSyncResult';
|
|
193392
|
+
errors: Array<TeamMemberAccountIdError>;
|
|
193393
|
+
members: Array<TeamMemberAccountId>;
|
|
193394
|
+
status: TeamMembershipProcessingStatus;
|
|
193395
|
+
};
|
|
192443
193396
|
export declare type TeamMutation = {
|
|
192444
193397
|
__typename?: 'TeamMutation';
|
|
192445
193398
|
addChild?: Maybe<TeamV2>;
|
|
@@ -192449,6 +193402,7 @@ export declare type TeamMutation = {
|
|
|
192449
193402
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
192450
193403
|
createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
192451
193404
|
createCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
193405
|
+
createExternalTeam?: Maybe<TeamWithMembershipSyncPayload>;
|
|
192452
193406
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
192453
193407
|
createTeamType?: Maybe<TeamType>;
|
|
192454
193408
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -192500,6 +193454,9 @@ export declare type TeamMutationCreateCustomFieldArgs = {
|
|
|
192500
193454
|
export declare type TeamMutationCreateCustomFieldValueArgs = {
|
|
192501
193455
|
customFieldValueData: TeamCreateCustomFieldValuePayload;
|
|
192502
193456
|
};
|
|
193457
|
+
export declare type TeamMutationCreateExternalTeamArgs = {
|
|
193458
|
+
input: TeamCreateExternalTeamInput;
|
|
193459
|
+
};
|
|
192503
193460
|
export declare type TeamMutationCreateTeamArgs = {
|
|
192504
193461
|
input: TeamCreateTeamInput;
|
|
192505
193462
|
};
|
|
@@ -192791,6 +193748,10 @@ export declare enum TeamSortOrder {
|
|
|
192791
193748
|
Asc = "ASC",
|
|
192792
193749
|
Desc = "DESC"
|
|
192793
193750
|
}
|
|
193751
|
+
export declare enum TeamSource {
|
|
193752
|
+
AtlassianGroup = "ATLASSIAN_GROUP",
|
|
193753
|
+
Hris = "HRIS"
|
|
193754
|
+
}
|
|
192794
193755
|
export declare enum TeamState {
|
|
192795
193756
|
Active = "ACTIVE",
|
|
192796
193757
|
Disbanded = "DISBANDED",
|
|
@@ -192986,6 +193947,13 @@ export declare type TeamV2MembersArgs = {
|
|
|
192986
193947
|
first?: Scalars['Int']['input'];
|
|
192987
193948
|
state?: Array<TeamMembershipState>;
|
|
192988
193949
|
};
|
|
193950
|
+
export declare type TeamWithMembershipSyncPayload = Payload & {
|
|
193951
|
+
__typename?: 'TeamWithMembershipSyncPayload';
|
|
193952
|
+
errors?: Maybe<Array<MutationError>>;
|
|
193953
|
+
membership?: Maybe<TeamMembershipSyncResult>;
|
|
193954
|
+
success: Scalars['Boolean']['output'];
|
|
193955
|
+
team?: Maybe<TeamV2>;
|
|
193956
|
+
};
|
|
192989
193957
|
export declare enum TeamworkGraphUserViewedEntityType {
|
|
192990
193958
|
ConfluenceBlogpost = "ConfluenceBlogpost",
|
|
192991
193959
|
ConfluencePage = "ConfluencePage",
|
|
@@ -194810,6 +195778,7 @@ export declare type TownsquareGoalsCreateRiskPayload = {
|
|
|
194810
195778
|
success: Scalars['Boolean']['output'];
|
|
194811
195779
|
};
|
|
194812
195780
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
195781
|
+
creationDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
194813
195782
|
goalId: Scalars['ID']['input'];
|
|
194814
195783
|
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
194815
195784
|
isBundledUpdate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -197736,6 +198705,7 @@ export declare type TrelloBaseCard = {
|
|
|
197736
198705
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
197737
198706
|
limits?: Maybe<TrelloCardLimits>;
|
|
197738
198707
|
list?: Maybe<TrelloList>;
|
|
198708
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
197739
198709
|
name?: Maybe<Scalars['String']['output']>;
|
|
197740
198710
|
objectId: Scalars['ID']['output'];
|
|
197741
198711
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -198240,6 +199210,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
198240
199210
|
limits?: Maybe<TrelloCardLimits>;
|
|
198241
199211
|
list?: Maybe<TrelloList>;
|
|
198242
199212
|
location?: Maybe<TrelloCardLocation>;
|
|
199213
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
198243
199214
|
members?: Maybe<TrelloMemberConnection>;
|
|
198244
199215
|
membersVoted?: Maybe<TrelloMemberConnection>;
|
|
198245
199216
|
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
@@ -198593,6 +199564,11 @@ export declare type TrelloCardLocation = {
|
|
|
198593
199564
|
name?: Maybe<Scalars['String']['output']>;
|
|
198594
199565
|
staticMapUrl?: Maybe<Scalars['URL']['output']>;
|
|
198595
199566
|
};
|
|
199567
|
+
export declare type TrelloCardManifest = {
|
|
199568
|
+
__typename?: 'TrelloCardManifest';
|
|
199569
|
+
contents?: Maybe<Scalars['JSON']['output']>;
|
|
199570
|
+
schemaVersion: Scalars['Int']['output'];
|
|
199571
|
+
};
|
|
198596
199572
|
export declare type TrelloCardMemberEdgeUpdated = {
|
|
198597
199573
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
198598
199574
|
node?: Maybe<TrelloMember>;
|
|
@@ -198622,6 +199598,7 @@ export declare type TrelloCardPlannerEventEdgeUpdated = {
|
|
|
198622
199598
|
export declare enum TrelloCardRole {
|
|
198623
199599
|
Board = "BOARD",
|
|
198624
199600
|
Link = "LINK",
|
|
199601
|
+
Manifest = "MANIFEST",
|
|
198625
199602
|
Mirror = "MIRROR",
|
|
198626
199603
|
Separator = "SEPARATOR"
|
|
198627
199604
|
}
|
|
@@ -198749,6 +199726,13 @@ export declare type TrelloChecklistConnectionUpdated = {
|
|
|
198749
199726
|
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
198750
199727
|
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
198751
199728
|
};
|
|
199729
|
+
export declare enum TrelloChecklistCreationMethod {
|
|
199730
|
+
Ai = "AI",
|
|
199731
|
+
Assisted = "ASSISTED",
|
|
199732
|
+
Automatic = "AUTOMATIC",
|
|
199733
|
+
Demo = "DEMO",
|
|
199734
|
+
EmailSource = "EMAIL_SOURCE"
|
|
199735
|
+
}
|
|
198752
199736
|
export declare type TrelloChecklistDeleted = {
|
|
198753
199737
|
__typename?: 'TrelloChecklistDeleted';
|
|
198754
199738
|
id: Scalars['ID']['output'];
|
|
@@ -198763,6 +199747,12 @@ export declare type TrelloChecklistEdgeUpdated = {
|
|
|
198763
199747
|
__typename?: 'TrelloChecklistEdgeUpdated';
|
|
198764
199748
|
node: TrelloChecklistUpdated;
|
|
198765
199749
|
};
|
|
199750
|
+
export declare enum TrelloChecklistMediaType {
|
|
199751
|
+
ImageGif = "IMAGE_GIF",
|
|
199752
|
+
ImageJpeg = "IMAGE_JPEG",
|
|
199753
|
+
ImagePng = "IMAGE_PNG",
|
|
199754
|
+
ImageWebp = "IMAGE_WEBP"
|
|
199755
|
+
}
|
|
198766
199756
|
export declare type TrelloChecklistTarget = {
|
|
198767
199757
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
198768
199758
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -198793,6 +199783,15 @@ export declare type TrelloCloseCardPayload = Payload & {
|
|
|
198793
199783
|
errors?: Maybe<Array<MutationError>>;
|
|
198794
199784
|
success: Scalars['Boolean']['output'];
|
|
198795
199785
|
};
|
|
199786
|
+
export declare type TrelloCloseListInput = {
|
|
199787
|
+
listId: Scalars['ID']['input'];
|
|
199788
|
+
};
|
|
199789
|
+
export declare type TrelloCloseListPayload = Payload & {
|
|
199790
|
+
__typename?: 'TrelloCloseListPayload';
|
|
199791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
199792
|
+
list?: Maybe<TrelloList>;
|
|
199793
|
+
success: Scalars['Boolean']['output'];
|
|
199794
|
+
};
|
|
198796
199795
|
export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
198797
199796
|
__typename?: 'TrelloCommentCardAction';
|
|
198798
199797
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -199042,6 +200041,21 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
199042
200041
|
errors?: Maybe<Array<MutationError>>;
|
|
199043
200042
|
success: Scalars['Boolean']['output'];
|
|
199044
200043
|
};
|
|
200044
|
+
export declare type TrelloCreateChecklistInput = {
|
|
200045
|
+
cardId: Scalars['ID']['input'];
|
|
200046
|
+
creationMethod?: InputMaybe<TrelloChecklistCreationMethod>;
|
|
200047
|
+
imageUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
200048
|
+
mediaType?: InputMaybe<TrelloChecklistMediaType>;
|
|
200049
|
+
name: Scalars['String']['input'];
|
|
200050
|
+
position?: InputMaybe<TrelloPosition>;
|
|
200051
|
+
sourceChecklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
200052
|
+
};
|
|
200053
|
+
export declare type TrelloCreateChecklistPayload = Payload & {
|
|
200054
|
+
__typename?: 'TrelloCreateChecklistPayload';
|
|
200055
|
+
card?: Maybe<TrelloCard>;
|
|
200056
|
+
errors?: Maybe<Array<MutationError>>;
|
|
200057
|
+
success: Scalars['Boolean']['output'];
|
|
200058
|
+
};
|
|
199045
200059
|
export declare type TrelloCreateCustomFieldInput = {
|
|
199046
200060
|
boardId: Scalars['ID']['input'];
|
|
199047
200061
|
display?: InputMaybe<TrelloCustomFieldDisplayInput>;
|
|
@@ -199608,6 +200622,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
|
|
|
199608
200622
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
199609
200623
|
limits?: Maybe<TrelloCardLimits>;
|
|
199610
200624
|
list?: Maybe<TrelloList>;
|
|
200625
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
199611
200626
|
name?: Maybe<Scalars['String']['output']>;
|
|
199612
200627
|
objectId: Scalars['ID']['output'];
|
|
199613
200628
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
@@ -199806,6 +200821,7 @@ export declare type TrelloLimitProps = {
|
|
|
199806
200821
|
export declare type TrelloList = Node & {
|
|
199807
200822
|
__typename?: 'TrelloList';
|
|
199808
200823
|
board?: Maybe<TrelloBoard>;
|
|
200824
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
199809
200825
|
cards?: Maybe<TrelloCardConnection>;
|
|
199810
200826
|
closed: Scalars['Boolean']['output'];
|
|
199811
200827
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -200318,12 +201334,14 @@ export declare type TrelloMutationApi = {
|
|
|
200318
201334
|
bulkDeleteList?: Maybe<TrelloBulkDeleteListPayload>;
|
|
200319
201335
|
closeBoard?: Maybe<TrelloCloseBoardPayload>;
|
|
200320
201336
|
closeCard?: Maybe<TrelloCloseCardPayload>;
|
|
201337
|
+
closeList?: Maybe<TrelloCloseListPayload>;
|
|
200321
201338
|
completeOnboarding?: Maybe<TrelloCompleteOnboardingPayload>;
|
|
200322
201339
|
convertBoardToTemplate?: Maybe<TrelloConvertBoardToTemplatePayload>;
|
|
200323
201340
|
convertTemplateToBoard?: Maybe<TrelloConvertTemplateToBoardPayload>;
|
|
200324
201341
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
200325
201342
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
200326
201343
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
201344
|
+
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
200327
201345
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
200328
201346
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
200329
201347
|
createList?: Maybe<TrelloCreateListPayload>;
|
|
@@ -200454,6 +201472,9 @@ export declare type TrelloMutationApiCloseBoardArgs = {
|
|
|
200454
201472
|
export declare type TrelloMutationApiCloseCardArgs = {
|
|
200455
201473
|
input: TrelloCloseCardInput;
|
|
200456
201474
|
};
|
|
201475
|
+
export declare type TrelloMutationApiCloseListArgs = {
|
|
201476
|
+
input: TrelloCloseListInput;
|
|
201477
|
+
};
|
|
200457
201478
|
export declare type TrelloMutationApiCompleteOnboardingArgs = {
|
|
200458
201479
|
input: TrelloCompleteOnboardingInput;
|
|
200459
201480
|
};
|
|
@@ -200472,6 +201493,9 @@ export declare type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
|
200472
201493
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
200473
201494
|
input: TrelloCreateCardInput;
|
|
200474
201495
|
};
|
|
201496
|
+
export declare type TrelloMutationApiCreateChecklistArgs = {
|
|
201497
|
+
input: TrelloCreateChecklistInput;
|
|
201498
|
+
};
|
|
200475
201499
|
export declare type TrelloMutationApiCreateCustomFieldArgs = {
|
|
200476
201500
|
input: TrelloCreateCustomFieldInput;
|
|
200477
201501
|
};
|
|
@@ -200821,6 +201845,7 @@ export declare type TrelloPlanner = {
|
|
|
200821
201845
|
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
200822
201846
|
cardsWithDueDates?: Maybe<TrelloPlannerCardsWithDueDatesConnection>;
|
|
200823
201847
|
dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
|
|
201848
|
+
forceUpdateCardsDueTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
200824
201849
|
id: Scalars['ID']['output'];
|
|
200825
201850
|
primaryAccountId?: Maybe<Scalars['ID']['output']>;
|
|
200826
201851
|
primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
|
|
@@ -201477,6 +202502,10 @@ export declare type TrelloPlannerUpdated = {
|
|
|
201477
202502
|
export declare type TrelloPlannerUpdatedCardsWithDueDatesArgs = {
|
|
201478
202503
|
filter: TrelloPlannerCardsWithDueDatesUpdatedFilter;
|
|
201479
202504
|
};
|
|
202505
|
+
export declare type TrelloPosition = {
|
|
202506
|
+
absolute?: InputMaybe<Scalars['Float']['input']>;
|
|
202507
|
+
relative?: InputMaybe<TrelloRelativePosition>;
|
|
202508
|
+
};
|
|
201480
202509
|
export declare type TrelloPowerUp = {
|
|
201481
202510
|
__typename?: 'TrelloPowerUp';
|
|
201482
202511
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -202367,7 +203396,7 @@ export declare type TrelloUpdateBoardIsTemplateInput = {
|
|
|
202367
203396
|
};
|
|
202368
203397
|
export declare type TrelloUpdateBoardIsTemplatePayload = Payload & {
|
|
202369
203398
|
__typename?: 'TrelloUpdateBoardIsTemplatePayload';
|
|
202370
|
-
board?: Maybe<
|
|
203399
|
+
board?: Maybe<TrelloBaseBoard>;
|
|
202371
203400
|
errors?: Maybe<Array<MutationError>>;
|
|
202372
203401
|
success: Scalars['Boolean']['output'];
|
|
202373
203402
|
};
|
|
@@ -202378,6 +203407,7 @@ export declare type TrelloUpdateBoardNameInput = {
|
|
|
202378
203407
|
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
202379
203408
|
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
202380
203409
|
board?: Maybe<TrelloBoard>;
|
|
203410
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
202381
203411
|
errors?: Maybe<Array<MutationError>>;
|
|
202382
203412
|
success: Scalars['Boolean']['output'];
|
|
202383
203413
|
};
|