@forge/cli-shared 5.5.0-next.9 → 5.5.1-next.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 +109 -0
- 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 +683 -238
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +90 -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>;
|
|
@@ -3761,9 +3781,14 @@ export declare type CompassComponent = Node & {
|
|
|
3761
3781
|
state?: Maybe<Scalars['String']['output']>;
|
|
3762
3782
|
type: CompassComponentType;
|
|
3763
3783
|
typeId: Scalars['ID']['output'];
|
|
3784
|
+
typeMetadata?: Maybe<CompassComponentTypeObject>;
|
|
3764
3785
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
3765
3786
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
3766
3787
|
};
|
|
3788
|
+
export declare type CompassComponentAppliedScorecardsArgs = {
|
|
3789
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3790
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3791
|
+
};
|
|
3767
3792
|
export declare type CompassComponentDeactivatedScorecardsArgs = {
|
|
3768
3793
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
3769
3794
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -3909,6 +3934,13 @@ export declare type CompassComponentDeactivatedScorecardsEdge = {
|
|
|
3909
3934
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
3910
3935
|
node?: Maybe<CompassDeactivatedScorecard>;
|
|
3911
3936
|
};
|
|
3937
|
+
export declare type CompassComponentDescriptionDetails = {
|
|
3938
|
+
__typename?: 'CompassComponentDescriptionDetails';
|
|
3939
|
+
content: Scalars['String']['output'];
|
|
3940
|
+
};
|
|
3941
|
+
export declare type CompassComponentDescriptionDetailsInput = {
|
|
3942
|
+
content: Scalars['String']['input'];
|
|
3943
|
+
};
|
|
3912
3944
|
export declare type CompassComponentEndpoint = {
|
|
3913
3945
|
__typename?: 'CompassComponentEndpoint';
|
|
3914
3946
|
checksum: Scalars['String']['output'];
|
|
@@ -3931,6 +3963,22 @@ export declare type CompassComponentEndpointEdge = {
|
|
|
3931
3963
|
cursor: Scalars['String']['output'];
|
|
3932
3964
|
node: CompassComponentEndpoint;
|
|
3933
3965
|
};
|
|
3966
|
+
export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
3967
|
+
__typename?: 'CompassComponentHasScorecardsAppliedConnection';
|
|
3968
|
+
edges?: Maybe<Array<CompassComponentHasScorecardsAppliedEdge>>;
|
|
3969
|
+
nodes?: Maybe<Array<CompassScorecard>>;
|
|
3970
|
+
pageInfo: PageInfo;
|
|
3971
|
+
};
|
|
3972
|
+
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
3973
|
+
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
3974
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
3975
|
+
cursor: Scalars['String']['output'];
|
|
3976
|
+
node?: Maybe<CompassScorecard>;
|
|
3977
|
+
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
3978
|
+
};
|
|
3979
|
+
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
3980
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
3981
|
+
};
|
|
3934
3982
|
export declare type CompassComponentInstancePermissions = {
|
|
3935
3983
|
__typename?: 'CompassComponentInstancePermissions';
|
|
3936
3984
|
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
@@ -5928,12 +5976,16 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
5928
5976
|
};
|
|
5929
5977
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
5930
5978
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
5979
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
5931
5980
|
cursor: Scalars['String']['output'];
|
|
5932
5981
|
deactivatedBy?: Maybe<User>;
|
|
5933
5982
|
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
5934
5983
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
5935
5984
|
node?: Maybe<CompassComponent>;
|
|
5936
5985
|
};
|
|
5986
|
+
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
5987
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
5988
|
+
};
|
|
5937
5989
|
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
5938
5990
|
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
5939
5991
|
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
@@ -15881,6 +15933,7 @@ export declare type CustomerServiceAttributes = {
|
|
|
15881
15933
|
};
|
|
15882
15934
|
export declare type CustomerServiceAttributesQueryResult = CustomerServiceAttributes | QueryError;
|
|
15883
15935
|
export declare type CustomerServiceContext = {
|
|
15936
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
15884
15937
|
type: CustomerServiceContextType;
|
|
15885
15938
|
};
|
|
15886
15939
|
export declare type CustomerServiceContextConfiguration = {
|
|
@@ -15946,6 +15999,10 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
|
|
|
15946
15999
|
success: Scalars['Boolean']['output'];
|
|
15947
16000
|
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15948
16001
|
};
|
|
16002
|
+
export declare type CustomerServiceCustomDetailContextInput = {
|
|
16003
|
+
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
16004
|
+
id: Scalars['ID']['input'];
|
|
16005
|
+
};
|
|
15949
16006
|
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
15950
16007
|
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
15951
16008
|
}
|
|
@@ -16213,6 +16270,7 @@ export declare type CustomerServiceMutationApi = {
|
|
|
16213
16270
|
removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
|
|
16214
16271
|
updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
|
|
16215
16272
|
updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
|
|
16273
|
+
updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
|
|
16216
16274
|
updateCustomDetailPermissions?: Maybe<CustomerServiceCustomDetailPermissionsUpdatePayload>;
|
|
16217
16275
|
updateCustomDetailValue?: Maybe<CustomerServiceUpdateCustomDetailValuePayload>;
|
|
16218
16276
|
updateIndividualAttribute?: Maybe<CustomerServiceAttributeUpdatePayload>;
|
|
@@ -16282,6 +16340,9 @@ export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
|
|
|
16282
16340
|
export declare type CustomerServiceMutationApiUpdateCustomDetailConfigArgs = {
|
|
16283
16341
|
input: CustomerServiceCustomDetailConfigMetadataUpdateInput;
|
|
16284
16342
|
};
|
|
16343
|
+
export declare type CustomerServiceMutationApiUpdateCustomDetailContextConfigsArgs = {
|
|
16344
|
+
input: Array<CustomerServiceCustomDetailContextInput>;
|
|
16345
|
+
};
|
|
16285
16346
|
export declare type CustomerServiceMutationApiUpdateCustomDetailPermissionsArgs = {
|
|
16286
16347
|
input: CustomerServiceCustomDetailPermissionsUpdateInput;
|
|
16287
16348
|
};
|
|
@@ -16571,6 +16632,12 @@ export declare type CustomerServiceStatusPayload = Payload & {
|
|
|
16571
16632
|
errors?: Maybe<Array<MutationError>>;
|
|
16572
16633
|
success: Scalars['Boolean']['output'];
|
|
16573
16634
|
};
|
|
16635
|
+
export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
|
|
16636
|
+
__typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
|
|
16637
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16638
|
+
success: Scalars['Boolean']['output'];
|
|
16639
|
+
successfullyUpdatedCustomDetails: Array<CustomerServiceCustomDetail>;
|
|
16640
|
+
};
|
|
16574
16641
|
export declare type CustomerServiceUpdateCustomDetailValueInput = {
|
|
16575
16642
|
id: CustomerServiceCustomDetailEntityTypeId;
|
|
16576
16643
|
name: Scalars['String']['input'];
|
|
@@ -19034,9 +19101,10 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
19034
19101
|
appId: Scalars['ID']['input'];
|
|
19035
19102
|
};
|
|
19036
19103
|
export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
19037
|
-
|
|
19038
|
-
|
|
19039
|
-
|
|
19104
|
+
appId: Scalars['ID']['input'];
|
|
19105
|
+
channel: Scalars['String']['input'];
|
|
19106
|
+
contextAri: Scalars['ID']['input'];
|
|
19107
|
+
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
19040
19108
|
payload: Scalars['String']['input'];
|
|
19041
19109
|
};
|
|
19042
19110
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
@@ -19154,9 +19222,10 @@ export declare type EcosystemSubscription = {
|
|
|
19154
19222
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
19155
19223
|
};
|
|
19156
19224
|
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
19157
|
-
|
|
19158
|
-
|
|
19159
|
-
|
|
19225
|
+
appId: Scalars['ID']['input'];
|
|
19226
|
+
channel: Scalars['String']['input'];
|
|
19227
|
+
contextAri: Scalars['ID']['input'];
|
|
19228
|
+
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
19160
19229
|
};
|
|
19161
19230
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
19162
19231
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
@@ -20177,6 +20246,7 @@ export declare type ForgeAlertsQuery = {
|
|
|
20177
20246
|
isAlertOpenForRule?: Maybe<ForgeAlertsIsAlertOpenForRuleResponse>;
|
|
20178
20247
|
rule?: Maybe<ForgeAlertsRuleResult>;
|
|
20179
20248
|
ruleActivityLogs?: Maybe<ForgeAlertsRuleActivityLogsResult>;
|
|
20249
|
+
ruleFilters?: Maybe<ForgeAlertsRuleFiltersResult>;
|
|
20180
20250
|
rules?: Maybe<ForgeAlertsRulesResult>;
|
|
20181
20251
|
};
|
|
20182
20252
|
export declare type ForgeAlertsQueryAlertArgs = {
|
|
@@ -20209,6 +20279,9 @@ export declare type ForgeAlertsQueryRuleArgs = {
|
|
|
20209
20279
|
export declare type ForgeAlertsQueryRuleActivityLogsArgs = {
|
|
20210
20280
|
query: ForgeAlertsRuleActivityLogsInput;
|
|
20211
20281
|
};
|
|
20282
|
+
export declare type ForgeAlertsQueryRuleFiltersArgs = {
|
|
20283
|
+
input: ForgeAlertsRuleFiltersInput;
|
|
20284
|
+
};
|
|
20212
20285
|
export declare type ForgeAlertsQueryIntervalInput = {
|
|
20213
20286
|
end: Scalars['String']['input'];
|
|
20214
20287
|
start: Scalars['String']['input'];
|
|
@@ -20302,12 +20375,20 @@ export declare type ForgeAlertsRuleFilters = {
|
|
|
20302
20375
|
dimension: ForgeAlertsRuleFilterDimensions;
|
|
20303
20376
|
value: Array<Scalars['String']['input']>;
|
|
20304
20377
|
};
|
|
20378
|
+
export declare type ForgeAlertsRuleFiltersData = {
|
|
20379
|
+
__typename?: 'ForgeAlertsRuleFiltersData';
|
|
20380
|
+
filters: Array<ForgeAlertsMetricsLabelGroup>;
|
|
20381
|
+
};
|
|
20382
|
+
export declare type ForgeAlertsRuleFiltersInput = {
|
|
20383
|
+
environment: Scalars['String']['input'];
|
|
20384
|
+
};
|
|
20305
20385
|
export declare type ForgeAlertsRuleFiltersResponse = {
|
|
20306
20386
|
__typename?: 'ForgeAlertsRuleFiltersResponse';
|
|
20307
20387
|
action: ForgeAlertsRuleFilterActions;
|
|
20308
20388
|
dimension: ForgeAlertsRuleFilterDimensions;
|
|
20309
20389
|
value: Array<Scalars['String']['output']>;
|
|
20310
20390
|
};
|
|
20391
|
+
export declare type ForgeAlertsRuleFiltersResult = ForgeAlertsRuleFiltersData | QueryError;
|
|
20311
20392
|
export declare enum ForgeAlertsRuleMetricType {
|
|
20312
20393
|
InvocationCount = "INVOCATION_COUNT",
|
|
20313
20394
|
InvocationErrors = "INVOCATION_ERRORS",
|
|
@@ -24936,6 +25017,7 @@ export declare type GraphStore = {
|
|
|
24936
25017
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
24937
25018
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
24938
25019
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
25020
|
+
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
24939
25021
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
24940
25022
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
24941
25023
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -25123,6 +25205,7 @@ export declare type GraphStoreContentReferencedEntityBatchArgs = {
|
|
|
25123
25205
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25124
25206
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25125
25207
|
ids: Array<Scalars['ID']['input']>;
|
|
25208
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25126
25209
|
};
|
|
25127
25210
|
export declare type GraphStoreContentReferencedEntityInverseArgs = {
|
|
25128
25211
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25134,6 +25217,7 @@ export declare type GraphStoreContentReferencedEntityInverseBatchArgs = {
|
|
|
25134
25217
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25135
25218
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25136
25219
|
ids: Array<Scalars['ID']['input']>;
|
|
25220
|
+
sort?: InputMaybe<GraphStoreContentReferencedEntitySortInput>;
|
|
25137
25221
|
};
|
|
25138
25222
|
export declare type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
|
|
25139
25223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25161,6 +25245,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectBatchArgs = {
|
|
|
25161
25245
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25162
25246
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25163
25247
|
ids: Array<Scalars['ID']['input']>;
|
|
25248
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25164
25249
|
};
|
|
25165
25250
|
export declare type GraphStoreFocusAreaAssociatedToProjectInverseArgs = {
|
|
25166
25251
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25172,6 +25257,7 @@ export declare type GraphStoreFocusAreaAssociatedToProjectInverseBatchArgs = {
|
|
|
25172
25257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25173
25258
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25174
25259
|
ids: Array<Scalars['ID']['input']>;
|
|
25260
|
+
sort?: InputMaybe<GraphStoreFocusAreaAssociatedToProjectSortInput>;
|
|
25175
25261
|
};
|
|
25176
25262
|
export declare type GraphStoreFocusAreaHasAtlasGoalArgs = {
|
|
25177
25263
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25183,6 +25269,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalBatchArgs = {
|
|
|
25183
25269
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25184
25270
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25185
25271
|
ids: Array<Scalars['ID']['input']>;
|
|
25272
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25186
25273
|
};
|
|
25187
25274
|
export declare type GraphStoreFocusAreaHasAtlasGoalInverseArgs = {
|
|
25188
25275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25194,6 +25281,7 @@ export declare type GraphStoreFocusAreaHasAtlasGoalInverseBatchArgs = {
|
|
|
25194
25281
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25195
25282
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25196
25283
|
ids: Array<Scalars['ID']['input']>;
|
|
25284
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
25197
25285
|
};
|
|
25198
25286
|
export declare type GraphStoreFocusAreaHasFocusAreaArgs = {
|
|
25199
25287
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25205,6 +25293,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaBatchArgs = {
|
|
|
25205
25293
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25206
25294
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25207
25295
|
ids: Array<Scalars['ID']['input']>;
|
|
25296
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25208
25297
|
};
|
|
25209
25298
|
export declare type GraphStoreFocusAreaHasFocusAreaInverseArgs = {
|
|
25210
25299
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25216,6 +25305,7 @@ export declare type GraphStoreFocusAreaHasFocusAreaInverseBatchArgs = {
|
|
|
25216
25305
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25217
25306
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25218
25307
|
ids: Array<Scalars['ID']['input']>;
|
|
25308
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasFocusAreaSortInput>;
|
|
25219
25309
|
};
|
|
25220
25310
|
export declare type GraphStoreFocusAreaHasProjectArgs = {
|
|
25221
25311
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25227,6 +25317,7 @@ export declare type GraphStoreFocusAreaHasProjectBatchArgs = {
|
|
|
25227
25317
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25228
25318
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25229
25319
|
ids: Array<Scalars['ID']['input']>;
|
|
25320
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25230
25321
|
};
|
|
25231
25322
|
export declare type GraphStoreFocusAreaHasProjectInverseArgs = {
|
|
25232
25323
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25238,6 +25329,7 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
25238
25329
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25239
25330
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25240
25331
|
ids: Array<Scalars['ID']['input']>;
|
|
25332
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
25241
25333
|
};
|
|
25242
25334
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
25243
25335
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25249,6 +25341,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewBatchArgs = {
|
|
|
25249
25341
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25250
25342
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25251
25343
|
ids: Array<Scalars['ID']['input']>;
|
|
25344
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25252
25345
|
};
|
|
25253
25346
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseArgs = {
|
|
25254
25347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25260,6 +25353,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseBatchAr
|
|
|
25260
25353
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25261
25354
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25262
25355
|
ids: Array<Scalars['ID']['input']>;
|
|
25356
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewSortInput>;
|
|
25263
25357
|
};
|
|
25264
25358
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewInverseRelationshipArgs = {
|
|
25265
25359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25276,6 +25370,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkBatchArgs
|
|
|
25276
25370
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25277
25371
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25278
25372
|
ids: Array<Scalars['ID']['input']>;
|
|
25373
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25279
25374
|
};
|
|
25280
25375
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseArgs = {
|
|
25281
25376
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25287,6 +25382,7 @@ export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseBat
|
|
|
25287
25382
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25288
25383
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25289
25384
|
ids: Array<Scalars['ID']['input']>;
|
|
25385
|
+
sort?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput>;
|
|
25290
25386
|
};
|
|
25291
25387
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseRelationshipArgs = {
|
|
25292
25388
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25313,6 +25409,7 @@ export declare type GraphStoreIncidentHasActionItemBatchArgs = {
|
|
|
25313
25409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25314
25410
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25315
25411
|
ids: Array<Scalars['ID']['input']>;
|
|
25412
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25316
25413
|
};
|
|
25317
25414
|
export declare type GraphStoreIncidentHasActionItemInverseArgs = {
|
|
25318
25415
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25324,6 +25421,7 @@ export declare type GraphStoreIncidentHasActionItemInverseBatchArgs = {
|
|
|
25324
25421
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25325
25422
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25326
25423
|
ids: Array<Scalars['ID']['input']>;
|
|
25424
|
+
sort?: InputMaybe<GraphStoreIncidentHasActionItemSortInput>;
|
|
25327
25425
|
};
|
|
25328
25426
|
export declare type GraphStoreIncidentHasActionItemInverseRelationshipArgs = {
|
|
25329
25427
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25345,6 +25443,7 @@ export declare type GraphStoreIncidentLinkedJswIssueBatchArgs = {
|
|
|
25345
25443
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25346
25444
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25347
25445
|
ids: Array<Scalars['ID']['input']>;
|
|
25446
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25348
25447
|
};
|
|
25349
25448
|
export declare type GraphStoreIncidentLinkedJswIssueInverseArgs = {
|
|
25350
25449
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25356,6 +25455,7 @@ export declare type GraphStoreIncidentLinkedJswIssueInverseBatchArgs = {
|
|
|
25356
25455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25357
25456
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25358
25457
|
ids: Array<Scalars['ID']['input']>;
|
|
25458
|
+
sort?: InputMaybe<GraphStoreIncidentLinkedJswIssueSortInput>;
|
|
25359
25459
|
};
|
|
25360
25460
|
export declare type GraphStoreIncidentLinkedJswIssueInverseRelationshipArgs = {
|
|
25361
25461
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25387,6 +25487,7 @@ export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
|
25387
25487
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25388
25488
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25389
25489
|
ids: Array<Scalars['ID']['input']>;
|
|
25490
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25390
25491
|
};
|
|
25391
25492
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
25392
25493
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25398,6 +25499,7 @@ export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
|
25398
25499
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25399
25500
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25400
25501
|
ids: Array<Scalars['ID']['input']>;
|
|
25502
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBuildSortInput>;
|
|
25401
25503
|
};
|
|
25402
25504
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
25403
25505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25427,35 +25529,45 @@ export declare type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
25427
25529
|
};
|
|
25428
25530
|
export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
25429
25531
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25532
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25430
25533
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25431
25534
|
id: Scalars['ID']['input'];
|
|
25432
25535
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25433
25536
|
};
|
|
25434
25537
|
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
25435
25538
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25539
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25436
25540
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25437
25541
|
ids: Array<Scalars['ID']['input']>;
|
|
25542
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25438
25543
|
};
|
|
25439
25544
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
25440
25545
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25546
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25441
25547
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25442
25548
|
id: Scalars['ID']['input'];
|
|
25443
25549
|
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25444
25550
|
};
|
|
25445
25551
|
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
25446
25552
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25553
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25447
25554
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25448
25555
|
ids: Array<Scalars['ID']['input']>;
|
|
25556
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25449
25557
|
};
|
|
25450
25558
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
25451
25559
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25560
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25452
25561
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25453
25562
|
id: Scalars['ID']['input'];
|
|
25563
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25454
25564
|
};
|
|
25455
25565
|
export declare type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
|
|
25456
25566
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25567
|
+
filter?: InputMaybe<GraphStoreIssueAssociatedDeploymentFilterInput>;
|
|
25457
25568
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25458
25569
|
id: Scalars['ID']['input'];
|
|
25570
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedDeploymentSortInput>;
|
|
25459
25571
|
};
|
|
25460
25572
|
export declare type GraphStoreIssueAssociatedDesignArgs = {
|
|
25461
25573
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25511,6 +25623,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
|
25511
25623
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25512
25624
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25513
25625
|
ids: Array<Scalars['ID']['input']>;
|
|
25626
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25514
25627
|
};
|
|
25515
25628
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
25516
25629
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25522,6 +25635,7 @@ export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
|
|
|
25522
25635
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25523
25636
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25524
25637
|
ids: Array<Scalars['ID']['input']>;
|
|
25638
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedIssueRemoteLinkSortInput>;
|
|
25525
25639
|
};
|
|
25526
25640
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
25527
25641
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25735,6 +25849,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
|
25735
25849
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25736
25850
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25737
25851
|
ids: Array<Scalars['ID']['input']>;
|
|
25852
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25738
25853
|
};
|
|
25739
25854
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseArgs = {
|
|
25740
25855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25746,6 +25861,7 @@ export declare type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
|
|
|
25746
25861
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25747
25862
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25748
25863
|
ids: Array<Scalars['ID']['input']>;
|
|
25864
|
+
sort?: InputMaybe<GraphStoreJsmProjectAssociatedServiceSortInput>;
|
|
25749
25865
|
};
|
|
25750
25866
|
export declare type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
25751
25867
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25861,11 +25977,13 @@ export declare type GraphStoreMediaAttachedToContentBatchArgs = {
|
|
|
25861
25977
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25862
25978
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25863
25979
|
ids: Array<Scalars['ID']['input']>;
|
|
25980
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25864
25981
|
};
|
|
25865
25982
|
export declare type GraphStoreMediaAttachedToContentInverseBatchArgs = {
|
|
25866
25983
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25867
25984
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25868
25985
|
ids: Array<Scalars['ID']['input']>;
|
|
25986
|
+
sort?: InputMaybe<GraphStoreMediaAttachedToContentSortInput>;
|
|
25869
25987
|
};
|
|
25870
25988
|
export declare type GraphStoreOnPremProjectHasIssueArgs = {
|
|
25871
25989
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26502,11 +26620,13 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityBatchArg
|
|
|
26502
26620
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26503
26621
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26504
26622
|
ids: Array<Scalars['ID']['input']>;
|
|
26623
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26505
26624
|
};
|
|
26506
26625
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseBatchArgs = {
|
|
26507
26626
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26508
26627
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26509
26628
|
ids: Array<Scalars['ID']['input']>;
|
|
26629
|
+
sort?: InputMaybe<GraphStoreSecurityContainerAssociatedToVulnerabilitySortInput>;
|
|
26510
26630
|
};
|
|
26511
26631
|
export declare type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseRelationshipArgs = {
|
|
26512
26632
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26832,6 +26952,7 @@ export declare type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
|
26832
26952
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26833
26953
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26834
26954
|
ids: Array<Scalars['ID']['input']>;
|
|
26955
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26835
26956
|
};
|
|
26836
26957
|
export declare type GraphStoreTestPerfhammerRelationshipInverseArgs = {
|
|
26837
26958
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26843,6 +26964,7 @@ export declare type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
|
|
|
26843
26964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26844
26965
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26845
26966
|
ids: Array<Scalars['ID']['input']>;
|
|
26967
|
+
sort?: InputMaybe<GraphStoreTestPerfhammerRelationshipSortInput>;
|
|
26846
26968
|
};
|
|
26847
26969
|
export declare type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
|
|
26848
26970
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26854,6 +26976,12 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
26854
26976
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26855
26977
|
id: Scalars['ID']['input'];
|
|
26856
26978
|
};
|
|
26979
|
+
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
26980
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26981
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26982
|
+
id: Scalars['ID']['input'];
|
|
26983
|
+
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
26984
|
+
};
|
|
26857
26985
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
26858
26986
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26859
26987
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -28161,6 +28289,7 @@ export declare type GraphStoreDateFilterInput = {
|
|
|
28161
28289
|
};
|
|
28162
28290
|
export declare type GraphStoreDeleteComponentImpactedByIncidentInput = {
|
|
28163
28291
|
relationships: Array<GraphStoreDeleteComponentImpactedByIncidentRelationshipInput>;
|
|
28292
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28164
28293
|
};
|
|
28165
28294
|
export declare type GraphStoreDeleteComponentImpactedByIncidentPayload = Payload & {
|
|
28166
28295
|
__typename?: 'GraphStoreDeleteComponentImpactedByIncidentPayload';
|
|
@@ -28173,6 +28302,7 @@ export declare type GraphStoreDeleteComponentImpactedByIncidentRelationshipInput
|
|
|
28173
28302
|
};
|
|
28174
28303
|
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalInput = {
|
|
28175
28304
|
relationships: Array<GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput>;
|
|
28305
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28176
28306
|
};
|
|
28177
28307
|
export declare type GraphStoreDeleteFocusAreaHasAtlasGoalPayload = Payload & {
|
|
28178
28308
|
__typename?: 'GraphStoreDeleteFocusAreaHasAtlasGoalPayload';
|
|
@@ -28185,6 +28315,7 @@ export declare type GraphStoreDeleteFocusAreaHasAtlasGoalRelationshipInput = {
|
|
|
28185
28315
|
};
|
|
28186
28316
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
28187
28317
|
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
28318
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28188
28319
|
};
|
|
28189
28320
|
export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
28190
28321
|
__typename?: 'GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
@@ -28197,6 +28328,7 @@ export declare type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRela
|
|
|
28197
28328
|
};
|
|
28198
28329
|
export declare type GraphStoreDeleteIncidentHasActionItemInput = {
|
|
28199
28330
|
relationships: Array<GraphStoreDeleteIncidentHasActionItemRelationshipInput>;
|
|
28331
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28200
28332
|
};
|
|
28201
28333
|
export declare type GraphStoreDeleteIncidentHasActionItemPayload = Payload & {
|
|
28202
28334
|
__typename?: 'GraphStoreDeleteIncidentHasActionItemPayload';
|
|
@@ -28209,6 +28341,7 @@ export declare type GraphStoreDeleteIncidentHasActionItemRelationshipInput = {
|
|
|
28209
28341
|
};
|
|
28210
28342
|
export declare type GraphStoreDeleteIncidentLinkedJswIssueInput = {
|
|
28211
28343
|
relationships: Array<GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput>;
|
|
28344
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28212
28345
|
};
|
|
28213
28346
|
export declare type GraphStoreDeleteIncidentLinkedJswIssuePayload = Payload & {
|
|
28214
28347
|
__typename?: 'GraphStoreDeleteIncidentLinkedJswIssuePayload';
|
|
@@ -28221,6 +28354,7 @@ export declare type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
|
|
|
28221
28354
|
};
|
|
28222
28355
|
export declare type GraphStoreDeleteIssueToWhiteboardInput = {
|
|
28223
28356
|
relationships: Array<GraphStoreDeleteIssueToWhiteboardRelationshipInput>;
|
|
28357
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28224
28358
|
};
|
|
28225
28359
|
export declare type GraphStoreDeleteIssueToWhiteboardPayload = Payload & {
|
|
28226
28360
|
__typename?: 'GraphStoreDeleteIssueToWhiteboardPayload';
|
|
@@ -28233,6 +28367,7 @@ export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
|
28233
28367
|
};
|
|
28234
28368
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
28235
28369
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
28370
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28236
28371
|
};
|
|
28237
28372
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentPayload = Payload & {
|
|
28238
28373
|
__typename?: 'GraphStoreDeleteJswProjectAssociatedComponentPayload';
|
|
@@ -28245,6 +28380,7 @@ export declare type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInp
|
|
|
28245
28380
|
};
|
|
28246
28381
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
28247
28382
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
28383
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28248
28384
|
};
|
|
28249
28385
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
28250
28386
|
__typename?: 'GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload';
|
|
@@ -28257,6 +28393,7 @@ export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInp
|
|
|
28257
28393
|
};
|
|
28258
28394
|
export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerInput = {
|
|
28259
28395
|
relationships: Array<GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
28396
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28260
28397
|
};
|
|
28261
28398
|
export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
28262
28399
|
__typename?: 'GraphStoreDeleteProjectAssociatedToSecurityContainerPayload';
|
|
@@ -28269,6 +28406,7 @@ export declare type GraphStoreDeleteProjectAssociatedToSecurityContainerRelation
|
|
|
28269
28406
|
};
|
|
28270
28407
|
export declare type GraphStoreDeleteProjectDisassociatedRepoInput = {
|
|
28271
28408
|
relationships: Array<GraphStoreDeleteProjectDisassociatedRepoRelationshipInput>;
|
|
28409
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28272
28410
|
};
|
|
28273
28411
|
export declare type GraphStoreDeleteProjectDisassociatedRepoPayload = Payload & {
|
|
28274
28412
|
__typename?: 'GraphStoreDeleteProjectDisassociatedRepoPayload';
|
|
@@ -28281,6 +28419,7 @@ export declare type GraphStoreDeleteProjectDisassociatedRepoRelationshipInput =
|
|
|
28281
28419
|
};
|
|
28282
28420
|
export declare type GraphStoreDeleteProjectDocumentationEntityInput = {
|
|
28283
28421
|
relationships: Array<GraphStoreDeleteProjectDocumentationEntityRelationshipInput>;
|
|
28422
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28284
28423
|
};
|
|
28285
28424
|
export declare type GraphStoreDeleteProjectDocumentationEntityPayload = Payload & {
|
|
28286
28425
|
__typename?: 'GraphStoreDeleteProjectDocumentationEntityPayload';
|
|
@@ -28293,6 +28432,7 @@ export declare type GraphStoreDeleteProjectDocumentationEntityRelationshipInput
|
|
|
28293
28432
|
};
|
|
28294
28433
|
export declare type GraphStoreDeleteProjectDocumentationPageInput = {
|
|
28295
28434
|
relationships: Array<GraphStoreDeleteProjectDocumentationPageRelationshipInput>;
|
|
28435
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28296
28436
|
};
|
|
28297
28437
|
export declare type GraphStoreDeleteProjectDocumentationPagePayload = Payload & {
|
|
28298
28438
|
__typename?: 'GraphStoreDeleteProjectDocumentationPagePayload';
|
|
@@ -28305,6 +28445,7 @@ export declare type GraphStoreDeleteProjectDocumentationPageRelationshipInput =
|
|
|
28305
28445
|
};
|
|
28306
28446
|
export declare type GraphStoreDeleteProjectDocumentationSpaceInput = {
|
|
28307
28447
|
relationships: Array<GraphStoreDeleteProjectDocumentationSpaceRelationshipInput>;
|
|
28448
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28308
28449
|
};
|
|
28309
28450
|
export declare type GraphStoreDeleteProjectDocumentationSpacePayload = Payload & {
|
|
28310
28451
|
__typename?: 'GraphStoreDeleteProjectDocumentationSpacePayload';
|
|
@@ -28317,6 +28458,7 @@ export declare type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput =
|
|
|
28317
28458
|
};
|
|
28318
28459
|
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectInput = {
|
|
28319
28460
|
relationships: Array<GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationshipInput>;
|
|
28461
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28320
28462
|
};
|
|
28321
28463
|
export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload = Payload & {
|
|
28322
28464
|
__typename?: 'GraphStoreDeleteProjectHasRelatedWorkWithProjectPayload';
|
|
@@ -28329,6 +28471,7 @@ export declare type GraphStoreDeleteProjectHasRelatedWorkWithProjectRelationship
|
|
|
28329
28471
|
};
|
|
28330
28472
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
28331
28473
|
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
28474
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28332
28475
|
};
|
|
28333
28476
|
export declare type GraphStoreDeleteProjectHasSharedVersionWithPayload = Payload & {
|
|
28334
28477
|
__typename?: 'GraphStoreDeleteProjectHasSharedVersionWithPayload';
|
|
@@ -28341,6 +28484,7 @@ export declare type GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput
|
|
|
28341
28484
|
};
|
|
28342
28485
|
export declare type GraphStoreDeleteProjectHasVersionInput = {
|
|
28343
28486
|
relationships: Array<GraphStoreDeleteProjectHasVersionRelationshipInput>;
|
|
28487
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28344
28488
|
};
|
|
28345
28489
|
export declare type GraphStoreDeleteProjectHasVersionPayload = Payload & {
|
|
28346
28490
|
__typename?: 'GraphStoreDeleteProjectHasVersionPayload';
|
|
@@ -28353,6 +28497,7 @@ export declare type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
|
28353
28497
|
};
|
|
28354
28498
|
export declare type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
28355
28499
|
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
28500
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28356
28501
|
};
|
|
28357
28502
|
export declare type GraphStoreDeleteSprintRetrospectivePagePayload = Payload & {
|
|
28358
28503
|
__typename?: 'GraphStoreDeleteSprintRetrospectivePagePayload';
|
|
@@ -28365,6 +28510,7 @@ export declare type GraphStoreDeleteSprintRetrospectivePageRelationshipInput = {
|
|
|
28365
28510
|
};
|
|
28366
28511
|
export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardInput = {
|
|
28367
28512
|
relationships: Array<GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
28513
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28368
28514
|
};
|
|
28369
28515
|
export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
28370
28516
|
__typename?: 'GraphStoreDeleteSprintRetrospectiveWhiteboardPayload';
|
|
@@ -28377,6 +28523,7 @@ export declare type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInp
|
|
|
28377
28523
|
};
|
|
28378
28524
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
28379
28525
|
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
28526
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28380
28527
|
};
|
|
28381
28528
|
export declare type GraphStoreDeleteTestPerfhammerRelationshipPayload = Payload & {
|
|
28382
28529
|
__typename?: 'GraphStoreDeleteTestPerfhammerRelationshipPayload';
|
|
@@ -28389,6 +28536,7 @@ export declare type GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput
|
|
|
28389
28536
|
};
|
|
28390
28537
|
export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput = {
|
|
28391
28538
|
relationships: Array<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelationshipInput>;
|
|
28539
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28392
28540
|
};
|
|
28393
28541
|
export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload = Payload & {
|
|
28394
28542
|
__typename?: 'GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload';
|
|
@@ -28401,6 +28549,7 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
28401
28549
|
};
|
|
28402
28550
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
28403
28551
|
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
28552
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28404
28553
|
};
|
|
28405
28554
|
export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
28406
28555
|
__typename?: 'GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload';
|
|
@@ -28413,6 +28562,7 @@ export declare type GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationship
|
|
|
28413
28562
|
};
|
|
28414
28563
|
export declare type GraphStoreDeleteVulnerabilityAssociatedIssueInput = {
|
|
28415
28564
|
relationships: Array<GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput>;
|
|
28565
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28416
28566
|
};
|
|
28417
28567
|
export declare type GraphStoreDeleteVulnerabilityAssociatedIssuePayload = Payload & {
|
|
28418
28568
|
__typename?: 'GraphStoreDeleteVulnerabilityAssociatedIssuePayload';
|
|
@@ -31880,9 +32030,53 @@ export declare type GraphStoreIssueAssociatedBuildSortInput = {
|
|
|
31880
32030
|
export declare type GraphStoreIssueAssociatedCommitSortInput = {
|
|
31881
32031
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31882
32032
|
};
|
|
32033
|
+
export declare type GraphStoreIssueAssociatedDeploymentAuthorFilterInput = {
|
|
32034
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
32035
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
32036
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>>>;
|
|
32037
|
+
};
|
|
31883
32038
|
export declare type GraphStoreIssueAssociatedDeploymentAuthorSortInput = {
|
|
31884
32039
|
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
31885
32040
|
};
|
|
32041
|
+
export declare type GraphStoreIssueAssociatedDeploymentConditionalFilterInput = {
|
|
32042
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
32043
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
32044
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
32045
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
32046
|
+
to_author?: InputMaybe<GraphStoreIssueAssociatedDeploymentAuthorFilterInput>;
|
|
32047
|
+
to_environmentType?: InputMaybe<GraphStoreIssueAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
32048
|
+
to_state?: InputMaybe<GraphStoreIssueAssociatedDeploymentDeploymentStateFilterInput>;
|
|
32049
|
+
};
|
|
32050
|
+
export declare enum GraphStoreIssueAssociatedDeploymentDeploymentState {
|
|
32051
|
+
Cancelled = "CANCELLED",
|
|
32052
|
+
Failed = "FAILED",
|
|
32053
|
+
InProgress = "IN_PROGRESS",
|
|
32054
|
+
NotSet = "NOT_SET",
|
|
32055
|
+
Pending = "PENDING",
|
|
32056
|
+
RolledBack = "ROLLED_BACK",
|
|
32057
|
+
Successful = "SUCCESSFUL",
|
|
32058
|
+
Unknown = "UNKNOWN"
|
|
32059
|
+
}
|
|
32060
|
+
export declare type GraphStoreIssueAssociatedDeploymentDeploymentStateFilterInput = {
|
|
32061
|
+
is?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentDeploymentState>>;
|
|
32062
|
+
isNot?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentDeploymentState>>;
|
|
32063
|
+
};
|
|
32064
|
+
export declare enum GraphStoreIssueAssociatedDeploymentEnvironmentType {
|
|
32065
|
+
Development = "DEVELOPMENT",
|
|
32066
|
+
NotSet = "NOT_SET",
|
|
32067
|
+
Production = "PRODUCTION",
|
|
32068
|
+
Staging = "STAGING",
|
|
32069
|
+
Testing = "TESTING",
|
|
32070
|
+
Unmapped = "UNMAPPED"
|
|
32071
|
+
}
|
|
32072
|
+
export declare type GraphStoreIssueAssociatedDeploymentEnvironmentTypeFilterInput = {
|
|
32073
|
+
is?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentEnvironmentType>>;
|
|
32074
|
+
isNot?: InputMaybe<Array<GraphStoreIssueAssociatedDeploymentEnvironmentType>>;
|
|
32075
|
+
};
|
|
32076
|
+
export declare type GraphStoreIssueAssociatedDeploymentFilterInput = {
|
|
32077
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentConditionalFilterInput>>>;
|
|
32078
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreIssueAssociatedDeploymentConditionalFilterInput>>>;
|
|
32079
|
+
};
|
|
31886
32080
|
export declare type GraphStoreIssueAssociatedDeploymentSortInput = {
|
|
31887
32081
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
31888
32082
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -35025,6 +35219,22 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
35025
35219
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
35026
35220
|
};
|
|
35027
35221
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
35222
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
35223
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
35224
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
35225
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
35226
|
+
pageInfo: PageInfo;
|
|
35227
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
35228
|
+
};
|
|
35229
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentEdge = {
|
|
35230
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsComponentEdge';
|
|
35231
|
+
createdAt: Scalars['DateTime']['output'];
|
|
35232
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35233
|
+
id: Scalars['ID']['output'];
|
|
35234
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
35235
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsComponentUnion>;
|
|
35236
|
+
};
|
|
35237
|
+
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
35028
35238
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
35029
35239
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
35030
35240
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -35659,6 +35869,12 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
35659
35869
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
35660
35870
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35661
35871
|
};
|
|
35872
|
+
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
35873
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35874
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
35875
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35876
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
35877
|
+
};
|
|
35662
35878
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
35663
35879
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
35664
35880
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36141,7 +36357,6 @@ export declare type HelpCenter = Node & {
|
|
|
36141
36357
|
__typename?: 'HelpCenter';
|
|
36142
36358
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
36143
36359
|
canCreateHelpDesks?: Maybe<Scalars['Boolean']['output']>;
|
|
36144
|
-
conversation?: Maybe<HelpCenterConversation>;
|
|
36145
36360
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
36146
36361
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
36147
36362
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
@@ -36249,22 +36464,6 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
36249
36464
|
__typename?: 'HelpCenterContentGapIndicatorsWithMetaData';
|
|
36250
36465
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
36251
36466
|
};
|
|
36252
|
-
export declare type HelpCenterConversation = {
|
|
36253
|
-
__typename?: 'HelpCenterConversation';
|
|
36254
|
-
compositeFailureMessageAdf?: Maybe<Scalars['String']['output']>;
|
|
36255
|
-
fallbackMessage?: Maybe<Scalars['String']['output']>;
|
|
36256
|
-
};
|
|
36257
|
-
export declare type HelpCenterConversationCompositeFailureMessageAdfArgs = {
|
|
36258
|
-
type: HelpCenterConversationFailureMessageType;
|
|
36259
|
-
};
|
|
36260
|
-
export declare enum HelpCenterConversationFailureMessageType {
|
|
36261
|
-
ConversationFailureMessage = "CONVERSATION_FAILURE_MESSAGE",
|
|
36262
|
-
ConversationUnhelpfulMessage = "CONVERSATION_UNHELPFUL_MESSAGE",
|
|
36263
|
-
CustomMessage = "CUSTOM_MESSAGE"
|
|
36264
|
-
}
|
|
36265
|
-
export declare type HelpCenterConversationInput = {
|
|
36266
|
-
fallbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
36267
|
-
};
|
|
36268
36467
|
export declare type HelpCenterCreateInput = {
|
|
36269
36468
|
name: HelpCenterNameInput;
|
|
36270
36469
|
slug: Scalars['String']['input'];
|
|
@@ -36523,10 +36722,15 @@ export declare enum HelpCenterPortalsType {
|
|
|
36523
36722
|
Hidden = "HIDDEN",
|
|
36524
36723
|
Visible = "VISIBLE"
|
|
36525
36724
|
}
|
|
36725
|
+
export declare enum HelpCenterProjectMappingOperationType {
|
|
36726
|
+
MapProjects = "MAP_PROJECTS",
|
|
36727
|
+
UnmapProjects = "UNMAP_PROJECTS"
|
|
36728
|
+
}
|
|
36526
36729
|
export declare type HelpCenterProjectMappingUpdateInput = {
|
|
36527
36730
|
helpCenterAri: Scalars['String']['input'];
|
|
36528
|
-
|
|
36529
|
-
|
|
36731
|
+
operationType?: InputMaybe<HelpCenterProjectMappingOperationType>;
|
|
36732
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
36733
|
+
syncNewProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36530
36734
|
};
|
|
36531
36735
|
export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
36532
36736
|
__typename?: 'HelpCenterProjectMappingUpdatePayload';
|
|
@@ -36698,7 +36902,6 @@ export declare enum HelpCenterType {
|
|
|
36698
36902
|
Unified = "UNIFIED"
|
|
36699
36903
|
}
|
|
36700
36904
|
export declare type HelpCenterUpdateInput = {
|
|
36701
|
-
conversation?: InputMaybe<HelpCenterConversationInput>;
|
|
36702
36905
|
helpCenterAri: Scalars['String']['input'];
|
|
36703
36906
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
36704
36907
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
@@ -37847,17 +38050,12 @@ export declare type InlineColumnEditConfig = {
|
|
|
37847
38050
|
export declare type Insights = {
|
|
37848
38051
|
__typename?: 'Insights';
|
|
37849
38052
|
githubOnboardingDetails: InsightsGithubOnboardingDetails;
|
|
37850
|
-
nextBestTasksByContextAri: Array<InsightsNextBestTask>;
|
|
37851
38053
|
nextBestTasksByContextAriPaginated: InsightsNextBestTaskConnection;
|
|
37852
38054
|
};
|
|
37853
38055
|
export declare type InsightsGithubOnboardingDetailsArgs = {
|
|
37854
38056
|
cloudId: Scalars['ID']['input'];
|
|
37855
38057
|
projectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
37856
38058
|
};
|
|
37857
|
-
export declare type InsightsNextBestTasksByContextAriArgs = {
|
|
37858
|
-
contextAri: InsightsContextAri;
|
|
37859
|
-
statusId?: InputMaybe<Scalars['String']['input']>;
|
|
37860
|
-
};
|
|
37861
38059
|
export declare type InsightsNextBestTasksByContextAriPaginatedArgs = {
|
|
37862
38060
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37863
38061
|
contextAri: InsightsContextAri;
|
|
@@ -37883,13 +38081,6 @@ export declare type InsightsBlockedIssue = {
|
|
|
37883
38081
|
issueKey: Scalars['String']['output'];
|
|
37884
38082
|
title: Scalars['String']['output'];
|
|
37885
38083
|
};
|
|
37886
|
-
export declare type InsightsBlockingIssueDetails = {
|
|
37887
|
-
__typename?: 'InsightsBlockingIssueDetails';
|
|
37888
|
-
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
37889
|
-
issueIconUrl: Scalars['String']['output'];
|
|
37890
|
-
issueId: Scalars['String']['output'];
|
|
37891
|
-
issueKey: Scalars['String']['output'];
|
|
37892
|
-
};
|
|
37893
38084
|
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
37894
38085
|
__typename?: 'InsightsBlockingIssueTask';
|
|
37895
38086
|
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
@@ -37900,15 +38091,6 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
|
37900
38091
|
title: Scalars['String']['output'];
|
|
37901
38092
|
url: Scalars['String']['output'];
|
|
37902
38093
|
};
|
|
37903
|
-
export declare type InsightsBuildDetails = {
|
|
37904
|
-
__typename?: 'InsightsBuildDetails';
|
|
37905
|
-
buildNumber: Scalars['Int']['output'];
|
|
37906
|
-
issueId: Scalars['String']['output'];
|
|
37907
|
-
issueKey: Scalars['String']['output'];
|
|
37908
|
-
issueName: Scalars['String']['output'];
|
|
37909
|
-
lastUpdated: Scalars['String']['output'];
|
|
37910
|
-
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
37911
|
-
};
|
|
37912
38094
|
export declare type InsightsBuildTask = InsightsNextBestTaskCommon & {
|
|
37913
38095
|
__typename?: 'InsightsBuildTask';
|
|
37914
38096
|
buildNumber: Scalars['Int']['output'];
|
|
@@ -37936,17 +38118,6 @@ export declare type InsightsCriticalVulnerabilityTask = InsightsNextBestTaskComm
|
|
|
37936
38118
|
title: Scalars['String']['output'];
|
|
37937
38119
|
url: Scalars['String']['output'];
|
|
37938
38120
|
};
|
|
37939
|
-
export declare type InsightsDeploymentDetails = {
|
|
37940
|
-
__typename?: 'InsightsDeploymentDetails';
|
|
37941
|
-
environmentNames: Array<Scalars['String']['output']>;
|
|
37942
|
-
environmentType: InsightsEnvironmentType;
|
|
37943
|
-
issueId: Scalars['String']['output'];
|
|
37944
|
-
issueKey: Scalars['String']['output'];
|
|
37945
|
-
issueName: Scalars['String']['output'];
|
|
37946
|
-
lastUpdated: Scalars['String']['output'];
|
|
37947
|
-
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
37948
|
-
pipelineName: Scalars['String']['output'];
|
|
37949
|
-
};
|
|
37950
38121
|
export declare type InsightsDeploymentTask = InsightsNextBestTaskCommon & {
|
|
37951
38122
|
__typename?: 'InsightsDeploymentTask';
|
|
37952
38123
|
environmentNames: Array<Scalars['String']['output']>;
|
|
@@ -38020,14 +38191,6 @@ export declare type InsightsMutationErrorExtension = MutationErrorExtension & {
|
|
|
38020
38191
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
38021
38192
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
38022
38193
|
};
|
|
38023
|
-
export declare type InsightsNextBestTask = {
|
|
38024
|
-
__typename?: 'InsightsNextBestTask';
|
|
38025
|
-
details: InsightsNextBestTaskDetails;
|
|
38026
|
-
id: Scalars['String']['output'];
|
|
38027
|
-
task: InsightsTaskType;
|
|
38028
|
-
title: Scalars['String']['output'];
|
|
38029
|
-
url: Scalars['String']['output'];
|
|
38030
|
-
};
|
|
38031
38194
|
export declare enum InsightsNextBestTaskAction {
|
|
38032
38195
|
Remove = "REMOVE",
|
|
38033
38196
|
Snooze = "SNOOZE"
|
|
@@ -38044,24 +38207,11 @@ export declare type InsightsNextBestTaskConnection = {
|
|
|
38044
38207
|
pageInfo: PageInfo;
|
|
38045
38208
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38046
38209
|
};
|
|
38047
|
-
export declare type InsightsNextBestTaskDetails = InsightsBlockingIssueDetails | InsightsBuildDetails | InsightsDeploymentDetails | InsightsPullRequestNeedsWorkDetails | InsightsPullRequestReviewDetails | InsightsVulnDetails;
|
|
38048
38210
|
export declare type InsightsNextBestTaskEdge = {
|
|
38049
38211
|
__typename?: 'InsightsNextBestTaskEdge';
|
|
38050
38212
|
cursor: Scalars['String']['output'];
|
|
38051
38213
|
node?: Maybe<InsightsNextBestTaskCommon>;
|
|
38052
38214
|
};
|
|
38053
|
-
export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
38054
|
-
__typename?: 'InsightsPullRequestNeedsWorkDetails';
|
|
38055
|
-
commentCount: Scalars['Int']['output'];
|
|
38056
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
38057
|
-
lastUpdated: Scalars['String']['output'];
|
|
38058
|
-
needsWorkCount: Scalars['Int']['output'];
|
|
38059
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
38060
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
38061
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
38062
|
-
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
38063
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
38064
|
-
};
|
|
38065
38215
|
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
38066
38216
|
__typename?: 'InsightsPullRequestNeedsWorkTask';
|
|
38067
38217
|
commentCount: Scalars['Int']['output'];
|
|
@@ -38077,18 +38227,6 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
38077
38227
|
title: Scalars['String']['output'];
|
|
38078
38228
|
url: Scalars['String']['output'];
|
|
38079
38229
|
};
|
|
38080
|
-
export declare type InsightsPullRequestReviewDetails = {
|
|
38081
|
-
__typename?: 'InsightsPullRequestReviewDetails';
|
|
38082
|
-
approvalsCount: Scalars['Int']['output'];
|
|
38083
|
-
author?: Maybe<InsightsUserDetail>;
|
|
38084
|
-
commentCount: Scalars['Int']['output'];
|
|
38085
|
-
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
38086
|
-
lastUpdated: Scalars['String']['output'];
|
|
38087
|
-
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
38088
|
-
providerName?: Maybe<Scalars['String']['output']>;
|
|
38089
|
-
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
38090
|
-
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
38091
|
-
};
|
|
38092
38230
|
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
38093
38231
|
__typename?: 'InsightsPullRequestReviewTask';
|
|
38094
38232
|
approvalsCount: Scalars['Int']['output'];
|
|
@@ -38134,15 +38272,6 @@ export declare type InsightsUserDetail = {
|
|
|
38134
38272
|
id: Scalars['ID']['output'];
|
|
38135
38273
|
name: Scalars['String']['output'];
|
|
38136
38274
|
};
|
|
38137
|
-
export declare type InsightsVulnDetails = {
|
|
38138
|
-
__typename?: 'InsightsVulnDetails';
|
|
38139
|
-
id: Scalars['ID']['output'];
|
|
38140
|
-
introducedDate: Scalars['String']['output'];
|
|
38141
|
-
issueId: Scalars['String']['output'];
|
|
38142
|
-
issueKey: Scalars['String']['output'];
|
|
38143
|
-
securityContainerName: Scalars['String']['output'];
|
|
38144
|
-
status: InsightsVulnerabilityStatus;
|
|
38145
|
-
};
|
|
38146
38275
|
export declare enum InsightsVulnerabilityStatus {
|
|
38147
38276
|
Closed = "CLOSED",
|
|
38148
38277
|
Ignored = "IGNORED",
|
|
@@ -38746,9 +38875,14 @@ export declare type JiraAdvancedRoadmapsNavigation = {
|
|
|
38746
38875
|
hasEditPermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
38747
38876
|
isAdvancedRoadmapsTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
38748
38877
|
};
|
|
38749
|
-
export declare type JiraAffectedService = {
|
|
38878
|
+
export declare type JiraAffectedService = JiraSelectableValue & {
|
|
38750
38879
|
__typename?: 'JiraAffectedService';
|
|
38880
|
+
id: Scalars['ID']['output'];
|
|
38751
38881
|
name?: Maybe<Scalars['String']['output']>;
|
|
38882
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
38883
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
38884
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
38885
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
38752
38886
|
serviceId: Scalars['ID']['output'];
|
|
38753
38887
|
};
|
|
38754
38888
|
export declare type JiraAffectedServiceConnection = {
|
|
@@ -38763,7 +38897,7 @@ export declare type JiraAffectedServiceEdge = {
|
|
|
38763
38897
|
cursor: Scalars['String']['output'];
|
|
38764
38898
|
node?: Maybe<JiraAffectedService>;
|
|
38765
38899
|
};
|
|
38766
|
-
export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38900
|
+
export declare type JiraAffectedServicesField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38767
38901
|
__typename?: 'JiraAffectedServicesField';
|
|
38768
38902
|
affectedServices?: Maybe<JiraAffectedServiceConnection>;
|
|
38769
38903
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38775,8 +38909,10 @@ export declare type JiraAffectedServicesField = JiraIssueField & JiraIssueFieldC
|
|
|
38775
38909
|
issue?: Maybe<JiraIssue>;
|
|
38776
38910
|
name: Scalars['String']['output'];
|
|
38777
38911
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
38912
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
38778
38913
|
selectedAffectedServices?: Maybe<Array<Maybe<JiraAffectedService>>>;
|
|
38779
38914
|
selectedAffectedServicesConnection?: Maybe<JiraAffectedServiceConnection>;
|
|
38915
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
38780
38916
|
type: Scalars['String']['output'];
|
|
38781
38917
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38782
38918
|
};
|
|
@@ -38788,12 +38924,27 @@ export declare type JiraAffectedServicesFieldAffectedServicesArgs = {
|
|
|
38788
38924
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38789
38925
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38790
38926
|
};
|
|
38927
|
+
export declare type JiraAffectedServicesFieldSelectableValueOptionsArgs = {
|
|
38928
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38929
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38930
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
38931
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38932
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38933
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38934
|
+
};
|
|
38791
38935
|
export declare type JiraAffectedServicesFieldSelectedAffectedServicesConnectionArgs = {
|
|
38792
38936
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38793
38937
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38794
38938
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38795
38939
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38796
38940
|
};
|
|
38941
|
+
export declare type JiraAffectedServicesFieldSelectedValuesArgs = {
|
|
38942
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38943
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38944
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38945
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38946
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38947
|
+
};
|
|
38797
38948
|
export declare type JiraAffectedServicesFieldInput = {
|
|
38798
38949
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
38799
38950
|
fieldId: Scalars['ID']['input'];
|
|
@@ -39580,6 +39731,7 @@ export declare enum JiraBoardLocationType {
|
|
|
39580
39731
|
Project = "PROJECT",
|
|
39581
39732
|
User = "USER"
|
|
39582
39733
|
}
|
|
39734
|
+
export declare type JiraBoardResult = JiraBoard | QueryError;
|
|
39583
39735
|
export declare enum JiraBoardType {
|
|
39584
39736
|
Kanban = "KANBAN",
|
|
39585
39737
|
Scrum = "SCRUM"
|
|
@@ -40869,7 +41021,8 @@ export declare type JiraCreateBoardPayload = Payload & {
|
|
|
40869
41021
|
success: Scalars['Boolean']['output'];
|
|
40870
41022
|
};
|
|
40871
41023
|
export declare type JiraCreateBoardSource = {
|
|
40872
|
-
fieldInput
|
|
41024
|
+
fieldInput?: InputMaybe<JiraCreateBoardFieldInput>;
|
|
41025
|
+
savedFilterId?: InputMaybe<Scalars['Long']['input']>;
|
|
40873
41026
|
};
|
|
40874
41027
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
40875
41028
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
@@ -40946,6 +41099,7 @@ export declare type JiraCreateReleaseNoteConfluencePagePayload = Payload & {
|
|
|
40946
41099
|
errors?: Maybe<Array<MutationError>>;
|
|
40947
41100
|
relatedWorkV2Edge?: Maybe<JiraVersionRelatedWorkV2Edge>;
|
|
40948
41101
|
releaseNotePageEditUrl?: Maybe<Scalars['URL']['output']>;
|
|
41102
|
+
releaseNotePageSubType?: Maybe<Scalars['String']['output']>;
|
|
40949
41103
|
releaseNotePageViewUrl?: Maybe<Scalars['URL']['output']>;
|
|
40950
41104
|
success: Scalars['Boolean']['output'];
|
|
40951
41105
|
version?: Maybe<JiraVersion>;
|
|
@@ -41205,6 +41359,17 @@ export declare type JiraDefaultGrantTypeValue = Node & {
|
|
|
41205
41359
|
id: Scalars['ID']['output'];
|
|
41206
41360
|
name: Scalars['String']['output'];
|
|
41207
41361
|
};
|
|
41362
|
+
export declare type JiraDefaultUnsplashImagesInput = {
|
|
41363
|
+
cloudId: Scalars['ID']['input'];
|
|
41364
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
41365
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
41366
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
41367
|
+
};
|
|
41368
|
+
export declare type JiraDefaultUnsplashImagesPage = {
|
|
41369
|
+
__typename?: 'JiraDefaultUnsplashImagesPage';
|
|
41370
|
+
results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
|
|
41371
|
+
};
|
|
41372
|
+
export declare type JiraDefaultUnsplashImagesPageResult = JiraDefaultUnsplashImagesPage | QueryError;
|
|
41208
41373
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
41209
41374
|
cloudId: Scalars['ID']['input'];
|
|
41210
41375
|
customBackgroundId: Scalars['ID']['input'];
|
|
@@ -43714,6 +43879,11 @@ export declare type JiraIssueSearchFieldSetsFilter = {
|
|
|
43714
43879
|
fieldSetSelectedState?: InputMaybe<JiraIssueSearchFieldSetSelectedState>;
|
|
43715
43880
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
43716
43881
|
};
|
|
43882
|
+
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
43883
|
+
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
43884
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43885
|
+
success: Scalars['Boolean']['output'];
|
|
43886
|
+
};
|
|
43717
43887
|
export declare type JiraIssueSearchInput = {
|
|
43718
43888
|
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
43719
43889
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43752,6 +43922,7 @@ export declare type JiraIssueSearchView = Node & {
|
|
|
43752
43922
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
43753
43923
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
43754
43924
|
id: Scalars['ID']['output'];
|
|
43925
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
43755
43926
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
43756
43927
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
43757
43928
|
};
|
|
@@ -43821,6 +43992,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
43821
43992
|
JiraResolutionField?: InputMaybe<Array<JiraUpdateResolutionFieldInput>>;
|
|
43822
43993
|
JiraRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
43823
43994
|
JiraSecurityLevelField?: InputMaybe<Array<JiraUpdateSecurityLevelFieldInput>>;
|
|
43995
|
+
JiraServiceManagementOrganizationField?: InputMaybe<Array<JiraServiceManagementUpdateOrganizationFieldInput>>;
|
|
43824
43996
|
JiraSingleGroupPickerField?: InputMaybe<Array<JiraUpdateSingleGroupPickerFieldInput>>;
|
|
43825
43997
|
JiraSingleLineTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
43826
43998
|
JiraSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -44196,6 +44368,11 @@ export declare type JiraJqlFieldValueEdge = {
|
|
|
44196
44368
|
cursor: Scalars['String']['output'];
|
|
44197
44369
|
node?: Maybe<JiraJqlFieldValue>;
|
|
44198
44370
|
};
|
|
44371
|
+
export declare type JiraJqlFieldWithAliases = {
|
|
44372
|
+
__typename?: 'JiraJqlFieldWithAliases';
|
|
44373
|
+
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
44374
|
+
jqlTerm: Scalars['ID']['output'];
|
|
44375
|
+
};
|
|
44199
44376
|
export declare type JiraJqlFunction = {
|
|
44200
44377
|
__typename?: 'JiraJqlFunction';
|
|
44201
44378
|
dataTypes: Array<Scalars['String']['output']>;
|
|
@@ -45075,6 +45252,7 @@ export declare type JiraMutation = {
|
|
|
45075
45252
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
45076
45253
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
45077
45254
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
45255
|
+
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
45078
45256
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
45079
45257
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
45080
45258
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -45096,6 +45274,7 @@ export declare type JiraMutation = {
|
|
|
45096
45274
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
45097
45275
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
45098
45276
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
45277
|
+
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
45099
45278
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
45100
45279
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
45101
45280
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
@@ -45106,6 +45285,7 @@ export declare type JiraMutation = {
|
|
|
45106
45285
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
45107
45286
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
45108
45287
|
updateJiraViewConfiguration?: Maybe<JiraUpdateViewConfigPayload>;
|
|
45288
|
+
updateJsmOrganizationField?: Maybe<JiraServiceManagementOrganizationFieldPayload>;
|
|
45109
45289
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
45110
45290
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
45111
45291
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -45403,6 +45583,9 @@ export declare type JiraMutationSetDefaultNavigationItemArgs = {
|
|
|
45403
45583
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
45404
45584
|
input: JiraSetIsFavouriteInput;
|
|
45405
45585
|
};
|
|
45586
|
+
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
45587
|
+
id: Scalars['ID']['input'];
|
|
45588
|
+
};
|
|
45406
45589
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
45407
45590
|
cloudId: Scalars['ID']['input'];
|
|
45408
45591
|
id: Scalars['ID']['input'];
|
|
@@ -45471,6 +45654,10 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
45471
45654
|
cloudId: Scalars['ID']['input'];
|
|
45472
45655
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
45473
45656
|
};
|
|
45657
|
+
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
45658
|
+
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
45659
|
+
viewId: Scalars['ID']['input'];
|
|
45660
|
+
};
|
|
45474
45661
|
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
45475
45662
|
input: JiraUpdateIssueTypeFieldInput;
|
|
45476
45663
|
};
|
|
@@ -45501,6 +45688,9 @@ export declare type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
|
45501
45688
|
export declare type JiraMutationUpdateJiraViewConfigurationArgs = {
|
|
45502
45689
|
input?: InputMaybe<JiraUpdateViewConfigInput>;
|
|
45503
45690
|
};
|
|
45691
|
+
export declare type JiraMutationUpdateJsmOrganizationFieldArgs = {
|
|
45692
|
+
input: JiraServiceManagementUpdateOrganizationFieldInput;
|
|
45693
|
+
};
|
|
45504
45694
|
export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
45505
45695
|
input: JiraWorkManagementUpdateFilterInput;
|
|
45506
45696
|
};
|
|
@@ -46598,6 +46788,7 @@ export declare type JiraProject = Node & {
|
|
|
46598
46788
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
46599
46789
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
46600
46790
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
46791
|
+
mostRecentlyViewedBoard?: Maybe<JiraBoardResult>;
|
|
46601
46792
|
name: Scalars['String']['output'];
|
|
46602
46793
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
46603
46794
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -47327,6 +47518,7 @@ export declare type JiraQuery = {
|
|
|
47327
47518
|
childIssuesLimit?: Maybe<Scalars['Long']['output']>;
|
|
47328
47519
|
containerNavigation?: Maybe<JiraContainerNavigationResult>;
|
|
47329
47520
|
customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
|
|
47521
|
+
defaultUnsplashImages?: Maybe<JiraDefaultUnsplashImagesPageResult>;
|
|
47330
47522
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
47331
47523
|
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
47332
47524
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
@@ -47334,7 +47526,6 @@ export declare type JiraQuery = {
|
|
|
47334
47526
|
epicLinkFieldKey?: Maybe<Scalars['String']['output']>;
|
|
47335
47527
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
47336
47528
|
favourites?: Maybe<JiraFavouriteConnection>;
|
|
47337
|
-
fetchBoardCreationFilters?: Maybe<JiraIssueFieldConnection>;
|
|
47338
47529
|
fieldSetsById?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
47339
47530
|
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
47340
47531
|
filter?: Maybe<JiraFilter>;
|
|
@@ -47388,6 +47579,7 @@ export declare type JiraQuery = {
|
|
|
47388
47579
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
47389
47580
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
47390
47581
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
47582
|
+
jiraBoard?: Maybe<JiraBoardResult>;
|
|
47391
47583
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
47392
47584
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
47393
47585
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
@@ -47441,6 +47633,7 @@ export declare type JiraQuery = {
|
|
|
47441
47633
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
47442
47634
|
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
47443
47635
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
47636
|
+
rankField?: Maybe<JiraJqlFieldWithAliases>;
|
|
47444
47637
|
recentItems?: Maybe<JiraSearchableEntityConnection>;
|
|
47445
47638
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
47446
47639
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
@@ -47595,6 +47788,9 @@ export declare type JiraQueryCustomBackgroundsArgs = {
|
|
|
47595
47788
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47596
47789
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47597
47790
|
};
|
|
47791
|
+
export declare type JiraQueryDefaultUnsplashImagesArgs = {
|
|
47792
|
+
input: JiraDefaultUnsplashImagesInput;
|
|
47793
|
+
};
|
|
47598
47794
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
47599
47795
|
projectId: Scalars['ID']['input'];
|
|
47600
47796
|
};
|
|
@@ -47624,14 +47820,6 @@ export declare type JiraQueryFavouritesArgs = {
|
|
|
47624
47820
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47625
47821
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47626
47822
|
};
|
|
47627
|
-
export declare type JiraQueryFetchBoardCreationFiltersArgs = {
|
|
47628
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
47629
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
47630
|
-
cloudId: Scalars['ID']['input'];
|
|
47631
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
47632
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47633
|
-
projectId: Scalars['String']['input'];
|
|
47634
|
-
};
|
|
47635
47823
|
export declare type JiraQueryFieldSetsByIdArgs = {
|
|
47636
47824
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
47637
47825
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47884,6 +48072,9 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
47884
48072
|
cloudId: Scalars['ID']['input'];
|
|
47885
48073
|
keys: Array<Scalars['String']['input']>;
|
|
47886
48074
|
};
|
|
48075
|
+
export declare type JiraQueryJiraBoardArgs = {
|
|
48076
|
+
id: Scalars['ID']['input'];
|
|
48077
|
+
};
|
|
47887
48078
|
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
47888
48079
|
issueIds: Array<Scalars['ID']['input']>;
|
|
47889
48080
|
transitionId: Scalars['Int']['input'];
|
|
@@ -48142,6 +48333,9 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
48142
48333
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
48143
48334
|
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
48144
48335
|
};
|
|
48336
|
+
export declare type JiraQueryRankFieldArgs = {
|
|
48337
|
+
cloudId: Scalars['ID']['input'];
|
|
48338
|
+
};
|
|
48145
48339
|
export declare type JiraQueryRecentItemsArgs = {
|
|
48146
48340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48147
48341
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48197,7 +48391,7 @@ export declare type JiraQuerySavedFiltersArgs = {
|
|
|
48197
48391
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
48198
48392
|
cloudId: Scalars['ID']['input'];
|
|
48199
48393
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48200
|
-
keyword
|
|
48394
|
+
keyword?: InputMaybe<Scalars['String']['input']>;
|
|
48201
48395
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
48202
48396
|
};
|
|
48203
48397
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
@@ -49651,6 +49845,16 @@ export declare type JiraServiceManagementOrganizationFieldSelectedValuesArgs = {
|
|
|
49651
49845
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49652
49846
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
49653
49847
|
};
|
|
49848
|
+
export declare type JiraServiceManagementOrganizationFieldOperationInput = {
|
|
49849
|
+
ids: Array<Scalars['ID']['input']>;
|
|
49850
|
+
operation: JiraMultiValueFieldOperations;
|
|
49851
|
+
};
|
|
49852
|
+
export declare type JiraServiceManagementOrganizationFieldPayload = Payload & {
|
|
49853
|
+
__typename?: 'JiraServiceManagementOrganizationFieldPayload';
|
|
49854
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49855
|
+
field?: Maybe<JiraServiceManagementOrganizationField>;
|
|
49856
|
+
success: Scalars['Boolean']['output'];
|
|
49857
|
+
};
|
|
49654
49858
|
export declare type JiraServiceManagementPeopleField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
49655
49859
|
__typename?: 'JiraServiceManagementPeopleField';
|
|
49656
49860
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -49970,6 +50174,10 @@ export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
|
|
|
49970
50174
|
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
49971
50175
|
operation: JiraSingleValueFieldOperations;
|
|
49972
50176
|
};
|
|
50177
|
+
export declare type JiraServiceManagementUpdateOrganizationFieldInput = {
|
|
50178
|
+
id: Scalars['ID']['input'];
|
|
50179
|
+
operations: Array<JiraServiceManagementOrganizationFieldOperationInput>;
|
|
50180
|
+
};
|
|
49973
50181
|
export declare type JiraServiceManagementUpdateSentimentFieldInput = {
|
|
49974
50182
|
id: Scalars['ID']['input'];
|
|
49975
50183
|
operation?: InputMaybe<JiraServiceManagementUpdateSentimentOperationInput>;
|
|
@@ -50053,6 +50261,12 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
50053
50261
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
50054
50262
|
success: Scalars['Boolean']['output'];
|
|
50055
50263
|
};
|
|
50264
|
+
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
50265
|
+
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
50266
|
+
board?: Maybe<JiraBoard>;
|
|
50267
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50268
|
+
success: Scalars['Boolean']['output'];
|
|
50269
|
+
};
|
|
50056
50270
|
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
50057
50271
|
deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
|
|
50058
50272
|
projectId: Scalars['ID']['input'];
|
|
@@ -50926,6 +51140,8 @@ export declare type JiraTeamInput = {
|
|
|
50926
51140
|
export declare type JiraTeamView = {
|
|
50927
51141
|
__typename?: 'JiraTeamView';
|
|
50928
51142
|
fullTeam?: Maybe<TeamV2>;
|
|
51143
|
+
jiraIncludesYou?: Maybe<Scalars['Boolean']['output']>;
|
|
51144
|
+
jiraMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
50929
51145
|
jiraSuppliedAvatar?: Maybe<JiraAvatar>;
|
|
50930
51146
|
jiraSuppliedId: Scalars['ID']['output'];
|
|
50931
51147
|
jiraSuppliedName?: Maybe<Scalars['String']['output']>;
|
|
@@ -51085,14 +51301,17 @@ export declare type JiraUiModification = {
|
|
|
51085
51301
|
id: Scalars['ID']['output'];
|
|
51086
51302
|
};
|
|
51087
51303
|
export declare type JiraUiModificationsContextInput = {
|
|
51088
|
-
issueTypeId
|
|
51089
|
-
|
|
51304
|
+
issueTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51305
|
+
portalId?: InputMaybe<Scalars['ID']['input']>;
|
|
51306
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
51307
|
+
requestTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
51090
51308
|
viewType: JiraUiModificationsViewType;
|
|
51091
51309
|
};
|
|
51092
51310
|
export declare enum JiraUiModificationsViewType {
|
|
51093
51311
|
Gic = "GIC",
|
|
51094
51312
|
IssueTransition = "IssueTransition",
|
|
51095
|
-
IssueView = "IssueView"
|
|
51313
|
+
IssueView = "IssueView",
|
|
51314
|
+
JsmRequestCreate = "JSMRequestCreate"
|
|
51096
51315
|
}
|
|
51097
51316
|
export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
|
|
51098
51317
|
incidentId: Scalars['ID']['input'];
|
|
@@ -51654,7 +51873,6 @@ export declare type JiraUserPreferences = {
|
|
|
51654
51873
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
51655
51874
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
51656
51875
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
51657
|
-
issueViewPinnedFieldsWithDefault?: Maybe<Scalars['String']['output']>;
|
|
51658
51876
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
51659
51877
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
51660
51878
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
@@ -51666,9 +51884,6 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
51666
51884
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
51667
51885
|
projectKey: Scalars['String']['input'];
|
|
51668
51886
|
};
|
|
51669
|
-
export declare type JiraUserPreferencesIssueViewPinnedFieldsWithDefaultArgs = {
|
|
51670
|
-
projectKey: Scalars['String']['input'];
|
|
51671
|
-
};
|
|
51672
51887
|
export declare type JiraUserPreferencesMutation = {
|
|
51673
51888
|
__typename?: 'JiraUserPreferencesMutation';
|
|
51674
51889
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
@@ -53591,6 +53806,49 @@ export declare type KnowledgeBaseSources = {
|
|
|
53591
53806
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
53592
53807
|
totalCount: Scalars['Int']['output'];
|
|
53593
53808
|
};
|
|
53809
|
+
export declare type KnowledgeBaseSpacePermission = {
|
|
53810
|
+
__typename?: 'KnowledgeBaseSpacePermission';
|
|
53811
|
+
editPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53812
|
+
viewPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53813
|
+
};
|
|
53814
|
+
export declare type KnowledgeBaseSpacePermissionBulkQueryApi = {
|
|
53815
|
+
__typename?: 'KnowledgeBaseSpacePermissionBulkQueryApi';
|
|
53816
|
+
knowledgeBaseSpacePermission_bulkQuery: KnowledgeBaseSpacePermissionBulkResponse;
|
|
53817
|
+
};
|
|
53818
|
+
export declare type KnowledgeBaseSpacePermissionBulkQueryApiKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
53819
|
+
input: KnowledgeBaseSpacePermissionInput;
|
|
53820
|
+
};
|
|
53821
|
+
export declare type KnowledgeBaseSpacePermissionBulkResponse = KnowledgeBaseSpacePermissions | QueryError;
|
|
53822
|
+
export declare type KnowledgeBaseSpacePermissionDetail = {
|
|
53823
|
+
__typename?: 'KnowledgeBaseSpacePermissionDetail';
|
|
53824
|
+
currentPermission: KnowledgeBaseSpacePermissionType;
|
|
53825
|
+
invalidPermissions: Array<Maybe<KnowledgeBaseSpacePermissionType>>;
|
|
53826
|
+
validPermissions: Array<KnowledgeBaseSpacePermissionType>;
|
|
53827
|
+
};
|
|
53828
|
+
export declare type KnowledgeBaseSpacePermissionInput = {
|
|
53829
|
+
spaceAris: Array<Scalars['String']['input']>;
|
|
53830
|
+
};
|
|
53831
|
+
export declare type KnowledgeBaseSpacePermissionMutationApi = {
|
|
53832
|
+
__typename?: 'KnowledgeBaseSpacePermissionMutationApi';
|
|
53833
|
+
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionUpdateResponse;
|
|
53834
|
+
};
|
|
53835
|
+
export declare type KnowledgeBaseSpacePermissionMutationApiKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
53836
|
+
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
53837
|
+
};
|
|
53838
|
+
export declare enum KnowledgeBaseSpacePermissionType {
|
|
53839
|
+
AnonymousUsers = "ANONYMOUS_USERS",
|
|
53840
|
+
ConfluenceLicensedUsers = "CONFLUENCE_LICENSED_USERS",
|
|
53841
|
+
ConfluenceUnlicensedUsers = "CONFLUENCE_UNLICENSED_USERS"
|
|
53842
|
+
}
|
|
53843
|
+
export declare type KnowledgeBaseSpacePermissionUpdateResponse = KnowledgeBaseSpacePermission | MutationError;
|
|
53844
|
+
export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
53845
|
+
spaceAri: Scalars['String']['input'];
|
|
53846
|
+
viewPermission: KnowledgeBaseSpacePermissionType;
|
|
53847
|
+
};
|
|
53848
|
+
export declare type KnowledgeBaseSpacePermissions = {
|
|
53849
|
+
__typename?: 'KnowledgeBaseSpacePermissions';
|
|
53850
|
+
permissions: Array<Maybe<KnowledgeBaseSpacePermissions>>;
|
|
53851
|
+
};
|
|
53594
53852
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
53595
53853
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
53596
53854
|
mutationError?: Maybe<MutationError>;
|
|
@@ -53613,10 +53871,12 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
|
53613
53871
|
__typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
|
|
53614
53872
|
cloudId: Scalars['String']['output'];
|
|
53615
53873
|
createdTimestamp: Scalars['String']['output'];
|
|
53874
|
+
creator?: Maybe<User>;
|
|
53616
53875
|
creatorAccountId: Scalars['String']['output'];
|
|
53617
53876
|
description?: Maybe<Scalars['String']['output']>;
|
|
53618
53877
|
keyPhrases?: Maybe<Array<Scalars['String']['output']>>;
|
|
53619
53878
|
lastModifiedTimestamp: Scalars['String']['output'];
|
|
53879
|
+
lastModifier?: Maybe<User>;
|
|
53620
53880
|
lastModifierAccountId: Scalars['String']['output'];
|
|
53621
53881
|
orgId: Scalars['String']['output'];
|
|
53622
53882
|
title: Scalars['String']['output'];
|
|
@@ -54020,26 +54280,6 @@ export declare type LogQueryInput = {
|
|
|
54020
54280
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
54021
54281
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
54022
54282
|
};
|
|
54023
|
-
export declare type LpBunchballBadge = {
|
|
54024
|
-
__typename?: 'LpBunchballBadge';
|
|
54025
|
-
contentfulCourseId?: Maybe<Scalars['String']['output']>;
|
|
54026
|
-
dateEarned?: Maybe<Scalars['String']['output']>;
|
|
54027
|
-
fullUrl?: Maybe<Scalars['String']['output']>;
|
|
54028
|
-
missionId?: Maybe<Scalars['Int']['output']>;
|
|
54029
|
-
thumbUrl?: Maybe<Scalars['String']['output']>;
|
|
54030
|
-
};
|
|
54031
|
-
export declare type LpBunchballBadgeConnection = {
|
|
54032
|
-
__typename?: 'LpBunchballBadgeConnection';
|
|
54033
|
-
edges?: Maybe<Array<LpBunchballBadgeEdge>>;
|
|
54034
|
-
pageInfo?: Maybe<LpPageInfo>;
|
|
54035
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54036
|
-
};
|
|
54037
|
-
export declare type LpBunchballBadgeEdge = {
|
|
54038
|
-
__typename?: 'LpBunchballBadgeEdge';
|
|
54039
|
-
cursor: Scalars['String']['output'];
|
|
54040
|
-
node?: Maybe<LpBunchballBadge>;
|
|
54041
|
-
};
|
|
54042
|
-
export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
|
|
54043
54283
|
export declare type LpCertSort = {
|
|
54044
54284
|
sortDirection?: InputMaybe<SortDirection>;
|
|
54045
54285
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -54134,17 +54374,10 @@ export declare enum LpCourseStatus {
|
|
|
54134
54374
|
export declare type LpLearner = Node & {
|
|
54135
54375
|
__typename?: 'LpLearner';
|
|
54136
54376
|
atlassianId: Scalars['String']['output'];
|
|
54137
|
-
bunchballBadges?: Maybe<LpBunchballBadgeResult>;
|
|
54138
54377
|
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
54139
54378
|
courses?: Maybe<LpCourseProgressResult>;
|
|
54140
54379
|
id: Scalars['ID']['output'];
|
|
54141
54380
|
};
|
|
54142
|
-
export declare type LpLearnerBunchballBadgesArgs = {
|
|
54143
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
54144
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
54145
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54146
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
54147
|
-
};
|
|
54148
54381
|
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
54149
54382
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54150
54383
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54411,6 +54644,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
54411
54644
|
};
|
|
54412
54645
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
54413
54646
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
54647
|
+
appSoftware?: Maybe<MarketplaceConsoleAppSoftwareShort>;
|
|
54414
54648
|
appSoftwareId: Scalars['ID']['output'];
|
|
54415
54649
|
buildNumber: Scalars['ID']['output'];
|
|
54416
54650
|
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
|
|
@@ -54437,11 +54671,21 @@ export declare type MarketplaceConsoleAppSoftwareVersionCompatibility = {
|
|
|
54437
54671
|
parentSoftware?: Maybe<MarketplaceConsoleParentSoftware>;
|
|
54438
54672
|
parentSoftwareId: Scalars['ID']['output'];
|
|
54439
54673
|
};
|
|
54674
|
+
export declare type MarketplaceConsoleAppSoftwareVersionCompatibilityInput = {
|
|
54675
|
+
hosting: MarketplaceConsoleHosting;
|
|
54676
|
+
maxBuildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54677
|
+
minBuildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54678
|
+
parentSoftwareId: Scalars['ID']['input'];
|
|
54679
|
+
};
|
|
54440
54680
|
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetails = {
|
|
54441
54681
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionFrameworkDetails';
|
|
54442
54682
|
attributes: MarketplaceConsoleFrameworkAttributes;
|
|
54443
54683
|
frameworkId: Scalars['ID']['output'];
|
|
54444
54684
|
};
|
|
54685
|
+
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput = {
|
|
54686
|
+
attributes: MarketplaceConsoleFrameworkAttributesInput;
|
|
54687
|
+
frameworkId: Scalars['ID']['input'];
|
|
54688
|
+
};
|
|
54445
54689
|
export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
|
|
54446
54690
|
__typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
|
|
54447
54691
|
id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
|
|
@@ -54502,6 +54746,12 @@ export declare type MarketplaceConsoleAppSoftwares = {
|
|
|
54502
54746
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
54503
54747
|
appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
|
|
54504
54748
|
};
|
|
54749
|
+
export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
|
|
54750
|
+
buildNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
54751
|
+
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>;
|
|
54752
|
+
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
54753
|
+
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
54754
|
+
};
|
|
54505
54755
|
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
54506
54756
|
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
54507
54757
|
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -54515,9 +54765,16 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
54515
54765
|
};
|
|
54516
54766
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
54517
54767
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
54768
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54518
54769
|
descriptorId: Scalars['ID']['output'];
|
|
54770
|
+
descriptorUrl: Scalars['String']['output'];
|
|
54519
54771
|
scopes: Array<Scalars['String']['output']>;
|
|
54520
54772
|
};
|
|
54773
|
+
export declare type MarketplaceConsoleConnectFrameworkAttributesInput = {
|
|
54774
|
+
descriptorId: Scalars['String']['input'];
|
|
54775
|
+
href: Scalars['String']['input'];
|
|
54776
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54777
|
+
};
|
|
54521
54778
|
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
54522
54779
|
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
54523
54780
|
body: Scalars['String']['output'];
|
|
@@ -54651,6 +54908,11 @@ export declare type MarketplaceConsoleExternalFrameworkAttributes = {
|
|
|
54651
54908
|
authorization: Scalars['Boolean']['output'];
|
|
54652
54909
|
binaryUrl?: Maybe<Scalars['String']['output']>;
|
|
54653
54910
|
};
|
|
54911
|
+
export declare type MarketplaceConsoleExternalFrameworkAttributesInput = {
|
|
54912
|
+
authorization: Scalars['Boolean']['input'];
|
|
54913
|
+
binaryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54914
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54915
|
+
};
|
|
54654
54916
|
export declare type MarketplaceConsoleFeature = {
|
|
54655
54917
|
__typename?: 'MarketplaceConsoleFeature';
|
|
54656
54918
|
description: Scalars['String']['output'];
|
|
@@ -54668,9 +54930,30 @@ export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
|
54668
54930
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
54669
54931
|
appId: Scalars['ID']['output'];
|
|
54670
54932
|
envId: Scalars['ID']['output'];
|
|
54933
|
+
scopes: Array<Scalars['String']['output']>;
|
|
54671
54934
|
versionId: Scalars['String']['output'];
|
|
54672
54935
|
};
|
|
54673
|
-
export declare type
|
|
54936
|
+
export declare type MarketplaceConsoleForgeFrameworkAttributesInput = {
|
|
54937
|
+
appId: Scalars['String']['input'];
|
|
54938
|
+
envId: Scalars['String']['input'];
|
|
54939
|
+
versionId: Scalars['String']['input'];
|
|
54940
|
+
};
|
|
54941
|
+
export declare type MarketplaceConsoleFrameworkAttributes = {
|
|
54942
|
+
__typename?: 'MarketplaceConsoleFrameworkAttributes';
|
|
54943
|
+
connect?: Maybe<MarketplaceConsoleConnectFrameworkAttributes>;
|
|
54944
|
+
external?: Maybe<MarketplaceConsoleExternalFrameworkAttributes>;
|
|
54945
|
+
forge?: Maybe<MarketplaceConsoleForgeFrameworkAttributes>;
|
|
54946
|
+
plugin?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
54947
|
+
plugins?: Maybe<MarketplaceConsolePluginFrameworkAttributes>;
|
|
54948
|
+
workflow?: Maybe<MarketplaceConsoleWorkflowFrameworkAttributes>;
|
|
54949
|
+
};
|
|
54950
|
+
export declare type MarketplaceConsoleFrameworkAttributesInput = {
|
|
54951
|
+
connect?: InputMaybe<MarketplaceConsoleConnectFrameworkAttributesInput>;
|
|
54952
|
+
external?: InputMaybe<MarketplaceConsoleExternalFrameworkAttributesInput>;
|
|
54953
|
+
forge?: InputMaybe<MarketplaceConsoleForgeFrameworkAttributesInput>;
|
|
54954
|
+
plugin?: InputMaybe<MarketplaceConsolePluginFrameworkAttributesInput>;
|
|
54955
|
+
workflow?: InputMaybe<MarketplaceConsoleWorkflowFrameworkAttributesInput>;
|
|
54956
|
+
};
|
|
54674
54957
|
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
54675
54958
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
54676
54959
|
message: Scalars['String']['output'];
|
|
@@ -54753,10 +55036,12 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
54753
55036
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
54754
55037
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
54755
55038
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
55039
|
+
createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
|
|
55040
|
+
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54756
55041
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54757
55042
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
54758
55043
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
54759
|
-
validateArtifactUrl?: Maybe<
|
|
55044
|
+
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54760
55045
|
};
|
|
54761
55046
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
54762
55047
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -54765,6 +55050,13 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
54765
55050
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
54766
55051
|
appSoftwareId: Scalars['String']['input'];
|
|
54767
55052
|
};
|
|
55053
|
+
export declare type MarketplaceConsoleMutationApiCreateEcoHelpTicketArgs = {
|
|
55054
|
+
product: MarketplaceConsoleEditionsInput;
|
|
55055
|
+
};
|
|
55056
|
+
export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersionArgs = {
|
|
55057
|
+
appKey: Scalars['ID']['input'];
|
|
55058
|
+
version: MarketplaceConsoleAppVersionCreateRequestInput;
|
|
55059
|
+
};
|
|
54768
55060
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
54769
55061
|
appSoftwareId: Scalars['String']['input'];
|
|
54770
55062
|
token: Scalars['String']['input'];
|
|
@@ -54835,10 +55127,21 @@ export declare enum MarketplaceConsolePaymentModel {
|
|
|
54835
55127
|
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
54836
55128
|
PaidViaVendor = "PAID_VIA_VENDOR"
|
|
54837
55129
|
}
|
|
54838
|
-
export declare type
|
|
54839
|
-
__typename?: '
|
|
55130
|
+
export declare type MarketplaceConsolePluginFrameworkAttributes = {
|
|
55131
|
+
__typename?: 'MarketplaceConsolePluginFrameworkAttributes';
|
|
55132
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
54840
55133
|
artifactId: Scalars['ID']['output'];
|
|
55134
|
+
descriptorId?: Maybe<Scalars['String']['output']>;
|
|
55135
|
+
pluginFrameworkType: MarketplaceConsolePluginFrameworkType;
|
|
55136
|
+
};
|
|
55137
|
+
export declare type MarketplaceConsolePluginFrameworkAttributesInput = {
|
|
55138
|
+
artifactId: Scalars['String']['input'];
|
|
55139
|
+
href: Scalars['String']['input'];
|
|
54841
55140
|
};
|
|
55141
|
+
export declare enum MarketplaceConsolePluginFrameworkType {
|
|
55142
|
+
P1 = "P1",
|
|
55143
|
+
P2 = "P2"
|
|
55144
|
+
}
|
|
54842
55145
|
export declare enum MarketplaceConsolePricingCurrency {
|
|
54843
55146
|
Jpy = "JPY",
|
|
54844
55147
|
Usd = "USD"
|
|
@@ -54936,6 +55239,17 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
54936
55239
|
productId: Scalars['ID']['output'];
|
|
54937
55240
|
vendorId: Scalars['ID']['output'];
|
|
54938
55241
|
};
|
|
55242
|
+
export declare type MarketplaceConsoleProductTag = {
|
|
55243
|
+
__typename?: 'MarketplaceConsoleProductTag';
|
|
55244
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
55245
|
+
id: Scalars['ID']['output'];
|
|
55246
|
+
name: Scalars['String']['output'];
|
|
55247
|
+
};
|
|
55248
|
+
export declare enum MarketplaceConsoleProductTagType {
|
|
55249
|
+
Category = "CATEGORY",
|
|
55250
|
+
Keywords = "KEYWORDS",
|
|
55251
|
+
Marketing = "MARKETING"
|
|
55252
|
+
}
|
|
54939
55253
|
export declare type MarketplaceConsoleQueryApi = {
|
|
54940
55254
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
54941
55255
|
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
@@ -54955,6 +55269,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
54955
55269
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
54956
55270
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
54957
55271
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
55272
|
+
productTags: Array<MarketplaceConsoleProductTag>;
|
|
54958
55273
|
};
|
|
54959
55274
|
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
54960
55275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55004,14 +55319,17 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
55004
55319
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
55005
55320
|
appId: Scalars['ID']['input'];
|
|
55006
55321
|
};
|
|
55322
|
+
export declare type MarketplaceConsoleQueryApiProductTagsArgs = {
|
|
55323
|
+
tagType: MarketplaceConsoleProductTagType;
|
|
55324
|
+
};
|
|
55007
55325
|
export declare type MarketplaceConsoleRemoteArtifactLinks = {
|
|
55008
55326
|
__typename?: 'MarketplaceConsoleRemoteArtifactLinks';
|
|
55009
55327
|
binary: MarketplaceConsoleLink;
|
|
55010
55328
|
remote?: Maybe<MarketplaceConsoleLink>;
|
|
55011
55329
|
self: MarketplaceConsoleLink;
|
|
55012
55330
|
};
|
|
55013
|
-
export declare type
|
|
55014
|
-
__typename?: '
|
|
55331
|
+
export declare type MarketplaceConsoleSoftwareArtifact = {
|
|
55332
|
+
__typename?: 'MarketplaceConsoleSoftwareArtifact';
|
|
55015
55333
|
fileInfo: MarketplaceConsoleArtifactFileInfo;
|
|
55016
55334
|
links: MarketplaceConsoleRemoteArtifactLinks;
|
|
55017
55335
|
};
|
|
@@ -55053,8 +55371,13 @@ export declare type MarketplaceConsoleVendorLinks = {
|
|
|
55053
55371
|
};
|
|
55054
55372
|
export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
55055
55373
|
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
55374
|
+
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
55056
55375
|
artifactId: Scalars['ID']['output'];
|
|
55057
55376
|
};
|
|
55377
|
+
export declare type MarketplaceConsoleWorkflowFrameworkAttributesInput = {
|
|
55378
|
+
artifactId: Scalars['String']['input'];
|
|
55379
|
+
href: Scalars['String']['input'];
|
|
55380
|
+
};
|
|
55058
55381
|
export declare enum MarketplaceEntityStatus {
|
|
55059
55382
|
Active = "ACTIVE",
|
|
55060
55383
|
Archived = "ARCHIVED"
|
|
@@ -55323,6 +55646,28 @@ export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
|
55323
55646
|
Archived = "ARCHIVED",
|
|
55324
55647
|
Inactive = "INACTIVE"
|
|
55325
55648
|
}
|
|
55649
|
+
export declare type MarketplaceStoreEdition = {
|
|
55650
|
+
__typename?: 'MarketplaceStoreEdition';
|
|
55651
|
+
features: Array<MarketplaceStoreEditionFeature>;
|
|
55652
|
+
id: Scalars['ID']['output'];
|
|
55653
|
+
isDefault: Scalars['Boolean']['output'];
|
|
55654
|
+
pricingPlan: MarketplaceStorePricingPlan;
|
|
55655
|
+
type: MarketplaceStoreEditionType;
|
|
55656
|
+
};
|
|
55657
|
+
export declare type MarketplaceStoreEditionFeature = {
|
|
55658
|
+
__typename?: 'MarketplaceStoreEditionFeature';
|
|
55659
|
+
description: Scalars['String']['output'];
|
|
55660
|
+
id: Scalars['ID']['output'];
|
|
55661
|
+
name: Scalars['String']['output'];
|
|
55662
|
+
position: Scalars['Int']['output'];
|
|
55663
|
+
};
|
|
55664
|
+
export declare enum MarketplaceStoreEditionType {
|
|
55665
|
+
Advanced = "ADVANCED",
|
|
55666
|
+
Standard = "STANDARD"
|
|
55667
|
+
}
|
|
55668
|
+
export declare type MarketplaceStoreEditionsInput = {
|
|
55669
|
+
appId?: InputMaybe<Scalars['String']['input']>;
|
|
55670
|
+
};
|
|
55326
55671
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
55327
55672
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
55328
55673
|
description: Scalars['String']['output'];
|
|
@@ -55520,11 +55865,43 @@ export declare type MarketplaceStorePartnerSupportHoliday = {
|
|
|
55520
55865
|
repeatAnnually: Scalars['Boolean']['output'];
|
|
55521
55866
|
title: Scalars['String']['output'];
|
|
55522
55867
|
};
|
|
55868
|
+
export declare enum MarketplaceStorePricingCurrency {
|
|
55869
|
+
Jpy = "JPY",
|
|
55870
|
+
Usd = "USD"
|
|
55871
|
+
}
|
|
55872
|
+
export declare type MarketplaceStorePricingPlan = {
|
|
55873
|
+
__typename?: 'MarketplaceStorePricingPlan';
|
|
55874
|
+
annualPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
|
|
55875
|
+
currency: MarketplaceStorePricingCurrency;
|
|
55876
|
+
monthlyPricingPlan?: Maybe<MarketplaceStorePricingPlanItem>;
|
|
55877
|
+
};
|
|
55878
|
+
export declare type MarketplaceStorePricingPlanItem = {
|
|
55879
|
+
__typename?: 'MarketplaceStorePricingPlanItem';
|
|
55880
|
+
tieredPricing: Array<MarketplaceStorePricingTier>;
|
|
55881
|
+
};
|
|
55882
|
+
export declare type MarketplaceStorePricingTier = {
|
|
55883
|
+
ceiling: Scalars['Float']['output'];
|
|
55884
|
+
floor: Scalars['Float']['output'];
|
|
55885
|
+
};
|
|
55886
|
+
export declare type MarketplaceStorePricingTierAnnual = MarketplaceStorePricingTier & {
|
|
55887
|
+
__typename?: 'MarketplaceStorePricingTierAnnual';
|
|
55888
|
+
ceiling: Scalars['Float']['output'];
|
|
55889
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
55890
|
+
floor: Scalars['Float']['output'];
|
|
55891
|
+
};
|
|
55892
|
+
export declare type MarketplaceStorePricingTierMonthly = MarketplaceStorePricingTier & {
|
|
55893
|
+
__typename?: 'MarketplaceStorePricingTierMonthly';
|
|
55894
|
+
ceiling: Scalars['Float']['output'];
|
|
55895
|
+
flatAmount?: Maybe<Scalars['Float']['output']>;
|
|
55896
|
+
floor: Scalars['Float']['output'];
|
|
55897
|
+
unitAmount?: Maybe<Scalars['Float']['output']>;
|
|
55898
|
+
};
|
|
55523
55899
|
export declare type MarketplaceStoreQueryApi = {
|
|
55524
55900
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
55525
55901
|
category: MarketplaceStoreCategoryResponse;
|
|
55526
55902
|
collection: MarketplaceStoreCollectionResponse;
|
|
55527
55903
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
55904
|
+
editions: Array<MarketplaceStoreEdition>;
|
|
55528
55905
|
homePage: MarketplaceStoreHomePageResponse;
|
|
55529
55906
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
55530
55907
|
partner: MarketplaceStorePartnerResponse;
|
|
@@ -55535,6 +55912,9 @@ export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
|
55535
55912
|
export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
55536
55913
|
slug: Scalars['String']['input'];
|
|
55537
55914
|
};
|
|
55915
|
+
export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
55916
|
+
product: MarketplaceStoreEditionsInput;
|
|
55917
|
+
};
|
|
55538
55918
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
55539
55919
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
55540
55920
|
};
|
|
@@ -55707,8 +56087,10 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
55707
56087
|
success: Scalars['Boolean']['output'];
|
|
55708
56088
|
};
|
|
55709
56089
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
56090
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55710
56091
|
cloudId: Scalars['ID']['input'];
|
|
55711
|
-
|
|
56092
|
+
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56093
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
55712
56094
|
};
|
|
55713
56095
|
export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
55714
56096
|
__typename?: 'MercuryDeleteFocusAreaGoalLinkPayload';
|
|
@@ -56080,16 +56462,6 @@ export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
|
|
|
56080
56462
|
errors?: Maybe<Array<MutationError>>;
|
|
56081
56463
|
success: Scalars['Boolean']['output'];
|
|
56082
56464
|
};
|
|
56083
|
-
export declare type MercuryLinkFocusAreasToGoalInput = {
|
|
56084
|
-
atlasGoalId: Scalars['ID']['input'];
|
|
56085
|
-
cloudId: Scalars['ID']['input'];
|
|
56086
|
-
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
56087
|
-
};
|
|
56088
|
-
export declare type MercuryLinkFocusAreasToGoalPayload = Payload & {
|
|
56089
|
-
__typename?: 'MercuryLinkFocusAreasToGoalPayload';
|
|
56090
|
-
errors?: Maybe<Array<MutationError>>;
|
|
56091
|
-
success: Scalars['Boolean']['output'];
|
|
56092
|
-
};
|
|
56093
56465
|
export declare type MercuryLinkFocusAreasToPortfolioInput = {
|
|
56094
56466
|
cloudId: Scalars['ID']['input'];
|
|
56095
56467
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -56101,9 +56473,11 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
56101
56473
|
success: Scalars['Boolean']['output'];
|
|
56102
56474
|
};
|
|
56103
56475
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
56104
|
-
|
|
56476
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56477
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
56105
56478
|
cloudId: Scalars['ID']['input'];
|
|
56106
|
-
|
|
56479
|
+
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56480
|
+
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
56107
56481
|
};
|
|
56108
56482
|
export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
56109
56483
|
__typename?: 'MercuryLinkGoalsToFocusAreaPayload';
|
|
@@ -56131,7 +56505,6 @@ export declare type MercuryMutationApi = {
|
|
|
56131
56505
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
56132
56506
|
deletePreference?: Maybe<MercuryDeletePreferencePayload>;
|
|
56133
56507
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
56134
|
-
linkFocusAreasToGoal?: Maybe<MercuryLinkFocusAreasToGoalPayload>;
|
|
56135
56508
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
56136
56509
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
56137
56510
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
@@ -56191,9 +56564,6 @@ export declare type MercuryMutationApiDeletePreferenceArgs = {
|
|
|
56191
56564
|
export declare type MercuryMutationApiLinkFocusAreasToFocusAreaArgs = {
|
|
56192
56565
|
input: MercuryLinkFocusAreasToFocusAreaInput;
|
|
56193
56566
|
};
|
|
56194
|
-
export declare type MercuryMutationApiLinkFocusAreasToGoalArgs = {
|
|
56195
|
-
input: MercuryLinkFocusAreasToGoalInput;
|
|
56196
|
-
};
|
|
56197
56567
|
export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
56198
56568
|
input: MercuryLinkFocusAreasToPortfolioInput;
|
|
56199
56569
|
};
|
|
@@ -56707,6 +57077,18 @@ export declare type MercuryWorkspaceContext = {
|
|
|
56707
57077
|
aiEnabled: Scalars['Boolean']['output'];
|
|
56708
57078
|
cloudId: Scalars['String']['output'];
|
|
56709
57079
|
};
|
|
57080
|
+
export declare type MigrateComponentTypeInput = {
|
|
57081
|
+
destinationTypeId: Scalars['ID']['input'];
|
|
57082
|
+
sourceTypeId: Scalars['ID']['input'];
|
|
57083
|
+
};
|
|
57084
|
+
export declare type MigrateComponentTypePayload = Payload & {
|
|
57085
|
+
__typename?: 'MigrateComponentTypePayload';
|
|
57086
|
+
affectedComponentsCount?: Maybe<Scalars['Int']['output']>;
|
|
57087
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57088
|
+
failedComponentsCount?: Maybe<Scalars['Int']['output']>;
|
|
57089
|
+
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
57090
|
+
success: Scalars['Boolean']['output'];
|
|
57091
|
+
};
|
|
56710
57092
|
export declare type Migration = {
|
|
56711
57093
|
__typename?: 'Migration';
|
|
56712
57094
|
estimation?: Maybe<MigrationEstimation>;
|
|
@@ -57079,6 +57461,7 @@ export declare type Mutation = {
|
|
|
57079
57461
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
57080
57462
|
jsw?: Maybe<JswMutation>;
|
|
57081
57463
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
57464
|
+
knowledgeBaseSpacePermission_updateView?: Maybe<KnowledgeBaseSpacePermissionMutationApi>;
|
|
57082
57465
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
57083
57466
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
57084
57467
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
@@ -57876,6 +58259,9 @@ export declare type MutationInvokePolarisObjectArgs = {
|
|
|
57876
58259
|
export declare type MutationKnowledgeBaseArgs = {
|
|
57877
58260
|
cloudId: Scalars['ID']['input'];
|
|
57878
58261
|
};
|
|
58262
|
+
export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
58263
|
+
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
58264
|
+
};
|
|
57879
58265
|
export declare type MutationMoveSprintDownArgs = {
|
|
57880
58266
|
input?: InputMaybe<MoveSprintDownInput>;
|
|
57881
58267
|
};
|
|
@@ -60589,6 +60975,7 @@ export declare type Query = {
|
|
|
60589
60975
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
60590
60976
|
jsw?: Maybe<JswQuery>;
|
|
60591
60977
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
60978
|
+
knowledgeBaseSpacePermission_bulkQuery?: Maybe<KnowledgeBaseSpacePermissionBulkQueryApi>;
|
|
60592
60979
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
60593
60980
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
60594
60981
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -60649,7 +61036,6 @@ export declare type Query = {
|
|
|
60649
61036
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
60650
61037
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
60651
61038
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
60652
|
-
surfacePlatform: SurfacePlatformQueryApi;
|
|
60653
61039
|
team?: Maybe<TeamQuery>;
|
|
60654
61040
|
template?: Maybe<ContentPlatformTemplate>;
|
|
60655
61041
|
templateCollection?: Maybe<ContentPlatformTemplateCollection>;
|
|
@@ -61893,6 +62279,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
61893
62279
|
export declare type QueryKnowledgeBaseArgs = {
|
|
61894
62280
|
cloudId: Scalars['ID']['input'];
|
|
61895
62281
|
};
|
|
62282
|
+
export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
62283
|
+
input: KnowledgeBaseSpacePermissionInput;
|
|
62284
|
+
};
|
|
61896
62285
|
export declare type QueryMarketplaceAppArgs = {
|
|
61897
62286
|
appId: Scalars['ID']['input'];
|
|
61898
62287
|
};
|
|
@@ -64346,6 +64735,17 @@ export declare type ShepherdAlert = Node & {
|
|
|
64346
64735
|
updatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
64347
64736
|
workspaceId?: Maybe<Scalars['ID']['output']>;
|
|
64348
64737
|
};
|
|
64738
|
+
export declare enum ShepherdAlertAction {
|
|
64739
|
+
AddLabel = "ADD_LABEL",
|
|
64740
|
+
Redact = "REDACT",
|
|
64741
|
+
Restrict = "RESTRICT",
|
|
64742
|
+
UpdateDataClassification = "UPDATE_DATA_CLASSIFICATION"
|
|
64743
|
+
}
|
|
64744
|
+
export declare type ShepherdAlertAuthorizedActions = {
|
|
64745
|
+
__typename?: 'ShepherdAlertAuthorizedActions';
|
|
64746
|
+
actions?: Maybe<Array<ShepherdAlertAction>>;
|
|
64747
|
+
};
|
|
64748
|
+
export declare type ShepherdAlertAuthorizedActionsResult = QueryError | ShepherdAlertAuthorizedActions;
|
|
64349
64749
|
export declare enum ShepherdAlertDetectionCategory {
|
|
64350
64750
|
Data = "DATA",
|
|
64351
64751
|
Threat = "THREAT"
|
|
@@ -64362,9 +64762,14 @@ export declare type ShepherdAlertMetaData = {
|
|
|
64362
64762
|
};
|
|
64363
64763
|
export declare type ShepherdAlertQueries = {
|
|
64364
64764
|
__typename?: 'ShepherdAlertQueries';
|
|
64765
|
+
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
64365
64766
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
64366
64767
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
64367
64768
|
};
|
|
64769
|
+
export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
64770
|
+
id: Scalars['ID']['input'];
|
|
64771
|
+
resource: Scalars['ID']['input'];
|
|
64772
|
+
};
|
|
64368
64773
|
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
64369
64774
|
id: Scalars['ID']['input'];
|
|
64370
64775
|
};
|
|
@@ -66230,44 +66635,6 @@ export declare type SupportRequests = {
|
|
|
66230
66635
|
page: Array<SupportRequest>;
|
|
66231
66636
|
total: Scalars['Int']['output'];
|
|
66232
66637
|
};
|
|
66233
|
-
export declare type SurfacePlatformQueryApi = {
|
|
66234
|
-
__typename?: 'SurfacePlatformQueryApi';
|
|
66235
|
-
surface?: Maybe<SurfacePlatformSurface>;
|
|
66236
|
-
surfaceV2?: Maybe<SurfacePlatformSurfaceV2>;
|
|
66237
|
-
};
|
|
66238
|
-
export declare type SurfacePlatformQueryApiSurfaceArgs = {
|
|
66239
|
-
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
66240
|
-
id: Scalars['ID']['input'];
|
|
66241
|
-
};
|
|
66242
|
-
export declare type SurfacePlatformQueryApiSurfaceV2Args = {
|
|
66243
|
-
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
66244
|
-
key: Scalars['String']['input'];
|
|
66245
|
-
type: Scalars['String']['input'];
|
|
66246
|
-
};
|
|
66247
|
-
export declare type SurfacePlatformSurface = {
|
|
66248
|
-
__typename?: 'SurfacePlatformSurface';
|
|
66249
|
-
channels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
66250
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
66251
|
-
id: Scalars['ID']['output'];
|
|
66252
|
-
locale?: Maybe<Scalars['String']['output']>;
|
|
66253
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
66254
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
66255
|
-
version?: Maybe<Scalars['String']['output']>;
|
|
66256
|
-
zones?: Maybe<Scalars['JSON']['output']>;
|
|
66257
|
-
};
|
|
66258
|
-
export declare type SurfacePlatformSurfaceV2 = {
|
|
66259
|
-
__typename?: 'SurfacePlatformSurfaceV2';
|
|
66260
|
-
channel?: Maybe<Scalars['String']['output']>;
|
|
66261
|
-
definitionVersion?: Maybe<Scalars['String']['output']>;
|
|
66262
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
66263
|
-
fields?: Maybe<Scalars['JSON']['output']>;
|
|
66264
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
66265
|
-
label?: Maybe<Scalars['String']['output']>;
|
|
66266
|
-
locale?: Maybe<Scalars['String']['output']>;
|
|
66267
|
-
revision?: Maybe<Scalars['Int']['output']>;
|
|
66268
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
66269
|
-
zones?: Maybe<Scalars['JSON']['output']>;
|
|
66270
|
-
};
|
|
66271
66638
|
export declare type Swimlane = {
|
|
66272
66639
|
__typename?: 'Swimlane';
|
|
66273
66640
|
allowedCardTypes?: Maybe<Array<CardType>>;
|
|
@@ -66513,6 +66880,8 @@ export declare type TeamV2MembersArgs = {
|
|
|
66513
66880
|
};
|
|
66514
66881
|
export declare type TenantContext = {
|
|
66515
66882
|
__typename?: 'TenantContext';
|
|
66883
|
+
activationIdByProduct?: Maybe<TenantContextActivationId>;
|
|
66884
|
+
activationIds?: Maybe<Array<TenantContextActivationId>>;
|
|
66516
66885
|
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
66517
66886
|
cloudUrl?: Maybe<Scalars['URL']['output']>;
|
|
66518
66887
|
customDomains?: Maybe<Array<TenantContextCustomDomain>>;
|
|
@@ -66520,9 +66889,17 @@ export declare type TenantContext = {
|
|
|
66520
66889
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
66521
66890
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
66522
66891
|
};
|
|
66892
|
+
export declare type TenantContextActivationIdByProductArgs = {
|
|
66893
|
+
product: Scalars['String']['input'];
|
|
66894
|
+
};
|
|
66523
66895
|
export declare type TenantContextEntitlementInfoArgs = {
|
|
66524
66896
|
hamsProductKey: Scalars['String']['input'];
|
|
66525
66897
|
};
|
|
66898
|
+
export declare type TenantContextActivationId = {
|
|
66899
|
+
__typename?: 'TenantContextActivationId';
|
|
66900
|
+
active?: Maybe<Scalars['String']['output']>;
|
|
66901
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
66902
|
+
};
|
|
66526
66903
|
export declare type TenantContextCustomDomain = {
|
|
66527
66904
|
__typename?: 'TenantContextCustomDomain';
|
|
66528
66905
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67428,7 +67805,6 @@ export declare type TrelloBoard = Node & {
|
|
|
67428
67805
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
67429
67806
|
name: Scalars['String']['output'];
|
|
67430
67807
|
objectId: Scalars['ID']['output'];
|
|
67431
|
-
popularLabelNamesByColor?: Maybe<Array<TrelloPopularLabelForColor>>;
|
|
67432
67808
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
67433
67809
|
powerUps?: Maybe<TrelloBoardPowerUpConnection>;
|
|
67434
67810
|
powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -67631,11 +68007,16 @@ export declare type TrelloBoardUpdated = {
|
|
|
67631
68007
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
67632
68008
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
67633
68009
|
description?: Maybe<TrelloDescription>;
|
|
68010
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
67634
68011
|
id?: Maybe<Scalars['ID']['output']>;
|
|
68012
|
+
labels?: Maybe<Array<TrelloLabel>>;
|
|
67635
68013
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
68014
|
+
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
67636
68015
|
name?: Maybe<Scalars['String']['output']>;
|
|
67637
68016
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67638
68017
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
68018
|
+
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
68019
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
67639
68020
|
};
|
|
67640
68021
|
export declare type TrelloBoardViewer = {
|
|
67641
68022
|
__typename?: 'TrelloBoardViewer';
|
|
@@ -67679,6 +68060,7 @@ export declare type TrelloCard = Node & {
|
|
|
67679
68060
|
members?: Maybe<TrelloMemberConnection>;
|
|
67680
68061
|
name?: Maybe<Scalars['String']['output']>;
|
|
67681
68062
|
objectId: Scalars['ID']['output'];
|
|
68063
|
+
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
67682
68064
|
position?: Maybe<Scalars['Float']['output']>;
|
|
67683
68065
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
67684
68066
|
role?: Maybe<TrelloCardRole>;
|
|
@@ -68180,6 +68562,7 @@ export declare type TrelloMutationApi = {
|
|
|
68180
68562
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
68181
68563
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
68182
68564
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
68565
|
+
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
68183
68566
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
68184
68567
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
68185
68568
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
@@ -68200,6 +68583,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
68200
68583
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
68201
68584
|
input: TrelloCreateCardInput;
|
|
68202
68585
|
};
|
|
68586
|
+
export declare type TrelloMutationApiPinCardArgs = {
|
|
68587
|
+
input: TrelloPinCardInput;
|
|
68588
|
+
};
|
|
68203
68589
|
export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
68204
68590
|
input: TrelloRemoveMemberInput;
|
|
68205
68591
|
};
|
|
@@ -68230,35 +68616,23 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
68230
68616
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
68231
68617
|
input: TrelloWatchCardInput;
|
|
68232
68618
|
};
|
|
68619
|
+
export declare type TrelloPinCardInput = {
|
|
68620
|
+
cardId: Scalars['ID']['input'];
|
|
68621
|
+
};
|
|
68622
|
+
export declare type TrelloPinCardPayload = Payload & {
|
|
68623
|
+
__typename?: 'TrelloPinCardPayload';
|
|
68624
|
+
card?: Maybe<TrelloCard>;
|
|
68625
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68626
|
+
success: Scalars['Boolean']['output'];
|
|
68627
|
+
};
|
|
68233
68628
|
export declare type TrelloPlanner = {
|
|
68234
68629
|
__typename?: 'TrelloPlanner';
|
|
68235
|
-
accounts?: Maybe<
|
|
68630
|
+
accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
68236
68631
|
};
|
|
68237
68632
|
export declare type TrelloPlannerAccountsArgs = {
|
|
68238
68633
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68239
68634
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68240
68635
|
};
|
|
68241
|
-
export declare type TrelloPlannerAccount = Node & {
|
|
68242
|
-
__typename?: 'TrelloPlannerAccount';
|
|
68243
|
-
accountType: TrelloSupportedPlannerProviders;
|
|
68244
|
-
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68245
|
-
id: Scalars['ID']['output'];
|
|
68246
|
-
};
|
|
68247
|
-
export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
|
|
68248
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
68249
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68250
|
-
};
|
|
68251
|
-
export declare type TrelloPlannerAccountConnection = {
|
|
68252
|
-
__typename?: 'TrelloPlannerAccountConnection';
|
|
68253
|
-
edges?: Maybe<Array<TrelloPlannerAccountEdge>>;
|
|
68254
|
-
nodes?: Maybe<Array<TrelloPlannerAccount>>;
|
|
68255
|
-
pageInfo: PageInfo;
|
|
68256
|
-
};
|
|
68257
|
-
export declare type TrelloPlannerAccountEdge = {
|
|
68258
|
-
__typename?: 'TrelloPlannerAccountEdge';
|
|
68259
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
68260
|
-
node?: Maybe<TrelloPlannerAccount>;
|
|
68261
|
-
};
|
|
68262
68636
|
export declare type TrelloPlannerCalendar = Node & {
|
|
68263
68637
|
__typename?: 'TrelloPlannerCalendar';
|
|
68264
68638
|
color: Scalars['String']['output'];
|
|
@@ -68271,6 +68645,33 @@ export declare type TrelloPlannerCalendar = Node & {
|
|
|
68271
68645
|
type: TrelloSupportedPlannerProviders;
|
|
68272
68646
|
workspaceId: Scalars['ID']['output'];
|
|
68273
68647
|
};
|
|
68648
|
+
export declare type TrelloPlannerCalendarAccount = Node & {
|
|
68649
|
+
__typename?: 'TrelloPlannerCalendarAccount';
|
|
68650
|
+
accountType: TrelloSupportedPlannerProviders;
|
|
68651
|
+
allCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68652
|
+
displayName: Scalars['String']['output'];
|
|
68653
|
+
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
68654
|
+
id: Scalars['ID']['output'];
|
|
68655
|
+
};
|
|
68656
|
+
export declare type TrelloPlannerCalendarAccountAllCalendarsArgs = {
|
|
68657
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68658
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68659
|
+
};
|
|
68660
|
+
export declare type TrelloPlannerCalendarAccountEnabledCalendarsArgs = {
|
|
68661
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68662
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68663
|
+
};
|
|
68664
|
+
export declare type TrelloPlannerCalendarAccountConnection = {
|
|
68665
|
+
__typename?: 'TrelloPlannerCalendarAccountConnection';
|
|
68666
|
+
edges?: Maybe<Array<TrelloPlannerCalendarAccountEdge>>;
|
|
68667
|
+
nodes?: Maybe<Array<TrelloPlannerCalendarAccount>>;
|
|
68668
|
+
pageInfo: PageInfo;
|
|
68669
|
+
};
|
|
68670
|
+
export declare type TrelloPlannerCalendarAccountEdge = {
|
|
68671
|
+
__typename?: 'TrelloPlannerCalendarAccountEdge';
|
|
68672
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68673
|
+
node?: Maybe<TrelloPlannerCalendarAccount>;
|
|
68674
|
+
};
|
|
68274
68675
|
export declare type TrelloPlannerCalendarConnection = {
|
|
68275
68676
|
__typename?: 'TrelloPlannerCalendarConnection';
|
|
68276
68677
|
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
@@ -68283,11 +68684,6 @@ export declare type TrelloPlannerCalendarEdge = {
|
|
|
68283
68684
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
68284
68685
|
node?: Maybe<TrelloPlannerCalendar>;
|
|
68285
68686
|
};
|
|
68286
|
-
export declare type TrelloPopularLabelForColor = {
|
|
68287
|
-
__typename?: 'TrelloPopularLabelForColor';
|
|
68288
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
68289
|
-
labelName?: Maybe<Scalars['String']['output']>;
|
|
68290
|
-
};
|
|
68291
68687
|
export declare type TrelloPowerUp = {
|
|
68292
68688
|
__typename?: 'TrelloPowerUp';
|
|
68293
68689
|
author?: Maybe<Scalars['String']['output']>;
|
|
@@ -68349,7 +68745,7 @@ export declare type TrelloQueryApi = {
|
|
|
68349
68745
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
68350
68746
|
list?: Maybe<TrelloList>;
|
|
68351
68747
|
member?: Maybe<TrelloMember>;
|
|
68352
|
-
plannerAccountsByMemberId?: Maybe<
|
|
68748
|
+
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
68353
68749
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
68354
68750
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
68355
68751
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -69275,6 +69671,7 @@ export declare type UpdateCompassComponentDataManagerMetadataPayload = Payload &
|
|
|
69275
69671
|
success: Scalars['Boolean']['output'];
|
|
69276
69672
|
};
|
|
69277
69673
|
export declare type UpdateCompassComponentInput = {
|
|
69674
|
+
componentDescriptionDetails?: InputMaybe<CompassComponentDescriptionDetailsInput>;
|
|
69278
69675
|
customFields?: InputMaybe<Array<CompassCustomFieldInput>>;
|
|
69279
69676
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
69280
69677
|
fields?: InputMaybe<Array<UpdateCompassFieldInput>>;
|
|
@@ -70466,8 +70863,11 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
70466
70863
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
70467
70864
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
70468
70865
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
70866
|
+
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
70469
70867
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
70470
70868
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
70869
|
+
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
70870
|
+
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
70471
70871
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
70472
70872
|
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
70473
70873
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
@@ -70475,6 +70875,9 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
70475
70875
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
70476
70876
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70477
70877
|
};
|
|
70878
|
+
export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
|
|
70879
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
70880
|
+
};
|
|
70478
70881
|
export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
70479
70882
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70480
70883
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -70482,6 +70885,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
|
70482
70885
|
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
70483
70886
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70484
70887
|
};
|
|
70888
|
+
export declare type WorkSuggestionsByProjectsResponseInactivePrSuggestionsArgs = {
|
|
70889
|
+
input?: InputMaybe<WorkSuggestionsInput>;
|
|
70890
|
+
};
|
|
70485
70891
|
export declare type WorkSuggestionsCodeTabEdge = {
|
|
70486
70892
|
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
70487
70893
|
cursor: Scalars['String']['output'];
|
|
@@ -70638,6 +71044,9 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
70638
71044
|
Testing = "TESTING",
|
|
70639
71045
|
Unmapped = "UNMAPPED"
|
|
70640
71046
|
}
|
|
71047
|
+
export declare type WorkSuggestionsInput = {
|
|
71048
|
+
targetAudience?: InputMaybe<WorkSuggestionsTargetAudience>;
|
|
71049
|
+
};
|
|
70641
71050
|
export declare type WorkSuggestionsJiraAssignee = {
|
|
70642
71051
|
__typename?: 'WorkSuggestionsJiraAssignee';
|
|
70643
71052
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -70733,6 +71142,38 @@ export declare type WorkSuggestionsPeriscopeTask = {
|
|
|
70733
71142
|
title: Scalars['String']['output'];
|
|
70734
71143
|
url: Scalars['String']['output'];
|
|
70735
71144
|
};
|
|
71145
|
+
export declare type WorkSuggestionsPullRequestDraftTask = WorkSuggestionsCommon & {
|
|
71146
|
+
__typename?: 'WorkSuggestionsPullRequestDraftTask';
|
|
71147
|
+
approvalsCount: Scalars['Int']['output'];
|
|
71148
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
71149
|
+
commentCount: Scalars['Int']['output'];
|
|
71150
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
71151
|
+
id: Scalars['String']['output'];
|
|
71152
|
+
lastUpdated: Scalars['String']['output'];
|
|
71153
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
71154
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
71155
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
71156
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
71157
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
71158
|
+
title: Scalars['String']['output'];
|
|
71159
|
+
url: Scalars['String']['output'];
|
|
71160
|
+
};
|
|
71161
|
+
export declare type WorkSuggestionsPullRequestInactiveTask = WorkSuggestionsCommon & {
|
|
71162
|
+
__typename?: 'WorkSuggestionsPullRequestInactiveTask';
|
|
71163
|
+
approvalsCount: Scalars['Int']['output'];
|
|
71164
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
71165
|
+
commentCount: Scalars['Int']['output'];
|
|
71166
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
71167
|
+
id: Scalars['String']['output'];
|
|
71168
|
+
lastUpdated: Scalars['String']['output'];
|
|
71169
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
71170
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
71171
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
71172
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
71173
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
71174
|
+
title: Scalars['String']['output'];
|
|
71175
|
+
url: Scalars['String']['output'];
|
|
71176
|
+
};
|
|
70736
71177
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
70737
71178
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
70738
71179
|
commentCount: Scalars['Int']['output'];
|
|
@@ -70794,6 +71235,10 @@ export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
|
|
|
70794
71235
|
success: Scalars['Boolean']['output'];
|
|
70795
71236
|
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
70796
71237
|
};
|
|
71238
|
+
export declare enum WorkSuggestionsTargetAudience {
|
|
71239
|
+
Me = "ME",
|
|
71240
|
+
Team = "TEAM"
|
|
71241
|
+
}
|
|
70797
71242
|
export declare type WorkSuggestionsUserActionState = {
|
|
70798
71243
|
__typename?: 'WorkSuggestionsUserActionState';
|
|
70799
71244
|
expireAt: Scalars['String']['output'];
|