@forge/cli-shared 2.6.2-next.5 → 3.0.0-next.1
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 +27 -0
- package/out/auth/index.d.ts +0 -1
- package/out/auth/index.d.ts.map +1 -1
- package/out/auth/index.js +0 -1
- package/out/auth/personal/credential-store.d.ts +51 -0
- package/out/auth/personal/credential-store.d.ts.map +1 -0
- package/out/auth/personal/credential-store.js +170 -0
- package/out/auth/personal/index.d.ts +1 -4
- package/out/auth/personal/index.d.ts.map +1 -1
- package/out/auth/personal/index.js +1 -4
- package/out/auth/personal/login.d.ts +2 -2
- package/out/auth/personal/login.d.ts.map +1 -1
- package/out/auth/personal/login.js +1 -1
- package/out/auth/personal/logout.d.ts +2 -2
- package/out/auth/personal/logout.d.ts.map +1 -1
- package/out/auth/personal/token-authenticator.d.ts +3 -3
- package/out/auth/personal/token-authenticator.d.ts.map +1 -1
- package/out/auth/personal/token-authenticator.js +4 -4
- package/out/graphql/graphql-types.d.ts +710 -107
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +68 -2
- package/out/graphql/mutation-aware-graphql-client.d.ts +1 -1
- package/out/service/feature-flag-service.d.ts +3 -3
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +3 -3
- package/out/shared/product.d.ts +4 -1
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +11 -4
- package/out/shared/validate.d.ts +1 -1
- package/out/shared/validate.d.ts.map +1 -1
- package/out/shared/validate.js +5 -1
- package/out/ui/text.d.ts +8 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +26 -9
- package/package.json +3 -5
- package/out/auth/credentials-store-provider.d.ts +0 -4
- package/out/auth/credentials-store-provider.d.ts.map +0 -1
- package/out/auth/credentials-store-provider.js +0 -11
- package/out/auth/personal/abstract-token-store-getter.d.ts +0 -13
- package/out/auth/personal/abstract-token-store-getter.d.ts.map +0 -1
- package/out/auth/personal/abstract-token-store-getter.js +0 -31
- package/out/auth/personal/token-store-cache.d.ts +0 -12
- package/out/auth/personal/token-store-cache.d.ts.map +0 -1
- package/out/auth/personal/token-store-cache.js +0 -41
- package/out/auth/personal/token-store-keytar.d.ts +0 -23
- package/out/auth/personal/token-store-keytar.d.ts.map +0 -1
- package/out/auth/personal/token-store-keytar.js +0 -101
- package/out/auth/personal/token-store.d.ts +0 -28
- package/out/auth/personal/token-store.d.ts.map +0 -1
- package/out/auth/personal/token-store.js +0 -21
|
@@ -322,6 +322,7 @@ export declare enum ApiGroup {
|
|
|
322
322
|
Identity = "IDENTITY",
|
|
323
323
|
DevopsAriGraph = "DEVOPS_ARI_GRAPH",
|
|
324
324
|
Help = "HELP",
|
|
325
|
+
VirtualAgent = "VIRTUAL_AGENT",
|
|
325
326
|
CollaborationGraph = "COLLABORATION_GRAPH"
|
|
326
327
|
}
|
|
327
328
|
export declare type App = {
|
|
@@ -566,6 +567,8 @@ export declare type AppInstallationLicense = {
|
|
|
566
567
|
subscriptionEndDate?: Maybe<Scalars['DateTime']>;
|
|
567
568
|
isEvaluation?: Maybe<Scalars['Boolean']>;
|
|
568
569
|
billingPeriod?: Maybe<Scalars['String']>;
|
|
570
|
+
ccpEntitlementId?: Maybe<Scalars['String']>;
|
|
571
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']>;
|
|
569
572
|
};
|
|
570
573
|
export declare type AppInstallationResponse = Payload & {
|
|
571
574
|
__typename?: 'AppInstallationResponse';
|
|
@@ -876,7 +879,10 @@ export declare type AriGraphRelationshipArgs = {
|
|
|
876
879
|
to: Scalars['ID'];
|
|
877
880
|
};
|
|
878
881
|
export declare type AriGraphRelationshipsArgs = {
|
|
879
|
-
|
|
882
|
+
type?: Maybe<Scalars['String']>;
|
|
883
|
+
from?: Maybe<Scalars['ID']>;
|
|
884
|
+
to?: Maybe<Scalars['ID']>;
|
|
885
|
+
filter?: Maybe<AriGraphRelationshipsFilter>;
|
|
880
886
|
first?: Maybe<Scalars['Int']>;
|
|
881
887
|
after?: Maybe<Scalars['String']>;
|
|
882
888
|
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
@@ -938,7 +944,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
938
944
|
id: Scalars['ID'];
|
|
939
945
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
940
946
|
};
|
|
941
|
-
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluenceSpace;
|
|
947
|
+
export declare type AriGraphRelationshipNodeData = DeploymentSummary | ConfluencePage | ConfluenceSpace | DevOpsPullRequestDetails;
|
|
942
948
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
943
949
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
944
950
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -946,7 +952,7 @@ export declare type AriGraphRelationshipsErrorReference = {
|
|
|
946
952
|
type: Scalars['ID'];
|
|
947
953
|
};
|
|
948
954
|
export declare type AriGraphRelationshipsFilter = {
|
|
949
|
-
type
|
|
955
|
+
type?: Maybe<Scalars['ID']>;
|
|
950
956
|
from?: Maybe<Scalars['ID']>;
|
|
951
957
|
to?: Maybe<Scalars['ID']>;
|
|
952
958
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
@@ -1945,6 +1951,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
1945
1951
|
metricDefinition?: Maybe<CompassMetricDefinitionResult>;
|
|
1946
1952
|
eventSource?: Maybe<CompassEventSourceResult>;
|
|
1947
1953
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
1954
|
+
metricValuesTimeSeries?: Maybe<CompassMetricValuesTimeseriesResult>;
|
|
1948
1955
|
};
|
|
1949
1956
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
1950
1957
|
id: Scalars['ID'];
|
|
@@ -1995,6 +2002,10 @@ export declare type CompassCatalogQueryApiEventSourceArgs = {
|
|
|
1995
2002
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionsArgs = {
|
|
1996
2003
|
query: CompassCustomFieldDefinitionsQuery;
|
|
1997
2004
|
};
|
|
2005
|
+
export declare type CompassCatalogQueryApiMetricValuesTimeSeriesArgs = {
|
|
2006
|
+
cloudId: Scalars['ID'];
|
|
2007
|
+
metricSourceId: Scalars['ID'];
|
|
2008
|
+
};
|
|
1998
2009
|
export declare type CompassChangeMetadata = {
|
|
1999
2010
|
__typename?: 'CompassChangeMetadata';
|
|
2000
2011
|
createdAt?: Maybe<Scalars['DateTime']>;
|
|
@@ -2213,6 +2224,9 @@ export declare type CompassCreateIncidentEventInput = {
|
|
|
2213
2224
|
export declare type CompassCreateIncidentEventPropertiesInput = {
|
|
2214
2225
|
id: Scalars['ID'];
|
|
2215
2226
|
state: CompassIncidentEventState;
|
|
2227
|
+
severity?: Maybe<CompassIncidentEventSeverityInput>;
|
|
2228
|
+
startTime: Scalars['DateTime'];
|
|
2229
|
+
endTime?: Maybe<Scalars['DateTime']>;
|
|
2216
2230
|
};
|
|
2217
2231
|
export declare type CompassCreateLifecycleEventInput = {
|
|
2218
2232
|
displayName: Scalars['String'];
|
|
@@ -2718,11 +2732,29 @@ export declare type CompassIncidentEventProperties = {
|
|
|
2718
2732
|
__typename?: 'CompassIncidentEventProperties';
|
|
2719
2733
|
id: Scalars['ID'];
|
|
2720
2734
|
state?: Maybe<CompassIncidentEventState>;
|
|
2735
|
+
severity?: Maybe<CompassIncidentEventSeverity>;
|
|
2736
|
+
startTime?: Maybe<Scalars['DateTime']>;
|
|
2737
|
+
endTime?: Maybe<Scalars['DateTime']>;
|
|
2721
2738
|
};
|
|
2739
|
+
export declare type CompassIncidentEventSeverity = {
|
|
2740
|
+
__typename?: 'CompassIncidentEventSeverity';
|
|
2741
|
+
label?: Maybe<Scalars['String']>;
|
|
2742
|
+
level?: Maybe<CompassIncidentEventSeverityLevel>;
|
|
2743
|
+
};
|
|
2744
|
+
export declare type CompassIncidentEventSeverityInput = {
|
|
2745
|
+
label?: Maybe<Scalars['String']>;
|
|
2746
|
+
level?: Maybe<CompassIncidentEventSeverityLevel>;
|
|
2747
|
+
};
|
|
2748
|
+
export declare enum CompassIncidentEventSeverityLevel {
|
|
2749
|
+
One = "ONE",
|
|
2750
|
+
Two = "TWO",
|
|
2751
|
+
Three = "THREE",
|
|
2752
|
+
Four = "FOUR",
|
|
2753
|
+
Five = "FIVE"
|
|
2754
|
+
}
|
|
2722
2755
|
export declare enum CompassIncidentEventState {
|
|
2723
2756
|
Open = "OPEN",
|
|
2724
2757
|
Resolved = "RESOLVED",
|
|
2725
|
-
Closed = "CLOSED",
|
|
2726
2758
|
Deleted = "DELETED"
|
|
2727
2759
|
}
|
|
2728
2760
|
export declare type CompassInsertMetricValueByExternalIdInput = {
|
|
@@ -2795,6 +2827,7 @@ export declare type CompassMetricDefinition = {
|
|
|
2795
2827
|
format?: Maybe<CompassMetricDefinitionFormat>;
|
|
2796
2828
|
type: CompassMetricDefinitionType;
|
|
2797
2829
|
metricSources?: Maybe<CompassMetricSourcesQueryResult>;
|
|
2830
|
+
derivedEventTypes?: Maybe<Array<CompassEventType>>;
|
|
2798
2831
|
};
|
|
2799
2832
|
export declare type CompassMetricDefinitionMetricSourcesArgs = {
|
|
2800
2833
|
query?: Maybe<CompassMetricSourcesQuery>;
|
|
@@ -2887,6 +2920,11 @@ export declare type CompassMetricValueInput = {
|
|
|
2887
2920
|
timestamp: Scalars['DateTime'];
|
|
2888
2921
|
value: Scalars['Float'];
|
|
2889
2922
|
};
|
|
2923
|
+
export declare type CompassMetricValuesTimeseries = {
|
|
2924
|
+
__typename?: 'CompassMetricValuesTimeseries';
|
|
2925
|
+
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
2926
|
+
};
|
|
2927
|
+
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
2890
2928
|
export declare type CompassQueryFieldFilter = {
|
|
2891
2929
|
name: Scalars['String'];
|
|
2892
2930
|
filter?: Maybe<CompassQueryFilter>;
|
|
@@ -3468,6 +3506,10 @@ export declare enum ConfluenceContributionStatus {
|
|
|
3468
3506
|
Unknown = "UNKNOWN",
|
|
3469
3507
|
Unpublished = "UNPUBLISHED"
|
|
3470
3508
|
}
|
|
3509
|
+
export declare type ConfluenceCopyPageTaskResult = {
|
|
3510
|
+
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
3511
|
+
page?: Maybe<ConfluencePage>;
|
|
3512
|
+
};
|
|
3471
3513
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
3472
3514
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3473
3515
|
spaceId: Scalars['ID'];
|
|
@@ -3659,6 +3701,35 @@ export declare type ConfluenceLabel = {
|
|
|
3659
3701
|
label?: Maybe<Scalars['String']>;
|
|
3660
3702
|
prefix?: Maybe<Scalars['String']>;
|
|
3661
3703
|
};
|
|
3704
|
+
export declare type ConfluenceLongTask = {
|
|
3705
|
+
__typename?: 'ConfluenceLongTask';
|
|
3706
|
+
id: Scalars['ID'];
|
|
3707
|
+
state?: Maybe<ConfluenceLongTaskState>;
|
|
3708
|
+
taskId?: Maybe<Scalars['ID']>;
|
|
3709
|
+
};
|
|
3710
|
+
export declare type ConfluenceLongTaskFailed = ConfluenceLongTaskState & {
|
|
3711
|
+
__typename?: 'ConfluenceLongTaskFailed';
|
|
3712
|
+
elapsedTime?: Maybe<Scalars['Long']>;
|
|
3713
|
+
errorMessages?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
3714
|
+
name?: Maybe<Scalars['String']>;
|
|
3715
|
+
};
|
|
3716
|
+
export declare type ConfluenceLongTaskInProgress = ConfluenceLongTaskState & {
|
|
3717
|
+
__typename?: 'ConfluenceLongTaskInProgress';
|
|
3718
|
+
elapsedTime?: Maybe<Scalars['Long']>;
|
|
3719
|
+
name?: Maybe<Scalars['String']>;
|
|
3720
|
+
percentageComplete?: Maybe<Scalars['Int']>;
|
|
3721
|
+
};
|
|
3722
|
+
export declare type ConfluenceLongTaskResult = ConfluenceCopyPageTaskResult;
|
|
3723
|
+
export declare type ConfluenceLongTaskState = {
|
|
3724
|
+
elapsedTime?: Maybe<Scalars['Long']>;
|
|
3725
|
+
name?: Maybe<Scalars['String']>;
|
|
3726
|
+
};
|
|
3727
|
+
export declare type ConfluenceLongTaskSuccess = ConfluenceLongTaskState & {
|
|
3728
|
+
__typename?: 'ConfluenceLongTaskSuccess';
|
|
3729
|
+
elapsedTime?: Maybe<Scalars['Long']>;
|
|
3730
|
+
name?: Maybe<Scalars['String']>;
|
|
3731
|
+
result?: Maybe<ConfluenceLongTaskResult>;
|
|
3732
|
+
};
|
|
3662
3733
|
export declare type ConfluenceMutationApi = {
|
|
3663
3734
|
__typename?: 'ConfluenceMutationApi';
|
|
3664
3735
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
@@ -3688,6 +3759,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
3688
3759
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3689
3760
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3690
3761
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3762
|
+
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
3691
3763
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
3692
3764
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
3693
3765
|
createUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
@@ -3776,6 +3848,9 @@ export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
|
3776
3848
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
3777
3849
|
input: ConfluenceUpdateSpaceInput;
|
|
3778
3850
|
};
|
|
3851
|
+
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
3852
|
+
input: ConfluenceUpdateSpaceSettingsInput;
|
|
3853
|
+
};
|
|
3779
3854
|
export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
3780
3855
|
input: ConfluenceUpdateValueBlogPostPropertyInput;
|
|
3781
3856
|
};
|
|
@@ -3927,6 +4002,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
3927
4002
|
comment?: Maybe<ConfluenceComment>;
|
|
3928
4003
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3929
4004
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
4005
|
+
longTask?: Maybe<ConfluenceLongTask>;
|
|
3930
4006
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
3931
4007
|
page?: Maybe<ConfluencePage>;
|
|
3932
4008
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
@@ -3950,6 +4026,9 @@ export declare type ConfluenceQueryApiCommentsArgs = {
|
|
|
3950
4026
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
3951
4027
|
id: Scalars['ID'];
|
|
3952
4028
|
};
|
|
4029
|
+
export declare type ConfluenceQueryApiLongTaskArgs = {
|
|
4030
|
+
id: Scalars['ID'];
|
|
4031
|
+
};
|
|
3953
4032
|
export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
3954
4033
|
after?: Maybe<Scalars['String']>;
|
|
3955
4034
|
cloudId: Scalars['ID'];
|
|
@@ -4016,6 +4095,7 @@ export declare type ConfluenceSpace = {
|
|
|
4016
4095
|
name?: Maybe<Scalars['String']>;
|
|
4017
4096
|
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
4018
4097
|
spaceId: Scalars['ID'];
|
|
4098
|
+
settings?: Maybe<ConfluenceSpaceSettings>;
|
|
4019
4099
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
4020
4100
|
type?: Maybe<ConfluenceSpaceType>;
|
|
4021
4101
|
};
|
|
@@ -4059,6 +4139,21 @@ export declare type ConfluenceSpaceMetadata = {
|
|
|
4059
4139
|
totalCurrentPages?: Maybe<Scalars['Int']>;
|
|
4060
4140
|
totalWatchers?: Maybe<Scalars['Int']>;
|
|
4061
4141
|
};
|
|
4142
|
+
export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
4143
|
+
V1 = "V1",
|
|
4144
|
+
V2 = "V2"
|
|
4145
|
+
}
|
|
4146
|
+
export declare type ConfluenceSpaceSettings = {
|
|
4147
|
+
__typename?: 'ConfluenceSpaceSettings';
|
|
4148
|
+
editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
|
|
4149
|
+
routeOverrideEnabled?: Maybe<Scalars['Boolean']>;
|
|
4150
|
+
};
|
|
4151
|
+
export declare type ConfluenceSpaceSettingsEditorVersions = {
|
|
4152
|
+
__typename?: 'ConfluenceSpaceSettingsEditorVersions';
|
|
4153
|
+
blogPost?: Maybe<ConfluenceSpaceSettingEditorVersion>;
|
|
4154
|
+
default?: Maybe<ConfluenceSpaceSettingEditorVersion>;
|
|
4155
|
+
page?: Maybe<ConfluenceSpaceSettingEditorVersion>;
|
|
4156
|
+
};
|
|
4062
4157
|
export declare enum ConfluenceSpaceStatus {
|
|
4063
4158
|
Archived = "ARCHIVED",
|
|
4064
4159
|
Current = "CURRENT"
|
|
@@ -4147,6 +4242,16 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
4147
4242
|
errors?: Maybe<Array<MutationError>>;
|
|
4148
4243
|
success: Scalars['Boolean'];
|
|
4149
4244
|
};
|
|
4245
|
+
export declare type ConfluenceUpdateSpaceSettingsInput = {
|
|
4246
|
+
id: Scalars['String'];
|
|
4247
|
+
routeOverrideEnabled: Scalars['Boolean'];
|
|
4248
|
+
};
|
|
4249
|
+
export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
4250
|
+
__typename?: 'ConfluenceUpdateSpaceSettingsPayload';
|
|
4251
|
+
confluenceSpaceSettings?: Maybe<ConfluenceSpaceSettings>;
|
|
4252
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4253
|
+
success: Scalars['Boolean'];
|
|
4254
|
+
};
|
|
4150
4255
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
4151
4256
|
blogPostId: Scalars['ID'];
|
|
4152
4257
|
key: Scalars['String'];
|
|
@@ -4182,6 +4287,7 @@ export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
|
4182
4287
|
export declare type ConfluenceUserInfo = {
|
|
4183
4288
|
__typename?: 'ConfluenceUserInfo';
|
|
4184
4289
|
user?: Maybe<User>;
|
|
4290
|
+
type: ConfluenceUserType;
|
|
4185
4291
|
};
|
|
4186
4292
|
export declare type ConfluenceUserProperty = {
|
|
4187
4293
|
__typename?: 'ConfluenceUserProperty';
|
|
@@ -4192,6 +4298,10 @@ export declare type ConfluenceUserProperty = {
|
|
|
4192
4298
|
propertyId: Scalars['ID'];
|
|
4193
4299
|
value: Scalars['String'];
|
|
4194
4300
|
};
|
|
4301
|
+
export declare enum ConfluenceUserType {
|
|
4302
|
+
Anonymous = "ANONYMOUS",
|
|
4303
|
+
Known = "KNOWN"
|
|
4304
|
+
}
|
|
4195
4305
|
export declare type ConnectAppScope = {
|
|
4196
4306
|
__typename?: 'ConnectAppScope';
|
|
4197
4307
|
scopeId: Scalars['ID'];
|
|
@@ -4343,6 +4453,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
4343
4453
|
__typename?: 'ContentPlatformReleaseNote';
|
|
4344
4454
|
releaseNoteId: Scalars['String'];
|
|
4345
4455
|
updatedAt?: Maybe<Scalars['String']>;
|
|
4456
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
4346
4457
|
url?: Maybe<Scalars['String']>;
|
|
4347
4458
|
fdIssueLink?: Maybe<Scalars['String']>;
|
|
4348
4459
|
fdIssueKey?: Maybe<Scalars['String']>;
|
|
@@ -5337,21 +5448,46 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
5337
5448
|
};
|
|
5338
5449
|
export declare type DevOps = {
|
|
5339
5450
|
__typename?: 'DevOps';
|
|
5451
|
+
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
5340
5452
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5453
|
+
pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
|
|
5454
|
+
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5341
5455
|
ariGraph?: Maybe<AriGraph>;
|
|
5342
5456
|
};
|
|
5457
|
+
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
5458
|
+
ids: Array<Scalars['ID']>;
|
|
5459
|
+
};
|
|
5343
5460
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
5344
5461
|
ids: Array<Scalars['ID']>;
|
|
5345
5462
|
};
|
|
5463
|
+
export declare type DevOpsPullRequestEntityDetailsArgs = {
|
|
5464
|
+
ids: Array<Scalars['ID']>;
|
|
5465
|
+
};
|
|
5466
|
+
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5467
|
+
ids: Array<Scalars['ID']>;
|
|
5468
|
+
};
|
|
5346
5469
|
export declare type DevOpsAvatar = {
|
|
5347
5470
|
__typename?: 'DevOpsAvatar';
|
|
5348
5471
|
url?: Maybe<Scalars['URL']>;
|
|
5349
5472
|
description?: Maybe<Scalars['String']>;
|
|
5350
5473
|
};
|
|
5474
|
+
export declare type DevOpsBranchInfo = {
|
|
5475
|
+
__typename?: 'DevOpsBranchInfo';
|
|
5476
|
+
name?: Maybe<Scalars['String']>;
|
|
5477
|
+
url?: Maybe<Scalars['String']>;
|
|
5478
|
+
};
|
|
5351
5479
|
export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
5352
5480
|
key: Scalars['String'];
|
|
5353
5481
|
value: Scalars['JSON'];
|
|
5354
5482
|
};
|
|
5483
|
+
export declare type DevOpsEntities = {
|
|
5484
|
+
__typename?: 'DevOpsEntities';
|
|
5485
|
+
featureFlagEntities?: Maybe<DevOpsFeatureFlagConnection>;
|
|
5486
|
+
};
|
|
5487
|
+
export declare type DevOpsEntitiesFeatureFlagEntitiesArgs = {
|
|
5488
|
+
first?: Maybe<Scalars['Int']>;
|
|
5489
|
+
after?: Maybe<Scalars['String']>;
|
|
5490
|
+
};
|
|
5355
5491
|
export declare type DevOpsEnvironment = {
|
|
5356
5492
|
__typename?: 'DevOpsEnvironment';
|
|
5357
5493
|
category?: Maybe<DevOpsEnvironmentCategory>;
|
|
@@ -5364,6 +5500,64 @@ export declare enum DevOpsEnvironmentCategory {
|
|
|
5364
5500
|
Development = "DEVELOPMENT",
|
|
5365
5501
|
Unmapped = "UNMAPPED"
|
|
5366
5502
|
}
|
|
5503
|
+
export declare type DevOpsFeatureFlag = {
|
|
5504
|
+
__typename?: 'DevOpsFeatureFlag';
|
|
5505
|
+
id: Scalars['ID'];
|
|
5506
|
+
flagId?: Maybe<Scalars['String']>;
|
|
5507
|
+
key?: Maybe<Scalars['String']>;
|
|
5508
|
+
displayName?: Maybe<Scalars['String']>;
|
|
5509
|
+
providerId?: Maybe<Scalars['String']>;
|
|
5510
|
+
summary?: Maybe<DevOpsFeatureFlagSummary>;
|
|
5511
|
+
details?: Maybe<DevOpsFeatureFlagDetailsConnection>;
|
|
5512
|
+
};
|
|
5513
|
+
export declare type DevOpsFeatureFlagDetailsArgs = {
|
|
5514
|
+
first?: Maybe<Scalars['Int']>;
|
|
5515
|
+
after?: Maybe<Scalars['String']>;
|
|
5516
|
+
};
|
|
5517
|
+
export declare type DevOpsFeatureFlagConnection = {
|
|
5518
|
+
__typename?: 'DevOpsFeatureFlagConnection';
|
|
5519
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5520
|
+
pageInfo: PageInfo;
|
|
5521
|
+
edges?: Maybe<Array<Maybe<DevOpsFeatureFlagEdge>>>;
|
|
5522
|
+
};
|
|
5523
|
+
export declare type DevOpsFeatureFlagDetailEdge = {
|
|
5524
|
+
__typename?: 'DevOpsFeatureFlagDetailEdge';
|
|
5525
|
+
cursor?: Maybe<Scalars['String']>;
|
|
5526
|
+
node?: Maybe<DevOpsFeatureFlagDetails>;
|
|
5527
|
+
};
|
|
5528
|
+
export declare type DevOpsFeatureFlagDetails = {
|
|
5529
|
+
__typename?: 'DevOpsFeatureFlagDetails';
|
|
5530
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
5531
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
5532
|
+
environmentName?: Maybe<Scalars['String']>;
|
|
5533
|
+
environmentCategory?: Maybe<DevOpsEnvironmentCategory>;
|
|
5534
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5535
|
+
rolloutPercentage?: Maybe<Scalars['Float']>;
|
|
5536
|
+
rolloutText?: Maybe<Scalars['String']>;
|
|
5537
|
+
rolloutRules?: Maybe<Scalars['Int']>;
|
|
5538
|
+
url?: Maybe<Scalars['URL']>;
|
|
5539
|
+
};
|
|
5540
|
+
export declare type DevOpsFeatureFlagDetailsConnection = {
|
|
5541
|
+
__typename?: 'DevOpsFeatureFlagDetailsConnection';
|
|
5542
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
5543
|
+
pageInfo: PageInfo;
|
|
5544
|
+
edges?: Maybe<Array<Maybe<DevOpsFeatureFlagDetailEdge>>>;
|
|
5545
|
+
};
|
|
5546
|
+
export declare type DevOpsFeatureFlagEdge = {
|
|
5547
|
+
__typename?: 'DevOpsFeatureFlagEdge';
|
|
5548
|
+
cursor?: Maybe<Scalars['String']>;
|
|
5549
|
+
node?: Maybe<DevOpsFeatureFlag>;
|
|
5550
|
+
};
|
|
5551
|
+
export declare type DevOpsFeatureFlagSummary = {
|
|
5552
|
+
__typename?: 'DevOpsFeatureFlagSummary';
|
|
5553
|
+
enabled?: Maybe<Scalars['Boolean']>;
|
|
5554
|
+
defaultValue?: Maybe<Scalars['String']>;
|
|
5555
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5556
|
+
rolloutPercentage?: Maybe<Scalars['Float']>;
|
|
5557
|
+
rolloutText?: Maybe<Scalars['String']>;
|
|
5558
|
+
rolloutRules?: Maybe<Scalars['Int']>;
|
|
5559
|
+
url?: Maybe<Scalars['URL']>;
|
|
5560
|
+
};
|
|
5367
5561
|
export declare enum DevOpsJiraProjectType {
|
|
5368
5562
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
5369
5563
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
@@ -5559,6 +5753,34 @@ export declare type DevOpsProviderLinks = {
|
|
|
5559
5753
|
home?: Maybe<Scalars['URL']>;
|
|
5560
5754
|
listDeploymentsTemplate?: Maybe<Scalars['URL']>;
|
|
5561
5755
|
};
|
|
5756
|
+
export declare enum DevOpsPullRequestApprovalStatus {
|
|
5757
|
+
Approved = "APPROVED",
|
|
5758
|
+
Unapproved = "UNAPPROVED"
|
|
5759
|
+
}
|
|
5760
|
+
export declare type DevOpsPullRequestDetails = {
|
|
5761
|
+
__typename?: 'DevOpsPullRequestDetails';
|
|
5762
|
+
id: Scalars['ID'];
|
|
5763
|
+
repositoryId?: Maybe<Scalars['ID']>;
|
|
5764
|
+
repositoryInternalId?: Maybe<Scalars['String']>;
|
|
5765
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
5766
|
+
repositoryUrl?: Maybe<Scalars['String']>;
|
|
5767
|
+
title?: Maybe<Scalars['String']>;
|
|
5768
|
+
commentCount?: Maybe<Scalars['Int']>;
|
|
5769
|
+
author?: Maybe<User>;
|
|
5770
|
+
reviewers?: Maybe<Array<Maybe<DevOpsReviewer>>>;
|
|
5771
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5772
|
+
status?: Maybe<DevOpsPullRequestStatus>;
|
|
5773
|
+
sourceBranch?: Maybe<DevOpsBranchInfo>;
|
|
5774
|
+
destinationBranch?: Maybe<DevOpsBranchInfo>;
|
|
5775
|
+
url?: Maybe<Scalars['String']>;
|
|
5776
|
+
pullRequestInternalId?: Maybe<Scalars['String']>;
|
|
5777
|
+
};
|
|
5778
|
+
export declare enum DevOpsPullRequestStatus {
|
|
5779
|
+
Open = "OPEN",
|
|
5780
|
+
Merged = "MERGED",
|
|
5781
|
+
Declined = "DECLINED",
|
|
5782
|
+
Unknown = "UNKNOWN"
|
|
5783
|
+
}
|
|
5562
5784
|
export declare enum DevOpsRelationshipCertainty {
|
|
5563
5785
|
Explicit = "EXPLICIT",
|
|
5564
5786
|
Implicit = "IMPLICIT"
|
|
@@ -5573,6 +5795,11 @@ export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
|
5573
5795
|
ThirdParty = "THIRD_PARTY",
|
|
5574
5796
|
All = "ALL"
|
|
5575
5797
|
}
|
|
5798
|
+
export declare type DevOpsReviewer = {
|
|
5799
|
+
__typename?: 'DevOpsReviewer';
|
|
5800
|
+
approvalStatus?: Maybe<DevOpsPullRequestApprovalStatus>;
|
|
5801
|
+
user?: Maybe<User>;
|
|
5802
|
+
};
|
|
5576
5803
|
export declare type DevOpsService = Node & {
|
|
5577
5804
|
__typename?: 'DevOpsService';
|
|
5578
5805
|
id: Scalars['ID'];
|
|
@@ -5818,6 +6045,24 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
5818
6045
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5819
6046
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
5820
6047
|
};
|
|
6048
|
+
export declare type DevOpsSummarisedEntities = {
|
|
6049
|
+
__typename?: 'DevOpsSummarisedEntities';
|
|
6050
|
+
entityId: Scalars['ID'];
|
|
6051
|
+
summarisedDeployments?: Maybe<DevOpsSummarisedDeployments>;
|
|
6052
|
+
summarisedFeatureFlags?: Maybe<DevOpsSummarisedFeatureFlags>;
|
|
6053
|
+
};
|
|
6054
|
+
export declare type DevOpsSummarisedFeatureFlags = {
|
|
6055
|
+
__typename?: 'DevOpsSummarisedFeatureFlags';
|
|
6056
|
+
entityUrl?: Maybe<Scalars['URL']>;
|
|
6057
|
+
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
6058
|
+
mostRelevantDisplayName?: Maybe<Scalars['String']>;
|
|
6059
|
+
mostRelevantEnabled?: Maybe<Scalars['Boolean']>;
|
|
6060
|
+
mostRelevantRolloutPercentage?: Maybe<Scalars['Float']>;
|
|
6061
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
6062
|
+
totalDisabledCount?: Maybe<Scalars['Int']>;
|
|
6063
|
+
totalEnabledCount?: Maybe<Scalars['Int']>;
|
|
6064
|
+
totalRolledOutCount?: Maybe<Scalars['Int']>;
|
|
6065
|
+
};
|
|
5821
6066
|
export declare type DevOpsThirdPartyRepository = CodeRepository & {
|
|
5822
6067
|
__typename?: 'DevOpsThirdPartyRepository';
|
|
5823
6068
|
id: Scalars['ID'];
|
|
@@ -6073,7 +6318,6 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
6073
6318
|
export declare type DevOpsTools = {
|
|
6074
6319
|
__typename?: 'DevOpsTools';
|
|
6075
6320
|
tools?: Maybe<DevOpsToolConnection>;
|
|
6076
|
-
toolsThatAreInstalledOrSupportContainers?: Maybe<DevOpsToolConnection>;
|
|
6077
6321
|
tool?: Maybe<DevOpsTool>;
|
|
6078
6322
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
6079
6323
|
container?: Maybe<DevOpsToolContainer>;
|
|
@@ -6088,18 +6332,10 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
6088
6332
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
6089
6333
|
groupId?: Maybe<Scalars['String']>;
|
|
6090
6334
|
categoryId?: Maybe<Scalars['String']>;
|
|
6091
|
-
installed?: Maybe<Scalars['Boolean']>;
|
|
6092
6335
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
6093
6336
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
6094
6337
|
sort?: Maybe<Array<Maybe<DevOpsToolSort>>>;
|
|
6095
6338
|
};
|
|
6096
|
-
export declare type DevOpsToolsToolsThatAreInstalledOrSupportContainersArgs = {
|
|
6097
|
-
cloudId: Scalars['ID'];
|
|
6098
|
-
first?: Maybe<Scalars['Int']>;
|
|
6099
|
-
after?: Maybe<Scalars['String']>;
|
|
6100
|
-
groupId?: Maybe<Scalars['String']>;
|
|
6101
|
-
categoryId?: Maybe<Scalars['String']>;
|
|
6102
|
-
};
|
|
6103
6339
|
export declare type DevOpsToolsToolArgs = {
|
|
6104
6340
|
id: Scalars['ID'];
|
|
6105
6341
|
};
|
|
@@ -6141,6 +6377,26 @@ export declare type DeveloperLogAccessResult = {
|
|
|
6141
6377
|
developerHasAccess: Scalars['Boolean'];
|
|
6142
6378
|
contextId: Scalars['ID'];
|
|
6143
6379
|
};
|
|
6380
|
+
export declare type DirectoryMutation = {
|
|
6381
|
+
__typename?: 'DirectoryMutation';
|
|
6382
|
+
removeUserFromOrganization?: Maybe<DirectoryRemoveUserPayload>;
|
|
6383
|
+
};
|
|
6384
|
+
export declare type DirectoryMutationRemoveUserFromOrganizationArgs = {
|
|
6385
|
+
input?: Maybe<DirectoryRemoveUserInput>;
|
|
6386
|
+
};
|
|
6387
|
+
export declare type DirectoryQuery = {
|
|
6388
|
+
__typename?: 'DirectoryQuery';
|
|
6389
|
+
application?: Maybe<Scalars['String']>;
|
|
6390
|
+
};
|
|
6391
|
+
export declare type DirectoryRemoveUserInput = {
|
|
6392
|
+
orgId: Scalars['ID'];
|
|
6393
|
+
accountId: Scalars['ID'];
|
|
6394
|
+
};
|
|
6395
|
+
export declare type DirectoryRemoveUserPayload = Payload & {
|
|
6396
|
+
__typename?: 'DirectoryRemoveUserPayload';
|
|
6397
|
+
success: Scalars['Boolean'];
|
|
6398
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6399
|
+
};
|
|
6144
6400
|
export declare type DvcsBitbucketWorkspaceConnection = {
|
|
6145
6401
|
__typename?: 'DvcsBitbucketWorkspaceConnection';
|
|
6146
6402
|
edges?: Maybe<Array<Maybe<DvcsBitbucketWorkspaceEdge>>>;
|
|
@@ -6340,9 +6596,44 @@ export declare type FilterQuery = {
|
|
|
6340
6596
|
sanitisedJql: Scalars['String'];
|
|
6341
6597
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
6342
6598
|
};
|
|
6599
|
+
export declare type ForgeAlertsActivitiesQueryInput = {
|
|
6600
|
+
after?: Maybe<Scalars['Int']>;
|
|
6601
|
+
endTime: Scalars['String'];
|
|
6602
|
+
environment: Scalars['String'];
|
|
6603
|
+
first?: Maybe<Scalars['Int']>;
|
|
6604
|
+
startTime: Scalars['String'];
|
|
6605
|
+
};
|
|
6606
|
+
export declare type ForgeAlertsActivitiesResult = ForgeAlertsActivityConnection | QueryError;
|
|
6607
|
+
export declare type ForgeAlertsActivity = {
|
|
6608
|
+
__typename?: 'ForgeAlertsActivity';
|
|
6609
|
+
activityMessage: Scalars['String'];
|
|
6610
|
+
timestamp: Scalars['Int'];
|
|
6611
|
+
type: ForgeAlertsActivityType;
|
|
6612
|
+
};
|
|
6613
|
+
export declare type ForgeAlertsActivityConnection = {
|
|
6614
|
+
__typename?: 'ForgeAlertsActivityConnection';
|
|
6615
|
+
edges: Array<Maybe<ForgeAlertsActivityEdge>>;
|
|
6616
|
+
nodes: Array<Maybe<ForgeAlertsActivity>>;
|
|
6617
|
+
pageInfo: PageInfo;
|
|
6618
|
+
};
|
|
6619
|
+
export declare type ForgeAlertsActivityEdge = {
|
|
6620
|
+
__typename?: 'ForgeAlertsActivityEdge';
|
|
6621
|
+
cursor: Scalars['String'];
|
|
6622
|
+
node?: Maybe<ForgeAlertsActivity>;
|
|
6623
|
+
};
|
|
6624
|
+
export declare enum ForgeAlertsActivityType {
|
|
6625
|
+
AlertCreated = "ALERT_CREATED",
|
|
6626
|
+
AlertMuted = "ALERT_MUTED",
|
|
6627
|
+
AlertOpened = "ALERT_OPENED",
|
|
6628
|
+
AlertResolved = "ALERT_RESOLVED",
|
|
6629
|
+
AlertSent = "ALERT_SENT",
|
|
6630
|
+
AlertUnmuted = "ALERT_UNMUTED",
|
|
6631
|
+
AlertUpdated = "ALERT_UPDATED"
|
|
6632
|
+
}
|
|
6343
6633
|
export declare type ForgeAlertsConfigData = {
|
|
6344
6634
|
__typename?: 'ForgeAlertsConfigData';
|
|
6345
6635
|
alertName: Scalars['String'];
|
|
6636
|
+
alertId: Scalars['String'];
|
|
6346
6637
|
description?: Maybe<Scalars['String']>;
|
|
6347
6638
|
environment: Scalars['String'];
|
|
6348
6639
|
isMuted: Scalars['Boolean'];
|
|
@@ -6362,37 +6653,57 @@ export declare type ForgeAlertsCreateAlertPayload = Payload & {
|
|
|
6362
6653
|
success: Scalars['Boolean'];
|
|
6363
6654
|
};
|
|
6364
6655
|
export declare type ForgeAlertsCreateConfigInput = {
|
|
6365
|
-
|
|
6656
|
+
alertId?: Maybe<Scalars['String']>;
|
|
6366
6657
|
description?: Maybe<Scalars['String']>;
|
|
6367
6658
|
environment: Scalars['String'];
|
|
6368
6659
|
isMuted?: Maybe<Scalars['Boolean']>;
|
|
6369
6660
|
metricName?: Maybe<Scalars['String']>;
|
|
6370
6661
|
triggerValue?: Maybe<Scalars['Float']>;
|
|
6371
6662
|
};
|
|
6663
|
+
export declare type ForgeAlertsDeleteAlertConfigsInput = {
|
|
6664
|
+
appIds: Array<Scalars['ID']>;
|
|
6665
|
+
};
|
|
6666
|
+
export declare type ForgeAlertsFixAlertConfigsInput = {
|
|
6667
|
+
appIds: Array<Scalars['ID']>;
|
|
6668
|
+
};
|
|
6669
|
+
export declare type ForgeAlertsFixAlertPayload = Payload & {
|
|
6670
|
+
__typename?: 'ForgeAlertsFixAlertPayload';
|
|
6671
|
+
alertConfigs?: Maybe<Array<Maybe<ForgeAlertsConfigData>>>;
|
|
6672
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6673
|
+
success: Scalars['Boolean'];
|
|
6674
|
+
};
|
|
6372
6675
|
export declare type ForgeAlertsMutation = {
|
|
6373
6676
|
__typename?: 'ForgeAlertsMutation';
|
|
6374
6677
|
appId: Scalars['ID'];
|
|
6375
6678
|
createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
|
|
6679
|
+
deleteAlertConfigs?: Maybe<Payload>;
|
|
6680
|
+
fixAlertConfigs?: Maybe<ForgeAlertsFixAlertPayload>;
|
|
6376
6681
|
modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
|
|
6377
|
-
updateAlertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
6378
6682
|
};
|
|
6379
6683
|
export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
6380
6684
|
input: ForgeAlertsCreateConfigInput;
|
|
6381
6685
|
};
|
|
6382
|
-
export declare type
|
|
6383
|
-
input:
|
|
6686
|
+
export declare type ForgeAlertsMutationDeleteAlertConfigsArgs = {
|
|
6687
|
+
input: ForgeAlertsDeleteAlertConfigsInput;
|
|
6688
|
+
};
|
|
6689
|
+
export declare type ForgeAlertsMutationFixAlertConfigsArgs = {
|
|
6690
|
+
input: ForgeAlertsFixAlertConfigsInput;
|
|
6384
6691
|
};
|
|
6385
|
-
export declare type
|
|
6692
|
+
export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
6386
6693
|
input: ForgeAlertsUpdateConfigInput;
|
|
6387
6694
|
};
|
|
6388
6695
|
export declare type ForgeAlertsQuery = {
|
|
6389
6696
|
__typename?: 'ForgeAlertsQuery';
|
|
6390
6697
|
alertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
6698
|
+
alertActivities?: Maybe<ForgeAlertsActivitiesResult>;
|
|
6391
6699
|
appId: Scalars['ID'];
|
|
6392
6700
|
};
|
|
6393
6701
|
export declare type ForgeAlertsQueryAlertConfigArgs = {
|
|
6394
6702
|
input: ForgeAlertsConfigQueryInput;
|
|
6395
6703
|
};
|
|
6704
|
+
export declare type ForgeAlertsQueryAlertActivitiesArgs = {
|
|
6705
|
+
input: ForgeAlertsActivitiesQueryInput;
|
|
6706
|
+
};
|
|
6396
6707
|
export declare enum ForgeAlertsStatus {
|
|
6397
6708
|
Firing = "FIRING",
|
|
6398
6709
|
Resolved = "RESOLVED"
|
|
@@ -6407,6 +6718,7 @@ export declare type ForgeAlertsUpdateConfigInput = {
|
|
|
6407
6718
|
description?: Maybe<Scalars['String']>;
|
|
6408
6719
|
environment: Scalars['String'];
|
|
6409
6720
|
isMuted?: Maybe<Scalars['Boolean']>;
|
|
6721
|
+
alertName?: Maybe<Scalars['String']>;
|
|
6410
6722
|
};
|
|
6411
6723
|
export declare type ForgeContextToken = {
|
|
6412
6724
|
__typename?: 'ForgeContextToken';
|
|
@@ -6728,132 +7040,132 @@ export declare enum GrantCheckProduct {
|
|
|
6728
7040
|
export declare type HelpCenter = Node & {
|
|
6729
7041
|
__typename?: 'HelpCenter';
|
|
6730
7042
|
id: Scalars['ID'];
|
|
6731
|
-
|
|
7043
|
+
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
6732
7044
|
};
|
|
6733
|
-
export declare type
|
|
6734
|
-
|
|
7045
|
+
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
7046
|
+
helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
|
|
6735
7047
|
};
|
|
6736
|
-
export declare type
|
|
6737
|
-
|
|
7048
|
+
export declare type HelpCenterBulkDeleteTopicInput = {
|
|
7049
|
+
helpCenterTopicDeleteInput: Array<HelpCenterTopicDeleteInput>;
|
|
6738
7050
|
};
|
|
6739
|
-
export declare type
|
|
6740
|
-
|
|
7051
|
+
export declare type HelpCenterBulkUpdateTopicInput = {
|
|
7052
|
+
helpCenterUpdateTopicInputItem: Array<HelpCenterUpdateTopicInput>;
|
|
6741
7053
|
};
|
|
6742
|
-
export declare type
|
|
6743
|
-
__typename?: 'HelpCenterCollection';
|
|
6744
|
-
collectionId: Scalars['ID'];
|
|
6745
|
-
items?: Maybe<HelpCenterCollectionItemConnection>;
|
|
6746
|
-
name?: Maybe<Scalars['String']>;
|
|
6747
|
-
description?: Maybe<Scalars['String']>;
|
|
6748
|
-
properties?: Maybe<Scalars['JSON']>;
|
|
6749
|
-
};
|
|
6750
|
-
export declare type HelpCenterCollectionItemsArgs = {
|
|
6751
|
-
first?: Maybe<Scalars['Int']>;
|
|
6752
|
-
after?: Maybe<Scalars['String']>;
|
|
6753
|
-
last?: Maybe<Scalars['Int']>;
|
|
6754
|
-
before?: Maybe<Scalars['String']>;
|
|
6755
|
-
};
|
|
6756
|
-
export declare type HelpCenterCollectionDeleteInput = {
|
|
7054
|
+
export declare type HelpCenterCreateTopicInput = {
|
|
6757
7055
|
productName: Scalars['String'];
|
|
6758
|
-
|
|
6759
|
-
};
|
|
6760
|
-
export declare type HelpCenterCollectionItem = {
|
|
6761
|
-
__typename?: 'HelpCenterCollectionItem';
|
|
6762
|
-
ari: Scalars['ID'];
|
|
6763
|
-
data?: Maybe<HelpCenterHelpObject>;
|
|
6764
|
-
};
|
|
6765
|
-
export declare type HelpCenterCollectionItemConnection = {
|
|
6766
|
-
__typename?: 'HelpCenterCollectionItemConnection';
|
|
6767
|
-
edges?: Maybe<Array<Maybe<HelpCenterCollectionItemEdge>>>;
|
|
6768
|
-
nodes?: Maybe<Array<Maybe<HelpCenterCollectionItem>>>;
|
|
6769
|
-
pageInfo: PageInfo;
|
|
6770
|
-
totalCount?: Maybe<Scalars['Int']>;
|
|
6771
|
-
};
|
|
6772
|
-
export declare type HelpCenterCollectionItemEdge = {
|
|
6773
|
-
__typename?: 'HelpCenterCollectionItemEdge';
|
|
6774
|
-
cursor: Scalars['String'];
|
|
6775
|
-
node?: Maybe<HelpCenterCollectionItem>;
|
|
6776
|
-
};
|
|
6777
|
-
export declare type HelpCenterCollectionItemInput = {
|
|
6778
|
-
ari: Scalars['ID'];
|
|
6779
|
-
};
|
|
6780
|
-
export declare type HelpCenterCollectionResult = HelpCenterCollection | QueryError;
|
|
6781
|
-
export declare type HelpCenterCreateCollectionInput = {
|
|
6782
|
-
productName: Scalars['String'];
|
|
6783
|
-
items: Array<HelpCenterCollectionItemInput>;
|
|
7056
|
+
items: Array<HelpCenterTopicItemInput>;
|
|
6784
7057
|
name: Scalars['String'];
|
|
6785
7058
|
description?: Maybe<Scalars['String']>;
|
|
6786
7059
|
properties?: Maybe<Scalars['JSON']>;
|
|
6787
7060
|
};
|
|
6788
|
-
export declare type
|
|
6789
|
-
__typename?: '
|
|
7061
|
+
export declare type HelpCenterCreateTopicPayload = Payload & {
|
|
7062
|
+
__typename?: 'HelpCenterCreateTopicPayload';
|
|
6790
7063
|
success: Scalars['Boolean'];
|
|
6791
7064
|
errors?: Maybe<Array<MutationError>>;
|
|
6792
|
-
|
|
7065
|
+
successfullyCreatedTopicIds: Array<Maybe<HelpCenterSuccessfullyCreatedTopicIds>>;
|
|
6793
7066
|
};
|
|
6794
|
-
export declare type
|
|
6795
|
-
__typename?: '
|
|
7067
|
+
export declare type HelpCenterDeleteUpdateTopicPayload = Payload & {
|
|
7068
|
+
__typename?: 'HelpCenterDeleteUpdateTopicPayload';
|
|
6796
7069
|
success: Scalars['Boolean'];
|
|
6797
7070
|
errors?: Maybe<Array<MutationError>>;
|
|
6798
|
-
|
|
7071
|
+
topicIds: Array<Maybe<HelpCenterSuccessfullyDeletedUpdatedTopicIds>>;
|
|
6799
7072
|
};
|
|
6800
7073
|
export declare type HelpCenterHelpObject = HelpObjectStoreRequestForm | HelpObjectStoreArticle | HelpObjectStoreQueryError;
|
|
6801
7074
|
export declare type HelpCenterMutationApi = {
|
|
6802
7075
|
__typename?: 'HelpCenterMutationApi';
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
7076
|
+
createTopic?: Maybe<HelpCenterCreateTopicPayload>;
|
|
7077
|
+
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
7078
|
+
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
7079
|
+
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
6807
7080
|
};
|
|
6808
|
-
export declare type
|
|
6809
|
-
input:
|
|
7081
|
+
export declare type HelpCenterMutationApiCreateTopicArgs = {
|
|
7082
|
+
input: HelpCenterBulkCreateTopicsInput;
|
|
6810
7083
|
};
|
|
6811
|
-
export declare type
|
|
6812
|
-
input:
|
|
7084
|
+
export declare type HelpCenterMutationApiUpdateTopicArgs = {
|
|
7085
|
+
input: HelpCenterBulkUpdateTopicInput;
|
|
6813
7086
|
};
|
|
6814
|
-
export declare type
|
|
6815
|
-
input:
|
|
7087
|
+
export declare type HelpCenterMutationApiUpdateTopicsOrderArgs = {
|
|
7088
|
+
input: HelpCenterUpdateTopicsOrderInput;
|
|
6816
7089
|
};
|
|
6817
|
-
export declare type
|
|
6818
|
-
input:
|
|
7090
|
+
export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
7091
|
+
input: HelpCenterBulkDeleteTopicInput;
|
|
6819
7092
|
};
|
|
6820
7093
|
export declare type HelpCenterQueryApi = {
|
|
6821
7094
|
__typename?: 'HelpCenterQueryApi';
|
|
6822
7095
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
6823
|
-
|
|
7096
|
+
helpCenterTopic?: Maybe<HelpCenterTopicResult>;
|
|
6824
7097
|
};
|
|
6825
7098
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6826
7099
|
productName: Scalars['String'];
|
|
6827
7100
|
};
|
|
6828
|
-
export declare type
|
|
7101
|
+
export declare type HelpCenterQueryApiHelpCenterTopicArgs = {
|
|
6829
7102
|
productName: Scalars['String'];
|
|
6830
|
-
|
|
7103
|
+
topicId: Scalars['ID'];
|
|
6831
7104
|
};
|
|
6832
7105
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
6833
|
-
export declare type
|
|
6834
|
-
__typename?: '
|
|
7106
|
+
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
7107
|
+
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
6835
7108
|
helpCenterId: Scalars['ID'];
|
|
6836
|
-
|
|
7109
|
+
topicIds: Scalars['ID'];
|
|
6837
7110
|
};
|
|
6838
|
-
export declare type
|
|
6839
|
-
__typename?: '
|
|
7111
|
+
export declare type HelpCenterSuccessfullyDeletedUpdatedTopicIds = {
|
|
7112
|
+
__typename?: 'HelpCenterSuccessfullyDeletedUpdatedTopicIds';
|
|
6840
7113
|
helpCenterId: Scalars['ID'];
|
|
6841
|
-
|
|
7114
|
+
topicIds: Scalars['ID'];
|
|
7115
|
+
};
|
|
7116
|
+
export declare type HelpCenterTopic = {
|
|
7117
|
+
__typename?: 'HelpCenterTopic';
|
|
7118
|
+
topicId: Scalars['ID'];
|
|
7119
|
+
items?: Maybe<HelpCenterTopicItemConnection>;
|
|
7120
|
+
name?: Maybe<Scalars['String']>;
|
|
7121
|
+
description?: Maybe<Scalars['String']>;
|
|
7122
|
+
properties?: Maybe<Scalars['JSON']>;
|
|
7123
|
+
};
|
|
7124
|
+
export declare type HelpCenterTopicItemsArgs = {
|
|
7125
|
+
first?: Maybe<Scalars['Int']>;
|
|
7126
|
+
after?: Maybe<Scalars['String']>;
|
|
7127
|
+
last?: Maybe<Scalars['Int']>;
|
|
7128
|
+
before?: Maybe<Scalars['String']>;
|
|
7129
|
+
};
|
|
7130
|
+
export declare type HelpCenterTopicDeleteInput = {
|
|
7131
|
+
productName: Scalars['String'];
|
|
7132
|
+
topicId: Scalars['ID'];
|
|
7133
|
+
};
|
|
7134
|
+
export declare type HelpCenterTopicItem = {
|
|
7135
|
+
__typename?: 'HelpCenterTopicItem';
|
|
7136
|
+
ari: Scalars['ID'];
|
|
7137
|
+
data?: Maybe<HelpCenterHelpObject>;
|
|
7138
|
+
};
|
|
7139
|
+
export declare type HelpCenterTopicItemConnection = {
|
|
7140
|
+
__typename?: 'HelpCenterTopicItemConnection';
|
|
7141
|
+
edges?: Maybe<Array<Maybe<HelpCenterTopicItemEdge>>>;
|
|
7142
|
+
nodes?: Maybe<Array<Maybe<HelpCenterTopicItem>>>;
|
|
7143
|
+
pageInfo: PageInfo;
|
|
7144
|
+
totalCount?: Maybe<Scalars['Int']>;
|
|
7145
|
+
};
|
|
7146
|
+
export declare type HelpCenterTopicItemEdge = {
|
|
7147
|
+
__typename?: 'HelpCenterTopicItemEdge';
|
|
7148
|
+
cursor: Scalars['String'];
|
|
7149
|
+
node?: Maybe<HelpCenterTopicItem>;
|
|
7150
|
+
};
|
|
7151
|
+
export declare type HelpCenterTopicItemInput = {
|
|
7152
|
+
ari: Scalars['ID'];
|
|
6842
7153
|
};
|
|
6843
|
-
export declare type
|
|
7154
|
+
export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
7155
|
+
export declare type HelpCenterUpdateTopicInput = {
|
|
6844
7156
|
productName: Scalars['String'];
|
|
6845
|
-
|
|
6846
|
-
items: Array<
|
|
7157
|
+
topicId: Scalars['ID'];
|
|
7158
|
+
items: Array<HelpCenterTopicItemInput>;
|
|
6847
7159
|
name: Scalars['String'];
|
|
6848
7160
|
description?: Maybe<Scalars['String']>;
|
|
6849
7161
|
properties?: Maybe<Scalars['JSON']>;
|
|
6850
7162
|
};
|
|
6851
|
-
export declare type
|
|
7163
|
+
export declare type HelpCenterUpdateTopicsOrderInput = {
|
|
6852
7164
|
productName: Scalars['String'];
|
|
6853
|
-
|
|
7165
|
+
topicIds: Array<Scalars['ID']>;
|
|
6854
7166
|
};
|
|
6855
|
-
export declare type
|
|
6856
|
-
__typename?: '
|
|
7167
|
+
export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
7168
|
+
__typename?: 'HelpCenterUpdateTopicsOrderPayload';
|
|
6857
7169
|
success: Scalars['Boolean'];
|
|
6858
7170
|
errors?: Maybe<Array<MutationError>>;
|
|
6859
7171
|
};
|
|
@@ -8015,6 +8327,18 @@ export declare type JiraConnectNumberField = Node & JiraIssueField & JiraIssueFi
|
|
|
8015
8327
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8016
8328
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8017
8329
|
};
|
|
8330
|
+
export declare type JiraConnectReadOnlyField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8331
|
+
__typename?: 'JiraConnectReadOnlyField';
|
|
8332
|
+
id: Scalars['ID'];
|
|
8333
|
+
fieldId: Scalars['String'];
|
|
8334
|
+
aliasFieldId?: Maybe<Scalars['ID']>;
|
|
8335
|
+
type: Scalars['String'];
|
|
8336
|
+
name: Scalars['String'];
|
|
8337
|
+
description?: Maybe<Scalars['String']>;
|
|
8338
|
+
text?: Maybe<Scalars['String']>;
|
|
8339
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
8340
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
8341
|
+
};
|
|
8018
8342
|
export declare type JiraConnectRichTextField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8019
8343
|
__typename?: 'JiraConnectRichTextField';
|
|
8020
8344
|
id: Scalars['ID'];
|
|
@@ -8584,6 +8908,14 @@ export declare type JiraForgeUsersFieldUsersArgs = {
|
|
|
8584
8908
|
before?: Maybe<Scalars['String']>;
|
|
8585
8909
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
8586
8910
|
};
|
|
8911
|
+
export declare type JiraGlobalTimeTrackingSettings = {
|
|
8912
|
+
__typename?: 'JiraGlobalTimeTrackingSettings';
|
|
8913
|
+
isTimeTrackingEnabled: Scalars['Boolean'];
|
|
8914
|
+
daysPerWeek: Scalars['Float'];
|
|
8915
|
+
hoursPerDay: Scalars['Float'];
|
|
8916
|
+
defaultUnit: JiraTimeUnit;
|
|
8917
|
+
format: JiraTimeFormat;
|
|
8918
|
+
};
|
|
8587
8919
|
export declare type JiraGrantTypeKey = {
|
|
8588
8920
|
__typename?: 'JiraGrantTypeKey';
|
|
8589
8921
|
key: JiraGrantTypeKeyEnum;
|
|
@@ -8677,6 +9009,7 @@ export declare type JiraIssue = Node & {
|
|
|
8677
9009
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
8678
9010
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
8679
9011
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
9012
|
+
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
8680
9013
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
8681
9014
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
8682
9015
|
issueTypesForHierarchyBelow?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -9877,6 +10210,16 @@ export declare type JiraLabelsFieldLabelsArgs = {
|
|
|
9877
10210
|
before?: Maybe<Scalars['String']>;
|
|
9878
10211
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
9879
10212
|
};
|
|
10213
|
+
export declare type JiraLabelsFieldOperationInput = {
|
|
10214
|
+
operation: JiraMultiValueFieldOperations;
|
|
10215
|
+
labels: Array<Scalars['String']>;
|
|
10216
|
+
};
|
|
10217
|
+
export declare type JiraLabelsFieldPayload = Payload & {
|
|
10218
|
+
__typename?: 'JiraLabelsFieldPayload';
|
|
10219
|
+
success: Scalars['Boolean'];
|
|
10220
|
+
errors?: Maybe<Array<MutationError>>;
|
|
10221
|
+
field?: Maybe<JiraLabelsField>;
|
|
10222
|
+
};
|
|
9880
10223
|
export declare type JiraMediaContext = {
|
|
9881
10224
|
__typename?: 'JiraMediaContext';
|
|
9882
10225
|
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
@@ -9890,6 +10233,11 @@ export declare type JiraMediaUploadToken = {
|
|
|
9890
10233
|
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
9891
10234
|
};
|
|
9892
10235
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
10236
|
+
export declare enum JiraMultiValueFieldOperations {
|
|
10237
|
+
Add = "ADD",
|
|
10238
|
+
Remove = "REMOVE",
|
|
10239
|
+
Set = "SET"
|
|
10240
|
+
}
|
|
9893
10241
|
export declare type JiraMultipleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
9894
10242
|
__typename?: 'JiraMultipleGroupPickerField';
|
|
9895
10243
|
id: Scalars['ID'];
|
|
@@ -10005,8 +10353,10 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
10005
10353
|
};
|
|
10006
10354
|
export declare type JiraMutation = {
|
|
10007
10355
|
__typename?: 'JiraMutation';
|
|
10356
|
+
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
10008
10357
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10009
10358
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10359
|
+
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
10010
10360
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
10011
10361
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10012
10362
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -10021,10 +10371,16 @@ export declare type JiraMutation = {
|
|
|
10021
10371
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
10022
10372
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
10023
10373
|
};
|
|
10374
|
+
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
10375
|
+
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
10376
|
+
};
|
|
10024
10377
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
10025
10378
|
cloudId: Scalars['ID'];
|
|
10026
10379
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
10027
10380
|
};
|
|
10381
|
+
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
10382
|
+
input: JiraUpdateLabelsFieldInput;
|
|
10383
|
+
};
|
|
10028
10384
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
10029
10385
|
input: JiraPermissionSchemeAddGrantInput;
|
|
10030
10386
|
};
|
|
@@ -10088,6 +10444,7 @@ export declare type JiraOAuthAppsApp = {
|
|
|
10088
10444
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModule>;
|
|
10089
10445
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModule>;
|
|
10090
10446
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModule>;
|
|
10447
|
+
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModule>;
|
|
10091
10448
|
};
|
|
10092
10449
|
export declare type JiraOAuthAppsAppInput = {
|
|
10093
10450
|
name: Scalars['String'];
|
|
@@ -10097,12 +10454,14 @@ export declare type JiraOAuthAppsAppInput = {
|
|
|
10097
10454
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
10098
10455
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
10099
10456
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
10457
|
+
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModuleInput>;
|
|
10100
10458
|
};
|
|
10101
10459
|
export declare type JiraOAuthAppsAppUpdateInput = {
|
|
10102
10460
|
buildsModule?: Maybe<JiraOAuthAppsBuildsModuleInput>;
|
|
10103
10461
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModuleInput>;
|
|
10104
10462
|
deploymentsModule?: Maybe<JiraOAuthAppsDeploymentsModuleInput>;
|
|
10105
10463
|
devInfoModule?: Maybe<JiraOAuthAppsDevInfoModuleInput>;
|
|
10464
|
+
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModuleInput>;
|
|
10106
10465
|
};
|
|
10107
10466
|
export declare type JiraOAuthAppsApps = {
|
|
10108
10467
|
__typename?: 'JiraOAuthAppsApps';
|
|
@@ -10203,6 +10562,33 @@ export declare type JiraOAuthAppsPayload = Payload & {
|
|
|
10203
10562
|
success: Scalars['Boolean'];
|
|
10204
10563
|
errors?: Maybe<Array<MutationError>>;
|
|
10205
10564
|
};
|
|
10565
|
+
export declare type JiraOAuthAppsRemoteLinksModule = {
|
|
10566
|
+
__typename?: 'JiraOAuthAppsRemoteLinksModule';
|
|
10567
|
+
isEnabled: Scalars['Boolean'];
|
|
10568
|
+
actions?: Maybe<Array<JiraOAuthAppsRemoteLinksModuleAction>>;
|
|
10569
|
+
};
|
|
10570
|
+
export declare type JiraOAuthAppsRemoteLinksModuleAction = {
|
|
10571
|
+
__typename?: 'JiraOAuthAppsRemoteLinksModuleAction';
|
|
10572
|
+
id: Scalars['String'];
|
|
10573
|
+
label: JiraOAuthAppsRemoteLinksModuleActionLabel;
|
|
10574
|
+
urlTemplate: Scalars['String'];
|
|
10575
|
+
};
|
|
10576
|
+
export declare type JiraOAuthAppsRemoteLinksModuleActionInput = {
|
|
10577
|
+
id: Scalars['String'];
|
|
10578
|
+
label: JiraOAuthAppsRemoteLinksModuleActionLabelInput;
|
|
10579
|
+
urlTemplate: Scalars['String'];
|
|
10580
|
+
};
|
|
10581
|
+
export declare type JiraOAuthAppsRemoteLinksModuleActionLabel = {
|
|
10582
|
+
__typename?: 'JiraOAuthAppsRemoteLinksModuleActionLabel';
|
|
10583
|
+
value: Scalars['String'];
|
|
10584
|
+
};
|
|
10585
|
+
export declare type JiraOAuthAppsRemoteLinksModuleActionLabelInput = {
|
|
10586
|
+
value: Scalars['String'];
|
|
10587
|
+
};
|
|
10588
|
+
export declare type JiraOAuthAppsRemoteLinksModuleInput = {
|
|
10589
|
+
isEnabled: Scalars['Boolean'];
|
|
10590
|
+
actions?: Maybe<Array<JiraOAuthAppsRemoteLinksModuleActionInput>>;
|
|
10591
|
+
};
|
|
10206
10592
|
export declare type JiraOAuthAppsUpdateAppInput = {
|
|
10207
10593
|
clientId: Scalars['ID'];
|
|
10208
10594
|
app: JiraOAuthAppsAppUpdateInput;
|
|
@@ -10547,7 +10933,9 @@ export declare type JiraProject = Node & {
|
|
|
10547
10933
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10548
10934
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10549
10935
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10936
|
+
action?: Maybe<JiraProjectAction>;
|
|
10550
10937
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10938
|
+
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
10551
10939
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10552
10940
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
10553
10941
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -10556,11 +10944,21 @@ export declare type JiraProject = Node & {
|
|
|
10556
10944
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10557
10945
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
10558
10946
|
};
|
|
10947
|
+
export declare type JiraProjectActionArgs = {
|
|
10948
|
+
type: JiraProjectActionType;
|
|
10949
|
+
};
|
|
10559
10950
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
10560
10951
|
first?: Maybe<Scalars['Int']>;
|
|
10561
10952
|
after?: Maybe<Scalars['String']>;
|
|
10562
10953
|
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
10563
10954
|
};
|
|
10955
|
+
export declare type JiraProjectDevOpsEntityRelationshipsArgs = {
|
|
10956
|
+
type?: Maybe<Scalars['String']>;
|
|
10957
|
+
filter?: Maybe<AriGraphRelationshipsFilter>;
|
|
10958
|
+
first?: Maybe<Scalars['Int']>;
|
|
10959
|
+
after?: Maybe<Scalars['String']>;
|
|
10960
|
+
sort?: Maybe<AriGraphRelationshipsSort>;
|
|
10961
|
+
};
|
|
10564
10962
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
10565
10963
|
first?: Maybe<Scalars['Int']>;
|
|
10566
10964
|
after?: Maybe<Scalars['String']>;
|
|
@@ -10589,6 +10987,16 @@ export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
|
10589
10987
|
first?: Maybe<Scalars['Int']>;
|
|
10590
10988
|
after?: Maybe<Scalars['String']>;
|
|
10591
10989
|
};
|
|
10990
|
+
export declare type JiraProjectAction = {
|
|
10991
|
+
__typename?: 'JiraProjectAction';
|
|
10992
|
+
canPerform: Scalars['Boolean'];
|
|
10993
|
+
type: JiraProjectActionType;
|
|
10994
|
+
};
|
|
10995
|
+
export declare enum JiraProjectActionType {
|
|
10996
|
+
EditProjectConfig = "EDIT_PROJECT_CONFIG",
|
|
10997
|
+
ViewIssues = "VIEW_ISSUES",
|
|
10998
|
+
CreateIssues = "CREATE_ISSUES"
|
|
10999
|
+
}
|
|
10592
11000
|
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
10593
11001
|
id: Scalars['ID'];
|
|
10594
11002
|
};
|
|
@@ -10865,6 +11273,8 @@ export declare type JiraQuery = {
|
|
|
10865
11273
|
jiraProject?: Maybe<JiraProject>;
|
|
10866
11274
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
10867
11275
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
11276
|
+
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
11277
|
+
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
10868
11278
|
filter?: Maybe<JiraFilter>;
|
|
10869
11279
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
10870
11280
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
@@ -10879,6 +11289,7 @@ export declare type JiraQuery = {
|
|
|
10879
11289
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
10880
11290
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
10881
11291
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
11292
|
+
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
10882
11293
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
10883
11294
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
10884
11295
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -10889,9 +11300,12 @@ export declare type JiraQuery = {
|
|
|
10889
11300
|
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
10890
11301
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
10891
11302
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
11303
|
+
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
11304
|
+
jiraProjectByKey?: Maybe<JiraProject>;
|
|
10892
11305
|
version?: Maybe<JiraVersionResult>;
|
|
10893
11306
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
10894
11307
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
11308
|
+
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
10895
11309
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
10896
11310
|
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
10897
11311
|
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
@@ -10922,6 +11336,12 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
10922
11336
|
after?: Maybe<Scalars['String']>;
|
|
10923
11337
|
before?: Maybe<Scalars['String']>;
|
|
10924
11338
|
};
|
|
11339
|
+
export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
|
|
11340
|
+
cloudId: Scalars['ID'];
|
|
11341
|
+
};
|
|
11342
|
+
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
11343
|
+
cloudId: Scalars['ID'];
|
|
11344
|
+
};
|
|
10925
11345
|
export declare type JiraQueryFilterArgs = {
|
|
10926
11346
|
id: Scalars['ID'];
|
|
10927
11347
|
};
|
|
@@ -11030,6 +11450,13 @@ export declare type JiraQueryIssueHierarchyLimitsArgs = {
|
|
|
11030
11450
|
export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
11031
11451
|
cloudId: Scalars['ID'];
|
|
11032
11452
|
};
|
|
11453
|
+
export declare type JiraQueryJiraProjectsArgs = {
|
|
11454
|
+
ids: Array<Scalars['ID']>;
|
|
11455
|
+
};
|
|
11456
|
+
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
11457
|
+
key: Scalars['String'];
|
|
11458
|
+
cloudId: Scalars['ID'];
|
|
11459
|
+
};
|
|
11033
11460
|
export declare type JiraQueryVersionArgs = {
|
|
11034
11461
|
id: Scalars['ID'];
|
|
11035
11462
|
};
|
|
@@ -11044,6 +11471,15 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
11044
11471
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
11045
11472
|
versionId: Scalars['ID'];
|
|
11046
11473
|
};
|
|
11474
|
+
export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
11475
|
+
id: Scalars['ID'];
|
|
11476
|
+
searchBy?: Maybe<Scalars['String']>;
|
|
11477
|
+
sessionId?: Maybe<Scalars['ID']>;
|
|
11478
|
+
first?: Maybe<Scalars['Int']>;
|
|
11479
|
+
after?: Maybe<Scalars['String']>;
|
|
11480
|
+
last?: Maybe<Scalars['Int']>;
|
|
11481
|
+
before?: Maybe<Scalars['String']>;
|
|
11482
|
+
};
|
|
11047
11483
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
11048
11484
|
cloudId: Scalars['ID'];
|
|
11049
11485
|
};
|
|
@@ -11104,6 +11540,17 @@ export declare type JiraRadioSelectFieldFieldOptionsArgs = {
|
|
|
11104
11540
|
last?: Maybe<Scalars['Int']>;
|
|
11105
11541
|
before?: Maybe<Scalars['String']>;
|
|
11106
11542
|
};
|
|
11543
|
+
export declare type JiraReleaseNotesConfiguration = {
|
|
11544
|
+
__typename?: 'JiraReleaseNotesConfiguration';
|
|
11545
|
+
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
11546
|
+
issueTypeIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
11547
|
+
issueKeyConfig?: Maybe<JiraReleaseNotesIssueKeyConfig>;
|
|
11548
|
+
};
|
|
11549
|
+
export declare enum JiraReleaseNotesIssueKeyConfig {
|
|
11550
|
+
None = "NONE",
|
|
11551
|
+
Unlinked = "UNLINKED",
|
|
11552
|
+
Linked = "LINKED"
|
|
11553
|
+
}
|
|
11107
11554
|
export declare type JiraReleases = {
|
|
11108
11555
|
__typename?: 'JiraReleases';
|
|
11109
11556
|
issues?: Maybe<JiraReleasesIssueConnection>;
|
|
@@ -11446,6 +11893,7 @@ export declare enum JiraServiceManagementApprovalState {
|
|
|
11446
11893
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11447
11894
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11448
11895
|
id?: Maybe<Scalars['String']>;
|
|
11896
|
+
statusId?: Maybe<Scalars['String']>;
|
|
11449
11897
|
name?: Maybe<Scalars['String']>;
|
|
11450
11898
|
categoryId?: Maybe<Scalars['String']>;
|
|
11451
11899
|
};
|
|
@@ -12069,6 +12517,7 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
12069
12517
|
boardId: Scalars['ID'];
|
|
12070
12518
|
boardName: Scalars['String'];
|
|
12071
12519
|
isSimpleBoard: Scalars['Boolean'];
|
|
12520
|
+
totalBoardsInProject: Scalars['Long'];
|
|
12072
12521
|
};
|
|
12073
12522
|
export declare type JiraSprint = Node & {
|
|
12074
12523
|
__typename?: 'JiraSprint';
|
|
@@ -12331,6 +12780,22 @@ export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
|
12331
12780
|
errors?: Maybe<Array<MutationError>>;
|
|
12332
12781
|
filter?: Maybe<JiraCustomFilter>;
|
|
12333
12782
|
};
|
|
12783
|
+
export declare type JiraUpdateLabelsFieldInput = {
|
|
12784
|
+
id: Scalars['ID'];
|
|
12785
|
+
operations: Array<JiraLabelsFieldOperationInput>;
|
|
12786
|
+
};
|
|
12787
|
+
export declare type JiraUpdateReleaseNotesConfigurationInput = {
|
|
12788
|
+
id: Scalars['ID'];
|
|
12789
|
+
issueFieldIds: Array<Scalars['ID']>;
|
|
12790
|
+
issueTypeIds: Array<Scalars['ID']>;
|
|
12791
|
+
issueKeyConfig: JiraReleaseNotesIssueKeyConfig;
|
|
12792
|
+
};
|
|
12793
|
+
export declare type JiraUpdateReleaseNotesConfigurationPayload = Payload & {
|
|
12794
|
+
__typename?: 'JiraUpdateReleaseNotesConfigurationPayload';
|
|
12795
|
+
success: Scalars['Boolean'];
|
|
12796
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12797
|
+
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
12798
|
+
};
|
|
12334
12799
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
12335
12800
|
id: Scalars['ID'];
|
|
12336
12801
|
description?: Maybe<Scalars['String']>;
|
|
@@ -12371,7 +12836,7 @@ export declare type JiraUrlField = Node & JiraIssueField & JiraIssueFieldConfigu
|
|
|
12371
12836
|
name: Scalars['String'];
|
|
12372
12837
|
description?: Maybe<Scalars['String']>;
|
|
12373
12838
|
url?: Maybe<Scalars['URL']>;
|
|
12374
|
-
|
|
12839
|
+
uri?: Maybe<Scalars['String']>;
|
|
12375
12840
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
12376
12841
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
12377
12842
|
};
|
|
@@ -12427,6 +12892,10 @@ export declare type JiraVersion = Node & {
|
|
|
12427
12892
|
relatedWork?: Maybe<JiraVersionRelatedWorkConnection>;
|
|
12428
12893
|
suggestedRelatedWorkCategories?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
12429
12894
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
12895
|
+
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
12896
|
+
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
12897
|
+
releaseNotes?: Maybe<JiraAdf>;
|
|
12898
|
+
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
12430
12899
|
};
|
|
12431
12900
|
export declare type JiraVersionIssuesArgs = {
|
|
12432
12901
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -12441,6 +12910,19 @@ export declare type JiraVersionRelatedWorkArgs = {
|
|
|
12441
12910
|
last?: Maybe<Scalars['Int']>;
|
|
12442
12911
|
before?: Maybe<Scalars['String']>;
|
|
12443
12912
|
};
|
|
12913
|
+
export declare type JiraVersionReleaseNotesOptionsIssueTypesArgs = {
|
|
12914
|
+
first?: Maybe<Scalars['Int']>;
|
|
12915
|
+
after?: Maybe<Scalars['String']>;
|
|
12916
|
+
last?: Maybe<Scalars['Int']>;
|
|
12917
|
+
before?: Maybe<Scalars['String']>;
|
|
12918
|
+
};
|
|
12919
|
+
export declare type JiraVersionReleaseNotesOptionsIssueFieldsArgs = {
|
|
12920
|
+
first?: Maybe<Scalars['Int']>;
|
|
12921
|
+
after?: Maybe<Scalars['String']>;
|
|
12922
|
+
last?: Maybe<Scalars['Int']>;
|
|
12923
|
+
before?: Maybe<Scalars['String']>;
|
|
12924
|
+
searchString?: Maybe<Scalars['String']>;
|
|
12925
|
+
};
|
|
12444
12926
|
export declare type JiraVersionConnectAddonIframeData = {
|
|
12445
12927
|
__typename?: 'JiraVersionConnectAddonIframeData';
|
|
12446
12928
|
appKey?: Maybe<Scalars['String']>;
|
|
@@ -12638,6 +13120,12 @@ export declare enum LicenseOverrideState {
|
|
|
12638
13120
|
Inactive = "INACTIVE",
|
|
12639
13121
|
Trial = "TRIAL"
|
|
12640
13122
|
}
|
|
13123
|
+
export declare enum LifecycleStage {
|
|
13124
|
+
Staging = "STAGING",
|
|
13125
|
+
Experimental = "EXPERIMENTAL",
|
|
13126
|
+
Beta = "BETA",
|
|
13127
|
+
Production = "PRODUCTION"
|
|
13128
|
+
}
|
|
12641
13129
|
export declare type LocalizationContext = {
|
|
12642
13130
|
zoneinfo?: Maybe<Scalars['String']>;
|
|
12643
13131
|
locale?: Maybe<Scalars['String']>;
|
|
@@ -13160,6 +13648,7 @@ export declare type Mutation = {
|
|
|
13160
13648
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
13161
13649
|
compass?: Maybe<CompassCatalogMutationApi>;
|
|
13162
13650
|
shepherd?: Maybe<ShepherdMutation>;
|
|
13651
|
+
directory?: Maybe<DirectoryMutation>;
|
|
13163
13652
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
13164
13653
|
jsw?: Maybe<JswMutation>;
|
|
13165
13654
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
@@ -13204,6 +13693,7 @@ export declare type Mutation = {
|
|
|
13204
13693
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
13205
13694
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
13206
13695
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
13696
|
+
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
13207
13697
|
installApp?: Maybe<AppInstallationResponse>;
|
|
13208
13698
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
13209
13699
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
@@ -14980,6 +15470,7 @@ export declare type Query = {
|
|
|
14980
15470
|
activity?: Maybe<Activity>;
|
|
14981
15471
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
14982
15472
|
shepherd?: Maybe<ShepherdQuery>;
|
|
15473
|
+
directory?: Maybe<DirectoryQuery>;
|
|
14983
15474
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
14984
15475
|
jsw?: Maybe<JswQuery>;
|
|
14985
15476
|
boardScope?: Maybe<BoardScope>;
|
|
@@ -15005,6 +15496,7 @@ export declare type Query = {
|
|
|
15005
15496
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
15006
15497
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
15007
15498
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
15499
|
+
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
15008
15500
|
jiraReleases?: Maybe<JiraReleases>;
|
|
15009
15501
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
15010
15502
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -15353,6 +15845,7 @@ export declare enum RateLimitingCurrency {
|
|
|
15353
15845
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15354
15846
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
15355
15847
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
15848
|
+
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
15356
15849
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
15357
15850
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
15358
15851
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
@@ -15455,6 +15948,7 @@ export declare type RoadmapAddItemInput = {
|
|
|
15455
15948
|
color?: Maybe<RoadmapPaletteColor>;
|
|
15456
15949
|
rank?: Maybe<RoadmapAddItemRank>;
|
|
15457
15950
|
jql?: Maybe<Scalars['String']>;
|
|
15951
|
+
jqlContexts?: Maybe<Array<Scalars['String']>>;
|
|
15458
15952
|
assignee?: Maybe<Scalars['String']>;
|
|
15459
15953
|
labels?: Maybe<Array<Scalars['String']>>;
|
|
15460
15954
|
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -16304,7 +16798,6 @@ export declare type SearchBoardFilter = {
|
|
|
16304
16798
|
projectARI?: Maybe<Scalars['ID']>;
|
|
16305
16799
|
userARI?: Maybe<Scalars['ID']>;
|
|
16306
16800
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16307
|
-
boardTypes?: Maybe<Array<SearchBoardProductType>>;
|
|
16308
16801
|
};
|
|
16309
16802
|
export declare enum SearchBoardProductType {
|
|
16310
16803
|
Software = "SOFTWARE",
|
|
@@ -16390,7 +16883,8 @@ export declare enum SearchProjectType {
|
|
|
16390
16883
|
}
|
|
16391
16884
|
export declare type SearchQueryApi = {
|
|
16392
16885
|
__typename?: 'SearchQueryAPI';
|
|
16393
|
-
search
|
|
16886
|
+
search?: Maybe<SearchItemConnection>;
|
|
16887
|
+
recent?: Maybe<Array<SearchResult>>;
|
|
16394
16888
|
};
|
|
16395
16889
|
export declare type SearchQueryApiSearchArgs = {
|
|
16396
16890
|
query?: Maybe<Scalars['String']>;
|
|
@@ -16402,6 +16896,16 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
16402
16896
|
before?: Maybe<Scalars['String']>;
|
|
16403
16897
|
last?: Maybe<Scalars['Int']>;
|
|
16404
16898
|
};
|
|
16899
|
+
export declare type SearchQueryApiRecentArgs = {
|
|
16900
|
+
filters: SearchRecentFilterInput;
|
|
16901
|
+
analytics?: Maybe<SearchAnalyticsInput>;
|
|
16902
|
+
experience: Scalars['String'];
|
|
16903
|
+
limit?: Maybe<Scalars['Int']>;
|
|
16904
|
+
};
|
|
16905
|
+
export declare type SearchRecentFilterInput = {
|
|
16906
|
+
entities: Array<Scalars['String']>;
|
|
16907
|
+
locations: Array<Scalars['String']>;
|
|
16908
|
+
};
|
|
16405
16909
|
export declare type SearchResult = {
|
|
16406
16910
|
id: Scalars['ID'];
|
|
16407
16911
|
title: Scalars['String'];
|
|
@@ -16458,6 +16962,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
16458
16962
|
canView: Scalars['Boolean'];
|
|
16459
16963
|
simplified: Scalars['Boolean'];
|
|
16460
16964
|
landingPageInfo?: Maybe<SearchResultProjectLandingPageInfo>;
|
|
16965
|
+
project?: Maybe<JiraProject>;
|
|
16461
16966
|
};
|
|
16462
16967
|
export declare type SearchResultProjectLandingPageInfo = SearchResultSoftwareProjectLandingPageInfo | SearchResultServiceDeskProjectLandingPageInfo | SearchResultWorkManagementProjectLandingPageInfo;
|
|
16463
16968
|
export declare type SearchResultServiceDeskProjectLandingPageInfo = {
|
|
@@ -17245,8 +17750,8 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
17245
17750
|
statusTransition?: Maybe<Scalars['Boolean']>;
|
|
17246
17751
|
removeRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17247
17752
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
17248
|
-
removeSupportRequestOrganizations
|
|
17249
|
-
addSupportRequestOrganizations
|
|
17753
|
+
removeSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
17754
|
+
addSupportRequestOrganizations?: Maybe<Array<SupportRequestOrganization>>;
|
|
17250
17755
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
17251
17756
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
17252
17757
|
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
@@ -17401,7 +17906,7 @@ export declare type SupportRequestOrganization = {
|
|
|
17401
17906
|
};
|
|
17402
17907
|
export declare type SupportRequestOrganizationsInput = {
|
|
17403
17908
|
requestKey: Scalars['String'];
|
|
17404
|
-
orgIds
|
|
17909
|
+
orgIds?: Maybe<Array<Scalars['Int']>>;
|
|
17405
17910
|
};
|
|
17406
17911
|
export declare type SupportRequestPage = {
|
|
17407
17912
|
__typename?: 'SupportRequestPage';
|
|
@@ -17948,7 +18453,7 @@ export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
|
17948
18453
|
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
17949
18454
|
after?: Maybe<Scalars['String']>;
|
|
17950
18455
|
first?: Maybe<Scalars['Int']>;
|
|
17951
|
-
|
|
18456
|
+
teamId: Scalars['String'];
|
|
17952
18457
|
};
|
|
17953
18458
|
export declare type TownsquareTag = Node & {
|
|
17954
18459
|
__typename?: 'TownsquareTag';
|
|
@@ -18570,6 +19075,104 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
18570
19075
|
success: Scalars['Boolean'];
|
|
18571
19076
|
errors?: Maybe<Array<MutationError>>;
|
|
18572
19077
|
};
|
|
19078
|
+
export declare type VirtualAgentConfiguration = Node & {
|
|
19079
|
+
__typename?: 'VirtualAgentConfiguration';
|
|
19080
|
+
id: Scalars['ID'];
|
|
19081
|
+
respondToQueries: Scalars['Boolean'];
|
|
19082
|
+
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsQueryResult>;
|
|
19083
|
+
};
|
|
19084
|
+
export declare type VirtualAgentConfigurationIntentRuleProjectionsArgs = {
|
|
19085
|
+
query?: Maybe<VirtualAgentIntentRuleProjectionsQuery>;
|
|
19086
|
+
};
|
|
19087
|
+
export declare type VirtualAgentConfigurationResult = VirtualAgentConfiguration | VirtualAgentQueryError;
|
|
19088
|
+
export declare type VirtualAgentIntentProjection = Node & {
|
|
19089
|
+
__typename?: 'VirtualAgentIntentProjection';
|
|
19090
|
+
id: Scalars['ID'];
|
|
19091
|
+
name: Scalars['String'];
|
|
19092
|
+
questionProjections?: Maybe<VirtualAgentIntentQuestionsQueryResult>;
|
|
19093
|
+
};
|
|
19094
|
+
export declare type VirtualAgentIntentProjectionQuestionProjectionsArgs = {
|
|
19095
|
+
query?: Maybe<VirtualAgentIntentQuestionsQuery>;
|
|
19096
|
+
};
|
|
19097
|
+
export declare type VirtualAgentIntentProjectionResult = VirtualAgentIntentProjection | VirtualAgentQueryError;
|
|
19098
|
+
export declare type VirtualAgentIntentQuestionProjection = Node & {
|
|
19099
|
+
__typename?: 'VirtualAgentIntentQuestionProjection';
|
|
19100
|
+
id: Scalars['ID'];
|
|
19101
|
+
text: Scalars['String'];
|
|
19102
|
+
};
|
|
19103
|
+
export declare type VirtualAgentIntentQuestionProjectionEdge = {
|
|
19104
|
+
__typename?: 'VirtualAgentIntentQuestionProjectionEdge';
|
|
19105
|
+
cursor: Scalars['String'];
|
|
19106
|
+
node?: Maybe<VirtualAgentIntentQuestionProjection>;
|
|
19107
|
+
};
|
|
19108
|
+
export declare type VirtualAgentIntentQuestionProjectionsConnection = {
|
|
19109
|
+
__typename?: 'VirtualAgentIntentQuestionProjectionsConnection';
|
|
19110
|
+
edges?: Maybe<Array<VirtualAgentIntentQuestionProjectionEdge>>;
|
|
19111
|
+
nodes?: Maybe<Array<Maybe<VirtualAgentIntentQuestionProjection>>>;
|
|
19112
|
+
pageInfo: PageInfo;
|
|
19113
|
+
};
|
|
19114
|
+
export declare type VirtualAgentIntentQuestionsQuery = {
|
|
19115
|
+
first?: Maybe<Scalars['Int']>;
|
|
19116
|
+
after?: Maybe<Scalars['String']>;
|
|
19117
|
+
};
|
|
19118
|
+
export declare type VirtualAgentIntentQuestionsQueryResult = VirtualAgentIntentQuestionProjectionsConnection | VirtualAgentQueryError;
|
|
19119
|
+
export declare type VirtualAgentIntentRuleProjection = Node & {
|
|
19120
|
+
__typename?: 'VirtualAgentIntentRuleProjection';
|
|
19121
|
+
id: Scalars['ID'];
|
|
19122
|
+
isEnabled: Scalars['Boolean'];
|
|
19123
|
+
intentProjection?: Maybe<VirtualAgentIntentProjectionResult>;
|
|
19124
|
+
};
|
|
19125
|
+
export declare type VirtualAgentIntentRuleProjectionEdge = {
|
|
19126
|
+
__typename?: 'VirtualAgentIntentRuleProjectionEdge';
|
|
19127
|
+
cursor: Scalars['String'];
|
|
19128
|
+
node?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
19129
|
+
};
|
|
19130
|
+
export declare type VirtualAgentIntentRuleProjectionsConnection = {
|
|
19131
|
+
__typename?: 'VirtualAgentIntentRuleProjectionsConnection';
|
|
19132
|
+
edges?: Maybe<Array<VirtualAgentIntentRuleProjectionEdge>>;
|
|
19133
|
+
nodes?: Maybe<Array<Maybe<VirtualAgentIntentRuleProjection>>>;
|
|
19134
|
+
pageInfo: PageInfo;
|
|
19135
|
+
};
|
|
19136
|
+
export declare type VirtualAgentIntentRuleProjectionsQuery = {
|
|
19137
|
+
first?: Maybe<Scalars['Int']>;
|
|
19138
|
+
after?: Maybe<Scalars['String']>;
|
|
19139
|
+
};
|
|
19140
|
+
export declare type VirtualAgentIntentRuleProjectionsQueryResult = VirtualAgentIntentRuleProjectionsConnection | VirtualAgentQueryError;
|
|
19141
|
+
export declare type VirtualAgentMutationApi = {
|
|
19142
|
+
__typename?: 'VirtualAgentMutationApi';
|
|
19143
|
+
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
19144
|
+
};
|
|
19145
|
+
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
19146
|
+
input: VirtualAgentUpdateConfigurationInput;
|
|
19147
|
+
};
|
|
19148
|
+
export declare type VirtualAgentQueryApi = {
|
|
19149
|
+
__typename?: 'VirtualAgentQueryApi';
|
|
19150
|
+
virtualAgentConfigurationByProjectId?: Maybe<VirtualAgentConfigurationResult>;
|
|
19151
|
+
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsQueryResult>;
|
|
19152
|
+
};
|
|
19153
|
+
export declare type VirtualAgentQueryApiVirtualAgentConfigurationByProjectIdArgs = {
|
|
19154
|
+
jiraProjectId: Scalars['ID'];
|
|
19155
|
+
};
|
|
19156
|
+
export declare type VirtualAgentQueryApiIntentRuleProjectionsArgs = {
|
|
19157
|
+
virtualAgentConfigurationId: Scalars['ID'];
|
|
19158
|
+
query?: Maybe<VirtualAgentIntentRuleProjectionsQuery>;
|
|
19159
|
+
};
|
|
19160
|
+
export declare type VirtualAgentQueryError = {
|
|
19161
|
+
__typename?: 'VirtualAgentQueryError';
|
|
19162
|
+
id: Scalars['ID'];
|
|
19163
|
+
message?: Maybe<Scalars['String']>;
|
|
19164
|
+
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
19165
|
+
};
|
|
19166
|
+
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
19167
|
+
id: Scalars['ID'];
|
|
19168
|
+
respondToQueries?: Maybe<Scalars['Boolean']>;
|
|
19169
|
+
};
|
|
19170
|
+
export declare type VirtualAgentUpdateConfigurationPayload = Payload & {
|
|
19171
|
+
__typename?: 'VirtualAgentUpdateConfigurationPayload';
|
|
19172
|
+
success: Scalars['Boolean'];
|
|
19173
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19174
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
19175
|
+
};
|
|
18573
19176
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
18574
19177
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
18575
19178
|
success: Scalars['Boolean'];
|