@forge/cli-shared 5.4.0-next.0 → 5.4.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 +7 -0
- package/out/graphql/graphql-types.d.ts +1098 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +211 -11
- package/package.json +2 -2
|
@@ -3643,6 +3643,7 @@ export declare type CompassComponent = Node & {
|
|
|
3643
3643
|
scorecards?: Maybe<Array<CompassScorecard>>;
|
|
3644
3644
|
type: CompassComponentType;
|
|
3645
3645
|
typeId: Scalars['ID']['output'];
|
|
3646
|
+
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
3646
3647
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
3647
3648
|
};
|
|
3648
3649
|
export declare type CompassComponentEventsArgs = {
|
|
@@ -3800,6 +3801,19 @@ export declare type CompassComponentEndpointEdge = {
|
|
|
3800
3801
|
cursor: Scalars['String']['output'];
|
|
3801
3802
|
node: CompassComponentEndpoint;
|
|
3802
3803
|
};
|
|
3804
|
+
export declare type CompassComponentInstancePermissions = {
|
|
3805
|
+
__typename?: 'CompassComponentInstancePermissions';
|
|
3806
|
+
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
3807
|
+
connectEventSource?: Maybe<CompassPermissionResult>;
|
|
3808
|
+
connectMetricSource?: Maybe<CompassPermissionResult>;
|
|
3809
|
+
createAnnouncement?: Maybe<CompassPermissionResult>;
|
|
3810
|
+
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
3811
|
+
delete?: Maybe<CompassPermissionResult>;
|
|
3812
|
+
edit?: Maybe<CompassPermissionResult>;
|
|
3813
|
+
modifyAnnouncement?: Maybe<CompassPermissionResult>;
|
|
3814
|
+
pushMetricValues?: Maybe<CompassPermissionResult>;
|
|
3815
|
+
viewAnnouncement?: Maybe<CompassPermissionResult>;
|
|
3816
|
+
};
|
|
3803
3817
|
export declare type CompassComponentLabel = {
|
|
3804
3818
|
__typename?: 'CompassComponentLabel';
|
|
3805
3819
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -4448,6 +4462,7 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4448
4462
|
deleteCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4449
4463
|
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4450
4464
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4465
|
+
preset?: Maybe<Scalars['String']['output']>;
|
|
4451
4466
|
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4452
4467
|
};
|
|
4453
4468
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
@@ -18519,6 +18534,7 @@ export declare type EcosystemMutation = {
|
|
|
18519
18534
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
18520
18535
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
18521
18536
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
18537
|
+
updateAppOAuthClient: EcosystemUpdateAppOAuthClientResult;
|
|
18522
18538
|
updateAppOwnership?: Maybe<UpdateAppOwnershipResponsePayload>;
|
|
18523
18539
|
updateUserInstallationRules?: Maybe<UserInstallationRulesPayload>;
|
|
18524
18540
|
};
|
|
@@ -18555,6 +18571,11 @@ export declare type EcosystemMutationUpdateAppContributorRoleArgs = {
|
|
|
18555
18571
|
export declare type EcosystemMutationUpdateAppHostServiceScopesArgs = {
|
|
18556
18572
|
input: UpdateAppHostServiceScopesInput;
|
|
18557
18573
|
};
|
|
18574
|
+
export declare type EcosystemMutationUpdateAppOAuthClientArgs = {
|
|
18575
|
+
appId: Scalars['ID']['input'];
|
|
18576
|
+
connectAppKey: Scalars['String']['input'];
|
|
18577
|
+
environment: Scalars['String']['input'];
|
|
18578
|
+
};
|
|
18558
18579
|
export declare type EcosystemMutationUpdateAppOwnershipArgs = {
|
|
18559
18580
|
input: UpdateAppOwnershipInput;
|
|
18560
18581
|
};
|
|
@@ -18660,6 +18681,11 @@ export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
|
18660
18681
|
eventId?: InputMaybe<Scalars['String']['input']>;
|
|
18661
18682
|
extensionAri: Scalars['String']['input'];
|
|
18662
18683
|
};
|
|
18684
|
+
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
18685
|
+
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
18686
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18687
|
+
success: Scalars['Boolean']['output'];
|
|
18688
|
+
};
|
|
18663
18689
|
export declare type EditSprintInput = {
|
|
18664
18690
|
boardId: Scalars['ID']['input'];
|
|
18665
18691
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18809,6 +18835,18 @@ export declare type ExtensionDetailsInput = {
|
|
|
18809
18835
|
definitionId: Scalars['ID']['input'];
|
|
18810
18836
|
extensionKey: Scalars['String']['input'];
|
|
18811
18837
|
};
|
|
18838
|
+
export declare enum ExternalApprovalStatus {
|
|
18839
|
+
Approved = "APPROVED",
|
|
18840
|
+
Needswork = "NEEDSWORK",
|
|
18841
|
+
Unapproved = "UNAPPROVED"
|
|
18842
|
+
}
|
|
18843
|
+
export declare type ExternalAttachment = {
|
|
18844
|
+
__typename?: 'ExternalAttachment';
|
|
18845
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
18846
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
18847
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
18848
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18849
|
+
};
|
|
18812
18850
|
export declare type ExternalAuthCredentialsInput = {
|
|
18813
18851
|
clientId?: InputMaybe<Scalars['ID']['input']>;
|
|
18814
18852
|
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18819,6 +18857,496 @@ export declare type ExternalAuthProvider = {
|
|
|
18819
18857
|
key: Scalars['String']['output'];
|
|
18820
18858
|
url: Scalars['URL']['output'];
|
|
18821
18859
|
};
|
|
18860
|
+
export declare type ExternalBranch = {
|
|
18861
|
+
__typename?: 'ExternalBranch';
|
|
18862
|
+
branchId?: Maybe<Scalars['String']['output']>;
|
|
18863
|
+
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
18864
|
+
id: Scalars['ID']['output'];
|
|
18865
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
18866
|
+
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
18867
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18868
|
+
};
|
|
18869
|
+
export declare type ExternalBranchReference = {
|
|
18870
|
+
__typename?: 'ExternalBranchReference';
|
|
18871
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
18872
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18873
|
+
};
|
|
18874
|
+
export declare type ExternalBuildCommitReference = {
|
|
18875
|
+
__typename?: 'ExternalBuildCommitReference';
|
|
18876
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
18877
|
+
repositoryUri?: Maybe<Scalars['String']['output']>;
|
|
18878
|
+
};
|
|
18879
|
+
export declare type ExternalBuildInfo = {
|
|
18880
|
+
__typename?: 'ExternalBuildInfo';
|
|
18881
|
+
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
18882
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
18883
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
18884
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
18885
|
+
id: Scalars['ID']['output'];
|
|
18886
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
18887
|
+
pipelineId?: Maybe<Scalars['String']['output']>;
|
|
18888
|
+
references?: Maybe<Array<Maybe<ExternalBuildReferences>>>;
|
|
18889
|
+
state?: Maybe<ExternalBuildState>;
|
|
18890
|
+
testInfo?: Maybe<ExternalTestInfo>;
|
|
18891
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18892
|
+
};
|
|
18893
|
+
export declare type ExternalBuildRefReference = {
|
|
18894
|
+
__typename?: 'ExternalBuildRefReference';
|
|
18895
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
18896
|
+
uri?: Maybe<Scalars['String']['output']>;
|
|
18897
|
+
};
|
|
18898
|
+
export declare type ExternalBuildReferences = {
|
|
18899
|
+
__typename?: 'ExternalBuildReferences';
|
|
18900
|
+
commit?: Maybe<ExternalBuildCommitReference>;
|
|
18901
|
+
ref?: Maybe<ExternalBuildRefReference>;
|
|
18902
|
+
};
|
|
18903
|
+
export declare enum ExternalBuildState {
|
|
18904
|
+
Cancelled = "CANCELLED",
|
|
18905
|
+
Failed = "FAILED",
|
|
18906
|
+
InProgress = "IN_PROGRESS",
|
|
18907
|
+
Pending = "PENDING",
|
|
18908
|
+
Successful = "SUCCESSFUL",
|
|
18909
|
+
Unknown = "UNKNOWN"
|
|
18910
|
+
}
|
|
18911
|
+
export declare enum ExternalChangeType {
|
|
18912
|
+
Added = "ADDED",
|
|
18913
|
+
Copied = "COPIED",
|
|
18914
|
+
Deleted = "DELETED",
|
|
18915
|
+
Modified = "MODIFIED",
|
|
18916
|
+
Moved = "MOVED",
|
|
18917
|
+
Unknown = "UNKNOWN"
|
|
18918
|
+
}
|
|
18919
|
+
export declare type ExternalChapter = {
|
|
18920
|
+
__typename?: 'ExternalChapter';
|
|
18921
|
+
startTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
18922
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
18923
|
+
};
|
|
18924
|
+
export declare type ExternalCommit = {
|
|
18925
|
+
__typename?: 'ExternalCommit';
|
|
18926
|
+
author?: Maybe<ExternalUser>;
|
|
18927
|
+
commitId?: Maybe<Scalars['String']['output']>;
|
|
18928
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18929
|
+
displayId?: Maybe<Scalars['String']['output']>;
|
|
18930
|
+
fileInfo?: Maybe<ExternalFileInfo>;
|
|
18931
|
+
flags?: Maybe<Array<Maybe<ExternalCommitFlags>>>;
|
|
18932
|
+
hash?: Maybe<Scalars['String']['output']>;
|
|
18933
|
+
id: Scalars['ID']['output'];
|
|
18934
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18935
|
+
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
18936
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18937
|
+
};
|
|
18938
|
+
export declare enum ExternalCommitFlags {
|
|
18939
|
+
MergeCommit = "MERGE_COMMIT"
|
|
18940
|
+
}
|
|
18941
|
+
export declare type ExternalConversation = {
|
|
18942
|
+
__typename?: 'ExternalConversation';
|
|
18943
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18944
|
+
createdBy?: Maybe<ExternalUser>;
|
|
18945
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
18946
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
18947
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
18948
|
+
id: Scalars['ID']['output'];
|
|
18949
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
18950
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
18951
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
18952
|
+
memberCount?: Maybe<Scalars['Long']['output']>;
|
|
18953
|
+
members?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
18954
|
+
membershipType?: Maybe<ExternalMembershipType>;
|
|
18955
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
18956
|
+
topic?: Maybe<Scalars['String']['output']>;
|
|
18957
|
+
type?: Maybe<ExternalConversationType>;
|
|
18958
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
18959
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18960
|
+
workspace?: Maybe<Scalars['String']['output']>;
|
|
18961
|
+
};
|
|
18962
|
+
export declare enum ExternalConversationType {
|
|
18963
|
+
Channel = "CHANNEL",
|
|
18964
|
+
DirectMessage = "DIRECT_MESSAGE",
|
|
18965
|
+
GroupDirectMessage = "GROUP_DIRECT_MESSAGE"
|
|
18966
|
+
}
|
|
18967
|
+
export declare type ExternalCue = {
|
|
18968
|
+
__typename?: 'ExternalCue';
|
|
18969
|
+
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
18970
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
18971
|
+
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
18972
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
18973
|
+
};
|
|
18974
|
+
export declare type ExternalDeployment = {
|
|
18975
|
+
__typename?: 'ExternalDeployment';
|
|
18976
|
+
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
18977
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
18978
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
18979
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
18980
|
+
environment?: Maybe<ExternalEnvironment>;
|
|
18981
|
+
id: Scalars['ID']['output'];
|
|
18982
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
18983
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
18984
|
+
pipeline?: Maybe<ExternalPipeline>;
|
|
18985
|
+
state?: Maybe<ExternalDeploymentState>;
|
|
18986
|
+
triggeredBy?: Maybe<ExternalUser>;
|
|
18987
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
18988
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
18989
|
+
};
|
|
18990
|
+
export declare enum ExternalDeploymentState {
|
|
18991
|
+
Cancelled = "CANCELLED",
|
|
18992
|
+
Failed = "FAILED",
|
|
18993
|
+
InProgress = "IN_PROGRESS",
|
|
18994
|
+
Pending = "PENDING",
|
|
18995
|
+
RolledBack = "ROLLED_BACK",
|
|
18996
|
+
Successful = "SUCCESSFUL",
|
|
18997
|
+
Unknown = "UNKNOWN"
|
|
18998
|
+
}
|
|
18999
|
+
export declare type ExternalDesign = {
|
|
19000
|
+
__typename?: 'ExternalDesign';
|
|
19001
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19002
|
+
createdBy?: Maybe<ExternalUser>;
|
|
19003
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19004
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19005
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
19006
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
19007
|
+
id: Scalars['ID']['output'];
|
|
19008
|
+
inspectUrl?: Maybe<Scalars['String']['output']>;
|
|
19009
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19010
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19011
|
+
liveEmbedUrl?: Maybe<Scalars['String']['output']>;
|
|
19012
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19013
|
+
status?: Maybe<ExternalDesignStatus>;
|
|
19014
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19015
|
+
type?: Maybe<ExternalDesignType>;
|
|
19016
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19017
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19018
|
+
};
|
|
19019
|
+
export declare enum ExternalDesignStatus {
|
|
19020
|
+
None = "NONE",
|
|
19021
|
+
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
19022
|
+
Unknown = "UNKNOWN"
|
|
19023
|
+
}
|
|
19024
|
+
export declare enum ExternalDesignType {
|
|
19025
|
+
Canvas = "CANVAS",
|
|
19026
|
+
File = "FILE",
|
|
19027
|
+
Group = "GROUP",
|
|
19028
|
+
Node = "NODE",
|
|
19029
|
+
Other = "OTHER",
|
|
19030
|
+
Prototype = "PROTOTYPE"
|
|
19031
|
+
}
|
|
19032
|
+
export declare type ExternalDocument = {
|
|
19033
|
+
__typename?: 'ExternalDocument';
|
|
19034
|
+
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19035
|
+
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19036
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19037
|
+
createdBy?: Maybe<ExternalUser>;
|
|
19038
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19039
|
+
exportLinks?: Maybe<Array<Maybe<ExternalExportLink>>>;
|
|
19040
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
19041
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
19042
|
+
id: Scalars['ID']['output'];
|
|
19043
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19044
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19045
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19046
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19047
|
+
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
19048
|
+
type?: Maybe<ExternalDocumentType>;
|
|
19049
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19050
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19051
|
+
};
|
|
19052
|
+
export declare enum ExternalDocumentCategory {
|
|
19053
|
+
Archive = "ARCHIVE",
|
|
19054
|
+
Audio = "AUDIO",
|
|
19055
|
+
Code = "CODE",
|
|
19056
|
+
Document = "DOCUMENT",
|
|
19057
|
+
Folder = "FOLDER",
|
|
19058
|
+
Form = "FORM",
|
|
19059
|
+
Image = "IMAGE",
|
|
19060
|
+
Other = "OTHER",
|
|
19061
|
+
Pdf = "PDF",
|
|
19062
|
+
Presentation = "PRESENTATION",
|
|
19063
|
+
Shortcut = "SHORTCUT",
|
|
19064
|
+
Spreadsheet = "SPREADSHEET",
|
|
19065
|
+
Video = "VIDEO",
|
|
19066
|
+
WebPage = "WEB_PAGE"
|
|
19067
|
+
}
|
|
19068
|
+
export declare type ExternalDocumentType = {
|
|
19069
|
+
__typename?: 'ExternalDocumentType';
|
|
19070
|
+
category?: Maybe<ExternalDocumentCategory>;
|
|
19071
|
+
fileExtension?: Maybe<Scalars['String']['output']>;
|
|
19072
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
19073
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19074
|
+
};
|
|
19075
|
+
export declare type ExternalEntities = {
|
|
19076
|
+
__typename?: 'ExternalEntities';
|
|
19077
|
+
branch?: Maybe<Array<Maybe<ExternalBranch>>>;
|
|
19078
|
+
buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
|
|
19079
|
+
commit?: Maybe<Array<Maybe<ExternalCommit>>>;
|
|
19080
|
+
conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
|
|
19081
|
+
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
19082
|
+
design?: Maybe<Array<Maybe<ExternalDesign>>>;
|
|
19083
|
+
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
19084
|
+
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
19085
|
+
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
19086
|
+
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
19087
|
+
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
19088
|
+
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
19089
|
+
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
19090
|
+
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
19091
|
+
};
|
|
19092
|
+
export declare type ExternalEnvironment = {
|
|
19093
|
+
__typename?: 'ExternalEnvironment';
|
|
19094
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19095
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
19096
|
+
type?: Maybe<ExternalEnvironmentType>;
|
|
19097
|
+
};
|
|
19098
|
+
export declare enum ExternalEnvironmentType {
|
|
19099
|
+
Development = "DEVELOPMENT",
|
|
19100
|
+
Production = "PRODUCTION",
|
|
19101
|
+
Staging = "STAGING",
|
|
19102
|
+
Testing = "TESTING",
|
|
19103
|
+
Unmapped = "UNMAPPED"
|
|
19104
|
+
}
|
|
19105
|
+
export declare type ExternalExportLink = {
|
|
19106
|
+
__typename?: 'ExternalExportLink';
|
|
19107
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19108
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19109
|
+
};
|
|
19110
|
+
export declare type ExternalFeatureFlag = {
|
|
19111
|
+
__typename?: 'ExternalFeatureFlag';
|
|
19112
|
+
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19113
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19114
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
19115
|
+
id: Scalars['ID']['output'];
|
|
19116
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
19117
|
+
summary?: Maybe<ExternalFeatureFlagSummary>;
|
|
19118
|
+
};
|
|
19119
|
+
export declare type ExternalFeatureFlagDetail = {
|
|
19120
|
+
__typename?: 'ExternalFeatureFlagDetail';
|
|
19121
|
+
environment?: Maybe<ExternalFeatureFlagEnvironment>;
|
|
19122
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19123
|
+
status?: Maybe<ExternalFeatureFlagStatus>;
|
|
19124
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19125
|
+
};
|
|
19126
|
+
export declare type ExternalFeatureFlagEnvironment = {
|
|
19127
|
+
__typename?: 'ExternalFeatureFlagEnvironment';
|
|
19128
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19129
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
19130
|
+
};
|
|
19131
|
+
export declare type ExternalFeatureFlagRollout = {
|
|
19132
|
+
__typename?: 'ExternalFeatureFlagRollout';
|
|
19133
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
19134
|
+
rules?: Maybe<Scalars['Int']['output']>;
|
|
19135
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
19136
|
+
};
|
|
19137
|
+
export declare type ExternalFeatureFlagStatus = {
|
|
19138
|
+
__typename?: 'ExternalFeatureFlagStatus';
|
|
19139
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
19140
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
19141
|
+
rollout?: Maybe<ExternalFeatureFlagRollout>;
|
|
19142
|
+
};
|
|
19143
|
+
export declare type ExternalFeatureFlagSummary = {
|
|
19144
|
+
__typename?: 'ExternalFeatureFlagSummary';
|
|
19145
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19146
|
+
status?: Maybe<ExternalFeatureFlagStatus>;
|
|
19147
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19148
|
+
};
|
|
19149
|
+
export declare type ExternalFile = {
|
|
19150
|
+
__typename?: 'ExternalFile';
|
|
19151
|
+
changeType?: Maybe<ExternalChangeType>;
|
|
19152
|
+
linesAdded?: Maybe<Scalars['Int']['output']>;
|
|
19153
|
+
linesRemoved?: Maybe<Scalars['Int']['output']>;
|
|
19154
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
19155
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19156
|
+
};
|
|
19157
|
+
export declare type ExternalFileInfo = {
|
|
19158
|
+
__typename?: 'ExternalFileInfo';
|
|
19159
|
+
fileCount?: Maybe<Scalars['Int']['output']>;
|
|
19160
|
+
files?: Maybe<Array<Maybe<ExternalFile>>>;
|
|
19161
|
+
};
|
|
19162
|
+
export declare enum ExternalMembershipType {
|
|
19163
|
+
Private = "PRIVATE",
|
|
19164
|
+
Public = "PUBLIC",
|
|
19165
|
+
Shared = "SHARED"
|
|
19166
|
+
}
|
|
19167
|
+
export declare type ExternalMessage = {
|
|
19168
|
+
__typename?: 'ExternalMessage';
|
|
19169
|
+
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19170
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19171
|
+
createdBy?: Maybe<ExternalUser>;
|
|
19172
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19173
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
19174
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
19175
|
+
id: Scalars['ID']['output'];
|
|
19176
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
19177
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19178
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19179
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19180
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19181
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19182
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19183
|
+
};
|
|
19184
|
+
export declare type ExternalPipeline = {
|
|
19185
|
+
__typename?: 'ExternalPipeline';
|
|
19186
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19187
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
19188
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19189
|
+
};
|
|
19190
|
+
export declare type ExternalPullRequest = {
|
|
19191
|
+
__typename?: 'ExternalPullRequest';
|
|
19192
|
+
author?: Maybe<ExternalUser>;
|
|
19193
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
19194
|
+
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
19195
|
+
displayId?: Maybe<Scalars['String']['output']>;
|
|
19196
|
+
id: Scalars['ID']['output'];
|
|
19197
|
+
lastUpdate?: Maybe<Scalars['String']['output']>;
|
|
19198
|
+
pullRequestId?: Maybe<Scalars['String']['output']>;
|
|
19199
|
+
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
19200
|
+
reviewers?: Maybe<Array<Maybe<ExternalReviewer>>>;
|
|
19201
|
+
sourceBranch?: Maybe<ExternalBranchReference>;
|
|
19202
|
+
status?: Maybe<ExternalPullRequestStatus>;
|
|
19203
|
+
supportedActions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19204
|
+
tasksCount?: Maybe<Scalars['Int']['output']>;
|
|
19205
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
19206
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19207
|
+
};
|
|
19208
|
+
export declare enum ExternalPullRequestStatus {
|
|
19209
|
+
Declined = "DECLINED",
|
|
19210
|
+
Draft = "DRAFT",
|
|
19211
|
+
Merged = "MERGED",
|
|
19212
|
+
Open = "OPEN",
|
|
19213
|
+
Unknown = "UNKNOWN"
|
|
19214
|
+
}
|
|
19215
|
+
export declare type ExternalRemoteLink = {
|
|
19216
|
+
__typename?: 'ExternalRemoteLink';
|
|
19217
|
+
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19218
|
+
assignee?: Maybe<ExternalUser>;
|
|
19219
|
+
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
19220
|
+
author?: Maybe<ExternalUser>;
|
|
19221
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
19222
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19223
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19224
|
+
id: Scalars['ID']['output'];
|
|
19225
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19226
|
+
remoteLinkId?: Maybe<Scalars['String']['output']>;
|
|
19227
|
+
status?: Maybe<ExternalRemoteLinkStatus>;
|
|
19228
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
19229
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19230
|
+
};
|
|
19231
|
+
export declare type ExternalRemoteLinkAttributeTuple = {
|
|
19232
|
+
__typename?: 'ExternalRemoteLinkAttributeTuple';
|
|
19233
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
19234
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
19235
|
+
};
|
|
19236
|
+
export declare type ExternalRemoteLinkStatus = {
|
|
19237
|
+
__typename?: 'ExternalRemoteLinkStatus';
|
|
19238
|
+
appearance?: Maybe<Scalars['String']['output']>;
|
|
19239
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
19240
|
+
};
|
|
19241
|
+
export declare type ExternalRepository = {
|
|
19242
|
+
__typename?: 'ExternalRepository';
|
|
19243
|
+
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19244
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
19245
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19246
|
+
forkOfId?: Maybe<Scalars['String']['output']>;
|
|
19247
|
+
id: Scalars['ID']['output'];
|
|
19248
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19249
|
+
repositoryId?: Maybe<Scalars['String']['output']>;
|
|
19250
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19251
|
+
};
|
|
19252
|
+
export declare type ExternalReviewer = {
|
|
19253
|
+
__typename?: 'ExternalReviewer';
|
|
19254
|
+
approvalStatus?: Maybe<ExternalApprovalStatus>;
|
|
19255
|
+
user?: Maybe<ExternalUser>;
|
|
19256
|
+
};
|
|
19257
|
+
export declare type ExternalTestInfo = {
|
|
19258
|
+
__typename?: 'ExternalTestInfo';
|
|
19259
|
+
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
19260
|
+
numberPassed?: Maybe<Scalars['Int']['output']>;
|
|
19261
|
+
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
19262
|
+
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
19263
|
+
};
|
|
19264
|
+
export declare type ExternalThumbnail = {
|
|
19265
|
+
__typename?: 'ExternalThumbnail';
|
|
19266
|
+
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
19267
|
+
};
|
|
19268
|
+
export declare type ExternalTrack = {
|
|
19269
|
+
__typename?: 'ExternalTrack';
|
|
19270
|
+
cues?: Maybe<Array<Maybe<ExternalCue>>>;
|
|
19271
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
19272
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
19273
|
+
};
|
|
19274
|
+
export declare type ExternalUser = {
|
|
19275
|
+
__typename?: 'ExternalUser';
|
|
19276
|
+
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
19277
|
+
user?: Maybe<User>;
|
|
19278
|
+
};
|
|
19279
|
+
export declare type ExternalVideo = {
|
|
19280
|
+
__typename?: 'ExternalVideo';
|
|
19281
|
+
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19282
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
19283
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19284
|
+
createdBy?: Maybe<ExternalUser>;
|
|
19285
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19286
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19287
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
19288
|
+
embedUrl?: Maybe<Scalars['String']['output']>;
|
|
19289
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
19290
|
+
height?: Maybe<Scalars['Long']['output']>;
|
|
19291
|
+
id: Scalars['ID']['output'];
|
|
19292
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19293
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19294
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19295
|
+
textTracks?: Maybe<Array<Maybe<ExternalTrack>>>;
|
|
19296
|
+
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
19297
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19298
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19299
|
+
width?: Maybe<Scalars['Long']['output']>;
|
|
19300
|
+
};
|
|
19301
|
+
export declare type ExternalVulnerability = {
|
|
19302
|
+
__typename?: 'ExternalVulnerability';
|
|
19303
|
+
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19304
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19305
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19306
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
19307
|
+
id: Scalars['ID']['output'];
|
|
19308
|
+
identifiers?: Maybe<Array<Maybe<ExternalVulnerabilityIdentifier>>>;
|
|
19309
|
+
introducedDate?: Maybe<Scalars['String']['output']>;
|
|
19310
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19311
|
+
severity?: Maybe<ExternalVulnerabilitySeverity>;
|
|
19312
|
+
status?: Maybe<ExternalVulnerabilityStatus>;
|
|
19313
|
+
type?: Maybe<ExternalVulnerabilityType>;
|
|
19314
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19315
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19316
|
+
};
|
|
19317
|
+
export declare type ExternalVulnerabilityAdditionalInfo = {
|
|
19318
|
+
__typename?: 'ExternalVulnerabilityAdditionalInfo';
|
|
19319
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
19320
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19321
|
+
};
|
|
19322
|
+
export declare type ExternalVulnerabilityIdentifier = {
|
|
19323
|
+
__typename?: 'ExternalVulnerabilityIdentifier';
|
|
19324
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
19325
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
19326
|
+
};
|
|
19327
|
+
export declare type ExternalVulnerabilitySeverity = {
|
|
19328
|
+
__typename?: 'ExternalVulnerabilitySeverity';
|
|
19329
|
+
level?: Maybe<ExternalVulnerabilitySeverityLevel>;
|
|
19330
|
+
};
|
|
19331
|
+
export declare enum ExternalVulnerabilitySeverityLevel {
|
|
19332
|
+
Critical = "CRITICAL",
|
|
19333
|
+
High = "HIGH",
|
|
19334
|
+
Low = "LOW",
|
|
19335
|
+
Medium = "MEDIUM",
|
|
19336
|
+
Unknown = "UNKNOWN"
|
|
19337
|
+
}
|
|
19338
|
+
export declare enum ExternalVulnerabilityStatus {
|
|
19339
|
+
Closed = "CLOSED",
|
|
19340
|
+
Ignored = "IGNORED",
|
|
19341
|
+
Open = "OPEN",
|
|
19342
|
+
Unknown = "UNKNOWN"
|
|
19343
|
+
}
|
|
19344
|
+
export declare enum ExternalVulnerabilityType {
|
|
19345
|
+
Dast = "DAST",
|
|
19346
|
+
Sast = "SAST",
|
|
19347
|
+
Sca = "SCA",
|
|
19348
|
+
Unknown = "UNKNOWN"
|
|
19349
|
+
}
|
|
18822
19350
|
export declare type FailedRoles = {
|
|
18823
19351
|
__typename?: 'FailedRoles';
|
|
18824
19352
|
reason: Scalars['String']['output'];
|
|
@@ -18971,6 +19499,7 @@ export declare type ForgeAlertsData = {
|
|
|
18971
19499
|
alertId: Scalars['Int']['output'];
|
|
18972
19500
|
closedAt?: Maybe<Scalars['String']['output']>;
|
|
18973
19501
|
closedBy?: Maybe<Scalars['String']['output']>;
|
|
19502
|
+
closedByResponder?: Maybe<ForgeAlertsUserInfo>;
|
|
18974
19503
|
createdAt: Scalars['String']['output'];
|
|
18975
19504
|
duration?: Maybe<Scalars['Int']['output']>;
|
|
18976
19505
|
envId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19030,7 +19559,7 @@ export declare type ForgeAlertsListQueryInput = {
|
|
|
19030
19559
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
19031
19560
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
19032
19561
|
severities?: InputMaybe<Array<ForgeAlertsRuleSeverity>>;
|
|
19033
|
-
status
|
|
19562
|
+
status?: InputMaybe<ForgeAlertsStatus>;
|
|
19034
19563
|
};
|
|
19035
19564
|
export declare type ForgeAlertsListResult = ForgeAlertsListSuccess | QueryError;
|
|
19036
19565
|
export declare type ForgeAlertsListSuccess = {
|
|
@@ -43457,6 +43986,7 @@ export declare type JiraMutation = {
|
|
|
43457
43986
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
43458
43987
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
43459
43988
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
43989
|
+
updateProjectAvatar?: Maybe<JiraProjectUpdateAvatarMutationPayload>;
|
|
43460
43990
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
43461
43991
|
updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
|
|
43462
43992
|
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
@@ -43878,6 +44408,9 @@ export declare type JiraMutationUpdatePeopleFieldArgs = {
|
|
|
43878
44408
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
43879
44409
|
input: JiraUpdatePriorityFieldInput;
|
|
43880
44410
|
};
|
|
44411
|
+
export declare type JiraMutationUpdateProjectAvatarArgs = {
|
|
44412
|
+
input: JiraProjectUpdateAvatarInput;
|
|
44413
|
+
};
|
|
43881
44414
|
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
43882
44415
|
input: JiraUpdateProjectFieldInput;
|
|
43883
44416
|
};
|
|
@@ -45656,6 +46189,17 @@ export declare type JiraProjectTypeDetailsEdge = {
|
|
|
45656
46189
|
cursor: Scalars['String']['output'];
|
|
45657
46190
|
node?: Maybe<JiraProjectTypeDetails>;
|
|
45658
46191
|
};
|
|
46192
|
+
export declare type JiraProjectUpdateAvatarInput = {
|
|
46193
|
+
avatarId: Scalars['ID']['input'];
|
|
46194
|
+
cloudId: Scalars['ID']['input'];
|
|
46195
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
46196
|
+
};
|
|
46197
|
+
export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
46198
|
+
__typename?: 'JiraProjectUpdateAvatarMutationPayload';
|
|
46199
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46200
|
+
project?: Maybe<JiraProject>;
|
|
46201
|
+
success: Scalars['Boolean']['output'];
|
|
46202
|
+
};
|
|
45659
46203
|
export declare type JiraProjectUpdateNameInput = {
|
|
45660
46204
|
cloudId: Scalars['ID']['input'];
|
|
45661
46205
|
name: Scalars['String']['input'];
|
|
@@ -46058,10 +46602,10 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
46058
46602
|
projectId: Scalars['ID']['input'];
|
|
46059
46603
|
};
|
|
46060
46604
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
46061
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
46062
46605
|
cloudId: Scalars['ID']['input'];
|
|
46063
46606
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
46064
46607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46608
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46065
46609
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
46066
46610
|
};
|
|
46067
46611
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
@@ -51210,6 +51754,7 @@ export declare type JsmChatCreateCommentOutput = {
|
|
|
51210
51754
|
status: Scalars['Boolean']['output'];
|
|
51211
51755
|
};
|
|
51212
51756
|
export declare type JsmChatCreateConversationInput = {
|
|
51757
|
+
authorId: Scalars['String']['input'];
|
|
51213
51758
|
channelExperienceId: JsmChatChannelExperienceId;
|
|
51214
51759
|
conversationContextAri: Scalars['ID']['input'];
|
|
51215
51760
|
isTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -51969,7 +52514,6 @@ export declare type KnowledgeDiscoveryCreateAdminhubBookmarkInput = {
|
|
|
51969
52514
|
orgId: Scalars['String']['input'];
|
|
51970
52515
|
title: Scalars['String']['input'];
|
|
51971
52516
|
url: Scalars['String']['input'];
|
|
51972
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
51973
52517
|
};
|
|
51974
52518
|
export declare type KnowledgeDiscoveryCreateAdminhubBookmarkPayload = Payload & {
|
|
51975
52519
|
__typename?: 'KnowledgeDiscoveryCreateAdminhubBookmarkPayload';
|
|
@@ -52033,7 +52577,6 @@ export declare type KnowledgeDiscoveryDeleteBookmarksInput = {
|
|
|
52033
52577
|
cloudId: Scalars['ID']['input'];
|
|
52034
52578
|
deleteRequests?: InputMaybe<Array<KnowledgeDiscoveryDeleteBookmarkInput>>;
|
|
52035
52579
|
orgId: Scalars['ID']['input'];
|
|
52036
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52037
52580
|
};
|
|
52038
52581
|
export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
52039
52582
|
__typename?: 'KnowledgeDiscoveryDeleteBookmarksPayload';
|
|
@@ -52139,7 +52682,6 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
|
|
|
52139
52682
|
cloudId: Scalars['ID']['input'];
|
|
52140
52683
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52141
52684
|
orgId: Scalars['String']['input'];
|
|
52142
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52143
52685
|
};
|
|
52144
52686
|
export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
52145
52687
|
cloudId: Scalars['String']['input'];
|
|
@@ -52245,7 +52787,6 @@ export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkInput = {
|
|
|
52245
52787
|
orgId: Scalars['String']['input'];
|
|
52246
52788
|
title: Scalars['String']['input'];
|
|
52247
52789
|
url: Scalars['String']['input'];
|
|
52248
|
-
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52249
52790
|
};
|
|
52250
52791
|
export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkPayload = Payload & {
|
|
52251
52792
|
__typename?: 'KnowledgeDiscoveryUpdateAdminhubBookmarkPayload';
|
|
@@ -52327,6 +52868,22 @@ export declare type LpBunchballBadgeEdge = {
|
|
|
52327
52868
|
cursor: Scalars['String']['output'];
|
|
52328
52869
|
node?: Maybe<LpBunchballBadge>;
|
|
52329
52870
|
};
|
|
52871
|
+
export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
|
|
52872
|
+
export declare type LpCertSort = {
|
|
52873
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
52874
|
+
sortField?: InputMaybe<LpCertSortField>;
|
|
52875
|
+
};
|
|
52876
|
+
export declare enum LpCertSortField {
|
|
52877
|
+
ActiveDate = "ACTIVE_DATE",
|
|
52878
|
+
ExpireDate = "EXPIRE_DATE",
|
|
52879
|
+
Id = "ID",
|
|
52880
|
+
ImageUrl = "IMAGE_URL",
|
|
52881
|
+
Name = "NAME",
|
|
52882
|
+
NameAbbr = "NAME_ABBR",
|
|
52883
|
+
PublicUrl = "PUBLIC_URL",
|
|
52884
|
+
Status = "STATUS",
|
|
52885
|
+
Type = "TYPE"
|
|
52886
|
+
}
|
|
52330
52887
|
export declare enum LpCertStatus {
|
|
52331
52888
|
Active = "ACTIVE",
|
|
52332
52889
|
Expired = "EXPIRED"
|
|
@@ -52359,6 +52916,12 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
52359
52916
|
cursor: Scalars['String']['output'];
|
|
52360
52917
|
node?: Maybe<LpCertmetricsCertificate>;
|
|
52361
52918
|
};
|
|
52919
|
+
export declare type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
|
|
52920
|
+
export declare type LpConnectionQueryErrorExtension = QueryErrorExtension & {
|
|
52921
|
+
__typename?: 'LpConnectionQueryErrorExtension';
|
|
52922
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
52923
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
52924
|
+
};
|
|
52362
52925
|
export declare type LpCourseProgress = {
|
|
52363
52926
|
__typename?: 'LpCourseProgress';
|
|
52364
52927
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52380,6 +52943,19 @@ export declare type LpCourseProgressEdge = {
|
|
|
52380
52943
|
cursor: Scalars['String']['output'];
|
|
52381
52944
|
node?: Maybe<LpCourseProgress>;
|
|
52382
52945
|
};
|
|
52946
|
+
export declare type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
|
|
52947
|
+
export declare type LpCourseSort = {
|
|
52948
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
52949
|
+
sortField?: InputMaybe<LpCourseSortField>;
|
|
52950
|
+
};
|
|
52951
|
+
export declare enum LpCourseSortField {
|
|
52952
|
+
CompletedDate = "COMPLETED_DATE",
|
|
52953
|
+
CourseId = "COURSE_ID",
|
|
52954
|
+
Id = "ID",
|
|
52955
|
+
Status = "STATUS",
|
|
52956
|
+
Title = "TITLE",
|
|
52957
|
+
Url = "URL"
|
|
52958
|
+
}
|
|
52383
52959
|
export declare enum LpCourseStatus {
|
|
52384
52960
|
Completed = "COMPLETED",
|
|
52385
52961
|
InProgress = "IN_PROGRESS"
|
|
@@ -52387,9 +52963,9 @@ export declare enum LpCourseStatus {
|
|
|
52387
52963
|
export declare type LpLearner = Node & {
|
|
52388
52964
|
__typename?: 'LpLearner';
|
|
52389
52965
|
atlassianId: Scalars['String']['output'];
|
|
52390
|
-
bunchballBadges?: Maybe<
|
|
52391
|
-
certmetricsCertificates?: Maybe<
|
|
52392
|
-
courses?: Maybe<
|
|
52966
|
+
bunchballBadges?: Maybe<LpBunchballBadgeResult>;
|
|
52967
|
+
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
52968
|
+
courses?: Maybe<LpCourseProgressResult>;
|
|
52393
52969
|
id: Scalars['ID']['output'];
|
|
52394
52970
|
};
|
|
52395
52971
|
export declare type LpLearnerBunchballBadgesArgs = {
|
|
@@ -52403,15 +52979,16 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
52403
52979
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52404
52980
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52405
52981
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52982
|
+
sorting?: InputMaybe<LpCertSort>;
|
|
52406
52983
|
status?: InputMaybe<LpCertStatus>;
|
|
52407
52984
|
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
52408
52985
|
};
|
|
52409
52986
|
export declare type LpLearnerCoursesArgs = {
|
|
52410
52987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52411
52988
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52412
|
-
dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
|
|
52413
52989
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52414
52990
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52991
|
+
sorting?: InputMaybe<LpCourseSort>;
|
|
52415
52992
|
status?: InputMaybe<LpCourseStatus>;
|
|
52416
52993
|
};
|
|
52417
52994
|
export declare type LpLearnerData = {
|
|
@@ -52643,6 +53220,119 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
52643
53220
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
52644
53221
|
scopes: Array<ConnectAppScope>;
|
|
52645
53222
|
};
|
|
53223
|
+
export declare type MarketplaceConsoleAppSoftware = {
|
|
53224
|
+
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53225
|
+
appKey: Scalars['String']['output'];
|
|
53226
|
+
developerId: Scalars['String']['output'];
|
|
53227
|
+
developerSpace: MarketplaceConsoleDevSpace;
|
|
53228
|
+
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53229
|
+
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53230
|
+
hosting: MarketplaceConsoleHosting;
|
|
53231
|
+
id: Scalars['ID']['output'];
|
|
53232
|
+
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53233
|
+
};
|
|
53234
|
+
export declare type MarketplaceConsoleAppSoftwareId = {
|
|
53235
|
+
__typename?: 'MarketplaceConsoleAppSoftwareId';
|
|
53236
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53237
|
+
hasAPaidVersion: Scalars['Boolean']['output'];
|
|
53238
|
+
hosting: MarketplaceConsoleHosting;
|
|
53239
|
+
};
|
|
53240
|
+
export declare type MarketplaceConsoleAppSoftwareMetadata = {
|
|
53241
|
+
__typename?: 'MarketplaceConsoleAppSoftwareMetadata';
|
|
53242
|
+
appSoftwareIds?: Maybe<Array<MarketplaceConsoleAppSoftwareId>>;
|
|
53243
|
+
missingPricingPlan: Scalars['Boolean']['output'];
|
|
53244
|
+
};
|
|
53245
|
+
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53246
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
53247
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53248
|
+
buildNumber: Scalars['ID']['output'];
|
|
53249
|
+
changelog?: Maybe<MarketplaceConsoleAppSoftwareVersionChangelog>;
|
|
53250
|
+
compatibilities: Array<MarketplaceConsoleAppSoftwareVersionCompatibility>;
|
|
53251
|
+
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetails;
|
|
53252
|
+
isBeta: Scalars['Boolean']['output'];
|
|
53253
|
+
isSupported: Scalars['Boolean']['output'];
|
|
53254
|
+
licenseType?: Maybe<MarketplaceConsoleAppSoftwareVersionLicenseType>;
|
|
53255
|
+
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
53256
|
+
state: MarketplaceConsoleAppSoftwareVersionState;
|
|
53257
|
+
supportedPaymentModel: MarketplaceConsolePaymentModel;
|
|
53258
|
+
versionNumber: Scalars['String']['output'];
|
|
53259
|
+
};
|
|
53260
|
+
export declare type MarketplaceConsoleAppSoftwareVersionChangelog = {
|
|
53261
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionChangelog';
|
|
53262
|
+
releaseNotes?: Maybe<Scalars['String']['output']>;
|
|
53263
|
+
releaseSummary: Scalars['String']['output'];
|
|
53264
|
+
};
|
|
53265
|
+
export declare type MarketplaceConsoleAppSoftwareVersionCompatibility = {
|
|
53266
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionCompatibility';
|
|
53267
|
+
maxBuildNumber?: Maybe<Scalars['Int']['output']>;
|
|
53268
|
+
minBuildNumber?: Maybe<Scalars['Int']['output']>;
|
|
53269
|
+
parentSoftware: MarketplaceConsoleParentSoftware;
|
|
53270
|
+
};
|
|
53271
|
+
export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetails = {
|
|
53272
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionFrameworkDetails';
|
|
53273
|
+
attributes: MarketplaceConsoleFrameworkAttributes;
|
|
53274
|
+
frameworkId: Scalars['ID']['output'];
|
|
53275
|
+
};
|
|
53276
|
+
export declare type MarketplaceConsoleAppSoftwareVersionLicenseType = {
|
|
53277
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionLicenseType';
|
|
53278
|
+
id: MarketplaceConsoleAppSoftwareVersionLicenseTypeId;
|
|
53279
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
53280
|
+
name: Scalars['String']['output'];
|
|
53281
|
+
};
|
|
53282
|
+
export declare enum MarketplaceConsoleAppSoftwareVersionLicenseTypeId {
|
|
53283
|
+
Asl = "ASL",
|
|
53284
|
+
AtlassianClosedSource = "ATLASSIAN_CLOSED_SOURCE",
|
|
53285
|
+
Bsd = "BSD",
|
|
53286
|
+
Commercial = "COMMERCIAL",
|
|
53287
|
+
CommercialFree = "COMMERCIAL_FREE",
|
|
53288
|
+
Epl = "EPL",
|
|
53289
|
+
Gpl = "GPL",
|
|
53290
|
+
Lgpl = "LGPL"
|
|
53291
|
+
}
|
|
53292
|
+
export declare type MarketplaceConsoleAppSoftwareVersionListing = {
|
|
53293
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionListing';
|
|
53294
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53295
|
+
approvalStatus: Scalars['String']['output'];
|
|
53296
|
+
buildNumber: Scalars['ID']['output'];
|
|
53297
|
+
createdAt: Scalars['String']['output'];
|
|
53298
|
+
createdBy: Scalars['String']['output'];
|
|
53299
|
+
deploymentInstructions?: Maybe<Array<Maybe<MarketplaceConsoleDeploymentInstruction>>>;
|
|
53300
|
+
heroImage?: Maybe<Scalars['String']['output']>;
|
|
53301
|
+
highlights?: Maybe<Array<Maybe<MarketplaceConsoleListingHighLights>>>;
|
|
53302
|
+
moreDetails?: Maybe<Scalars['String']['output']>;
|
|
53303
|
+
screenshots?: Maybe<Array<Maybe<MarketplaceConsoleListingScreenshot>>>;
|
|
53304
|
+
status: Scalars['String']['output'];
|
|
53305
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
53306
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
53307
|
+
vendorLinks?: Maybe<MarketplaceConsoleAppSoftwareVersionListingLinks>;
|
|
53308
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
53309
|
+
youtubeId?: Maybe<Scalars['String']['output']>;
|
|
53310
|
+
};
|
|
53311
|
+
export declare type MarketplaceConsoleAppSoftwareVersionListingLinks = {
|
|
53312
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersionListingLinks';
|
|
53313
|
+
documentation?: Maybe<Scalars['String']['output']>;
|
|
53314
|
+
eula?: Maybe<Scalars['String']['output']>;
|
|
53315
|
+
learnMore?: Maybe<Scalars['String']['output']>;
|
|
53316
|
+
legacyVendorLinks?: Maybe<MarketplaceConsoleLegacyVendorLinks>;
|
|
53317
|
+
};
|
|
53318
|
+
export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
53319
|
+
Active = "ACTIVE",
|
|
53320
|
+
Approved = "APPROVED",
|
|
53321
|
+
Archived = "ARCHIVED",
|
|
53322
|
+
Draft = "DRAFT",
|
|
53323
|
+
Rejected = "REJECTED",
|
|
53324
|
+
Submitted = "SUBMITTED"
|
|
53325
|
+
}
|
|
53326
|
+
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53327
|
+
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53328
|
+
descriptorId: Scalars['ID']['output'];
|
|
53329
|
+
scopes: Array<Scalars['String']['output']>;
|
|
53330
|
+
};
|
|
53331
|
+
export declare type MarketplaceConsoleDeploymentInstruction = {
|
|
53332
|
+
__typename?: 'MarketplaceConsoleDeploymentInstruction';
|
|
53333
|
+
body: Scalars['String']['output'];
|
|
53334
|
+
screenshots: MarketplaceConsoleListingScreenshot;
|
|
53335
|
+
};
|
|
52646
53336
|
export declare type MarketplaceConsoleDevSpace = {
|
|
52647
53337
|
__typename?: 'MarketplaceConsoleDevSpace';
|
|
52648
53338
|
id: Scalars['ID']['output'];
|
|
@@ -52715,13 +53405,193 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
52715
53405
|
Platinum = "PLATINUM",
|
|
52716
53406
|
Silver = "SILVER"
|
|
52717
53407
|
}
|
|
53408
|
+
export declare type MarketplaceConsoleEdition = {
|
|
53409
|
+
__typename?: 'MarketplaceConsoleEdition';
|
|
53410
|
+
features?: Maybe<Array<Maybe<MarketplaceConsoleFeature>>>;
|
|
53411
|
+
id: Scalars['ID']['output'];
|
|
53412
|
+
isDefault: Scalars['Boolean']['output'];
|
|
53413
|
+
name: Scalars['String']['output'];
|
|
53414
|
+
pricingPlan: MarketplaceConsolePricingPlan;
|
|
53415
|
+
type: Scalars['String']['output'];
|
|
53416
|
+
};
|
|
53417
|
+
export declare type MarketplaceConsoleEditionCreate = {
|
|
53418
|
+
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureCreate>>>;
|
|
53419
|
+
isDefault: Scalars['Boolean']['input'];
|
|
53420
|
+
name: Scalars['String']['input'];
|
|
53421
|
+
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53422
|
+
type: Scalars['String']['input'];
|
|
53423
|
+
};
|
|
53424
|
+
export declare type MarketplaceConsoleEditionUpdate = {
|
|
53425
|
+
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
|
|
53426
|
+
id: Scalars['ID']['input'];
|
|
53427
|
+
isDefault: Scalars['Boolean']['input'];
|
|
53428
|
+
name: Scalars['String']['input'];
|
|
53429
|
+
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53430
|
+
type: Scalars['String']['input'];
|
|
53431
|
+
};
|
|
53432
|
+
export declare type MarketplaceConsoleEditionsActivation = {
|
|
53433
|
+
__typename?: 'MarketplaceConsoleEditionsActivation';
|
|
53434
|
+
lastUpdated: Scalars['String']['output'];
|
|
53435
|
+
rejectionReason?: Maybe<Scalars['String']['output']>;
|
|
53436
|
+
status: MarketplaceConsoleEditionsActivationStatus;
|
|
53437
|
+
ticketUrl: Scalars['String']['output'];
|
|
53438
|
+
};
|
|
53439
|
+
export declare type MarketplaceConsoleEditionsActivationRequest = {
|
|
53440
|
+
rejectionReason?: InputMaybe<Scalars['String']['input']>;
|
|
53441
|
+
status: MarketplaceConsoleEditionsActivationStatus;
|
|
53442
|
+
};
|
|
53443
|
+
export declare type MarketplaceConsoleEditionsActivationResponse = MarketplaceConsoleEditionsActivation | MarketplaceConsoleKnownError;
|
|
53444
|
+
export declare enum MarketplaceConsoleEditionsActivationStatus {
|
|
53445
|
+
Approved = "APPROVED",
|
|
53446
|
+
Pending = "PENDING",
|
|
53447
|
+
Rejected = "REJECTED"
|
|
53448
|
+
}
|
|
52718
53449
|
export declare type MarketplaceConsoleError = {
|
|
52719
53450
|
message: Scalars['String']['output'];
|
|
52720
53451
|
};
|
|
53452
|
+
export declare type MarketplaceConsoleExternalFrameworkAttributes = {
|
|
53453
|
+
__typename?: 'MarketplaceConsoleExternalFrameworkAttributes';
|
|
53454
|
+
authorization: Scalars['Boolean']['output'];
|
|
53455
|
+
binaryUrl?: Maybe<Scalars['String']['output']>;
|
|
53456
|
+
};
|
|
53457
|
+
export declare type MarketplaceConsoleFeature = {
|
|
53458
|
+
__typename?: 'MarketplaceConsoleFeature';
|
|
53459
|
+
description: Scalars['String']['output'];
|
|
53460
|
+
id: Scalars['ID']['output'];
|
|
53461
|
+
name: Scalars['String']['output'];
|
|
53462
|
+
position: Scalars['Int']['output'];
|
|
53463
|
+
};
|
|
53464
|
+
export declare type MarketplaceConsoleFeatureCreate = {
|
|
53465
|
+
description: Scalars['String']['input'];
|
|
53466
|
+
name: Scalars['String']['input'];
|
|
53467
|
+
position: Scalars['Int']['input'];
|
|
53468
|
+
};
|
|
53469
|
+
export declare type MarketplaceConsoleFeatureUpdate = {
|
|
53470
|
+
description: Scalars['String']['input'];
|
|
53471
|
+
id: Scalars['ID']['input'];
|
|
53472
|
+
name: Scalars['String']['input'];
|
|
53473
|
+
position: Scalars['Int']['input'];
|
|
53474
|
+
};
|
|
53475
|
+
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
53476
|
+
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
53477
|
+
appId: Scalars['ID']['output'];
|
|
53478
|
+
envId: Scalars['ID']['output'];
|
|
53479
|
+
versionId: Scalars['String']['output'];
|
|
53480
|
+
};
|
|
53481
|
+
export declare type MarketplaceConsoleFrameworkAttributes = MarketplaceConsoleConnectFrameworkAttributes | MarketplaceConsoleExternalFrameworkAttributes | MarketplaceConsoleForgeFrameworkAttributes | MarketplaceConsolePluginsFrameworkAttributes | MarketplaceConsoleWorkflowFrameworkAttributes;
|
|
52721
53482
|
export declare type MarketplaceConsoleGenericError = MarketplaceConsoleError & {
|
|
52722
53483
|
__typename?: 'MarketplaceConsoleGenericError';
|
|
52723
53484
|
message: Scalars['String']['output'];
|
|
52724
53485
|
};
|
|
53486
|
+
export declare enum MarketplaceConsoleHosting {
|
|
53487
|
+
Cloud = "CLOUD",
|
|
53488
|
+
DataCenter = "DATA_CENTER",
|
|
53489
|
+
Server = "SERVER"
|
|
53490
|
+
}
|
|
53491
|
+
export declare type MarketplaceConsoleHostingOption = {
|
|
53492
|
+
__typename?: 'MarketplaceConsoleHostingOption';
|
|
53493
|
+
hosting: MarketplaceConsoleHosting;
|
|
53494
|
+
};
|
|
53495
|
+
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
53496
|
+
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
53497
|
+
altText?: Maybe<Scalars['String']['output']>;
|
|
53498
|
+
height: Scalars['Int']['output'];
|
|
53499
|
+
id: Scalars['String']['output'];
|
|
53500
|
+
imageType: Scalars['String']['output'];
|
|
53501
|
+
name: Scalars['String']['output'];
|
|
53502
|
+
uri: Scalars['String']['output'];
|
|
53503
|
+
width: Scalars['Int']['output'];
|
|
53504
|
+
};
|
|
53505
|
+
export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
|
|
53506
|
+
__typename?: 'MarketplaceConsoleKnownError';
|
|
53507
|
+
id: Scalars['ID']['output'];
|
|
53508
|
+
message: Scalars['String']['output'];
|
|
53509
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
53510
|
+
};
|
|
53511
|
+
export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
53512
|
+
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53513
|
+
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53514
|
+
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53515
|
+
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53516
|
+
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53517
|
+
};
|
|
53518
|
+
export declare type MarketplaceConsoleLegacyMongoHostingVisibility = {
|
|
53519
|
+
__typename?: 'MarketplaceConsoleLegacyMongoHostingVisibility';
|
|
53520
|
+
cloud?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53521
|
+
dataCenter?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53522
|
+
server?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53523
|
+
};
|
|
53524
|
+
export declare enum MarketplaceConsoleLegacyMongoPluginHiddenIn {
|
|
53525
|
+
HiddenInSiteAndAppMarketplace = "HIDDEN_IN_SITE_AND_APP_MARKETPLACE",
|
|
53526
|
+
HiddenInSiteOnly = "HIDDEN_IN_SITE_ONLY"
|
|
53527
|
+
}
|
|
53528
|
+
export declare enum MarketplaceConsoleLegacyMongoStatus {
|
|
53529
|
+
Notassigned = "NOTASSIGNED",
|
|
53530
|
+
Private = "PRIVATE",
|
|
53531
|
+
Public = "PUBLIC",
|
|
53532
|
+
Readytolaunch = "READYTOLAUNCH",
|
|
53533
|
+
Rejected = "REJECTED",
|
|
53534
|
+
Submitted = "SUBMITTED"
|
|
53535
|
+
}
|
|
53536
|
+
export declare type MarketplaceConsoleLegacyVendorLinks = {
|
|
53537
|
+
__typename?: 'MarketplaceConsoleLegacyVendorLinks';
|
|
53538
|
+
donate?: Maybe<Scalars['String']['output']>;
|
|
53539
|
+
evaluationLicense?: Maybe<Scalars['String']['output']>;
|
|
53540
|
+
};
|
|
53541
|
+
export declare type MarketplaceConsoleListingHighLights = {
|
|
53542
|
+
__typename?: 'MarketplaceConsoleListingHighLights';
|
|
53543
|
+
caption?: Maybe<Scalars['String']['output']>;
|
|
53544
|
+
screenshot: MarketplaceConsoleListingScreenshot;
|
|
53545
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
53546
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
53547
|
+
};
|
|
53548
|
+
export declare type MarketplaceConsoleListingScreenshot = {
|
|
53549
|
+
__typename?: 'MarketplaceConsoleListingScreenshot';
|
|
53550
|
+
caption?: Maybe<Scalars['String']['output']>;
|
|
53551
|
+
imageId: Scalars['String']['output'];
|
|
53552
|
+
};
|
|
53553
|
+
export declare type MarketplaceConsoleMutationApi = {
|
|
53554
|
+
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53555
|
+
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53556
|
+
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53557
|
+
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53558
|
+
};
|
|
53559
|
+
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53560
|
+
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53561
|
+
product: MarketplaceConsoleProduct;
|
|
53562
|
+
};
|
|
53563
|
+
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53564
|
+
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53565
|
+
product: MarketplaceConsoleProduct;
|
|
53566
|
+
};
|
|
53567
|
+
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53568
|
+
edition: MarketplaceConsoleEditionUpdate;
|
|
53569
|
+
product: MarketplaceConsoleProduct;
|
|
53570
|
+
};
|
|
53571
|
+
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
53572
|
+
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
53573
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
53574
|
+
};
|
|
53575
|
+
export declare type MarketplaceConsoleParentSoftware = {
|
|
53576
|
+
__typename?: 'MarketplaceConsoleParentSoftware';
|
|
53577
|
+
hostingOptions: Array<MarketplaceConsoleHostingOption>;
|
|
53578
|
+
id: Scalars['ID']['output'];
|
|
53579
|
+
name: Scalars['String']['output'];
|
|
53580
|
+
state: MarketplaceConsoleParentSoftwareState;
|
|
53581
|
+
versions: Array<MarketplaceConsoleParentSoftwareVersion>;
|
|
53582
|
+
};
|
|
53583
|
+
export declare enum MarketplaceConsoleParentSoftwareState {
|
|
53584
|
+
Active = "ACTIVE",
|
|
53585
|
+
Archived = "ARCHIVED",
|
|
53586
|
+
Draft = "DRAFT"
|
|
53587
|
+
}
|
|
53588
|
+
export declare type MarketplaceConsoleParentSoftwareVersion = {
|
|
53589
|
+
__typename?: 'MarketplaceConsoleParentSoftwareVersion';
|
|
53590
|
+
buildNumber: Scalars['ID']['output'];
|
|
53591
|
+
hosting: Array<MarketplaceConsoleHosting>;
|
|
53592
|
+
state: MarketplaceConsoleParentSoftwareState;
|
|
53593
|
+
versionNumber: Scalars['String']['output'];
|
|
53594
|
+
};
|
|
52725
53595
|
export declare type MarketplaceConsolePartnerContact = {
|
|
52726
53596
|
__typename?: 'MarketplaceConsolePartnerContact';
|
|
52727
53597
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -52749,19 +53619,161 @@ export declare type MarketplaceConsolePartnerContactPermissions = {
|
|
|
52749
53619
|
isSiteAdmin: Scalars['Boolean']['output'];
|
|
52750
53620
|
partnerId: Scalars['ID']['output'];
|
|
52751
53621
|
};
|
|
53622
|
+
export declare enum MarketplaceConsolePaymentModel {
|
|
53623
|
+
Free = "FREE",
|
|
53624
|
+
PaidViaAtlassian = "PAID_VIA_ATLASSIAN",
|
|
53625
|
+
PaidViaVendor = "PAID_VIA_VENDOR"
|
|
53626
|
+
}
|
|
53627
|
+
export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
53628
|
+
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
53629
|
+
artifactId: Scalars['ID']['output'];
|
|
53630
|
+
};
|
|
53631
|
+
export declare type MarketplaceConsolePricingItem = {
|
|
53632
|
+
__typename?: 'MarketplaceConsolePricingItem';
|
|
53633
|
+
amount: Scalars['Float']['output'];
|
|
53634
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
53635
|
+
editionDescription: Scalars['String']['output'];
|
|
53636
|
+
editionId: Scalars['String']['output'];
|
|
53637
|
+
editionType: Scalars['String']['output'];
|
|
53638
|
+
licenseType: Scalars['String']['output'];
|
|
53639
|
+
localCurrency: Scalars['String']['output'];
|
|
53640
|
+
localCurrencyAmount: Scalars['Float']['output'];
|
|
53641
|
+
localCurrencyRenewalAmount: Scalars['Float']['output'];
|
|
53642
|
+
monthsValid: Scalars['Int']['output'];
|
|
53643
|
+
renewalAmount: Scalars['Float']['output'];
|
|
53644
|
+
unitCount: Scalars['Int']['output'];
|
|
53645
|
+
};
|
|
53646
|
+
export declare type MarketplaceConsolePricingItemModify = {
|
|
53647
|
+
amount: Scalars['Float']['input'];
|
|
53648
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
53649
|
+
editionDescription: Scalars['String']['input'];
|
|
53650
|
+
editionId: Scalars['String']['input'];
|
|
53651
|
+
editionType: Scalars['String']['input'];
|
|
53652
|
+
licenseType: Scalars['String']['input'];
|
|
53653
|
+
localCurrency: Scalars['String']['input'];
|
|
53654
|
+
localCurrencyAmount: Scalars['Float']['input'];
|
|
53655
|
+
localCurrencyRenewalAmount: Scalars['Float']['input'];
|
|
53656
|
+
monthsValid: Scalars['Int']['input'];
|
|
53657
|
+
renewalAmount: Scalars['Float']['input'];
|
|
53658
|
+
unitCount: Scalars['Int']['input'];
|
|
53659
|
+
};
|
|
53660
|
+
export declare type MarketplaceConsolePricingPlan = {
|
|
53661
|
+
__typename?: 'MarketplaceConsolePricingPlan';
|
|
53662
|
+
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
53663
|
+
items: Array<MarketplaceConsolePricingItem>;
|
|
53664
|
+
perUnitItems: Array<MarketplaceConsolePricingItem>;
|
|
53665
|
+
};
|
|
53666
|
+
export declare type MarketplaceConsolePricingPlanModify = {
|
|
53667
|
+
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
53668
|
+
items: Array<MarketplaceConsolePricingItemModify>;
|
|
53669
|
+
perUnitItems: Array<MarketplaceConsolePricingItemModify>;
|
|
53670
|
+
};
|
|
53671
|
+
export declare type MarketplaceConsoleProduct = {
|
|
53672
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53673
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
53674
|
+
};
|
|
53675
|
+
export declare type MarketplaceConsoleProductListing = {
|
|
53676
|
+
__typename?: 'MarketplaceConsoleProductListing';
|
|
53677
|
+
banner?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
53678
|
+
communityEnabled: Scalars['String']['output'];
|
|
53679
|
+
dataCenterReviewIssueKey?: Maybe<Scalars['String']['output']>;
|
|
53680
|
+
developerId: Scalars['ID']['output'];
|
|
53681
|
+
googleAnalytics4Id?: Maybe<Scalars['String']['output']>;
|
|
53682
|
+
googleAnalyticsId?: Maybe<Scalars['String']['output']>;
|
|
53683
|
+
icon?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
53684
|
+
jsdEmbeddedDataKey?: Maybe<Scalars['String']['output']>;
|
|
53685
|
+
legacyMongoAppDetails?: Maybe<MarketplaceConsoleLegacyMongoAppDetails>;
|
|
53686
|
+
logicalCategories?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53687
|
+
marketingLabels?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
53688
|
+
marketplaceAppName: Scalars['String']['output'];
|
|
53689
|
+
productId: Scalars['ID']['output'];
|
|
53690
|
+
segmentWriteKey?: Maybe<Scalars['String']['output']>;
|
|
53691
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
53692
|
+
tagLine?: Maybe<Scalars['String']['output']>;
|
|
53693
|
+
tags?: Maybe<MarketplaceConsoleProductListingTags>;
|
|
53694
|
+
titleLogo?: Maybe<MarketplaceConsoleImageMediaAsset>;
|
|
53695
|
+
vendorLinks?: Maybe<MarketplaceConsoleVendorLinks>;
|
|
53696
|
+
};
|
|
53697
|
+
export declare type MarketplaceConsoleProductListingTags = {
|
|
53698
|
+
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
53699
|
+
category?: Maybe<MarketplaceConsoleTagsContent>;
|
|
53700
|
+
keywords?: Maybe<MarketplaceConsoleTagsContent>;
|
|
53701
|
+
marketing?: Maybe<MarketplaceConsoleTagsContent>;
|
|
53702
|
+
};
|
|
53703
|
+
export declare type MarketplaceConsoleProductMetadata = {
|
|
53704
|
+
__typename?: 'MarketplaceConsoleProductMetadata';
|
|
53705
|
+
developerId: Scalars['ID']['output'];
|
|
53706
|
+
marketplaceAppId: Scalars['ID']['output'];
|
|
53707
|
+
marketplaceAppKey: Scalars['String']['output'];
|
|
53708
|
+
productId: Scalars['ID']['output'];
|
|
53709
|
+
vendorId: Scalars['ID']['output'];
|
|
53710
|
+
};
|
|
52752
53711
|
export declare type MarketplaceConsoleQueryApi = {
|
|
52753
53712
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
53713
|
+
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53714
|
+
appSoftwareMetadataByAppId?: Maybe<MarketplaceConsoleAppSoftwareMetadata>;
|
|
53715
|
+
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53716
|
+
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
52754
53717
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53718
|
+
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
52755
53719
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
52756
53720
|
currentUserProfile?: Maybe<MarketplaceConsoleUser>;
|
|
52757
53721
|
developerSpace?: Maybe<MarketplaceConsoleDevSpace>;
|
|
53722
|
+
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
53723
|
+
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53724
|
+
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
53725
|
+
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
53726
|
+
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53727
|
+
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53728
|
+
};
|
|
53729
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareArgs = {
|
|
53730
|
+
appId: Scalars['ID']['input'];
|
|
53731
|
+
};
|
|
53732
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareMetadataByAppIdArgs = {
|
|
53733
|
+
appId: Scalars['ID']['input'];
|
|
53734
|
+
};
|
|
53735
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
53736
|
+
appId: Scalars['ID']['input'];
|
|
53737
|
+
buildNumber: Scalars['ID']['input'];
|
|
53738
|
+
};
|
|
53739
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
53740
|
+
appId: Scalars['ID']['input'];
|
|
53741
|
+
buildNumber: Scalars['ID']['input'];
|
|
52758
53742
|
};
|
|
52759
53743
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
52760
53744
|
partnerId: Scalars['ID']['input'];
|
|
52761
53745
|
};
|
|
53746
|
+
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactByAppIdArgs = {
|
|
53747
|
+
appId: Scalars['ID']['input'];
|
|
53748
|
+
};
|
|
52762
53749
|
export declare type MarketplaceConsoleQueryApiDeveloperSpaceArgs = {
|
|
52763
53750
|
vendorId: Scalars['ID']['input'];
|
|
52764
53751
|
};
|
|
53752
|
+
export declare type MarketplaceConsoleQueryApiDeveloperSpaceByAppIdArgs = {
|
|
53753
|
+
appId: Scalars['ID']['input'];
|
|
53754
|
+
};
|
|
53755
|
+
export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
53756
|
+
product: MarketplaceConsoleProduct;
|
|
53757
|
+
};
|
|
53758
|
+
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
53759
|
+
product: MarketplaceConsoleProduct;
|
|
53760
|
+
};
|
|
53761
|
+
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
53762
|
+
appId: Scalars['ID']['input'];
|
|
53763
|
+
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
53764
|
+
};
|
|
53765
|
+
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
53766
|
+
appId: Scalars['ID']['input'];
|
|
53767
|
+
};
|
|
53768
|
+
export declare type MarketplaceConsoleSourceCodeLicense = {
|
|
53769
|
+
__typename?: 'MarketplaceConsoleSourceCodeLicense';
|
|
53770
|
+
url: Scalars['String']['output'];
|
|
53771
|
+
};
|
|
53772
|
+
export declare type MarketplaceConsoleTagsContent = {
|
|
53773
|
+
__typename?: 'MarketplaceConsoleTagsContent';
|
|
53774
|
+
id: Scalars['ID']['output'];
|
|
53775
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
53776
|
+
};
|
|
52765
53777
|
export declare type MarketplaceConsoleUser = {
|
|
52766
53778
|
__typename?: 'MarketplaceConsoleUser';
|
|
52767
53779
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -52775,6 +53787,18 @@ export declare type MarketplaceConsoleUserPreferences = {
|
|
|
52775
53787
|
isNewReportsView: Scalars['Boolean']['output'];
|
|
52776
53788
|
isPatternedChart?: Maybe<Scalars['Boolean']['output']>;
|
|
52777
53789
|
};
|
|
53790
|
+
export declare type MarketplaceConsoleVendorLinks = {
|
|
53791
|
+
__typename?: 'MarketplaceConsoleVendorLinks';
|
|
53792
|
+
appStatusPage?: Maybe<Scalars['String']['output']>;
|
|
53793
|
+
forums?: Maybe<Scalars['String']['output']>;
|
|
53794
|
+
issueTracker?: Maybe<Scalars['String']['output']>;
|
|
53795
|
+
privacy?: Maybe<Scalars['String']['output']>;
|
|
53796
|
+
supportTicketSystem?: Maybe<Scalars['String']['output']>;
|
|
53797
|
+
};
|
|
53798
|
+
export declare type MarketplaceConsoleWorkflowFrameworkAttributes = {
|
|
53799
|
+
__typename?: 'MarketplaceConsoleWorkflowFrameworkAttributes';
|
|
53800
|
+
artifactId: Scalars['ID']['output'];
|
|
53801
|
+
};
|
|
52778
53802
|
export declare enum MarketplaceEntityStatus {
|
|
52779
53803
|
Active = "ACTIVE",
|
|
52780
53804
|
Archived = "ARCHIVED"
|
|
@@ -54670,6 +55694,7 @@ export declare type Mutation = {
|
|
|
54670
55694
|
jsw?: Maybe<JswMutation>;
|
|
54671
55695
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
54672
55696
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
55697
|
+
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
54673
55698
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
54674
55699
|
mercury?: Maybe<MercuryMutationApi>;
|
|
54675
55700
|
moveSprintDown?: Maybe<MoveSprintDownResponse>;
|
|
@@ -58154,6 +59179,7 @@ export declare type Query = {
|
|
|
58154
59179
|
extensionContext?: Maybe<ExtensionContext>;
|
|
58155
59180
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
58156
59181
|
extensionsEcho?: Maybe<Scalars['String']['output']>;
|
|
59182
|
+
external_entities?: Maybe<ExternalEntities>;
|
|
58157
59183
|
fullHubArticle?: Maybe<ContentPlatformFullHubArticle>;
|
|
58158
59184
|
fullHubArticles: ContentPlatformHubArticleSearchConnection;
|
|
58159
59185
|
fullTutorial?: Maybe<ContentPlatformFullTutorial>;
|
|
@@ -59404,6 +60430,9 @@ export declare type QueryExtensionContextsArgs = {
|
|
|
59404
60430
|
export declare type QueryExtensionsEchoArgs = {
|
|
59405
60431
|
text: Scalars['String']['input'];
|
|
59406
60432
|
};
|
|
60433
|
+
export declare type QueryExternal_EntitiesArgs = {
|
|
60434
|
+
ids: Array<Scalars['ID']['input']>;
|
|
60435
|
+
};
|
|
59407
60436
|
export declare type QueryFullHubArticleArgs = {
|
|
59408
60437
|
id: Scalars['String']['input'];
|
|
59409
60438
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61316,7 +62345,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
61316
62345
|
type: SearchResultType;
|
|
61317
62346
|
url: Scalars['URL']['output'];
|
|
61318
62347
|
};
|
|
61319
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
62348
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalCommit | ExternalConversation | ExternalDesign | ExternalMessage | ExternalVideo | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
61320
62349
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
61321
62350
|
__typename?: 'SearchResultGoogleDocument';
|
|
61322
62351
|
bodyText: Scalars['String']['output'];
|
|
@@ -61530,6 +62559,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
61530
62559
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
61531
62560
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
61532
62561
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62562
|
+
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
61533
62563
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
61534
62564
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
61535
62565
|
title: Scalars['String']['output'];
|
|
@@ -65502,6 +66532,7 @@ export declare type TrelloJwmWorkspaceLink = {
|
|
|
65502
66532
|
export declare type TrelloLabel = {
|
|
65503
66533
|
__typename?: 'TrelloLabel';
|
|
65504
66534
|
color?: Maybe<Scalars['String']['output']>;
|
|
66535
|
+
id: Scalars['ID']['output'];
|
|
65505
66536
|
name?: Maybe<Scalars['String']['output']>;
|
|
65506
66537
|
objectId: Scalars['ID']['output'];
|
|
65507
66538
|
uses?: Maybe<Scalars['Int']['output']>;
|
|
@@ -65661,6 +66692,7 @@ export declare type TrelloMutationApi = {
|
|
|
65661
66692
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
65662
66693
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
65663
66694
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
66695
|
+
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
65664
66696
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
65665
66697
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
65666
66698
|
};
|
|
@@ -65691,6 +66723,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
65691
66723
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
65692
66724
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
65693
66725
|
};
|
|
66726
|
+
export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
66727
|
+
input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
|
|
66728
|
+
};
|
|
65694
66729
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
65695
66730
|
input: TrelloUpdateCardNameInput;
|
|
65696
66731
|
};
|
|
@@ -65943,6 +66978,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
65943
66978
|
success: Scalars['Boolean']['output'];
|
|
65944
66979
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
65945
66980
|
};
|
|
66981
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardInput = {
|
|
66982
|
+
boardId: Scalars['ID']['input'];
|
|
66983
|
+
value: Scalars['Boolean']['input'];
|
|
66984
|
+
};
|
|
66985
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payload & {
|
|
66986
|
+
__typename?: 'TrelloUpdateBoardViewerShowCompactMirrorCardPayload';
|
|
66987
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66988
|
+
success: Scalars['Boolean']['output'];
|
|
66989
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
66990
|
+
};
|
|
65946
66991
|
export declare type TrelloUpdateCardNameInput = {
|
|
65947
66992
|
cardId: Scalars['ID']['input'];
|
|
65948
66993
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67754,9 +68799,10 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
67754
68799
|
};
|
|
67755
68800
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
67756
68801
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
67757
|
-
autoDevJobsSuggestions
|
|
67758
|
-
commonSuggestions
|
|
67759
|
-
|
|
68802
|
+
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
68803
|
+
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
68804
|
+
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
68805
|
+
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
67760
68806
|
};
|
|
67761
68807
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
67762
68808
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -67938,6 +68984,44 @@ export declare type WorkSuggestionsOrder = {
|
|
|
67938
68984
|
__typename?: 'WorkSuggestionsOrder';
|
|
67939
68985
|
defaultOrder: Array<Scalars['ID']['output']>;
|
|
67940
68986
|
};
|
|
68987
|
+
export declare type WorkSuggestionsOrderScore = {
|
|
68988
|
+
__typename?: 'WorkSuggestionsOrderScore';
|
|
68989
|
+
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|
|
68990
|
+
};
|
|
68991
|
+
export declare type WorkSuggestionsOrderScores = {
|
|
68992
|
+
__typename?: 'WorkSuggestionsOrderScores';
|
|
68993
|
+
major: Scalars['Int']['output'];
|
|
68994
|
+
minor?: Maybe<Scalars['Int']['output']>;
|
|
68995
|
+
};
|
|
68996
|
+
export declare type WorkSuggestionsPrComment = {
|
|
68997
|
+
__typename?: 'WorkSuggestionsPRComment';
|
|
68998
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
68999
|
+
commenterName: Scalars['String']['output'];
|
|
69000
|
+
createdOn: Scalars['String']['output'];
|
|
69001
|
+
text: Scalars['String']['output'];
|
|
69002
|
+
url: Scalars['String']['output'];
|
|
69003
|
+
};
|
|
69004
|
+
export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask & {
|
|
69005
|
+
__typename?: 'WorkSuggestionsPRCommentsTask';
|
|
69006
|
+
approvalsCount: Scalars['Int']['output'];
|
|
69007
|
+
commentCount: Scalars['Int']['output'];
|
|
69008
|
+
comments?: Maybe<Array<WorkSuggestionsPrComment>>;
|
|
69009
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
69010
|
+
id: Scalars['String']['output'];
|
|
69011
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69012
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69013
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
69014
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
69015
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
69016
|
+
title: Scalars['String']['output'];
|
|
69017
|
+
url: Scalars['String']['output'];
|
|
69018
|
+
};
|
|
69019
|
+
export declare type WorkSuggestionsPeriscopeTask = {
|
|
69020
|
+
id: Scalars['String']['output'];
|
|
69021
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69022
|
+
title: Scalars['String']['output'];
|
|
69023
|
+
url: Scalars['String']['output'];
|
|
69024
|
+
};
|
|
67941
69025
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
67942
69026
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
67943
69027
|
commentCount: Scalars['Int']['output'];
|