@forge/cli-shared 2.6.2 → 3.0.0-next.2
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 +23 -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 +384 -27
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -1
- 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 +9 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +27 -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 | DevOpsPullRequestDetails;
|
|
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']>;
|
|
@@ -2909,6 +2920,11 @@ export declare type CompassMetricValueInput = {
|
|
|
2909
2920
|
timestamp: Scalars['DateTime'];
|
|
2910
2921
|
value: Scalars['Float'];
|
|
2911
2922
|
};
|
|
2923
|
+
export declare type CompassMetricValuesTimeseries = {
|
|
2924
|
+
__typename?: 'CompassMetricValuesTimeseries';
|
|
2925
|
+
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
2926
|
+
};
|
|
2927
|
+
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
2912
2928
|
export declare type CompassQueryFieldFilter = {
|
|
2913
2929
|
name: Scalars['String'];
|
|
2914
2930
|
filter?: Maybe<CompassQueryFilter>;
|
|
@@ -3490,6 +3506,10 @@ export declare enum ConfluenceContributionStatus {
|
|
|
3490
3506
|
Unknown = "UNKNOWN",
|
|
3491
3507
|
Unpublished = "UNPUBLISHED"
|
|
3492
3508
|
}
|
|
3509
|
+
export declare type ConfluenceCopyPageTaskResult = {
|
|
3510
|
+
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
3511
|
+
page?: Maybe<ConfluencePage>;
|
|
3512
|
+
};
|
|
3493
3513
|
export declare type ConfluenceCreateBlogPostInput = {
|
|
3494
3514
|
body?: Maybe<ConfluenceContentBodyInput>;
|
|
3495
3515
|
spaceId: Scalars['ID'];
|
|
@@ -3681,6 +3701,35 @@ export declare type ConfluenceLabel = {
|
|
|
3681
3701
|
label?: Maybe<Scalars['String']>;
|
|
3682
3702
|
prefix?: Maybe<Scalars['String']>;
|
|
3683
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
|
+
};
|
|
3684
3733
|
export declare type ConfluenceMutationApi = {
|
|
3685
3734
|
__typename?: 'ConfluenceMutationApi';
|
|
3686
3735
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
@@ -3710,6 +3759,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
3710
3759
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
3711
3760
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
3712
3761
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
3762
|
+
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
3713
3763
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
3714
3764
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
3715
3765
|
createUserProperty?: Maybe<ConfluenceCreateUserPropertyPayload>;
|
|
@@ -3798,6 +3848,9 @@ export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
|
3798
3848
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
3799
3849
|
input: ConfluenceUpdateSpaceInput;
|
|
3800
3850
|
};
|
|
3851
|
+
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
3852
|
+
input: ConfluenceUpdateSpaceSettingsInput;
|
|
3853
|
+
};
|
|
3801
3854
|
export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
3802
3855
|
input: ConfluenceUpdateValueBlogPostPropertyInput;
|
|
3803
3856
|
};
|
|
@@ -3949,6 +4002,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
3949
4002
|
comment?: Maybe<ConfluenceComment>;
|
|
3950
4003
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
3951
4004
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
4005
|
+
longTask?: Maybe<ConfluenceLongTask>;
|
|
3952
4006
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
3953
4007
|
page?: Maybe<ConfluencePage>;
|
|
3954
4008
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
@@ -3972,6 +4026,9 @@ export declare type ConfluenceQueryApiCommentsArgs = {
|
|
|
3972
4026
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
3973
4027
|
id: Scalars['ID'];
|
|
3974
4028
|
};
|
|
4029
|
+
export declare type ConfluenceQueryApiLongTaskArgs = {
|
|
4030
|
+
id: Scalars['ID'];
|
|
4031
|
+
};
|
|
3975
4032
|
export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
3976
4033
|
after?: Maybe<Scalars['String']>;
|
|
3977
4034
|
cloudId: Scalars['ID'];
|
|
@@ -4038,6 +4095,7 @@ export declare type ConfluenceSpace = {
|
|
|
4038
4095
|
name?: Maybe<Scalars['String']>;
|
|
4039
4096
|
operations?: Maybe<Array<Maybe<ConfluenceOperationCheck>>>;
|
|
4040
4097
|
spaceId: Scalars['ID'];
|
|
4098
|
+
settings?: Maybe<ConfluenceSpaceSettings>;
|
|
4041
4099
|
status?: Maybe<ConfluenceSpaceStatus>;
|
|
4042
4100
|
type?: Maybe<ConfluenceSpaceType>;
|
|
4043
4101
|
};
|
|
@@ -4081,6 +4139,21 @@ export declare type ConfluenceSpaceMetadata = {
|
|
|
4081
4139
|
totalCurrentPages?: Maybe<Scalars['Int']>;
|
|
4082
4140
|
totalWatchers?: Maybe<Scalars['Int']>;
|
|
4083
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
|
+
};
|
|
4084
4157
|
export declare enum ConfluenceSpaceStatus {
|
|
4085
4158
|
Archived = "ARCHIVED",
|
|
4086
4159
|
Current = "CURRENT"
|
|
@@ -4169,6 +4242,16 @@ export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
|
4169
4242
|
errors?: Maybe<Array<MutationError>>;
|
|
4170
4243
|
success: Scalars['Boolean'];
|
|
4171
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
|
+
};
|
|
4172
4255
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
4173
4256
|
blogPostId: Scalars['ID'];
|
|
4174
4257
|
key: Scalars['String'];
|
|
@@ -4204,6 +4287,7 @@ export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
|
4204
4287
|
export declare type ConfluenceUserInfo = {
|
|
4205
4288
|
__typename?: 'ConfluenceUserInfo';
|
|
4206
4289
|
user?: Maybe<User>;
|
|
4290
|
+
type: ConfluenceUserType;
|
|
4207
4291
|
};
|
|
4208
4292
|
export declare type ConfluenceUserProperty = {
|
|
4209
4293
|
__typename?: 'ConfluenceUserProperty';
|
|
@@ -4214,6 +4298,10 @@ export declare type ConfluenceUserProperty = {
|
|
|
4214
4298
|
propertyId: Scalars['ID'];
|
|
4215
4299
|
value: Scalars['String'];
|
|
4216
4300
|
};
|
|
4301
|
+
export declare enum ConfluenceUserType {
|
|
4302
|
+
Anonymous = "ANONYMOUS",
|
|
4303
|
+
Known = "KNOWN"
|
|
4304
|
+
}
|
|
4217
4305
|
export declare type ConnectAppScope = {
|
|
4218
4306
|
__typename?: 'ConnectAppScope';
|
|
4219
4307
|
scopeId: Scalars['ID'];
|
|
@@ -4365,6 +4453,7 @@ export declare type ContentPlatformReleaseNote = {
|
|
|
4365
4453
|
__typename?: 'ContentPlatformReleaseNote';
|
|
4366
4454
|
releaseNoteId: Scalars['String'];
|
|
4367
4455
|
updatedAt?: Maybe<Scalars['String']>;
|
|
4456
|
+
createdAt?: Maybe<Scalars['String']>;
|
|
4368
4457
|
url?: Maybe<Scalars['String']>;
|
|
4369
4458
|
fdIssueLink?: Maybe<Scalars['String']>;
|
|
4370
4459
|
fdIssueKey?: Maybe<Scalars['String']>;
|
|
@@ -5359,11 +5448,15 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
5359
5448
|
};
|
|
5360
5449
|
export declare type DevOps = {
|
|
5361
5450
|
__typename?: 'DevOps';
|
|
5451
|
+
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
5362
5452
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
5363
5453
|
pullRequestEntityDetails?: Maybe<Array<Maybe<DevOpsPullRequestDetails>>>;
|
|
5364
5454
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
5365
5455
|
ariGraph?: Maybe<AriGraph>;
|
|
5366
5456
|
};
|
|
5457
|
+
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
5458
|
+
ids: Array<Scalars['ID']>;
|
|
5459
|
+
};
|
|
5367
5460
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
5368
5461
|
ids: Array<Scalars['ID']>;
|
|
5369
5462
|
};
|
|
@@ -5373,10 +5466,6 @@ export declare type DevOpsPullRequestEntityDetailsArgs = {
|
|
|
5373
5466
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
5374
5467
|
ids: Array<Scalars['ID']>;
|
|
5375
5468
|
};
|
|
5376
|
-
export declare type DevOpsAuthor = {
|
|
5377
|
-
__typename?: 'DevOpsAuthor';
|
|
5378
|
-
accountId?: Maybe<Scalars['ID']>;
|
|
5379
|
-
};
|
|
5380
5469
|
export declare type DevOpsAvatar = {
|
|
5381
5470
|
__typename?: 'DevOpsAvatar';
|
|
5382
5471
|
url?: Maybe<Scalars['URL']>;
|
|
@@ -5391,6 +5480,14 @@ export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
|
5391
5480
|
key: Scalars['String'];
|
|
5392
5481
|
value: Scalars['JSON'];
|
|
5393
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
|
+
};
|
|
5394
5491
|
export declare type DevOpsEnvironment = {
|
|
5395
5492
|
__typename?: 'DevOpsEnvironment';
|
|
5396
5493
|
category?: Maybe<DevOpsEnvironmentCategory>;
|
|
@@ -5403,6 +5500,64 @@ export declare enum DevOpsEnvironmentCategory {
|
|
|
5403
5500
|
Development = "DEVELOPMENT",
|
|
5404
5501
|
Unmapped = "UNMAPPED"
|
|
5405
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
|
+
};
|
|
5406
5561
|
export declare enum DevOpsJiraProjectType {
|
|
5407
5562
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
5408
5563
|
JiraServicedesk = "JIRA_SERVICEDESK",
|
|
@@ -5605,10 +5760,13 @@ export declare enum DevOpsPullRequestApprovalStatus {
|
|
|
5605
5760
|
export declare type DevOpsPullRequestDetails = {
|
|
5606
5761
|
__typename?: 'DevOpsPullRequestDetails';
|
|
5607
5762
|
id: Scalars['ID'];
|
|
5608
|
-
|
|
5763
|
+
repositoryId?: Maybe<Scalars['ID']>;
|
|
5764
|
+
repositoryInternalId?: Maybe<Scalars['String']>;
|
|
5765
|
+
repositoryName?: Maybe<Scalars['String']>;
|
|
5766
|
+
repositoryUrl?: Maybe<Scalars['String']>;
|
|
5609
5767
|
title?: Maybe<Scalars['String']>;
|
|
5610
|
-
commentCount?: Maybe<Scalars['
|
|
5611
|
-
author?: Maybe<
|
|
5768
|
+
commentCount?: Maybe<Scalars['Int']>;
|
|
5769
|
+
author?: Maybe<User>;
|
|
5612
5770
|
reviewers?: Maybe<Array<Maybe<DevOpsReviewer>>>;
|
|
5613
5771
|
lastUpdated?: Maybe<Scalars['DateTime']>;
|
|
5614
5772
|
status?: Maybe<DevOpsPullRequestStatus>;
|
|
@@ -5639,8 +5797,8 @@ export declare enum DevOpsRepositoryHostingProviderFilter {
|
|
|
5639
5797
|
}
|
|
5640
5798
|
export declare type DevOpsReviewer = {
|
|
5641
5799
|
__typename?: 'DevOpsReviewer';
|
|
5642
|
-
accountId?: Maybe<Scalars['ID']>;
|
|
5643
5800
|
approvalStatus?: Maybe<DevOpsPullRequestApprovalStatus>;
|
|
5801
|
+
user?: Maybe<User>;
|
|
5644
5802
|
};
|
|
5645
5803
|
export declare type DevOpsService = Node & {
|
|
5646
5804
|
__typename?: 'DevOpsService';
|
|
@@ -6160,7 +6318,6 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
6160
6318
|
export declare type DevOpsTools = {
|
|
6161
6319
|
__typename?: 'DevOpsTools';
|
|
6162
6320
|
tools?: Maybe<DevOpsToolConnection>;
|
|
6163
|
-
toolsThatAreInstalledOrSupportContainers?: Maybe<DevOpsToolConnection>;
|
|
6164
6321
|
tool?: Maybe<DevOpsTool>;
|
|
6165
6322
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
6166
6323
|
container?: Maybe<DevOpsToolContainer>;
|
|
@@ -6175,18 +6332,10 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
6175
6332
|
recommended?: Maybe<Scalars['Boolean']>;
|
|
6176
6333
|
groupId?: Maybe<Scalars['String']>;
|
|
6177
6334
|
categoryId?: Maybe<Scalars['String']>;
|
|
6178
|
-
installed?: Maybe<Scalars['Boolean']>;
|
|
6179
6335
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
6180
6336
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
6181
6337
|
sort?: Maybe<Array<Maybe<DevOpsToolSort>>>;
|
|
6182
6338
|
};
|
|
6183
|
-
export declare type DevOpsToolsToolsThatAreInstalledOrSupportContainersArgs = {
|
|
6184
|
-
cloudId: Scalars['ID'];
|
|
6185
|
-
first?: Maybe<Scalars['Int']>;
|
|
6186
|
-
after?: Maybe<Scalars['String']>;
|
|
6187
|
-
groupId?: Maybe<Scalars['String']>;
|
|
6188
|
-
categoryId?: Maybe<Scalars['String']>;
|
|
6189
|
-
};
|
|
6190
6339
|
export declare type DevOpsToolsToolArgs = {
|
|
6191
6340
|
id: Scalars['ID'];
|
|
6192
6341
|
};
|
|
@@ -6943,13 +7092,13 @@ export declare type HelpCenterMutationApiDeleteTopicArgs = {
|
|
|
6943
7092
|
};
|
|
6944
7093
|
export declare type HelpCenterQueryApi = {
|
|
6945
7094
|
__typename?: 'HelpCenterQueryApi';
|
|
6946
|
-
|
|
6947
|
-
|
|
7095
|
+
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
7096
|
+
helpCenterTopicFromProductName?: Maybe<HelpCenterTopicResult>;
|
|
6948
7097
|
};
|
|
6949
|
-
export declare type
|
|
7098
|
+
export declare type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
6950
7099
|
productName: Scalars['String'];
|
|
6951
7100
|
};
|
|
6952
|
-
export declare type
|
|
7101
|
+
export declare type HelpCenterQueryApiHelpCenterTopicFromProductNameArgs = {
|
|
6953
7102
|
productName: Scalars['String'];
|
|
6954
7103
|
topicId: Scalars['ID'];
|
|
6955
7104
|
};
|
|
@@ -10061,6 +10210,16 @@ export declare type JiraLabelsFieldLabelsArgs = {
|
|
|
10061
10210
|
before?: Maybe<Scalars['String']>;
|
|
10062
10211
|
suggested?: Maybe<Scalars['Boolean']>;
|
|
10063
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
|
+
};
|
|
10064
10223
|
export declare type JiraMediaContext = {
|
|
10065
10224
|
__typename?: 'JiraMediaContext';
|
|
10066
10225
|
uploadToken?: Maybe<JiraMediaUploadTokenResult>;
|
|
@@ -10074,6 +10233,11 @@ export declare type JiraMediaUploadToken = {
|
|
|
10074
10233
|
tokenDurationInMin?: Maybe<Scalars['Int']>;
|
|
10075
10234
|
};
|
|
10076
10235
|
export declare type JiraMediaUploadTokenResult = JiraMediaUploadToken | QueryError;
|
|
10236
|
+
export declare enum JiraMultiValueFieldOperations {
|
|
10237
|
+
Add = "ADD",
|
|
10238
|
+
Remove = "REMOVE",
|
|
10239
|
+
Set = "SET"
|
|
10240
|
+
}
|
|
10077
10241
|
export declare type JiraMultipleGroupPickerField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
10078
10242
|
__typename?: 'JiraMultipleGroupPickerField';
|
|
10079
10243
|
id: Scalars['ID'];
|
|
@@ -10189,8 +10353,10 @@ export declare type JiraMultipleVersionPickerFieldVersionsArgs = {
|
|
|
10189
10353
|
};
|
|
10190
10354
|
export declare type JiraMutation = {
|
|
10191
10355
|
__typename?: 'JiraMutation';
|
|
10356
|
+
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
10192
10357
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
10193
10358
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
10359
|
+
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
10194
10360
|
addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
|
|
10195
10361
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
10196
10362
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -10205,10 +10371,16 @@ export declare type JiraMutation = {
|
|
|
10205
10371
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
10206
10372
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
10207
10373
|
};
|
|
10374
|
+
export declare type JiraMutationUpdateReleaseNotesConfigurationArgs = {
|
|
10375
|
+
input: JiraUpdateReleaseNotesConfigurationInput;
|
|
10376
|
+
};
|
|
10208
10377
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
10209
10378
|
cloudId: Scalars['ID'];
|
|
10210
10379
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
10211
10380
|
};
|
|
10381
|
+
export declare type JiraMutationUpdateLabelsFieldArgs = {
|
|
10382
|
+
input: JiraUpdateLabelsFieldInput;
|
|
10383
|
+
};
|
|
10212
10384
|
export declare type JiraMutationAddPermissionSchemeGrantsArgs = {
|
|
10213
10385
|
input: JiraPermissionSchemeAddGrantInput;
|
|
10214
10386
|
};
|
|
@@ -10761,7 +10933,9 @@ export declare type JiraProject = Node & {
|
|
|
10761
10933
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
10762
10934
|
canSetIssueRestriction?: Maybe<Scalars['Boolean']>;
|
|
10763
10935
|
navigationMetadata?: Maybe<JiraProjectNavigationMetadata>;
|
|
10936
|
+
action?: Maybe<JiraProjectAction>;
|
|
10764
10937
|
devOpsToolRelationships?: Maybe<JiraProjectAndDevOpsToolRelationshipConnection>;
|
|
10938
|
+
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
10765
10939
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
10766
10940
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
10767
10941
|
opsgenieTeamRelationships?: Maybe<JiraProjectAndOpsgenieTeamRelationshipConnection>;
|
|
@@ -10770,11 +10944,21 @@ export declare type JiraProject = Node & {
|
|
|
10770
10944
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
10771
10945
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
10772
10946
|
};
|
|
10947
|
+
export declare type JiraProjectActionArgs = {
|
|
10948
|
+
type: JiraProjectActionType;
|
|
10949
|
+
};
|
|
10773
10950
|
export declare type JiraProjectDevOpsToolRelationshipsArgs = {
|
|
10774
10951
|
first?: Maybe<Scalars['Int']>;
|
|
10775
10952
|
after?: Maybe<Scalars['String']>;
|
|
10776
10953
|
filter?: Maybe<JiraProjectAndDevOpsToolRelationshipFilter>;
|
|
10777
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
|
+
};
|
|
10778
10962
|
export declare type JiraProjectRepositoryRelationshipsArgs = {
|
|
10779
10963
|
first?: Maybe<Scalars['Int']>;
|
|
10780
10964
|
after?: Maybe<Scalars['String']>;
|
|
@@ -10803,6 +10987,16 @@ export declare type JiraProjectConfluenceSpaceRelationshipsArgs = {
|
|
|
10803
10987
|
first?: Maybe<Scalars['Int']>;
|
|
10804
10988
|
after?: Maybe<Scalars['String']>;
|
|
10805
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
|
+
}
|
|
10806
11000
|
export declare type JiraProjectAndConfluenceSpaceDeleteRelationshipForJiraProjectInput = {
|
|
10807
11001
|
id: Scalars['ID'];
|
|
10808
11002
|
};
|
|
@@ -11079,6 +11273,7 @@ export declare type JiraQuery = {
|
|
|
11079
11273
|
jiraProject?: Maybe<JiraProject>;
|
|
11080
11274
|
allJiraProjects?: Maybe<JiraProjectConnection>;
|
|
11081
11275
|
allJiraProjectCategories?: Maybe<JiraProjectCategoryConnection>;
|
|
11276
|
+
globalTimeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
11082
11277
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
11083
11278
|
filter?: Maybe<JiraFilter>;
|
|
11084
11279
|
favouriteFilters?: Maybe<JiraFilterConnection>;
|
|
@@ -11094,6 +11289,7 @@ export declare type JiraQuery = {
|
|
|
11094
11289
|
screenIdByIssueId?: Maybe<Scalars['Long']>;
|
|
11095
11290
|
screenIdByIssueKey?: Maybe<Scalars['Long']>;
|
|
11096
11291
|
epicLinkFieldKey?: Maybe<Scalars['String']>;
|
|
11292
|
+
childIssuesLimit?: Maybe<Scalars['Long']>;
|
|
11097
11293
|
allGrantTypeKeys?: Maybe<Array<JiraGrantTypeKey>>;
|
|
11098
11294
|
grantTypeValues?: Maybe<JiraGrantTypeValueConnection>;
|
|
11099
11295
|
viewPermissionScheme?: Maybe<JiraPermissionSchemeViewResult>;
|
|
@@ -11105,9 +11301,11 @@ export declare type JiraQuery = {
|
|
|
11105
11301
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
11106
11302
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']>>;
|
|
11107
11303
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
11304
|
+
jiraProjectByKey?: Maybe<JiraProject>;
|
|
11108
11305
|
version?: Maybe<JiraVersionResult>;
|
|
11109
11306
|
versionsForProject?: Maybe<JiraVersionConnection>;
|
|
11110
11307
|
versionDetailPage?: Maybe<JiraVersionDetailPage>;
|
|
11308
|
+
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
11111
11309
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
11112
11310
|
issueSearchByJql?: Maybe<JiraIssueSearchByJqlResult>;
|
|
11113
11311
|
issueSearchByFilterId?: Maybe<JiraIssueSearchByFilterResult>;
|
|
@@ -11138,6 +11336,9 @@ export declare type JiraQueryAllJiraProjectCategoriesArgs = {
|
|
|
11138
11336
|
after?: Maybe<Scalars['String']>;
|
|
11139
11337
|
before?: Maybe<Scalars['String']>;
|
|
11140
11338
|
};
|
|
11339
|
+
export declare type JiraQueryGlobalTimeTrackingSettingsArgs = {
|
|
11340
|
+
cloudId: Scalars['ID'];
|
|
11341
|
+
};
|
|
11141
11342
|
export declare type JiraQueryTimeTrackingSettingsArgs = {
|
|
11142
11343
|
cloudId: Scalars['ID'];
|
|
11143
11344
|
};
|
|
@@ -11252,6 +11453,10 @@ export declare type JiraQueryLockedIssueTypeIdsArgs = {
|
|
|
11252
11453
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
11253
11454
|
ids: Array<Scalars['ID']>;
|
|
11254
11455
|
};
|
|
11456
|
+
export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
11457
|
+
key: Scalars['String'];
|
|
11458
|
+
cloudId: Scalars['ID'];
|
|
11459
|
+
};
|
|
11255
11460
|
export declare type JiraQueryVersionArgs = {
|
|
11256
11461
|
id: Scalars['ID'];
|
|
11257
11462
|
};
|
|
@@ -11266,6 +11471,15 @@ export declare type JiraQueryVersionsForProjectArgs = {
|
|
|
11266
11471
|
export declare type JiraQueryVersionDetailPageArgs = {
|
|
11267
11472
|
versionId: Scalars['ID'];
|
|
11268
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
|
+
};
|
|
11269
11483
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
11270
11484
|
cloudId: Scalars['ID'];
|
|
11271
11485
|
};
|
|
@@ -11326,6 +11540,17 @@ export declare type JiraRadioSelectFieldFieldOptionsArgs = {
|
|
|
11326
11540
|
last?: Maybe<Scalars['Int']>;
|
|
11327
11541
|
before?: Maybe<Scalars['String']>;
|
|
11328
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
|
+
}
|
|
11329
11554
|
export declare type JiraReleases = {
|
|
11330
11555
|
__typename?: 'JiraReleases';
|
|
11331
11556
|
issues?: Maybe<JiraReleasesIssueConnection>;
|
|
@@ -11668,6 +11893,7 @@ export declare enum JiraServiceManagementApprovalState {
|
|
|
11668
11893
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11669
11894
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11670
11895
|
id?: Maybe<Scalars['String']>;
|
|
11896
|
+
statusId?: Maybe<Scalars['String']>;
|
|
11671
11897
|
name?: Maybe<Scalars['String']>;
|
|
11672
11898
|
categoryId?: Maybe<Scalars['String']>;
|
|
11673
11899
|
};
|
|
@@ -12291,6 +12517,7 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
12291
12517
|
boardId: Scalars['ID'];
|
|
12292
12518
|
boardName: Scalars['String'];
|
|
12293
12519
|
isSimpleBoard: Scalars['Boolean'];
|
|
12520
|
+
totalBoardsInProject: Scalars['Long'];
|
|
12294
12521
|
};
|
|
12295
12522
|
export declare type JiraSprint = Node & {
|
|
12296
12523
|
__typename?: 'JiraSprint';
|
|
@@ -12553,6 +12780,22 @@ export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
|
12553
12780
|
errors?: Maybe<Array<MutationError>>;
|
|
12554
12781
|
filter?: Maybe<JiraCustomFilter>;
|
|
12555
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
|
+
};
|
|
12556
12799
|
export declare type JiraUpdateVersionDescriptionInput = {
|
|
12557
12800
|
id: Scalars['ID'];
|
|
12558
12801
|
description?: Maybe<Scalars['String']>;
|
|
@@ -12651,6 +12894,8 @@ export declare type JiraVersion = Node & {
|
|
|
12651
12894
|
canEdit?: Maybe<Scalars['Boolean']>;
|
|
12652
12895
|
releaseNotesOptionsIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
12653
12896
|
releaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
12897
|
+
releaseNotes?: Maybe<JiraAdf>;
|
|
12898
|
+
releaseNotesConfiguration?: Maybe<JiraReleaseNotesConfiguration>;
|
|
12654
12899
|
};
|
|
12655
12900
|
export declare type JiraVersionIssuesArgs = {
|
|
12656
12901
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -13448,6 +13693,7 @@ export declare type Mutation = {
|
|
|
13448
13693
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
13449
13694
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
13450
13695
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
13696
|
+
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
13451
13697
|
installApp?: Maybe<AppInstallationResponse>;
|
|
13452
13698
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
13453
13699
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
@@ -15250,6 +15496,7 @@ export declare type Query = {
|
|
|
15250
15496
|
installationContextsWithLogAccess?: Maybe<Array<InstallationContextWithLogAccess>>;
|
|
15251
15497
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
15252
15498
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
15499
|
+
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
15253
15500
|
jiraReleases?: Maybe<JiraReleases>;
|
|
15254
15501
|
appInstallationTask?: Maybe<AppInstallationTask>;
|
|
15255
15502
|
ecosystem?: Maybe<EcosystemQuery>;
|
|
@@ -15598,6 +15845,7 @@ export declare enum RateLimitingCurrency {
|
|
|
15598
15845
|
TeamMembersCurrency = "TEAM_MEMBERS_CURRENCY",
|
|
15599
15846
|
CompassInsertMetricValueCurrency = "COMPASS_INSERT_METRIC_VALUE_CURRENCY",
|
|
15600
15847
|
CompassSynchronizeLinkAssociationsCurrency = "COMPASS_SYNCHRONIZE_LINK_ASSOCIATIONS_CURRENCY",
|
|
15848
|
+
DirectoryCurrency = "DIRECTORY_CURRENCY",
|
|
15601
15849
|
ForgeMetricsCurrency = "FORGE_METRICS_CURRENCY",
|
|
15602
15850
|
DevopsServiceReadCurrency = "DEVOPS_SERVICE_READ_CURRENCY",
|
|
15603
15851
|
DevopsServiceWriteCurrency = "DEVOPS_SERVICE_WRITE_CURRENCY",
|
|
@@ -15700,6 +15948,7 @@ export declare type RoadmapAddItemInput = {
|
|
|
15700
15948
|
color?: Maybe<RoadmapPaletteColor>;
|
|
15701
15949
|
rank?: Maybe<RoadmapAddItemRank>;
|
|
15702
15950
|
jql?: Maybe<Scalars['String']>;
|
|
15951
|
+
jqlContexts?: Maybe<Array<Scalars['String']>>;
|
|
15703
15952
|
assignee?: Maybe<Scalars['String']>;
|
|
15704
15953
|
labels?: Maybe<Array<Scalars['String']>>;
|
|
15705
15954
|
componentIds?: Maybe<Array<Scalars['ID']>>;
|
|
@@ -16549,7 +16798,6 @@ export declare type SearchBoardFilter = {
|
|
|
16549
16798
|
projectARI?: Maybe<Scalars['ID']>;
|
|
16550
16799
|
userARI?: Maybe<Scalars['ID']>;
|
|
16551
16800
|
negateProjectFilter?: Maybe<Scalars['Boolean']>;
|
|
16552
|
-
boardTypes?: Maybe<Array<SearchBoardProductType>>;
|
|
16553
16801
|
};
|
|
16554
16802
|
export declare enum SearchBoardProductType {
|
|
16555
16803
|
Software = "SOFTWARE",
|
|
@@ -16635,7 +16883,8 @@ export declare enum SearchProjectType {
|
|
|
16635
16883
|
}
|
|
16636
16884
|
export declare type SearchQueryApi = {
|
|
16637
16885
|
__typename?: 'SearchQueryAPI';
|
|
16638
|
-
search
|
|
16886
|
+
search?: Maybe<SearchItemConnection>;
|
|
16887
|
+
recent?: Maybe<Array<SearchResult>>;
|
|
16639
16888
|
};
|
|
16640
16889
|
export declare type SearchQueryApiSearchArgs = {
|
|
16641
16890
|
query?: Maybe<Scalars['String']>;
|
|
@@ -16647,6 +16896,16 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
16647
16896
|
before?: Maybe<Scalars['String']>;
|
|
16648
16897
|
last?: Maybe<Scalars['Int']>;
|
|
16649
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
|
+
};
|
|
16650
16909
|
export declare type SearchResult = {
|
|
16651
16910
|
id: Scalars['ID'];
|
|
16652
16911
|
title: Scalars['String'];
|
|
@@ -18194,7 +18453,7 @@ export declare type TownsquareQueryApiHelpPointersByCloudIdsArgs = {
|
|
|
18194
18453
|
export declare type TownsquareQueryApiHelpPointersByTeamArgs = {
|
|
18195
18454
|
after?: Maybe<Scalars['String']>;
|
|
18196
18455
|
first?: Maybe<Scalars['Int']>;
|
|
18197
|
-
|
|
18456
|
+
teamId: Scalars['String'];
|
|
18198
18457
|
};
|
|
18199
18458
|
export declare type TownsquareTag = Node & {
|
|
18200
18459
|
__typename?: 'TownsquareTag';
|
|
@@ -18816,6 +19075,104 @@ export declare type UserInstallationRulesPayload = Payload & {
|
|
|
18816
19075
|
success: Scalars['Boolean'];
|
|
18817
19076
|
errors?: Maybe<Array<MutationError>>;
|
|
18818
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
|
+
};
|
|
18819
19176
|
export declare type WatchMarketplaceAppPayload = Payload & {
|
|
18820
19177
|
__typename?: 'WatchMarketplaceAppPayload';
|
|
18821
19178
|
success: Scalars['Boolean'];
|