@forge/cli-shared 5.5.0-next.8-experimental-c7a7d36 → 5.5.0
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 +102 -16
- package/out/apps/template.js +1 -1
- package/out/config/config-file.js +1 -1
- package/out/config/config.d.ts.map +1 -1
- package/out/config/config.js +1 -1
- package/out/graphql/graphql-types.d.ts +532 -240
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +70 -24
- package/out/service/i18n-resource-bundling-service.d.ts +21 -0
- package/out/service/i18n-resource-bundling-service.d.ts.map +1 -0
- package/out/service/i18n-resource-bundling-service.js +97 -0
- package/out/service/index.d.ts +1 -0
- package/out/service/index.d.ts.map +1 -1
- package/out/service/index.js +1 -0
- package/out/shared/directories.d.ts +3 -0
- package/out/shared/directories.d.ts.map +1 -0
- package/out/shared/directories.js +10 -0
- package/out/shared/index.d.ts +2 -1
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/tunnel/tunnel-options.d.ts +1 -1
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/tunnel/tunnel-options.js +5 -2
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +3 -2
|
@@ -2454,6 +2454,11 @@ export declare enum CcpDuration {
|
|
|
2454
2454
|
Once = "ONCE",
|
|
2455
2455
|
Repeating = "REPEATING"
|
|
2456
2456
|
}
|
|
2457
|
+
export declare type CcpEffectiveUncollectibleAction = {
|
|
2458
|
+
__typename?: 'CcpEffectiveUncollectibleAction';
|
|
2459
|
+
destinationOffering?: Maybe<CcpOffering>;
|
|
2460
|
+
uncollectibleActionType?: Maybe<CcpOfferingUncollectibleActionType>;
|
|
2461
|
+
};
|
|
2457
2462
|
export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
2458
2463
|
__typename?: 'CcpEntitlement';
|
|
2459
2464
|
changeReason?: Maybe<Scalars['String']['output']>;
|
|
@@ -2531,6 +2536,8 @@ export declare type CcpEntitlementTemplate = {
|
|
|
2531
2536
|
export declare type CcpEntitlementUsage = {
|
|
2532
2537
|
__typename?: 'CcpEntitlementUsage';
|
|
2533
2538
|
offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
|
|
2539
|
+
usageAmount?: Maybe<Scalars['Float']['output']>;
|
|
2540
|
+
usageIdentifier?: Maybe<Scalars['String']['output']>;
|
|
2534
2541
|
};
|
|
2535
2542
|
export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
2536
2543
|
__typename?: 'CcpExperienceCapability';
|
|
@@ -2571,6 +2578,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2571
2578
|
dependsOnOfferingKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
2572
2579
|
derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
|
|
2573
2580
|
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
2581
|
+
effectiveUncollectibleAction?: Maybe<CcpEffectiveUncollectibleAction>;
|
|
2574
2582
|
entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
|
|
2575
2583
|
expiryDate?: Maybe<Scalars['Float']['output']>;
|
|
2576
2584
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
@@ -2632,6 +2640,11 @@ export declare enum CcpOfferingType {
|
|
|
2632
2640
|
Child = "CHILD",
|
|
2633
2641
|
Parent = "PARENT"
|
|
2634
2642
|
}
|
|
2643
|
+
export declare enum CcpOfferingUncollectibleActionType {
|
|
2644
|
+
Cancel = "CANCEL",
|
|
2645
|
+
Downgrade = "DOWNGRADE",
|
|
2646
|
+
NoAction = "NO_ACTION"
|
|
2647
|
+
}
|
|
2635
2648
|
export declare type CcpOrder = Node & {
|
|
2636
2649
|
__typename?: 'CcpOrder';
|
|
2637
2650
|
id: Scalars['ID']['output'];
|
|
@@ -3298,6 +3311,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3298
3311
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
3299
3312
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
3300
3313
|
insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
|
|
3314
|
+
migrateComponentType?: Maybe<MigrateComponentTypePayload>;
|
|
3301
3315
|
reactivateScorecardForComponent?: Maybe<CompassReactivateScorecardForComponentPayload>;
|
|
3302
3316
|
removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
|
|
3303
3317
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
@@ -3489,6 +3503,10 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
3489
3503
|
export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
|
|
3490
3504
|
input: CompassInsertMetricValueByExternalIdInput;
|
|
3491
3505
|
};
|
|
3506
|
+
export declare type CompassCatalogMutationApiMigrateComponentTypeArgs = {
|
|
3507
|
+
cloudId: Scalars['ID']['input'];
|
|
3508
|
+
input: MigrateComponentTypeInput;
|
|
3509
|
+
};
|
|
3492
3510
|
export declare type CompassCatalogMutationApiReactivateScorecardForComponentArgs = {
|
|
3493
3511
|
componentId: Scalars['ID']['input'];
|
|
3494
3512
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -3739,7 +3757,9 @@ export declare type CompassComponent = Node & {
|
|
|
3739
3757
|
announcements?: Maybe<Array<CompassAnnouncement>>;
|
|
3740
3758
|
api?: Maybe<CompassComponentApi>;
|
|
3741
3759
|
applicableScorecards?: Maybe<Array<CompassScorecard>>;
|
|
3760
|
+
appliedScorecards?: Maybe<CompassComponentHasScorecardsAppliedConnection>;
|
|
3742
3761
|
changeMetadata: CompassChangeMetadata;
|
|
3762
|
+
componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
|
|
3743
3763
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
3744
3764
|
dataManager?: Maybe<CompassComponentDataManager>;
|
|
3745
3765
|
deactivatedScorecards?: Maybe<CompassDeactivatedScorecardsConnection>;
|
|
@@ -3764,6 +3784,10 @@ export declare type CompassComponent = Node & {
|
|
|
3764
3784
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
3765
3785
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
3766
3786
|
};
|
|
3787
|
+
export declare type CompassComponentAppliedScorecardsArgs = {
|
|
3788
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3789
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3790
|
+
};
|
|
3767
3791
|
export declare type CompassComponentDeactivatedScorecardsArgs = {
|
|
3768
3792
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3769
3793
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3909,6 +3933,13 @@ export declare type CompassComponentDeactivatedScorecardsEdge = {
|
|
|
3909
3933
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
3910
3934
|
node?: Maybe<CompassDeactivatedScorecard>;
|
|
3911
3935
|
};
|
|
3936
|
+
export declare type CompassComponentDescriptionDetails = {
|
|
3937
|
+
__typename?: 'CompassComponentDescriptionDetails';
|
|
3938
|
+
content: Scalars['String']['output'];
|
|
3939
|
+
};
|
|
3940
|
+
export declare type CompassComponentDescriptionDetailsInput = {
|
|
3941
|
+
content: Scalars['String']['input'];
|
|
3942
|
+
};
|
|
3912
3943
|
export declare type CompassComponentEndpoint = {
|
|
3913
3944
|
__typename?: 'CompassComponentEndpoint';
|
|
3914
3945
|
checksum: Scalars['String']['output'];
|
|
@@ -3931,6 +3962,21 @@ export declare type CompassComponentEndpointEdge = {
|
|
|
3931
3962
|
cursor: Scalars['String']['output'];
|
|
3932
3963
|
node: CompassComponentEndpoint;
|
|
3933
3964
|
};
|
|
3965
|
+
export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
3966
|
+
__typename?: 'CompassComponentHasScorecardsAppliedConnection';
|
|
3967
|
+
edges?: Maybe<Array<CompassComponentHasScorecardsAppliedEdge>>;
|
|
3968
|
+
nodes?: Maybe<Array<CompassScorecard>>;
|
|
3969
|
+
pageInfo: PageInfo;
|
|
3970
|
+
};
|
|
3971
|
+
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
3972
|
+
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
3973
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
3974
|
+
cursor: Scalars['String']['output'];
|
|
3975
|
+
node?: Maybe<CompassScorecard>;
|
|
3976
|
+
};
|
|
3977
|
+
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
3978
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
3979
|
+
};
|
|
3934
3980
|
export declare type CompassComponentInstancePermissions = {
|
|
3935
3981
|
__typename?: 'CompassComponentInstancePermissions';
|
|
3936
3982
|
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
@@ -5928,12 +5974,16 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
5928
5974
|
};
|
|
5929
5975
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
5930
5976
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
5977
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
5931
5978
|
cursor: Scalars['String']['output'];
|
|
5932
5979
|
deactivatedBy?: Maybe<User>;
|
|
5933
5980
|
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
5934
5981
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
5935
5982
|
node?: Maybe<CompassComponent>;
|
|
5936
5983
|
};
|
|
5984
|
+
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
5985
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
5986
|
+
};
|
|
5937
5987
|
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
5938
5988
|
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
5939
5989
|
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
@@ -15881,6 +15931,7 @@ export declare type CustomerServiceAttributes = {
|
|
|
15881
15931
|
};
|
|
15882
15932
|
export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
15883
15933
|
export declare type CustomerServiceContext = {
|
|
15934
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
15884
15935
|
type: CustomerServiceContextType;
|
|
15885
15936
|
};
|
|
15886
15937
|
export declare type CustomerServiceContextConfiguration = {
|
|
@@ -15946,6 +15997,10 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
|
|
|
15946
15997
|
success: Scalars['Boolean']['output'];
|
|
15947
15998
|
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15948
15999
|
};
|
|
16000
|
+
export declare type CustomerServiceCustomDetailContextInput = {
|
|
16001
|
+
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
16002
|
+
id: Scalars['ID']['input'];
|
|
16003
|
+
};
|
|
15949
16004
|
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
15950
16005
|
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
15951
16006
|
}
|
|
@@ -16213,6 +16268,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16213
16268
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
16214
16269
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
16215
16270
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
16271
|
+
updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
|
|
16216
16272
|
updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
|
|
16217
16273
|
updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
|
|
16218
16274
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
@@ -16282,6 +16338,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
|
|
|
16282
16338
|
export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
|
|
16283
16339
|
input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
|
|
16284
16340
|
};
|
|
16341
|
+
export declare type CustomerServiceMutationApiUpdateCustomDetailContextConfigsArgs = {
|
|
16342
|
+
input: Array<CustomerServiceCustomDetailContextInput>;
|
|
16343
|
+
};
|
|
16285
16344
|
export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
|
|
16286
16345
|
input: CustomerServiceCustomDetailPermissionsUpdateInput;
|
|
16287
16346
|
};
|
|
@@ -16571,6 +16630,12 @@ export declare type CustomerServiceStatusPayload = Payload & {
|
|
|
16571
16630
|
errors?: Maybe<Array<MutationError>>;
|
|
16572
16631
|
success: Scalars['Boolean']['output'];
|
|
16573
16632
|
};
|
|
16633
|
+
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
16634
|
+
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
16635
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16636
|
+
success: Scalars['Boolean']['output'];
|
|
16637
|
+
successfullyUpdatedCustomDetails: Array<CustomerServiceCustomDetail>;
|
|
16638
|
+
};
|
|
16574
16639
|
export declare type CustomerServiceUpdateCustomDetailValueInput = {
|
|
16575
16640
|
id: CustomerServiceCustomDetailEntityTypeId;
|
|
16576
16641
|
name: Scalars['String']['input'];
|
|
@@ -19034,9 +19099,10 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
19034
19099
|
appId: Scalars['ID']['input'];
|
|
19035
19100
|
};
|
|
19036
19101
|
export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
19037
|
-
|
|
19038
|
-
|
|
19039
|
-
|
|
19102
|
+
appId: Scalars['ID']['input'];
|
|
19103
|
+
channel: Scalars['String']['input'];
|
|
19104
|
+
contextAri: Scalars['ID']['input'];
|
|
19105
|
+
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
19040
19106
|
payload: Scalars['String']['input'];
|
|
19041
19107
|
};
|
|
19042
19108
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
@@ -19154,9 +19220,10 @@ export declare type EcosystemSubscription = {
|
|
|
19154
19220
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
19155
19221
|
};
|
|
19156
19222
|
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
19157
|
-
|
|
19158
|
-
|
|
19159
|
-
|
|
19223
|
+
appId: Scalars['ID']['input'];
|
|
19224
|
+
channel: Scalars['String']['input'];
|
|
19225
|
+
contextAri: Scalars['ID']['input'];
|
|
19226
|
+
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
19160
19227
|
};
|
|
19161
19228
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
19162
19229
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
@@ -20177,6 +20244,7 @@ export declare type ForgeAlertsQuery = {
|
|
|
20177
20244
|
isAlertOpenForRule?: Maybe<ForgeAlertsIsAlertOpenForRuleResponse>;
|
|
20178
20245
|
rule?: Maybe<ForgeAlertsRuleResult>;
|
|
20179
20246
|
ruleActivityLogs?: Maybe<ForgeAlertsRuleActivityLogsResult>;
|
|
20247
|
+
ruleFilters?: Maybe<ForgeAlertsRuleFiltersResult>;
|
|
20180
20248
|
rules?: Maybe<ForgeAlertsRulesResult>;
|
|
20181
20249
|
};
|
|
20182
20250
|
export declare type ForgeAlertsQueryAlertArgs = {
|
|
@@ -20209,6 +20277,9 @@ export declare type ForgeAlertsQueryRuleArgs = {
|
|
|
20209
20277
|
export declare type ForgeAlertsQueryRuleActivityLogsArgs = {
|
|
20210
20278
|
query: ForgeAlertsRuleActivityLogsInput;
|
|
20211
20279
|
};
|
|
20280
|
+
export declare type ForgeAlertsQueryRuleFiltersArgs = {
|
|
20281
|
+
input: ForgeAlertsRuleFiltersInput;
|
|
20282
|
+
};
|
|
20212
20283
|
export declare type ForgeAlertsQueryIntervalInput = {
|
|
20213
20284
|
end: Scalars['String']['input'];
|
|
20214
20285
|
start: Scalars['String']['input'];
|
|
@@ -20302,12 +20373,20 @@ export declare type ForgeAlertsRuleFilters = {
|
|
|
20302
20373
|
dimension: ForgeAlertsRuleFilterDimensions;
|
|
20303
20374
|
value: Array<Scalars['String']['input']>;
|
|
20304
20375
|
};
|
|
20376
|
+
export declare type ForgeAlertsRuleFiltersData = {
|
|
20377
|
+
__typename?: 'ForgeAlertsRuleFiltersData';
|
|
20378
|
+
filters: Array<ForgeAlertsMetricsLabelGroup>;
|
|
20379
|
+
};
|
|
20380
|
+
export declare type ForgeAlertsRuleFiltersInput = {
|
|
20381
|
+
environment: Scalars['String']['input'];
|
|
20382
|
+
};
|
|
20305
20383
|
export declare type ForgeAlertsRuleFiltersResponse = {
|
|
20306
20384
|
__typename?: 'ForgeAlertsRuleFiltersResponse';
|
|
20307
20385
|
action: ForgeAlertsRuleFilterActions;
|
|
20308
20386
|
dimension: ForgeAlertsRuleFilterDimensions;
|
|
20309
20387
|
value: Array<Scalars['String']['output']>;
|
|
20310
20388
|
};
|
|
20389
|
+
export declare type ForgeAlertsRuleFiltersResult = ForgeAlertsRuleFiltersData | QueryError;
|
|
20311
20390
|
export declare enum ForgeAlertsRuleMetricType {
|
|
20312
20391
|
InvocationCount = "INVOCATION_COUNT",
|
|
20313
20392
|
InvocationErrors = "INVOCATION_ERRORS",
|
|
@@ -24936,6 +25015,7 @@ export declare type GraphStore = {
|
|
|
24936
25015
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
24937
25016
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24938
25017
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25018
|
+
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
24939
25019
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
24940
25020
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
24941
25021
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -26894,6 +26974,12 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
26894
26974
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26895
26975
|
id: Scalars['ID']['input'];
|
|
26896
26976
|
};
|
|
26977
|
+
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
26978
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26979
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26980
|
+
id: Scalars['ID']['input'];
|
|
26981
|
+
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
26982
|
+
};
|
|
26897
26983
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
26898
26984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26899
26985
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28201,6 +28287,7 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
28201
28287
|
};
|
|
28202
28288
|
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
28203
28289
|
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
28290
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28204
28291
|
};
|
|
28205
28292
|
export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
|
|
28206
28293
|
__typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
|
|
@@ -28213,6 +28300,7 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
|
|
|
28213
28300
|
};
|
|
28214
28301
|
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalInput = {
|
|
28215
28302
|
relationships: Array<GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput>;
|
|
28303
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28216
28304
|
};
|
|
28217
28305
|
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalPayload = Payload & {
|
|
28218
28306
|
__typename?: 'GraphStoreDeleteFocusAreaHasAtlasGoalPayload';
|
|
@@ -28225,6 +28313,7 @@ export declare type GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput = {
|
|
|
28225
28313
|
};
|
|
28226
28314
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
28227
28315
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
28316
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28228
28317
|
};
|
|
28229
28318
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
28230
28319
|
__typename?: 'GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
@@ -28237,6 +28326,7 @@ export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRela
|
|
|
28237
28326
|
};
|
|
28238
28327
|
export declare type GraphStoreDeleteIncidentHasActionItemInput = {
|
|
28239
28328
|
relationships: Array<GraphStoreDeleteIncidentHasActionItemRelationshipInput>;
|
|
28329
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28240
28330
|
};
|
|
28241
28331
|
export declare type GraphStoreDeleteIncidentHasActionItemPayload = Payload & {
|
|
28242
28332
|
__typename?: 'GraphStoreDeleteIncidentHasActionItemPayload';
|
|
@@ -28249,6 +28339,7 @@ export declare type GraphStoreDeleteIncidentHasActionItemRelationshipInput = {
|
|
|
28249
28339
|
};
|
|
28250
28340
|
export declare type GraphStoreDeleteIncidentLinkedJswIssueInput = {
|
|
28251
28341
|
relationships: Array<GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput>;
|
|
28342
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28252
28343
|
};
|
|
28253
28344
|
export declare type GraphStoreDeleteIncidentLinkedJswIssuePayload = Payload & {
|
|
28254
28345
|
__typename?: 'GraphStoreDeleteIncidentLinkedJswIssuePayload';
|
|
@@ -28261,6 +28352,7 @@ export declare type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
|
|
|
28261
28352
|
};
|
|
28262
28353
|
export declare type GraphStoreDeleteIssueToWhiteboardInput = {
|
|
28263
28354
|
relationships: Array<GraphStoreDeleteIssueToWhiteboardRelationshipInput>;
|
|
28355
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28264
28356
|
};
|
|
28265
28357
|
export declare type GraphStoreDeleteIssueToWhiteboardPayload = Payload & {
|
|
28266
28358
|
__typename?: 'GraphStoreDeleteIssueToWhiteboardPayload';
|
|
@@ -28273,6 +28365,7 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
28273
28365
|
};
|
|
28274
28366
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
28275
28367
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
28368
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28276
28369
|
};
|
|
28277
28370
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentPayload = Payload & {
|
|
28278
28371
|
__typename?: 'GraphStoreDeleteJswProjectAssociatedComponentPayload';
|
|
@@ -28285,6 +28378,7 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
|
|
|
28285
28378
|
};
|
|
28286
28379
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
28287
28380
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
28381
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28288
28382
|
};
|
|
28289
28383
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
28290
28384
|
__typename?: 'GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload';
|
|
@@ -28297,6 +28391,7 @@ export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInp
|
|
|
28297
28391
|
};
|
|
28298
28392
|
export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerInput = {
|
|
28299
28393
|
relationships: Array<GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
28394
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28300
28395
|
};
|
|
28301
28396
|
export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
28302
28397
|
__typename?: 'GraphStoreDeleteProjectAssociatedToSecurityContainerPayload';
|
|
@@ -28309,6 +28404,7 @@ export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerRelation
|
|
|
28309
28404
|
};
|
|
28310
28405
|
export declare type GraphStoreDeleteProjectDisassociatedRepoInput = {
|
|
28311
28406
|
relationships: Array<GraphStoreDeleteProjectDisassociatedRepoRelationshipInput>;
|
|
28407
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28312
28408
|
};
|
|
28313
28409
|
export declare type GraphStoreDeleteProjectDisassociatedRepoPayload = Payload & {
|
|
28314
28410
|
__typename?: 'GraphStoreDeleteProjectDisassociatedRepoPayload';
|
|
@@ -28321,6 +28417,7 @@ export declare type GraphStoreDeleteProjectDisassociatedRepoRelationshipInput =
|
|
|
28321
28417
|
};
|
|
28322
28418
|
export declare type GraphStoreDeleteProjectDocumentationEntityInput = {
|
|
28323
28419
|
relationships: Array<GraphStoreDeleteProjectDocumentationEntityRelationshipInput>;
|
|
28420
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28324
28421
|
};
|
|
28325
28422
|
export declare type GraphStoreDeleteProjectDocumentationEntityPayload = Payload & {
|
|
28326
28423
|
__typename?: 'GraphStoreDeleteProjectDocumentationEntityPayload';
|
|
@@ -28333,6 +28430,7 @@ export declare type GraphStoreDeleteProjectDocumentationEntityRelationshipInput
|
|
|
28333
28430
|
};
|
|
28334
28431
|
export declare type GraphStoreDeleteProjectDocumentationPageInput = {
|
|
28335
28432
|
relationships: Array<GraphStoreDeleteProjectDocumentationPageRelationshipInput>;
|
|
28433
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28336
28434
|
};
|
|
28337
28435
|
export declare type GraphStoreDeleteProjectDocumentationPagePayload = Payload & {
|
|
28338
28436
|
__typename?: 'GraphStoreDeleteProjectDocumentationPagePayload';
|
|
@@ -28345,6 +28443,7 @@ export declare type GraphStoreDeleteProjectDocumentationPageRelationshipInput =
|
|
|
28345
28443
|
};
|
|
28346
28444
|
export declare type GraphStoreDeleteProjectDocumentationSpaceInput = {
|
|
28347
28445
|
relationships: Array<GraphStoreDeleteProjectDocumentationSpaceRelationshipInput>;
|
|
28446
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28348
28447
|
};
|
|
28349
28448
|
export declare type GraphStoreDeleteProjectDocumentationSpacePayload = Payload & {
|
|
28350
28449
|
__typename?: 'GraphStoreDeleteProjectDocumentationSpacePayload';
|
|
@@ -28357,6 +28456,7 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
|
|
|
28357
28456
|
};
|
|
28358
28457
|
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
|
|
28359
28458
|
relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
28459
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28360
28460
|
};
|
|
28361
28461
|
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
28362
28462
|
__typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
|
|
@@ -28369,6 +28469,7 @@ export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationship
|
|
|
28369
28469
|
};
|
|
28370
28470
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
28371
28471
|
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
28472
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28372
28473
|
};
|
|
28373
28474
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithPayload = Payload & {
|
|
28374
28475
|
__typename?: 'GraphStoreDeleteProjectHasSharedVersionWithPayload';
|
|
@@ -28381,6 +28482,7 @@ export declare type GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput
|
|
|
28381
28482
|
};
|
|
28382
28483
|
export declare type GraphStoreDeleteProjectHasVersionInput = {
|
|
28383
28484
|
relationships: Array<GraphStoreDeleteProjectHasVersionRelationshipInput>;
|
|
28485
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28384
28486
|
};
|
|
28385
28487
|
export declare type GraphStoreDeleteProjectHasVersionPayload = Payload & {
|
|
28386
28488
|
__typename?: 'GraphStoreDeleteProjectHasVersionPayload';
|
|
@@ -28393,6 +28495,7 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
28393
28495
|
};
|
|
28394
28496
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
28395
28497
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
28498
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28396
28499
|
};
|
|
28397
28500
|
export declare type GraphStoreDeleteSprintRetrospectivePagePayload = Payload & {
|
|
28398
28501
|
__typename?: 'GraphStoreDeleteSprintRetrospectivePagePayload';
|
|
@@ -28405,6 +28508,7 @@ export declare type GraphStoreDeleteSprintRetrospectivePageRelationshipInput = {
|
|
|
28405
28508
|
};
|
|
28406
28509
|
export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardInput = {
|
|
28407
28510
|
relationships: Array<GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
28511
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28408
28512
|
};
|
|
28409
28513
|
export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
28410
28514
|
__typename?: 'GraphStoreDeleteSprintRetrospectiveWhiteboardPayload';
|
|
@@ -28417,6 +28521,7 @@ export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
28417
28521
|
};
|
|
28418
28522
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
28419
28523
|
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
28524
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28420
28525
|
};
|
|
28421
28526
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipPayload = Payload & {
|
|
28422
28527
|
__typename?: 'GraphStoreDeleteTestPerfhammerRelationshipPayload';
|
|
@@ -28429,6 +28534,7 @@ export declare type GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput
|
|
|
28429
28534
|
};
|
|
28430
28535
|
export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput = {
|
|
28431
28536
|
relationships: Array<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelationshipInput>;
|
|
28537
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28432
28538
|
};
|
|
28433
28539
|
export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload = Payload & {
|
|
28434
28540
|
__typename?: 'GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload';
|
|
@@ -28441,6 +28547,7 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
28441
28547
|
};
|
|
28442
28548
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
28443
28549
|
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
28550
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28444
28551
|
};
|
|
28445
28552
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
28446
28553
|
__typename?: 'GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload';
|
|
@@ -28453,6 +28560,7 @@ export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationship
|
|
|
28453
28560
|
};
|
|
28454
28561
|
export declare type GraphStoreDeleteVulnerabilityAssociatedIssueInput = {
|
|
28455
28562
|
relationships: Array<GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput>;
|
|
28563
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28456
28564
|
};
|
|
28457
28565
|
export declare type GraphStoreDeleteVulnerabilityAssociatedIssuePayload = Payload & {
|
|
28458
28566
|
__typename?: 'GraphStoreDeleteVulnerabilityAssociatedIssuePayload';
|
|
@@ -35109,6 +35217,22 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
35109
35217
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
35110
35218
|
};
|
|
35111
35219
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
35220
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
35221
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
35222
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
35223
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
35224
|
+
pageInfo: PageInfo;
|
|
35225
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
35226
|
+
};
|
|
35227
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
|
|
35228
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentEdge';
|
|
35229
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35230
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35231
|
+
id: Scalars['ID']['output'];
|
|
35232
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35233
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
|
|
35234
|
+
};
|
|
35235
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
35112
35236
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
35113
35237
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
35114
35238
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -35743,6 +35867,12 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
35743
35867
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
35744
35868
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35745
35869
|
};
|
|
35870
|
+
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
35871
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35872
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
35873
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35874
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35875
|
+
};
|
|
35746
35876
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
35747
35877
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35748
35878
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36225,7 +36355,6 @@ export declare type HelpCenter = Node & {
|
|
|
36225
36355
|
__typename?: 'HelpCenter';
|
|
36226
36356
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
36227
36357
|
canCreateHelpDesks?: Maybe<Scalars['Boolean']['output']>;
|
|
36228
|
-
conversation?: Maybe<HelpCenterConversation>;
|
|
36229
36358
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
36230
36359
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
36231
36360
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
@@ -36333,22 +36462,6 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
36333
36462
|
__typename?: 'HelpCenterContentGapIndicatorsWithMetaData';
|
|
36334
36463
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
36335
36464
|
};
|
|
36336
|
-
export declare type HelpCenterConversation = {
|
|
36337
|
-
__typename?: 'HelpCenterConversation';
|
|
36338
|
-
compositeFailureMessageAdf?: Maybe<Scalars['String']['output']>;
|
|
36339
|
-
fallbackMessage?: Maybe<Scalars['String']['output']>;
|
|
36340
|
-
};
|
|
36341
|
-
export declare type HelpCenterConversationCompositeFailureMessageAdfArgs = {
|
|
36342
|
-
type: HelpCenterConversationFailureMessageType;
|
|
36343
|
-
};
|
|
36344
|
-
export declare enum HelpCenterConversationFailureMessageType {
|
|
36345
|
-
ConversationFailureMessage = "CONVERSATION_FAILURE_MESSAGE",
|
|
36346
|
-
ConversationUnhelpfulMessage = "CONVERSATION_UNHELPFUL_MESSAGE",
|
|
36347
|
-
CustomMessage = "CUSTOM_MESSAGE"
|
|
36348
|
-
}
|
|
36349
|
-
export declare type HelpCenterConversationInput = {
|
|
36350
|
-
fallbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
36351
|
-
};
|
|
36352
36465
|
export declare type HelpCenterCreateInput = {
|
|
36353
36466
|
name: HelpCenterNameInput;
|
|
36354
36467
|
slug: Scalars['String']['input'];
|
|
@@ -36607,10 +36720,15 @@ export declare enum HelpCenterPortalsType {
|
|
|
36607
36720
|
Hidden = "HIDDEN",
|
|
36608
36721
|
Visible = "VISIBLE"
|
|
36609
36722
|
}
|
|
36723
|
+
export declare enum HelpCenterProjectMappingOperationType {
|
|
36724
|
+
MapProjects = "MAP_PROJECTS",
|
|
36725
|
+
UnmapProjects = "UNMAP_PROJECTS"
|
|
36726
|
+
}
|
|
36610
36727
|
export declare type HelpCenterProjectMappingUpdateInput = {
|
|
36611
36728
|
helpCenterAri: Scalars['String']['input'];
|
|
36612
|
-
|
|
36613
|
-
|
|
36729
|
+
operationType?: InputMaybe<HelpCenterProjectMappingOperationType>;
|
|
36730
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36731
|
+
syncNewProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36614
36732
|
};
|
|
36615
36733
|
export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
36616
36734
|
__typename?: 'HelpCenterProjectMappingUpdatePayload';
|
|
@@ -36782,7 +36900,6 @@ export declare enum HelpCenterType {
|
|
|
36782
36900
|
Unified = "UNIFIED"
|
|
36783
36901
|
}
|
|
36784
36902
|
export declare type HelpCenterUpdateInput = {
|
|
36785
|
-
conversation?: InputMaybe<HelpCenterConversationInput>;
|
|
36786
36903
|
helpCenterAri: Scalars['String']['input'];
|
|
36787
36904
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
36788
36905
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
@@ -37931,17 +38048,12 @@ export declare type InlineColumnEditConfig = {
|
|
|
37931
38048
|
export declare type Insights = {
|
|
37932
38049
|
__typename?: 'Insights';
|
|
37933
38050
|
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
37934
|
-
nextBestTasksByContextAri: Array<InsightsNextBestTask>;
|
|
37935
38051
|
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
37936
38052
|
};
|
|
37937
38053
|
export declare type InsightsGithubOnboardingDetailsArgs = {
|
|
37938
38054
|
cloudId: Scalars['ID']['input'];
|
|
37939
38055
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
37940
38056
|
};
|
|
37941
|
-
export declare type InsightsNextBestTasksByContextAriArgs = {
|
|
37942
|
-
contextAri: InsightsContextAri;
|
|
37943
|
-
statusId?: InputMaybe<Scalars['String']['input']>;
|
|
37944
|
-
};
|
|
37945
38057
|
export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
|
|
37946
38058
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37947
38059
|
contextAri: InsightsContextAri;
|
|
@@ -37967,13 +38079,6 @@ export declare type InsightsBlockedIssue = {
|
|
|
37967
38079
|
issueKey: Scalars['String']['output'];
|
|
37968
38080
|
title: Scalars['String']['output'];
|
|
37969
38081
|
};
|
|
37970
|
-
export declare type InsightsBlockingIssueDetails = {
|
|
37971
|
-
__typename?: 'InsightsBlockingIssueDetails';
|
|
37972
|
-
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
37973
|
-
issueIconUrl: Scalars['String']['output'];
|
|
37974
|
-
issueId: Scalars['String']['output'];
|
|
37975
|
-
issueKey: Scalars['String']['output'];
|
|
37976
|
-
};
|
|
37977
38082
|
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
37978
38083
|
__typename?: 'InsightsBlockingIssueTask';
|
|
37979
38084
|
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
@@ -37984,15 +38089,6 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
|
37984
38089
|
title: Scalars['String']['output'];
|
|
37985
38090
|
url: Scalars['String']['output'];
|
|
37986
38091
|
};
|
|
37987
|
-
export declare type InsightsBuildDetails = {
|
|
37988
|
-
__typename?: 'InsightsBuildDetails';
|
|
37989
|
-
buildNumber: Scalars['Int']['output'];
|
|
37990
|
-
issueId: Scalars['String']['output'];
|
|
37991
|
-
issueKey: Scalars['String']['output'];
|
|
37992
|
-
issueName: Scalars['String']['output'];
|
|
37993
|
-
lastUpdated: Scalars['String']['output'];
|
|
37994
|
-
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
37995
|
-
};
|
|
37996
38092
|
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
37997
38093
|
__typename?: 'InsightsBuildTask';
|
|
37998
38094
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -38020,17 +38116,6 @@ export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskComm
|
|
|
38020
38116
|
title: Scalars['String']['output'];
|
|
38021
38117
|
url: Scalars['String']['output'];
|
|
38022
38118
|
};
|
|
38023
|
-
export declare type InsightsDeploymentDetails = {
|
|
38024
|
-
__typename?: 'InsightsDeploymentDetails';
|
|
38025
|
-
environmentNames: Array<Scalars['String']['output']>;
|
|
38026
|
-
environmentType: InsightsEnvironmentType;
|
|
38027
|
-
issueId: Scalars['String']['output'];
|
|
38028
|
-
issueKey: Scalars['String']['output'];
|
|
38029
|
-
issueName: Scalars['String']['output'];
|
|
38030
|
-
lastUpdated: Scalars['String']['output'];
|
|
38031
|
-
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
38032
|
-
pipelineName: Scalars['String']['output'];
|
|
38033
|
-
};
|
|
38034
38119
|
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
38035
38120
|
__typename?: 'InsightsDeploymentTask';
|
|
38036
38121
|
environmentNames: Array<Scalars['String']['output']>;
|
|
@@ -38104,14 +38189,6 @@ export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
|
|
|
38104
38189
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
38105
38190
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
38106
38191
|
};
|
|
38107
|
-
export declare type InsightsNextBestTask = {
|
|
38108
|
-
__typename?: 'InsightsNextBestTask';
|
|
38109
|
-
details: InsightsNextBestTaskDetails;
|
|
38110
|
-
id: Scalars['String']['output'];
|
|
38111
|
-
task: InsightsTaskType;
|
|
38112
|
-
title: Scalars['String']['output'];
|
|
38113
|
-
url: Scalars['String']['output'];
|
|
38114
|
-
};
|
|
38115
38192
|
export declare enum InsightsNextBestTaskAction {
|
|
38116
38193
|
Remove = "REMOVE",
|
|
38117
38194
|
Snooze = "SNOOZE"
|
|
@@ -38128,24 +38205,11 @@ export declare type InsightsNextBestTaskConnection = {
|
|
|
38128
38205
|
pageInfo: PageInfo;
|
|
38129
38206
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38130
38207
|
};
|
|
38131
|
-
export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
38132
38208
|
export declare type InsightsNextBestTaskEdge = {
|
|
38133
38209
|
__typename?: 'InsightsNextBestTaskEdge';
|
|
38134
38210
|
cursor: Scalars['String']['output'];
|
|
38135
38211
|
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
38136
38212
|
};
|
|
38137
|
-
export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
38138
|
-
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
38139
|
-
commentCount: Scalars['Int']['output'];
|
|
38140
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
38141
|
-
lastUpdated: Scalars['String']['output'];
|
|
38142
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
38143
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
38144
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
38145
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
38146
|
-
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
38147
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
38148
|
-
};
|
|
38149
38213
|
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
38150
38214
|
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
38151
38215
|
commentCount: Scalars['Int']['output'];
|
|
@@ -38161,18 +38225,6 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
38161
38225
|
title: Scalars['String']['output'];
|
|
38162
38226
|
url: Scalars['String']['output'];
|
|
38163
38227
|
};
|
|
38164
|
-
export declare type InsightsPullRequestReviewDetails = {
|
|
38165
|
-
__typename?: 'InsightsPullRequestReviewDetails';
|
|
38166
|
-
approvalsCount: Scalars['Int']['output'];
|
|
38167
|
-
author?: Maybe<InsightsUserDetail>;
|
|
38168
|
-
commentCount: Scalars['Int']['output'];
|
|
38169
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
38170
|
-
lastUpdated: Scalars['String']['output'];
|
|
38171
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
38172
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
38173
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
38174
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
38175
|
-
};
|
|
38176
38228
|
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
38177
38229
|
__typename?: 'InsightsPullRequestReviewTask';
|
|
38178
38230
|
approvalsCount: Scalars['Int']['output'];
|
|
@@ -38218,15 +38270,6 @@ export declare type InsightsUserDetail = {
|
|
|
38218
38270
|
id: Scalars['ID']['output'];
|
|
38219
38271
|
name: Scalars['String']['output'];
|
|
38220
38272
|
};
|
|
38221
|
-
export declare type InsightsVulnDetails = {
|
|
38222
|
-
__typename?: 'InsightsVulnDetails';
|
|
38223
|
-
id: Scalars['ID']['output'];
|
|
38224
|
-
introducedDate: Scalars['String']['output'];
|
|
38225
|
-
issueId: Scalars['String']['output'];
|
|
38226
|
-
issueKey: Scalars['String']['output'];
|
|
38227
|
-
securityContainerName: Scalars['String']['output'];
|
|
38228
|
-
status: InsightsVulnerabilityStatus;
|
|
38229
|
-
};
|
|
38230
38273
|
export declare enum InsightsVulnerabilityStatus {
|
|
38231
38274
|
Closed = "CLOSED",
|
|
38232
38275
|
Ignored = "IGNORED",
|
|
@@ -38830,9 +38873,14 @@ export declare type JiraAdvancedRoadmapsNavigation = {
|
|
|
38830
38873
|
hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38831
38874
|
isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
38832
38875
|
};
|
|
38833
|
-
export declare type JiraAffectedService = {
|
|
38876
|
+
export declare type JiraAffectedService = JiraSelectableValue & {
|
|
38834
38877
|
__typename?: 'JiraAffectedService';
|
|
38878
|
+
id: Scalars['ID']['output'];
|
|
38835
38879
|
name?: Maybe<Scalars['String']['output']>;
|
|
38880
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
38881
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
38882
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
38883
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
38836
38884
|
serviceId: Scalars['ID']['output'];
|
|
38837
38885
|
};
|
|
38838
38886
|
export declare type JiraAffectedServiceConnection = {
|
|
@@ -38847,7 +38895,7 @@ export declare type JiraAffectedServiceEdge = {
|
|
|
38847
38895
|
cursor: Scalars['String']['output'];
|
|
38848
38896
|
node?: Maybe<JiraAffectedService>;
|
|
38849
38897
|
};
|
|
38850
|
-
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38898
|
+
export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38851
38899
|
__typename?: 'JiraAffectedServicesField';
|
|
38852
38900
|
affectedServices?: Maybe<JiraAffectedServiceConnection>;
|
|
38853
38901
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38859,8 +38907,10 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
|
|
|
38859
38907
|
issue?: Maybe<JiraIssue>;
|
|
38860
38908
|
name: Scalars['String']['output'];
|
|
38861
38909
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38910
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
38862
38911
|
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
38863
38912
|
selectedAffectedServicesConnection?: Maybe<JiraAffectedServiceConnection>;
|
|
38913
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
38864
38914
|
type: Scalars['String']['output'];
|
|
38865
38915
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38866
38916
|
};
|
|
@@ -38872,12 +38922,27 @@ export declare type JiraAffectedServicesFieldAffectedServicesArgs = {
|
|
|
38872
38922
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38873
38923
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38874
38924
|
};
|
|
38925
|
+
export declare type JiraAffectedServicesFieldSelectableValueOptionsArgs = {
|
|
38926
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38927
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38928
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
38929
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38930
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38931
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38932
|
+
};
|
|
38875
38933
|
export declare type JiraAffectedServicesFieldSelectedAffectedServicesConnectionArgs = {
|
|
38876
38934
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38877
38935
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38878
38936
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38879
38937
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38880
38938
|
};
|
|
38939
|
+
export declare type JiraAffectedServicesFieldSelectedValuesArgs = {
|
|
38940
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38941
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38942
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38943
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38944
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38945
|
+
};
|
|
38881
38946
|
export declare type JiraAffectedServicesFieldInput = {
|
|
38882
38947
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
38883
38948
|
fieldId: Scalars['ID']['input'];
|
|
@@ -39664,6 +39729,7 @@ export declare enum JiraBoardLocationType {
|
|
|
39664
39729
|
Project = "PROJECT",
|
|
39665
39730
|
User = "USER"
|
|
39666
39731
|
}
|
|
39732
|
+
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
39667
39733
|
export declare enum JiraBoardType {
|
|
39668
39734
|
Kanban = "KANBAN",
|
|
39669
39735
|
Scrum = "SCRUM"
|
|
@@ -40953,7 +41019,8 @@ export declare type JiraCreateBoardPayload = Payload & {
|
|
|
40953
41019
|
success: Scalars['Boolean']['output'];
|
|
40954
41020
|
};
|
|
40955
41021
|
export declare type JiraCreateBoardSource = {
|
|
40956
|
-
fieldInput
|
|
41022
|
+
fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
|
|
41023
|
+
savedFilterId?: InputMaybe<Scalars['Long']['input']>;
|
|
40957
41024
|
};
|
|
40958
41025
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
40959
41026
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
@@ -43798,6 +43865,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
|
|
|
43798
43865
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
43799
43866
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
43800
43867
|
};
|
|
43868
|
+
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
43869
|
+
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
43870
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43871
|
+
success: Scalars['Boolean']['output'];
|
|
43872
|
+
};
|
|
43801
43873
|
export declare type JiraIssueSearchInput = {
|
|
43802
43874
|
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
43803
43875
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43836,6 +43908,7 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
43836
43908
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
43837
43909
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
43838
43910
|
id: Scalars['ID']['output'];
|
|
43911
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
43839
43912
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
43840
43913
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
43841
43914
|
};
|
|
@@ -43905,6 +43978,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
43905
43978
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
43906
43979
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
43907
43980
|
JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
|
|
43981
|
+
JiraServiceManagementOrganizationField?: InputMaybe<Array<JiraServiceManagementUpdateOrganizationFieldInput>>;
|
|
43908
43982
|
JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
43909
43983
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
43910
43984
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -44280,6 +44354,11 @@ export declare type JiraJqlFieldValueEdge = {
|
|
|
44280
44354
|
cursor: Scalars['String']['output'];
|
|
44281
44355
|
node?: Maybe<JiraJqlFieldValue>;
|
|
44282
44356
|
};
|
|
44357
|
+
export declare type JiraJqlFieldWithAliases = {
|
|
44358
|
+
__typename?: 'JiraJqlFieldWithAliases';
|
|
44359
|
+
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
44360
|
+
jqlTerm: Scalars['ID']['output'];
|
|
44361
|
+
};
|
|
44283
44362
|
export declare type JiraJqlFunction = {
|
|
44284
44363
|
__typename?: 'JiraJqlFunction';
|
|
44285
44364
|
dataTypes: Array<Scalars['String']['output']>;
|
|
@@ -45159,6 +45238,7 @@ export declare type JiraMutation = {
|
|
|
45159
45238
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
45160
45239
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
45161
45240
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
45241
|
+
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
45162
45242
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
45163
45243
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
45164
45244
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -45180,6 +45260,7 @@ export declare type JiraMutation = {
|
|
|
45180
45260
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
45181
45261
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
45182
45262
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
45263
|
+
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
45183
45264
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
45184
45265
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
45185
45266
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
@@ -45190,6 +45271,7 @@ export declare type JiraMutation = {
|
|
|
45190
45271
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
45191
45272
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
45192
45273
|
updateJiraViewConfiguration?: Maybe<JiraUpdateViewConfigPayload>;
|
|
45274
|
+
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
45193
45275
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
45194
45276
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
45195
45277
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -45487,6 +45569,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
|
|
|
45487
45569
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
45488
45570
|
input: JiraSetIsFavouriteInput;
|
|
45489
45571
|
};
|
|
45572
|
+
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
45573
|
+
id: Scalars['ID']['input'];
|
|
45574
|
+
};
|
|
45490
45575
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
45491
45576
|
cloudId: Scalars['ID']['input'];
|
|
45492
45577
|
id: Scalars['ID']['input'];
|
|
@@ -45555,6 +45640,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
45555
45640
|
cloudId: Scalars['ID']['input'];
|
|
45556
45641
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
45557
45642
|
};
|
|
45643
|
+
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
45644
|
+
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
45645
|
+
viewId: Scalars['ID']['input'];
|
|
45646
|
+
};
|
|
45558
45647
|
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
45559
45648
|
input: JiraUpdateIssueTypeFieldInput;
|
|
45560
45649
|
};
|
|
@@ -45585,6 +45674,9 @@ export declare type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
|
45585
45674
|
export declare type JiraMutationUpdateJiraViewConfigurationArgs = {
|
|
45586
45675
|
input?: InputMaybe<JiraUpdateViewConfigInput>;
|
|
45587
45676
|
};
|
|
45677
|
+
export declare type JiraMutationUpdateJsmOrganizationFieldArgs = {
|
|
45678
|
+
input: JiraServiceManagementUpdateOrganizationFieldInput;
|
|
45679
|
+
};
|
|
45588
45680
|
export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
45589
45681
|
input: JiraWorkManagementUpdateFilterInput;
|
|
45590
45682
|
};
|
|
@@ -46682,6 +46774,7 @@ export declare type JiraProject = Node & {
|
|
|
46682
46774
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
46683
46775
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
46684
46776
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
46777
|
+
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
46685
46778
|
name: Scalars['String']['output'];
|
|
46686
46779
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
46687
46780
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -47418,7 +47511,6 @@ export declare type JiraQuery = {
|
|
|
47418
47511
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
47419
47512
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
47420
47513
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
47421
|
-
fetchBoardCreationFilters?: Maybe<JiraIssueFieldConnection>;
|
|
47422
47514
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
47423
47515
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
47424
47516
|
filter?: Maybe<JiraFilter>;
|
|
@@ -47472,6 +47564,7 @@ export declare type JiraQuery = {
|
|
|
47472
47564
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
47473
47565
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
47474
47566
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
47567
|
+
jiraBoard?: Maybe<JiraBoardResult>;
|
|
47475
47568
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
47476
47569
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
47477
47570
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -47525,6 +47618,7 @@ export declare type JiraQuery = {
|
|
|
47525
47618
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
47526
47619
|
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
47527
47620
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
47621
|
+
rankField?: Maybe<JiraJqlFieldWithAliases>;
|
|
47528
47622
|
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
47529
47623
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
47530
47624
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
@@ -47708,14 +47802,6 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
47708
47802
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47709
47803
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47710
47804
|
};
|
|
47711
|
-
export declare type JiraQueryFetchBoardCreationFiltersArgs = {
|
|
47712
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47713
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47714
|
-
cloudId: Scalars['ID']['input'];
|
|
47715
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47716
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47717
|
-
projectId: Scalars['String']['input'];
|
|
47718
|
-
};
|
|
47719
47805
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
47720
47806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47721
47807
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47968,6 +48054,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
47968
48054
|
cloudId: Scalars['ID']['input'];
|
|
47969
48055
|
keys: Array<Scalars['String']['input']>;
|
|
47970
48056
|
};
|
|
48057
|
+
export declare type JiraQueryJiraBoardArgs = {
|
|
48058
|
+
id: Scalars['ID']['input'];
|
|
48059
|
+
};
|
|
47971
48060
|
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
47972
48061
|
issueIds: Array<Scalars['ID']['input']>;
|
|
47973
48062
|
transitionId: Scalars['Int']['input'];
|
|
@@ -48226,6 +48315,9 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
48226
48315
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
48227
48316
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
48228
48317
|
};
|
|
48318
|
+
export declare type JiraQueryRankFieldArgs = {
|
|
48319
|
+
cloudId: Scalars['ID']['input'];
|
|
48320
|
+
};
|
|
48229
48321
|
export declare type JiraQueryRecentItemsArgs = {
|
|
48230
48322
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48231
48323
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48281,7 +48373,7 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
48281
48373
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
48282
48374
|
cloudId: Scalars['ID']['input'];
|
|
48283
48375
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48284
|
-
keyword
|
|
48376
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
48285
48377
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48286
48378
|
};
|
|
48287
48379
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
@@ -49735,6 +49827,16 @@ export declare type JiraServiceManagementOrganizationFieldSelectedValuesArgs = {
|
|
|
49735
49827
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49736
49828
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49737
49829
|
};
|
|
49830
|
+
export declare type JiraServiceManagementOrganizationFieldOperationInput = {
|
|
49831
|
+
ids: Array<Scalars['ID']['input']>;
|
|
49832
|
+
operation: JiraMultiValueFieldOperations;
|
|
49833
|
+
};
|
|
49834
|
+
export declare type JiraServiceManagementOrganizationFieldPayload = Payload & {
|
|
49835
|
+
__typename?: 'JiraServiceManagementOrganizationFieldPayload';
|
|
49836
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49837
|
+
field?: Maybe<JiraServiceManagementOrganizationField>;
|
|
49838
|
+
success: Scalars['Boolean']['output'];
|
|
49839
|
+
};
|
|
49738
49840
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49739
49841
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49740
49842
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50054,6 +50156,10 @@ export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
|
|
|
50054
50156
|
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
50055
50157
|
operation: JiraSingleValueFieldOperations;
|
|
50056
50158
|
};
|
|
50159
|
+
export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
|
|
50160
|
+
id: Scalars['ID']['input'];
|
|
50161
|
+
operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
|
|
50162
|
+
};
|
|
50057
50163
|
export declare type JiraServiceManagementUpdateSentimentFieldInput = {
|
|
50058
50164
|
id: Scalars['ID']['input'];
|
|
50059
50165
|
operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
|
|
@@ -50137,6 +50243,12 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
50137
50243
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
50138
50244
|
success: Scalars['Boolean']['output'];
|
|
50139
50245
|
};
|
|
50246
|
+
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
50247
|
+
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
50248
|
+
board?: Maybe<JiraBoard>;
|
|
50249
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50250
|
+
success: Scalars['Boolean']['output'];
|
|
50251
|
+
};
|
|
50140
50252
|
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
50141
50253
|
deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
|
|
50142
50254
|
projectId: Scalars['ID']['input'];
|
|
@@ -51010,6 +51122,8 @@ export declare type JiraTeamInput = {
|
|
|
51010
51122
|
export declare type JiraTeamView = {
|
|
51011
51123
|
__typename?: 'JiraTeamView';
|
|
51012
51124
|
fullTeam?: Maybe<TeamV2>;
|
|
51125
|
+
jiraIncludesYou?: Maybe<Scalars['Boolean']['output']>;
|
|
51126
|
+
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
51013
51127
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
51014
51128
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
51015
51129
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
@@ -51169,14 +51283,17 @@ export declare type JiraUiModification = {
|
|
|
51169
51283
|
id: Scalars['ID']['output'];
|
|
51170
51284
|
};
|
|
51171
51285
|
export declare type JiraUiModificationsContextInput = {
|
|
51172
|
-
issueTypeId
|
|
51173
|
-
|
|
51286
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51287
|
+
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
51288
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
51289
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51174
51290
|
viewType: JiraUiModificationsViewType;
|
|
51175
51291
|
};
|
|
51176
51292
|
export declare enum JiraUiModificationsViewType {
|
|
51177
51293
|
Gic = "GIC",
|
|
51178
51294
|
IssueTransition = "IssueTransition",
|
|
51179
|
-
IssueView = "IssueView"
|
|
51295
|
+
IssueView = "IssueView",
|
|
51296
|
+
JsmRequestCreate = "JSMRequestCreate"
|
|
51180
51297
|
}
|
|
51181
51298
|
export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
51182
51299
|
incidentId: Scalars['ID']['input'];
|
|
@@ -51738,7 +51855,6 @@ export declare type JiraUserPreferences = {
|
|
|
51738
51855
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
51739
51856
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
51740
51857
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
51741
|
-
issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
|
|
51742
51858
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
51743
51859
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
51744
51860
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -51750,9 +51866,6 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
51750
51866
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
51751
51867
|
projectKey: Scalars['String']['input'];
|
|
51752
51868
|
};
|
|
51753
|
-
export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
|
|
51754
|
-
projectKey: Scalars['String']['input'];
|
|
51755
|
-
};
|
|
51756
51869
|
export declare type JiraUserPreferencesMutation = {
|
|
51757
51870
|
__typename?: 'JiraUserPreferencesMutation';
|
|
51758
51871
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
@@ -53675,6 +53788,49 @@ export declare type KnowledgeBaseSources = {
|
|
|
53675
53788
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
53676
53789
|
totalCount: Scalars['Int']['output'];
|
|
53677
53790
|
};
|
|
53791
|
+
export declare type KnowledgeBaseSpacePermission = {
|
|
53792
|
+
__typename?: 'KnowledgeBaseSpacePermission';
|
|
53793
|
+
editPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53794
|
+
viewPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53795
|
+
};
|
|
53796
|
+
export declare type KnowledgeBaseSpacePermissionBulkQueryApi = {
|
|
53797
|
+
__typename?: 'KnowledgeBaseSpacePermissionBulkQueryApi';
|
|
53798
|
+
knowledgeBaseSpacePermission_bulkQuery: KnowledgeBaseSpacePermissionBulkResponse;
|
|
53799
|
+
};
|
|
53800
|
+
export declare type KnowledgeBaseSpacePermissionBulkQueryApiKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
53801
|
+
input: KnowledgeBaseSpacePermissionInput;
|
|
53802
|
+
};
|
|
53803
|
+
export declare type KnowledgeBaseSpacePermissionBulkResponse = KnowledgeBaseSpacePermissions | QueryError;
|
|
53804
|
+
export declare type KnowledgeBaseSpacePermissionDetail = {
|
|
53805
|
+
__typename?: 'KnowledgeBaseSpacePermissionDetail';
|
|
53806
|
+
currentPermission: KnowledgeBaseSpacePermissionType;
|
|
53807
|
+
invalidPermissions: Array<Maybe<KnowledgeBaseSpacePermissionType>>;
|
|
53808
|
+
validPermissions: Array<KnowledgeBaseSpacePermissionType>;
|
|
53809
|
+
};
|
|
53810
|
+
export declare type KnowledgeBaseSpacePermissionInput = {
|
|
53811
|
+
spaceAris: Array<Scalars['String']['input']>;
|
|
53812
|
+
};
|
|
53813
|
+
export declare type KnowledgeBaseSpacePermissionMutationApi = {
|
|
53814
|
+
__typename?: 'KnowledgeBaseSpacePermissionMutationApi';
|
|
53815
|
+
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionUpdateResponse;
|
|
53816
|
+
};
|
|
53817
|
+
export declare type KnowledgeBaseSpacePermissionMutationApiKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
53818
|
+
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
53819
|
+
};
|
|
53820
|
+
export declare enum KnowledgeBaseSpacePermissionType {
|
|
53821
|
+
AnonymousUsers = "ANONYMOUS_USERS",
|
|
53822
|
+
ConfluenceLicensedUsers = "CONFLUENCE_LICENSED_USERS",
|
|
53823
|
+
ConfluenceUnlicensedUsers = "CONFLUENCE_UNLICENSED_USERS"
|
|
53824
|
+
}
|
|
53825
|
+
export declare type KnowledgeBaseSpacePermissionUpdateResponse = KnowledgeBaseSpacePermission | MutationError;
|
|
53826
|
+
export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
53827
|
+
spaceAri: Scalars['String']['input'];
|
|
53828
|
+
viewPermission: KnowledgeBaseSpacePermissionType;
|
|
53829
|
+
};
|
|
53830
|
+
export declare type KnowledgeBaseSpacePermissions = {
|
|
53831
|
+
__typename?: 'KnowledgeBaseSpacePermissions';
|
|
53832
|
+
permissions: Array<Maybe<KnowledgeBaseSpacePermissions>>;
|
|
53833
|
+
};
|
|
53678
53834
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
53679
53835
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
53680
53836
|
mutationError?: Maybe<MutationError>;
|
|
@@ -53697,10 +53853,12 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
53697
53853
|
__typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
|
|
53698
53854
|
cloudId: Scalars['String']['output'];
|
|
53699
53855
|
createdTimestamp: Scalars['String']['output'];
|
|
53856
|
+
creator?: Maybe<User>;
|
|
53700
53857
|
creatorAccountId: Scalars['String']['output'];
|
|
53701
53858
|
description?: Maybe<Scalars['String']['output']>;
|
|
53702
53859
|
keyPhrases?: Maybe<Array<Scalars['String']['output']>>;
|
|
53703
53860
|
lastModifiedTimestamp: Scalars['String']['output'];
|
|
53861
|
+
lastModifier?: Maybe<User>;
|
|
53704
53862
|
lastModifierAccountId: Scalars['String']['output'];
|
|
53705
53863
|
orgId: Scalars['String']['output'];
|
|
53706
53864
|
title: Scalars['String']['output'];
|
|
@@ -54104,26 +54262,6 @@ export declare type LogQueryInput = {
|
|
|
54104
54262
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
54105
54263
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
54106
54264
|
};
|
|
54107
|
-
export declare type LpBunchballBadge = {
|
|
54108
|
-
__typename?: 'LpBunchballBadge';
|
|
54109
|
-
contentfulCourseId?: Maybe<Scalars['String']['output']>;
|
|
54110
|
-
dateEarned?: Maybe<Scalars['String']['output']>;
|
|
54111
|
-
fullUrl?: Maybe<Scalars['String']['output']>;
|
|
54112
|
-
missionId?: Maybe<Scalars['Int']['output']>;
|
|
54113
|
-
thumbUrl?: Maybe<Scalars['String']['output']>;
|
|
54114
|
-
};
|
|
54115
|
-
export declare type LpBunchballBadgeConnection = {
|
|
54116
|
-
__typename?: 'LpBunchballBadgeConnection';
|
|
54117
|
-
edges?: Maybe<Array<LpBunchballBadgeEdge>>;
|
|
54118
|
-
pageInfo?: Maybe<LpPageInfo>;
|
|
54119
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54120
|
-
};
|
|
54121
|
-
export declare type LpBunchballBadgeEdge = {
|
|
54122
|
-
__typename?: 'LpBunchballBadgeEdge';
|
|
54123
|
-
cursor: Scalars['String']['output'];
|
|
54124
|
-
node?: Maybe<LpBunchballBadge>;
|
|
54125
|
-
};
|
|
54126
|
-
export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
|
|
54127
54265
|
export declare type LpCertSort = {
|
|
54128
54266
|
sortDirection?: InputMaybe<SortDirection>;
|
|
54129
54267
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -54218,17 +54356,10 @@ export declare enum LpCourseStatus {
|
|
|
54218
54356
|
export declare type LpLearner = Node & {
|
|
54219
54357
|
__typename?: 'LpLearner';
|
|
54220
54358
|
atlassianId: Scalars['String']['output'];
|
|
54221
|
-
bunchballBadges?: Maybe<LpBunchballBadgeResult>;
|
|
54222
54359
|
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
54223
54360
|
courses?: Maybe<LpCourseProgressResult>;
|
|
54224
54361
|
id: Scalars['ID']['output'];
|
|
54225
54362
|
};
|
|
54226
|
-
export declare type LpLearnerBunchballBadgesArgs = {
|
|
54227
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
54228
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
54229
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54230
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
54231
|
-
};
|
|
54232
54363
|
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
54233
54364
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54234
54365
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54495,6 +54626,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
54495
54626
|
};
|
|
54496
54627
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
54497
54628
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
54629
|
+
appSoftware?: Maybe<MarketplaceConsoleAppSoftwareShort>;
|
|
54498
54630
|
appSoftwareId: Scalars['ID']['output'];
|
|
54499
54631
|
buildNumber: Scalars['ID']['output'];
|
|
54500
54632
|
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
|
|
@@ -54615,7 +54747,9 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
54615
54747
|
};
|
|
54616
54748
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
54617
54749
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
54750
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54618
54751
|
descriptorId: Scalars['ID']['output'];
|
|
54752
|
+
descriptorUrl: Scalars['String']['output'];
|
|
54619
54753
|
scopes: Array<Scalars['String']['output']>;
|
|
54620
54754
|
};
|
|
54621
54755
|
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
@@ -54778,6 +54912,7 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
54778
54912
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
54779
54913
|
appId: Scalars['ID']['output'];
|
|
54780
54914
|
envId: Scalars['ID']['output'];
|
|
54915
|
+
scopes: Array<Scalars['String']['output']>;
|
|
54781
54916
|
versionId: Scalars['String']['output'];
|
|
54782
54917
|
};
|
|
54783
54918
|
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
@@ -54785,12 +54920,20 @@ export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
|
54785
54920
|
envId: Scalars['String']['input'];
|
|
54786
54921
|
versionId: Scalars['String']['input'];
|
|
54787
54922
|
};
|
|
54788
|
-
export declare type MarketplaceConsoleFrameworkAttributes =
|
|
54923
|
+
export declare type MarketplaceConsoleFrameworkAttributes = {
|
|
54924
|
+
__typename?: 'MarketplaceConsoleFrameworkAttributes';
|
|
54925
|
+
connect?: Maybe<MarketplaceConsoleConnectFrameworkAttributes>;
|
|
54926
|
+
external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
|
|
54927
|
+
forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
|
|
54928
|
+
plugin?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
54929
|
+
plugins?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
54930
|
+
workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
|
|
54931
|
+
};
|
|
54789
54932
|
export declare type MarketplaceConsoleFrameworkAttributesInput = {
|
|
54790
54933
|
connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
|
|
54791
54934
|
external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
|
|
54792
54935
|
forge?: InputMaybe<MarketplaceConsoleForgeFrameworkAttributesInput>;
|
|
54793
|
-
|
|
54936
|
+
plugin?: InputMaybe<MarketplaceConsolePluginFrameworkAttributesInput>;
|
|
54794
54937
|
workflow?: InputMaybe<MarketplaceConsoleWorkflowFrameworkAttributesInput>;
|
|
54795
54938
|
};
|
|
54796
54939
|
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
@@ -54875,11 +55018,12 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
54875
55018
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
54876
55019
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
54877
55020
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
55021
|
+
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
54878
55022
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54879
55023
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54880
55024
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54881
55025
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
54882
|
-
validateArtifactUrl?: Maybe<
|
|
55026
|
+
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54883
55027
|
};
|
|
54884
55028
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
54885
55029
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -54888,6 +55032,9 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
54888
55032
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
54889
55033
|
appSoftwareId: Scalars['String']['input'];
|
|
54890
55034
|
};
|
|
55035
|
+
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
55036
|
+
product: MarketplaceConsoleEditionsInput;
|
|
55037
|
+
};
|
|
54891
55038
|
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
54892
55039
|
appKey: Scalars['ID']['input'];
|
|
54893
55040
|
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
@@ -54962,14 +55109,21 @@ export declare enum MarketplaceConsolePaymentModel {
|
|
|
54962
55109
|
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
54963
55110
|
PaidViaVendor = "PAID_VIA_VENDOR"
|
|
54964
55111
|
}
|
|
54965
|
-
export declare type
|
|
54966
|
-
__typename?: '
|
|
55112
|
+
export declare type MarketplaceConsolePluginFrameworkAttributes = {
|
|
55113
|
+
__typename?: 'MarketplaceConsolePluginFrameworkAttributes';
|
|
55114
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54967
55115
|
artifactId: Scalars['ID']['output'];
|
|
55116
|
+
descriptorId?: Maybe<Scalars['String']['output']>;
|
|
55117
|
+
pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
|
|
54968
55118
|
};
|
|
54969
|
-
export declare type
|
|
55119
|
+
export declare type MarketplaceConsolePluginFrameworkAttributesInput = {
|
|
54970
55120
|
artifactId: Scalars['String']['input'];
|
|
54971
55121
|
href: Scalars['String']['input'];
|
|
54972
55122
|
};
|
|
55123
|
+
export declare enum MarketplaceConsolePluginFrameworkType {
|
|
55124
|
+
P1 = "P1",
|
|
55125
|
+
P2 = "P2"
|
|
55126
|
+
}
|
|
54973
55127
|
export declare enum MarketplaceConsolePricingCurrency {
|
|
54974
55128
|
Jpy = "JPY",
|
|
54975
55129
|
Usd = "USD"
|
|
@@ -55067,6 +55221,17 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
55067
55221
|
productId: Scalars['ID']['output'];
|
|
55068
55222
|
vendorId: Scalars['ID']['output'];
|
|
55069
55223
|
};
|
|
55224
|
+
export declare type MarketplaceConsoleProductTag = {
|
|
55225
|
+
__typename?: 'MarketplaceConsoleProductTag';
|
|
55226
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55227
|
+
id: Scalars['ID']['output'];
|
|
55228
|
+
name: Scalars['String']['output'];
|
|
55229
|
+
};
|
|
55230
|
+
export declare enum MarketplaceConsoleProductTagType {
|
|
55231
|
+
Category = "CATEGORY",
|
|
55232
|
+
Keywords = "KEYWORDS",
|
|
55233
|
+
Marketing = "MARKETING"
|
|
55234
|
+
}
|
|
55070
55235
|
export declare type MarketplaceConsoleQueryApi = {
|
|
55071
55236
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
55072
55237
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
@@ -55086,6 +55251,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
55086
55251
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
55087
55252
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
55088
55253
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
55254
|
+
productTags: Array<MarketplaceConsoleProductTag>;
|
|
55089
55255
|
};
|
|
55090
55256
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
55091
55257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55135,14 +55301,17 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
55135
55301
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
55136
55302
|
appId: Scalars['ID']['input'];
|
|
55137
55303
|
};
|
|
55304
|
+
export declare type MarketplaceConsoleQueryApiProductTagsArgs = {
|
|
55305
|
+
tagType: MarketplaceConsoleProductTagType;
|
|
55306
|
+
};
|
|
55138
55307
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
55139
55308
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
55140
55309
|
binary: MarketplaceConsoleLink;
|
|
55141
55310
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
55142
55311
|
self: MarketplaceConsoleLink;
|
|
55143
55312
|
};
|
|
55144
|
-
export declare type
|
|
55145
|
-
__typename?: '
|
|
55313
|
+
export declare type MarketplaceConsoleSoftwareArtifact = {
|
|
55314
|
+
__typename?: 'MarketplaceConsoleSoftwareArtifact';
|
|
55146
55315
|
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
55147
55316
|
links: MarketplaceConsoleRemoteArtifactLinks;
|
|
55148
55317
|
};
|
|
@@ -55184,6 +55353,7 @@ export declare type MarketplaceConsoleVendorLinks = {
|
|
|
55184
55353
|
};
|
|
55185
55354
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
55186
55355
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
55356
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
55187
55357
|
artifactId: Scalars['ID']['output'];
|
|
55188
55358
|
};
|
|
55189
55359
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
@@ -55458,6 +55628,28 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
55458
55628
|
Archived = "ARCHIVED",
|
|
55459
55629
|
Inactive = "INACTIVE"
|
|
55460
55630
|
}
|
|
55631
|
+
export declare type MarketplaceStoreEdition = {
|
|
55632
|
+
__typename?: 'MarketplaceStoreEdition';
|
|
55633
|
+
features: Array<MarketplaceStoreEditionFeature>;
|
|
55634
|
+
id: Scalars['ID']['output'];
|
|
55635
|
+
isDefault: Scalars['Boolean']['output'];
|
|
55636
|
+
pricingPlan: MarketplaceStorePricingPlan;
|
|
55637
|
+
type: MarketplaceStoreEditionType;
|
|
55638
|
+
};
|
|
55639
|
+
export declare type MarketplaceStoreEditionFeature = {
|
|
55640
|
+
__typename?: 'MarketplaceStoreEditionFeature';
|
|
55641
|
+
description: Scalars['String']['output'];
|
|
55642
|
+
id: Scalars['ID']['output'];
|
|
55643
|
+
name: Scalars['String']['output'];
|
|
55644
|
+
position: Scalars['Int']['output'];
|
|
55645
|
+
};
|
|
55646
|
+
export declare enum MarketplaceStoreEditionType {
|
|
55647
|
+
Advanced = "ADVANCED",
|
|
55648
|
+
Standard = "STANDARD"
|
|
55649
|
+
}
|
|
55650
|
+
export declare type MarketplaceStoreEditionsInput = {
|
|
55651
|
+
appId?: InputMaybe<Scalars['String']['input']>;
|
|
55652
|
+
};
|
|
55461
55653
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
55462
55654
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
55463
55655
|
description: Scalars['String']['output'];
|
|
@@ -55655,11 +55847,43 @@ export declare type MarketplaceStorePartnerSupportHoliday = {
|
|
|
55655
55847
|
repeatAnnually: Scalars['Boolean']['output'];
|
|
55656
55848
|
title: Scalars['String']['output'];
|
|
55657
55849
|
};
|
|
55850
|
+
export declare enum MarketplaceStorePricingCurrency {
|
|
55851
|
+
Jpy = "JPY",
|
|
55852
|
+
Usd = "USD"
|
|
55853
|
+
}
|
|
55854
|
+
export declare type MarketplaceStorePricingPlan = {
|
|
55855
|
+
__typename?: 'MarketplaceStorePricingPlan';
|
|
55856
|
+
annualPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
|
|
55857
|
+
currency: MarketplaceStorePricingCurrency;
|
|
55858
|
+
monthlyPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
|
|
55859
|
+
};
|
|
55860
|
+
export declare type MarketplaceStorePricingPlanItem = {
|
|
55861
|
+
__typename?: 'MarketplaceStorePricingPlanItem';
|
|
55862
|
+
tieredPricing: Array<MarketplaceStorePricingTier>;
|
|
55863
|
+
};
|
|
55864
|
+
export declare type MarketplaceStorePricingTier = {
|
|
55865
|
+
ceiling: Scalars['Float']['output'];
|
|
55866
|
+
floor: Scalars['Float']['output'];
|
|
55867
|
+
};
|
|
55868
|
+
export declare type MarketplaceStorePricingTierAnnual = MarketplaceStorePricingTier & {
|
|
55869
|
+
__typename?: 'MarketplaceStorePricingTierAnnual';
|
|
55870
|
+
ceiling: Scalars['Float']['output'];
|
|
55871
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
55872
|
+
floor: Scalars['Float']['output'];
|
|
55873
|
+
};
|
|
55874
|
+
export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricingTier & {
|
|
55875
|
+
__typename?: 'MarketplaceStorePricingTierMonthly';
|
|
55876
|
+
ceiling: Scalars['Float']['output'];
|
|
55877
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
55878
|
+
floor: Scalars['Float']['output'];
|
|
55879
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
55880
|
+
};
|
|
55658
55881
|
export declare type MarketplaceStoreQueryApi = {
|
|
55659
55882
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
55660
55883
|
category: MarketplaceStoreCategoryResponse;
|
|
55661
55884
|
collection: MarketplaceStoreCollectionResponse;
|
|
55662
55885
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
55886
|
+
editions: Array<MarketplaceStoreEdition>;
|
|
55663
55887
|
homePage: MarketplaceStoreHomePageResponse;
|
|
55664
55888
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
55665
55889
|
partner: MarketplaceStorePartnerResponse;
|
|
@@ -55670,6 +55894,9 @@ export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
|
55670
55894
|
export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
55671
55895
|
slug: Scalars['String']['input'];
|
|
55672
55896
|
};
|
|
55897
|
+
export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
55898
|
+
product: MarketplaceStoreEditionsInput;
|
|
55899
|
+
};
|
|
55673
55900
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
55674
55901
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
55675
55902
|
};
|
|
@@ -55842,8 +56069,10 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
55842
56069
|
success: Scalars['Boolean']['output'];
|
|
55843
56070
|
};
|
|
55844
56071
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
56072
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55845
56073
|
cloudId: Scalars['ID']['input'];
|
|
55846
|
-
|
|
56074
|
+
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56075
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
55847
56076
|
};
|
|
55848
56077
|
export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
55849
56078
|
__typename?: 'MercuryDeleteFocusAreaGoalLinkPayload';
|
|
@@ -56215,16 +56444,6 @@ export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
|
|
|
56215
56444
|
errors?: Maybe<Array<MutationError>>;
|
|
56216
56445
|
success: Scalars['Boolean']['output'];
|
|
56217
56446
|
};
|
|
56218
|
-
export declare type MercuryLinkFocusAreasToGoalInput = {
|
|
56219
|
-
atlasGoalId: Scalars['ID']['input'];
|
|
56220
|
-
cloudId: Scalars['ID']['input'];
|
|
56221
|
-
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
56222
|
-
};
|
|
56223
|
-
export declare type MercuryLinkFocusAreasToGoalPayload = Payload & {
|
|
56224
|
-
__typename?: 'MercuryLinkFocusAreasToGoalPayload';
|
|
56225
|
-
errors?: Maybe<Array<MutationError>>;
|
|
56226
|
-
success: Scalars['Boolean']['output'];
|
|
56227
|
-
};
|
|
56228
56447
|
export declare type MercuryLinkFocusAreasToPortfolioInput = {
|
|
56229
56448
|
cloudId: Scalars['ID']['input'];
|
|
56230
56449
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -56236,9 +56455,11 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
56236
56455
|
success: Scalars['Boolean']['output'];
|
|
56237
56456
|
};
|
|
56238
56457
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
56239
|
-
|
|
56458
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56459
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
56240
56460
|
cloudId: Scalars['ID']['input'];
|
|
56241
|
-
|
|
56461
|
+
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56462
|
+
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
56242
56463
|
};
|
|
56243
56464
|
export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
56244
56465
|
__typename?: 'MercuryLinkGoalsToFocusAreaPayload';
|
|
@@ -56266,7 +56487,6 @@ export declare type MercuryMutationApi = {
|
|
|
56266
56487
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
56267
56488
|
deletePreference?: Maybe<MercuryDeletePreferencePayload>;
|
|
56268
56489
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
56269
|
-
linkFocusAreasToGoal?: Maybe<MercuryLinkFocusAreasToGoalPayload>;
|
|
56270
56490
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
56271
56491
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
56272
56492
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
@@ -56326,9 +56546,6 @@ export declare type MercuryMutationApiDeletePreferenceArgs = {
|
|
|
56326
56546
|
export declare type MercuryMutationApiLinkFocusAreasToFocusAreaArgs = {
|
|
56327
56547
|
input: MercuryLinkFocusAreasToFocusAreaInput;
|
|
56328
56548
|
};
|
|
56329
|
-
export declare type MercuryMutationApiLinkFocusAreasToGoalArgs = {
|
|
56330
|
-
input: MercuryLinkFocusAreasToGoalInput;
|
|
56331
|
-
};
|
|
56332
56549
|
export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
56333
56550
|
input: MercuryLinkFocusAreasToPortfolioInput;
|
|
56334
56551
|
};
|
|
@@ -56842,6 +57059,18 @@ export declare type MercuryWorkspaceContext = {
|
|
|
56842
57059
|
aiEnabled: Scalars['Boolean']['output'];
|
|
56843
57060
|
cloudId: Scalars['String']['output'];
|
|
56844
57061
|
};
|
|
57062
|
+
export declare type MigrateComponentTypeInput = {
|
|
57063
|
+
destinationTypeId: Scalars['ID']['input'];
|
|
57064
|
+
sourceTypeId: Scalars['ID']['input'];
|
|
57065
|
+
};
|
|
57066
|
+
export declare type MigrateComponentTypePayload = Payload & {
|
|
57067
|
+
__typename?: 'MigrateComponentTypePayload';
|
|
57068
|
+
affectedComponentsCount?: Maybe<Scalars['Int']['output']>;
|
|
57069
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57070
|
+
failedComponentsCount?: Maybe<Scalars['Int']['output']>;
|
|
57071
|
+
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
57072
|
+
success: Scalars['Boolean']['output'];
|
|
57073
|
+
};
|
|
56845
57074
|
export declare type Migration = {
|
|
56846
57075
|
__typename?: 'Migration';
|
|
56847
57076
|
estimation?: Maybe<MigrationEstimation>;
|
|
@@ -57214,6 +57443,7 @@ export declare type Mutation = {
|
|
|
57214
57443
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
57215
57444
|
jsw?: Maybe<JswMutation>;
|
|
57216
57445
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
57446
|
+
knowledgeBaseSpacePermission_updateView?: Maybe<KnowledgeBaseSpacePermissionMutationApi>;
|
|
57217
57447
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
57218
57448
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
57219
57449
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
@@ -58011,6 +58241,9 @@ export declare type MutationInvokePolarisObjectArgs = {
|
|
|
58011
58241
|
export declare type MutationKnowledgeBaseArgs = {
|
|
58012
58242
|
cloudId: Scalars['ID']['input'];
|
|
58013
58243
|
};
|
|
58244
|
+
export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
58245
|
+
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
58246
|
+
};
|
|
58014
58247
|
export declare type MutationMoveSprintDownArgs = {
|
|
58015
58248
|
input?: InputMaybe<MoveSprintDownInput>;
|
|
58016
58249
|
};
|
|
@@ -60724,6 +60957,7 @@ export declare type Query = {
|
|
|
60724
60957
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
60725
60958
|
jsw?: Maybe<JswQuery>;
|
|
60726
60959
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
60960
|
+
knowledgeBaseSpacePermission_bulkQuery?: Maybe<KnowledgeBaseSpacePermissionBulkQueryApi>;
|
|
60727
60961
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
60728
60962
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
60729
60963
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -60784,7 +61018,6 @@ export declare type Query = {
|
|
|
60784
61018
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
60785
61019
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
60786
61020
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
60787
|
-
surfacePlatform: SurfacePlatformQueryApi;
|
|
60788
61021
|
team?: Maybe<TeamQuery>;
|
|
60789
61022
|
template?: Maybe<ContentPlatformTemplate>;
|
|
60790
61023
|
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
|
|
@@ -62028,6 +62261,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
62028
62261
|
export declare type QueryKnowledgeBaseArgs = {
|
|
62029
62262
|
cloudId: Scalars['ID']['input'];
|
|
62030
62263
|
};
|
|
62264
|
+
export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
62265
|
+
input: KnowledgeBaseSpacePermissionInput;
|
|
62266
|
+
};
|
|
62031
62267
|
export declare type QueryMarketplaceAppArgs = {
|
|
62032
62268
|
appId: Scalars['ID']['input'];
|
|
62033
62269
|
};
|
|
@@ -64481,6 +64717,17 @@ export declare type ShepherdAlert = Node & {
|
|
|
64481
64717
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
64482
64718
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
64483
64719
|
};
|
|
64720
|
+
export declare enum ShepherdAlertAction {
|
|
64721
|
+
AddLabel = "ADD_LABEL",
|
|
64722
|
+
Redact = "REDACT",
|
|
64723
|
+
Restrict = "RESTRICT",
|
|
64724
|
+
UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
|
|
64725
|
+
}
|
|
64726
|
+
export declare type ShepherdAlertAuthorizedActions = {
|
|
64727
|
+
__typename?: 'ShepherdAlertAuthorizedActions';
|
|
64728
|
+
actions?: Maybe<Array<ShepherdAlertAction>>;
|
|
64729
|
+
};
|
|
64730
|
+
export declare type ShepherdAlertAuthorizedActionsResult = QueryError | ShepherdAlertAuthorizedActions;
|
|
64484
64731
|
export declare enum ShepherdAlertDetectionCategory {
|
|
64485
64732
|
Data = "DATA",
|
|
64486
64733
|
Threat = "THREAT"
|
|
@@ -64497,9 +64744,14 @@ export declare type ShepherdAlertMetaData = {
|
|
|
64497
64744
|
};
|
|
64498
64745
|
export declare type ShepherdAlertQueries = {
|
|
64499
64746
|
__typename?: 'ShepherdAlertQueries';
|
|
64747
|
+
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
64500
64748
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
64501
64749
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
64502
64750
|
};
|
|
64751
|
+
export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
64752
|
+
id: Scalars['ID']['input'];
|
|
64753
|
+
resource: Scalars['ID']['input'];
|
|
64754
|
+
};
|
|
64503
64755
|
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
64504
64756
|
id: Scalars['ID']['input'];
|
|
64505
64757
|
};
|
|
@@ -66365,44 +66617,6 @@ export declare type SupportRequests = {
|
|
|
66365
66617
|
page: Array<SupportRequest>;
|
|
66366
66618
|
total: Scalars['Int']['output'];
|
|
66367
66619
|
};
|
|
66368
|
-
export declare type SurfacePlatformQueryApi = {
|
|
66369
|
-
__typename?: 'SurfacePlatformQueryApi';
|
|
66370
|
-
surface?: Maybe<SurfacePlatformSurface>;
|
|
66371
|
-
surfaceV2?: Maybe<SurfacePlatformSurfaceV2>;
|
|
66372
|
-
};
|
|
66373
|
-
export declare type SurfacePlatformQueryApiSurfaceArgs = {
|
|
66374
|
-
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
66375
|
-
id: Scalars['ID']['input'];
|
|
66376
|
-
};
|
|
66377
|
-
export declare type SurfacePlatformQueryApiSurfaceV2Args = {
|
|
66378
|
-
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
66379
|
-
key: Scalars['String']['input'];
|
|
66380
|
-
type: Scalars['String']['input'];
|
|
66381
|
-
};
|
|
66382
|
-
export declare type SurfacePlatformSurface = {
|
|
66383
|
-
__typename?: 'SurfacePlatformSurface';
|
|
66384
|
-
channels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
66385
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
66386
|
-
id: Scalars['ID']['output'];
|
|
66387
|
-
locale?: Maybe<Scalars['String']['output']>;
|
|
66388
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
66389
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
66390
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
66391
|
-
zones?: Maybe<Scalars['JSON']['output']>;
|
|
66392
|
-
};
|
|
66393
|
-
export declare type SurfacePlatformSurfaceV2 = {
|
|
66394
|
-
__typename?: 'SurfacePlatformSurfaceV2';
|
|
66395
|
-
channel?: Maybe<Scalars['String']['output']>;
|
|
66396
|
-
definitionVersion?: Maybe<Scalars['String']['output']>;
|
|
66397
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
66398
|
-
fields?: Maybe<Scalars['JSON']['output']>;
|
|
66399
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
66400
|
-
label?: Maybe<Scalars['String']['output']>;
|
|
66401
|
-
locale?: Maybe<Scalars['String']['output']>;
|
|
66402
|
-
revision?: Maybe<Scalars['Int']['output']>;
|
|
66403
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
66404
|
-
zones?: Maybe<Scalars['JSON']['output']>;
|
|
66405
|
-
};
|
|
66406
66620
|
export declare type Swimlane = {
|
|
66407
66621
|
__typename?: 'Swimlane';
|
|
66408
66622
|
allowedCardTypes?: Maybe<Array<CardType>>;
|
|
@@ -66648,6 +66862,8 @@ export declare type TeamV2MembersArgs = {
|
|
|
66648
66862
|
};
|
|
66649
66863
|
export declare type TenantContext = {
|
|
66650
66864
|
__typename?: 'TenantContext';
|
|
66865
|
+
activationIdByProduct?: Maybe<TenantContextActivationId>;
|
|
66866
|
+
activationIds?: Maybe<Array<TenantContextActivationId>>;
|
|
66651
66867
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
66652
66868
|
cloudUrl?: Maybe<Scalars['URL']['output']>;
|
|
66653
66869
|
customDomains?: Maybe<Array<TenantContextCustomDomain>>;
|
|
@@ -66655,9 +66871,17 @@ export declare type TenantContext = {
|
|
|
66655
66871
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
66656
66872
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
66657
66873
|
};
|
|
66874
|
+
export declare type TenantContextActivationIdByProductArgs = {
|
|
66875
|
+
product: Scalars['String']['input'];
|
|
66876
|
+
};
|
|
66658
66877
|
export declare type TenantContextEntitlementInfoArgs = {
|
|
66659
66878
|
hamsProductKey: Scalars['String']['input'];
|
|
66660
66879
|
};
|
|
66880
|
+
export declare type TenantContextActivationId = {
|
|
66881
|
+
__typename?: 'TenantContextActivationId';
|
|
66882
|
+
active?: Maybe<Scalars['String']['output']>;
|
|
66883
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
66884
|
+
};
|
|
66661
66885
|
export declare type TenantContextCustomDomain = {
|
|
66662
66886
|
__typename?: 'TenantContextCustomDomain';
|
|
66663
66887
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67563,7 +67787,6 @@ export declare type TrelloBoard = Node & {
|
|
|
67563
67787
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
67564
67788
|
name: Scalars['String']['output'];
|
|
67565
67789
|
objectId: Scalars['ID']['output'];
|
|
67566
|
-
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
67567
67790
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
67568
67791
|
powerUps?: Maybe<TrelloBoardPowerUpConnection>;
|
|
67569
67792
|
powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -67766,11 +67989,16 @@ export declare type TrelloBoardUpdated = {
|
|
|
67766
67989
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
67767
67990
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
67768
67991
|
description?: Maybe<TrelloDescription>;
|
|
67992
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
67769
67993
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67994
|
+
labels?: Maybe<Array<TrelloLabel>>;
|
|
67770
67995
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
67996
|
+
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
67771
67997
|
name?: Maybe<Scalars['String']['output']>;
|
|
67772
67998
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67773
67999
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
68000
|
+
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
68001
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
67774
68002
|
};
|
|
67775
68003
|
export declare type TrelloBoardViewer = {
|
|
67776
68004
|
__typename?: 'TrelloBoardViewer';
|
|
@@ -67814,6 +68042,7 @@ export declare type TrelloCard = Node & {
|
|
|
67814
68042
|
members?: Maybe<TrelloMemberConnection>;
|
|
67815
68043
|
name?: Maybe<Scalars['String']['output']>;
|
|
67816
68044
|
objectId: Scalars['ID']['output'];
|
|
68045
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
67817
68046
|
position?: Maybe<Scalars['Float']['output']>;
|
|
67818
68047
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
67819
68048
|
role?: Maybe<TrelloCardRole>;
|
|
@@ -68315,6 +68544,7 @@ export declare type TrelloMutationApi = {
|
|
|
68315
68544
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
68316
68545
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
68317
68546
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
68547
|
+
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
68318
68548
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
68319
68549
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
68320
68550
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
@@ -68335,6 +68565,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
68335
68565
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
68336
68566
|
input: TrelloCreateCardInput;
|
|
68337
68567
|
};
|
|
68568
|
+
export declare type TrelloMutationApiPinCardArgs = {
|
|
68569
|
+
input: TrelloPinCardInput;
|
|
68570
|
+
};
|
|
68338
68571
|
export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
68339
68572
|
input: TrelloRemoveMemberInput;
|
|
68340
68573
|
};
|
|
@@ -68365,35 +68598,23 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
68365
68598
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
68366
68599
|
input: TrelloWatchCardInput;
|
|
68367
68600
|
};
|
|
68601
|
+
export declare type TrelloPinCardInput = {
|
|
68602
|
+
cardId: Scalars['ID']['input'];
|
|
68603
|
+
};
|
|
68604
|
+
export declare type TrelloPinCardPayload = Payload & {
|
|
68605
|
+
__typename?: 'TrelloPinCardPayload';
|
|
68606
|
+
card?: Maybe<TrelloCard>;
|
|
68607
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68608
|
+
success: Scalars['Boolean']['output'];
|
|
68609
|
+
};
|
|
68368
68610
|
export declare type TrelloPlanner = {
|
|
68369
68611
|
__typename?: 'TrelloPlanner';
|
|
68370
|
-
accounts?: Maybe<
|
|
68612
|
+
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
68371
68613
|
};
|
|
68372
68614
|
export declare type TrelloPlannerAccountsArgs = {
|
|
68373
68615
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68374
68616
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68375
68617
|
};
|
|
68376
|
-
export declare type TrelloPlannerAccount = Node & {
|
|
68377
|
-
__typename?: 'TrelloPlannerAccount';
|
|
68378
|
-
accountType: TrelloSupportedPlannerProviders;
|
|
68379
|
-
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68380
|
-
id: Scalars['ID']['output'];
|
|
68381
|
-
};
|
|
68382
|
-
export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
|
|
68383
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68384
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68385
|
-
};
|
|
68386
|
-
export declare type TrelloPlannerAccountConnection = {
|
|
68387
|
-
__typename?: 'TrelloPlannerAccountConnection';
|
|
68388
|
-
edges?: Maybe<Array<TrelloPlannerAccountEdge>>;
|
|
68389
|
-
nodes?: Maybe<Array<TrelloPlannerAccount>>;
|
|
68390
|
-
pageInfo: PageInfo;
|
|
68391
|
-
};
|
|
68392
|
-
export declare type TrelloPlannerAccountEdge = {
|
|
68393
|
-
__typename?: 'TrelloPlannerAccountEdge';
|
|
68394
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
68395
|
-
node?: Maybe<TrelloPlannerAccount>;
|
|
68396
|
-
};
|
|
68397
68618
|
export declare type TrelloPlannerCalendar = Node & {
|
|
68398
68619
|
__typename?: 'TrelloPlannerCalendar';
|
|
68399
68620
|
color: Scalars['String']['output'];
|
|
@@ -68406,6 +68627,33 @@ export declare type TrelloPlannerCalendar = Node & {
|
|
|
68406
68627
|
type: TrelloSupportedPlannerProviders;
|
|
68407
68628
|
workspaceId: Scalars['ID']['output'];
|
|
68408
68629
|
};
|
|
68630
|
+
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
68631
|
+
__typename?: 'TrelloPlannerCalendarAccount';
|
|
68632
|
+
accountType: TrelloSupportedPlannerProviders;
|
|
68633
|
+
allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68634
|
+
displayName: Scalars['String']['output'];
|
|
68635
|
+
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68636
|
+
id: Scalars['ID']['output'];
|
|
68637
|
+
};
|
|
68638
|
+
export declare type TrelloPlannerCalendarAccountAllCalendarsArgs = {
|
|
68639
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68640
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68641
|
+
};
|
|
68642
|
+
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
68643
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68644
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68645
|
+
};
|
|
68646
|
+
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
68647
|
+
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
68648
|
+
edges?: Maybe<Array<TrelloPlannerCalendarAccountEdge>>;
|
|
68649
|
+
nodes?: Maybe<Array<TrelloPlannerCalendarAccount>>;
|
|
68650
|
+
pageInfo: PageInfo;
|
|
68651
|
+
};
|
|
68652
|
+
export declare type TrelloPlannerCalendarAccountEdge = {
|
|
68653
|
+
__typename?: 'TrelloPlannerCalendarAccountEdge';
|
|
68654
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68655
|
+
node?: Maybe<TrelloPlannerCalendarAccount>;
|
|
68656
|
+
};
|
|
68409
68657
|
export declare type TrelloPlannerCalendarConnection = {
|
|
68410
68658
|
__typename?: 'TrelloPlannerCalendarConnection';
|
|
68411
68659
|
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
@@ -68418,11 +68666,6 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
68418
68666
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
68419
68667
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
68420
68668
|
};
|
|
68421
|
-
export declare type TrelloPopularLabelForColor = {
|
|
68422
|
-
__typename?: 'TrelloPopularLabelForColor';
|
|
68423
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
68424
|
-
labelName?: Maybe<Scalars['String']['output']>;
|
|
68425
|
-
};
|
|
68426
68669
|
export declare type TrelloPowerUp = {
|
|
68427
68670
|
__typename?: 'TrelloPowerUp';
|
|
68428
68671
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -68484,7 +68727,7 @@ export declare type TrelloQueryApi = {
|
|
|
68484
68727
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
68485
68728
|
list?: Maybe<TrelloList>;
|
|
68486
68729
|
member?: Maybe<TrelloMember>;
|
|
68487
|
-
plannerAccountsByMemberId?: Maybe<
|
|
68730
|
+
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
68488
68731
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
68489
68732
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
68490
68733
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -69410,6 +69653,7 @@ export declare type UpdateCompassComponentDataManagerMetadataPayload = Payload &
|
|
|
69410
69653
|
success: Scalars['Boolean']['output'];
|
|
69411
69654
|
};
|
|
69412
69655
|
export declare type UpdateCompassComponentInput = {
|
|
69656
|
+
componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
|
|
69413
69657
|
customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
|
|
69414
69658
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
69415
69659
|
fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
|
|
@@ -70601,8 +70845,11 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
70601
70845
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
70602
70846
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
70603
70847
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
70848
|
+
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
70604
70849
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
70605
70850
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
70851
|
+
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
70852
|
+
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
70606
70853
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
70607
70854
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
70608
70855
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
@@ -70610,6 +70857,9 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
70610
70857
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
70611
70858
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70612
70859
|
};
|
|
70860
|
+
export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
|
|
70861
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
70862
|
+
};
|
|
70613
70863
|
export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
70614
70864
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70615
70865
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -70617,6 +70867,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
|
70617
70867
|
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
70618
70868
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70619
70869
|
};
|
|
70870
|
+
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
70871
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
70872
|
+
};
|
|
70620
70873
|
export declare type WorkSuggestionsCodeTabEdge = {
|
|
70621
70874
|
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
70622
70875
|
cursor: Scalars['String']['output'];
|
|
@@ -70773,6 +71026,9 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
70773
71026
|
Testing = "TESTING",
|
|
70774
71027
|
Unmapped = "UNMAPPED"
|
|
70775
71028
|
}
|
|
71029
|
+
export declare type WorkSuggestionsInput = {
|
|
71030
|
+
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
71031
|
+
};
|
|
70776
71032
|
export declare type WorkSuggestionsJiraAssignee = {
|
|
70777
71033
|
__typename?: 'WorkSuggestionsJiraAssignee';
|
|
70778
71034
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -70868,6 +71124,38 @@ export declare type WorkSuggestionsPeriscopeTask = {
|
|
|
70868
71124
|
title: Scalars['String']['output'];
|
|
70869
71125
|
url: Scalars['String']['output'];
|
|
70870
71126
|
};
|
|
71127
|
+
export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
|
|
71128
|
+
__typename?: 'WorkSuggestionsPullRequestDraftTask';
|
|
71129
|
+
approvalsCount: Scalars['Int']['output'];
|
|
71130
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
71131
|
+
commentCount: Scalars['Int']['output'];
|
|
71132
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
71133
|
+
id: Scalars['String']['output'];
|
|
71134
|
+
lastUpdated: Scalars['String']['output'];
|
|
71135
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
71136
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
71137
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
71138
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
71139
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
71140
|
+
title: Scalars['String']['output'];
|
|
71141
|
+
url: Scalars['String']['output'];
|
|
71142
|
+
};
|
|
71143
|
+
export declare type WorkSuggestionsPullRequestInactiveTask = WorkSuggestionsCommon & {
|
|
71144
|
+
__typename?: 'WorkSuggestionsPullRequestInactiveTask';
|
|
71145
|
+
approvalsCount: Scalars['Int']['output'];
|
|
71146
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
71147
|
+
commentCount: Scalars['Int']['output'];
|
|
71148
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
71149
|
+
id: Scalars['String']['output'];
|
|
71150
|
+
lastUpdated: Scalars['String']['output'];
|
|
71151
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
71152
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
71153
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
71154
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
71155
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
71156
|
+
title: Scalars['String']['output'];
|
|
71157
|
+
url: Scalars['String']['output'];
|
|
71158
|
+
};
|
|
70871
71159
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
70872
71160
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
70873
71161
|
commentCount: Scalars['Int']['output'];
|
|
@@ -70929,6 +71217,10 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
|
|
|
70929
71217
|
success: Scalars['Boolean']['output'];
|
|
70930
71218
|
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
70931
71219
|
};
|
|
71220
|
+
export declare enum WorkSuggestionsTargetAudience {
|
|
71221
|
+
Me = "ME",
|
|
71222
|
+
Team = "TEAM"
|
|
71223
|
+
}
|
|
70932
71224
|
export declare type WorkSuggestionsUserActionState = {
|
|
70933
71225
|
__typename?: 'WorkSuggestionsUserActionState';
|
|
70934
71226
|
expireAt: Scalars['String']['output'];
|