@forge/cli-shared 5.4.1-next.2 → 5.4.1-next.3
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
CHANGED
|
@@ -2142,6 +2142,15 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
2142
2142
|
Updated = "UPDATED",
|
|
2143
2143
|
Votes = "VOTES"
|
|
2144
2144
|
}
|
|
2145
|
+
export declare type BulkDeleteCompassComponentsInput = {
|
|
2146
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2147
|
+
};
|
|
2148
|
+
export declare type BulkDeleteCompassComponentsPayload = Payload & {
|
|
2149
|
+
__typename?: 'BulkDeleteCompassComponentsPayload';
|
|
2150
|
+
deletedComponentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
2151
|
+
errors?: Maybe<Array<MutationError>>;
|
|
2152
|
+
success: Scalars['Boolean']['output'];
|
|
2153
|
+
};
|
|
2145
2154
|
export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
2146
2155
|
__typename?: 'BulkMutationErrorExtension';
|
|
2147
2156
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -3267,6 +3276,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3267
3276
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
3268
3277
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
3269
3278
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3279
|
+
deleteComponentType?: Maybe<DeleteCompassComponentTypePayload>;
|
|
3280
|
+
deleteComponents?: Maybe<BulkDeleteCompassComponentsPayload>;
|
|
3270
3281
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3271
3282
|
deleteDocument?: Maybe<CompassDeleteDocumentPayload>;
|
|
3272
3283
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
@@ -3424,6 +3435,12 @@ export declare type CompassCatalogMutationApiDeleteComponentLinkArgs = {
|
|
|
3424
3435
|
export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
3425
3436
|
input: CompassDeleteComponentSubscriptionInput;
|
|
3426
3437
|
};
|
|
3438
|
+
export declare type CompassCatalogMutationApiDeleteComponentTypeArgs = {
|
|
3439
|
+
input: DeleteCompassComponentTypeInput;
|
|
3440
|
+
};
|
|
3441
|
+
export declare type CompassCatalogMutationApiDeleteComponentsArgs = {
|
|
3442
|
+
input: BulkDeleteCompassComponentsInput;
|
|
3443
|
+
};
|
|
3427
3444
|
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
3428
3445
|
input: CompassDeleteCustomFieldDefinitionInput;
|
|
3429
3446
|
};
|
|
@@ -3914,7 +3931,6 @@ export declare type CompassComponentInstancePermissions = {
|
|
|
3914
3931
|
connectEventSource?: Maybe<CompassPermissionResult>;
|
|
3915
3932
|
connectMetricSource?: Maybe<CompassPermissionResult>;
|
|
3916
3933
|
createAnnouncement?: Maybe<CompassPermissionResult>;
|
|
3917
|
-
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
3918
3934
|
delete?: Maybe<CompassPermissionResult>;
|
|
3919
3935
|
edit?: Maybe<CompassPermissionResult>;
|
|
3920
3936
|
modifyAnnouncement?: Maybe<CompassPermissionResult>;
|
|
@@ -3963,6 +3979,7 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
3963
3979
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
3964
3980
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
3965
3981
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
3982
|
+
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
3966
3983
|
};
|
|
3967
3984
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
3968
3985
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
@@ -3977,6 +3994,10 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
3977
3994
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3978
3995
|
query?: InputMaybe<CompassScorecardScoreHistoryQuery>;
|
|
3979
3996
|
};
|
|
3997
|
+
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
3998
|
+
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
3999
|
+
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
4000
|
+
};
|
|
3980
4001
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
3981
4002
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
3982
4003
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -5706,6 +5727,7 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
|
5706
5727
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
5707
5728
|
cursor: Scalars['String']['output'];
|
|
5708
5729
|
node?: Maybe<CompassComponent>;
|
|
5730
|
+
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
5709
5731
|
};
|
|
5710
5732
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
5711
5733
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
@@ -13779,7 +13801,7 @@ export declare type ContentPlatformAdvocateQuote = {
|
|
|
13779
13801
|
advocateQuoteId: Scalars['String']['output'];
|
|
13780
13802
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13781
13803
|
heroQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
13782
|
-
name
|
|
13804
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13783
13805
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
13784
13806
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13785
13807
|
};
|
|
@@ -13885,7 +13907,7 @@ export declare type ContentPlatformAnimatedTourCard = {
|
|
|
13885
13907
|
epicName?: Maybe<Scalars['String']['output']>;
|
|
13886
13908
|
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
13887
13909
|
priority?: Maybe<Scalars['String']['output']>;
|
|
13888
|
-
summary
|
|
13910
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
13889
13911
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13890
13912
|
};
|
|
13891
13913
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
@@ -13914,7 +13936,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
13914
13936
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13915
13937
|
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
13916
13938
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
13917
|
-
name
|
|
13939
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13918
13940
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
13919
13941
|
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
13920
13942
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14341,14 +14363,14 @@ export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
|
14341
14363
|
};
|
|
14342
14364
|
export declare type ContentPlatformIpmImageModal = {
|
|
14343
14365
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14344
|
-
body
|
|
14366
|
+
body?: Maybe<Scalars['JSON']['output']>;
|
|
14345
14367
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14346
14368
|
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
14347
14369
|
ctaButtonUrl?: Maybe<Scalars['String']['output']>;
|
|
14348
14370
|
id: Scalars['String']['output'];
|
|
14349
14371
|
image?: Maybe<Scalars['JSON']['output']>;
|
|
14350
14372
|
ipmNumber: Scalars['String']['output'];
|
|
14351
|
-
title
|
|
14373
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14352
14374
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14353
14375
|
variant?: Maybe<Scalars['String']['output']>;
|
|
14354
14376
|
};
|
|
@@ -14374,7 +14396,7 @@ export declare type ContentPlatformMarketplaceApp = {
|
|
|
14374
14396
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14375
14397
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14376
14398
|
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14377
|
-
name
|
|
14399
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14378
14400
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14379
14401
|
url: Scalars['String']['output'];
|
|
14380
14402
|
};
|
|
@@ -14388,7 +14410,7 @@ export declare type ContentPlatformOrganization = {
|
|
|
14388
14410
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14389
14411
|
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
14390
14412
|
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
14391
|
-
name
|
|
14413
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14392
14414
|
organizationSize?: Maybe<ContentPlatformTaxonomyCompanySize>;
|
|
14393
14415
|
region?: Maybe<ContentPlatformTaxonomyRegion>;
|
|
14394
14416
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -14490,7 +14512,7 @@ export declare type ContentPlatformProduct = {
|
|
|
14490
14512
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14491
14513
|
deployment?: Maybe<Scalars['String']['output']>;
|
|
14492
14514
|
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14493
|
-
name
|
|
14515
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14494
14516
|
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
14495
14517
|
productNameId?: Maybe<Scalars['String']['output']>;
|
|
14496
14518
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14734,8 +14756,8 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
14734
14756
|
export declare type ContentPlatformTaxonomyCompanySize = {
|
|
14735
14757
|
__typename?: 'ContentPlatformTaxonomyCompanySize';
|
|
14736
14758
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14737
|
-
name
|
|
14738
|
-
shortDescription
|
|
14759
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14760
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
14739
14761
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14740
14762
|
};
|
|
14741
14763
|
export declare type ContentPlatformTaxonomyContentHub = {
|
|
@@ -14805,18 +14827,18 @@ export declare type ContentPlatformTaxonomyUserRole = {
|
|
|
14805
14827
|
export declare type ContentPlatformTaxonomyUserRoleNew = {
|
|
14806
14828
|
__typename?: 'ContentPlatformTaxonomyUserRoleNew';
|
|
14807
14829
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14808
|
-
roleDescription
|
|
14830
|
+
roleDescription?: Maybe<Scalars['String']['output']>;
|
|
14809
14831
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14810
|
-
userRole
|
|
14832
|
+
userRole?: Maybe<Scalars['String']['output']>;
|
|
14811
14833
|
userRoleId: Scalars['String']['output'];
|
|
14812
14834
|
};
|
|
14813
14835
|
export declare type ContentPlatformTemplate = {
|
|
14814
14836
|
__typename?: 'ContentPlatformTemplate';
|
|
14815
|
-
aboutThisTemplate
|
|
14837
|
+
aboutThisTemplate?: Maybe<Scalars['String']['output']>;
|
|
14816
14838
|
category?: Maybe<Array<ContentPlatformCategory>>;
|
|
14817
14839
|
contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
|
|
14818
14840
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14819
|
-
howToUseThisTemplate
|
|
14841
|
+
howToUseThisTemplate?: Maybe<Array<ContentPlatformTemplateGuide>>;
|
|
14820
14842
|
keyFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
14821
14843
|
name?: Maybe<Scalars['String']['output']>;
|
|
14822
14844
|
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
@@ -14903,7 +14925,7 @@ export declare type ContentPlatformTemplateContentSearchConnection = {
|
|
|
14903
14925
|
export declare type ContentPlatformTemplateGuide = {
|
|
14904
14926
|
__typename?: 'ContentPlatformTemplateGuide';
|
|
14905
14927
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14906
|
-
name
|
|
14928
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14907
14929
|
steps?: Maybe<Array<ContentPlatformTemplateUseStep>>;
|
|
14908
14930
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14909
14931
|
};
|
|
@@ -14914,7 +14936,7 @@ export declare type ContentPlatformTemplateImageAsset = {
|
|
|
14914
14936
|
description?: Maybe<Scalars['String']['output']>;
|
|
14915
14937
|
details: Scalars['JSON']['output'];
|
|
14916
14938
|
fileName: Scalars['String']['output'];
|
|
14917
|
-
title
|
|
14939
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14918
14940
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14919
14941
|
url: Scalars['String']['output'];
|
|
14920
14942
|
};
|
|
@@ -14944,7 +14966,7 @@ export declare type ContentPlatformTemplateUseStep = {
|
|
|
14944
14966
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14945
14967
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14946
14968
|
description?: Maybe<Scalars['String']['output']>;
|
|
14947
|
-
name
|
|
14969
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14948
14970
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14949
14971
|
};
|
|
14950
14972
|
export declare type ContentPlatformTextComponent = {
|
|
@@ -14967,17 +14989,17 @@ export declare type ContentPlatformTopicIntroduction = {
|
|
|
14967
14989
|
export declare type ContentPlatformTopicOverview = {
|
|
14968
14990
|
__typename?: 'ContentPlatformTopicOverview';
|
|
14969
14991
|
author?: Maybe<ContentPlatformAuthor>;
|
|
14970
|
-
bannerImage
|
|
14992
|
+
bannerImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14971
14993
|
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
14972
14994
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14973
14995
|
description?: Maybe<Scalars['String']['output']>;
|
|
14974
14996
|
featuredContentContainer?: Maybe<Array<ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
14975
14997
|
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
14976
14998
|
name?: Maybe<Scalars['String']['output']>;
|
|
14977
|
-
nextBestAction
|
|
14978
|
-
relatedHub
|
|
14999
|
+
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
15000
|
+
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
14979
15001
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
14980
|
-
title
|
|
15002
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14981
15003
|
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
14982
15004
|
topicOverviewId: Scalars['String']['output'];
|
|
14983
15005
|
upNextFooter?: Maybe<ContentPlatformHubArticle>;
|
|
@@ -16688,6 +16710,14 @@ export declare type DeleteCompassComponentPayload = Payload & {
|
|
|
16688
16710
|
errors?: Maybe<Array<MutationError>>;
|
|
16689
16711
|
success: Scalars['Boolean']['output'];
|
|
16690
16712
|
};
|
|
16713
|
+
export declare type DeleteCompassComponentTypeInput = {
|
|
16714
|
+
id: Scalars['ID']['input'];
|
|
16715
|
+
};
|
|
16716
|
+
export declare type DeleteCompassComponentTypePayload = Payload & {
|
|
16717
|
+
__typename?: 'DeleteCompassComponentTypePayload';
|
|
16718
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16719
|
+
success: Scalars['Boolean']['output'];
|
|
16720
|
+
};
|
|
16691
16721
|
export declare type DeleteCompassRelationshipInput = {
|
|
16692
16722
|
endNodeId: Scalars['ID']['input'];
|
|
16693
16723
|
startNodeId: Scalars['ID']['input'];
|
|
@@ -19231,6 +19261,23 @@ export declare enum ExternalApprovalStatus {
|
|
|
19231
19261
|
Needswork = "NEEDSWORK",
|
|
19232
19262
|
Unapproved = "UNAPPROVED"
|
|
19233
19263
|
}
|
|
19264
|
+
export declare type ExternalAssociation = {
|
|
19265
|
+
__typename?: 'ExternalAssociation';
|
|
19266
|
+
createdBy?: Maybe<ExternalUser>;
|
|
19267
|
+
entity?: Maybe<ExternalAssociationEntity>;
|
|
19268
|
+
id: Scalars['ID']['output'];
|
|
19269
|
+
};
|
|
19270
|
+
export declare type ExternalAssociationConnection = {
|
|
19271
|
+
__typename?: 'ExternalAssociationConnection';
|
|
19272
|
+
edges?: Maybe<Array<Maybe<ExternalAssociationEdge>>>;
|
|
19273
|
+
pageInfo?: Maybe<PageInfo>;
|
|
19274
|
+
};
|
|
19275
|
+
export declare type ExternalAssociationEdge = {
|
|
19276
|
+
__typename?: 'ExternalAssociationEdge';
|
|
19277
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19278
|
+
node?: Maybe<ExternalAssociation>;
|
|
19279
|
+
};
|
|
19280
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
19234
19281
|
export declare type ExternalAttachment = {
|
|
19235
19282
|
__typename?: 'ExternalAttachment';
|
|
19236
19283
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -19250,8 +19297,10 @@ export declare type ExternalAuthProvider = {
|
|
|
19250
19297
|
};
|
|
19251
19298
|
export declare type ExternalBranch = Node & {
|
|
19252
19299
|
__typename?: 'ExternalBranch';
|
|
19300
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19253
19301
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
19254
19302
|
container?: Maybe<ExternalEntity>;
|
|
19303
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19255
19304
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
19256
19305
|
id: Scalars['ID']['output'];
|
|
19257
19306
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -19270,6 +19319,7 @@ export declare type ExternalBuildCommitReference = {
|
|
|
19270
19319
|
};
|
|
19271
19320
|
export declare type ExternalBuildInfo = Node & {
|
|
19272
19321
|
__typename?: 'ExternalBuildInfo';
|
|
19322
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19273
19323
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
19274
19324
|
description?: Maybe<Scalars['String']['output']>;
|
|
19275
19325
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19315,9 +19365,11 @@ export declare type ExternalChapter = {
|
|
|
19315
19365
|
};
|
|
19316
19366
|
export declare type ExternalCommit = Node & {
|
|
19317
19367
|
__typename?: 'ExternalCommit';
|
|
19368
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19318
19369
|
author?: Maybe<ExternalUser>;
|
|
19319
19370
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
19320
19371
|
container?: Maybe<ExternalEntity>;
|
|
19372
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19321
19373
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19322
19374
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19323
19375
|
fileInfo?: Maybe<ExternalFileInfo>;
|
|
@@ -19333,6 +19385,7 @@ export declare enum ExternalCommitFlags {
|
|
|
19333
19385
|
}
|
|
19334
19386
|
export declare type ExternalConversation = Node & {
|
|
19335
19387
|
__typename?: 'ExternalConversation';
|
|
19388
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19336
19389
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19337
19390
|
createdBy?: Maybe<ExternalUser>;
|
|
19338
19391
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19366,6 +19419,7 @@ export declare type ExternalCue = {
|
|
|
19366
19419
|
};
|
|
19367
19420
|
export declare type ExternalDeployment = Node & {
|
|
19368
19421
|
__typename?: 'ExternalDeployment';
|
|
19422
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19369
19423
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19370
19424
|
description?: Maybe<Scalars['String']['output']>;
|
|
19371
19425
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19391,6 +19445,7 @@ export declare enum ExternalDeploymentState {
|
|
|
19391
19445
|
}
|
|
19392
19446
|
export declare type ExternalDesign = Node & {
|
|
19393
19447
|
__typename?: 'ExternalDesign';
|
|
19448
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19394
19449
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19395
19450
|
createdBy?: Maybe<ExternalUser>;
|
|
19396
19451
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19424,6 +19479,7 @@ export declare enum ExternalDesignType {
|
|
|
19424
19479
|
}
|
|
19425
19480
|
export declare type ExternalDocument = Node & {
|
|
19426
19481
|
__typename?: 'ExternalDocument';
|
|
19482
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19427
19483
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19428
19484
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19429
19485
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -19505,6 +19561,7 @@ export declare type ExternalExportLink = {
|
|
|
19505
19561
|
};
|
|
19506
19562
|
export declare type ExternalFeatureFlag = Node & {
|
|
19507
19563
|
__typename?: 'ExternalFeatureFlag';
|
|
19564
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19508
19565
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19509
19566
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19510
19567
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19567,7 +19624,9 @@ export declare enum ExternalMembershipType {
|
|
|
19567
19624
|
}
|
|
19568
19625
|
export declare type ExternalMessage = Node & {
|
|
19569
19626
|
__typename?: 'ExternalMessage';
|
|
19627
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19570
19628
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19629
|
+
container?: Maybe<ExternalEntity>;
|
|
19571
19630
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19572
19631
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19573
19632
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19594,9 +19653,11 @@ export declare type ExternalPipeline = {
|
|
|
19594
19653
|
};
|
|
19595
19654
|
export declare type ExternalPullRequest = Node & {
|
|
19596
19655
|
__typename?: 'ExternalPullRequest';
|
|
19656
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19597
19657
|
author?: Maybe<ExternalUser>;
|
|
19598
19658
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
19599
19659
|
container?: Maybe<ExternalEntity>;
|
|
19660
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19600
19661
|
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
19601
19662
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19602
19663
|
id: Scalars['ID']['output'];
|
|
@@ -19622,6 +19683,7 @@ export declare type ExternalRemoteLink = Node & {
|
|
|
19622
19683
|
__typename?: 'ExternalRemoteLink';
|
|
19623
19684
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19624
19685
|
assignee?: Maybe<ExternalUser>;
|
|
19686
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19625
19687
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
19626
19688
|
author?: Maybe<ExternalUser>;
|
|
19627
19689
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -19646,6 +19708,7 @@ export declare type ExternalRemoteLinkStatus = {
|
|
|
19646
19708
|
};
|
|
19647
19709
|
export declare type ExternalRepository = Node & {
|
|
19648
19710
|
__typename?: 'ExternalRepository';
|
|
19711
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19649
19712
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19650
19713
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
19651
19714
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19684,6 +19747,7 @@ export declare type ExternalUser = {
|
|
|
19684
19747
|
};
|
|
19685
19748
|
export declare type ExternalVideo = Node & {
|
|
19686
19749
|
__typename?: 'ExternalVideo';
|
|
19750
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19687
19751
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19688
19752
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
19689
19753
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -19707,6 +19771,7 @@ export declare type ExternalVideo = Node & {
|
|
|
19707
19771
|
export declare type ExternalVulnerability = Node & {
|
|
19708
19772
|
__typename?: 'ExternalVulnerability';
|
|
19709
19773
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19774
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19710
19775
|
description?: Maybe<Scalars['String']['output']>;
|
|
19711
19776
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19712
19777
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -35940,6 +36005,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
35940
36005
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
35941
36006
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
35942
36007
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
36008
|
+
updateProjectMapping?: Maybe<HelpCenterProjectMappingUpdatePayload>;
|
|
35943
36009
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
35944
36010
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
35945
36011
|
};
|
|
@@ -35976,6 +36042,9 @@ export declare type HelpCenterMutationApiUpdateLoginAnnouncementArgs = {
|
|
|
35976
36042
|
export declare type HelpCenterMutationApiUpdatePortalsConfigurationArgs = {
|
|
35977
36043
|
input: HelpCenterPortalsConfigurationUpdateInput;
|
|
35978
36044
|
};
|
|
36045
|
+
export declare type HelpCenterMutationApiUpdateProjectMappingArgs = {
|
|
36046
|
+
input: HelpCenterProjectMappingUpdateInput;
|
|
36047
|
+
};
|
|
35979
36048
|
export declare type HelpCenterMutationApiUpdateTopicArgs = {
|
|
35980
36049
|
input: HelpCenterBulkUpdateTopicInput;
|
|
35981
36050
|
};
|
|
@@ -36031,6 +36100,16 @@ export declare enum HelpCenterPortalsType {
|
|
|
36031
36100
|
Hidden = "HIDDEN",
|
|
36032
36101
|
Visible = "VISIBLE"
|
|
36033
36102
|
}
|
|
36103
|
+
export declare type HelpCenterProjectMappingUpdateInput = {
|
|
36104
|
+
helpCenterAri: Scalars['String']['input'];
|
|
36105
|
+
mappedProjectIds: Array<Scalars['String']['input']>;
|
|
36106
|
+
syncNewProjects: Scalars['Boolean']['input'];
|
|
36107
|
+
};
|
|
36108
|
+
export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
36109
|
+
__typename?: 'HelpCenterProjectMappingUpdatePayload';
|
|
36110
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36111
|
+
success: Scalars['Boolean']['output'];
|
|
36112
|
+
};
|
|
36034
36113
|
export declare type HelpCenterQueryApi = {
|
|
36035
36114
|
__typename?: 'HelpCenterQueryApi';
|
|
36036
36115
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
@@ -36960,22 +37039,10 @@ export declare enum HelpObjectStoreJsmEntityType {
|
|
|
36960
37039
|
export declare type HelpObjectStoreMutationApi = {
|
|
36961
37040
|
__typename?: 'HelpObjectStoreMutationApi';
|
|
36962
37041
|
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
36963
|
-
createProviderConnections?: Maybe<HelpObjectStoreProviderConnectionPayload>;
|
|
36964
|
-
deleteProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
36965
|
-
updateProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
36966
37042
|
};
|
|
36967
37043
|
export declare type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
36968
37044
|
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
36969
37045
|
};
|
|
36970
|
-
export declare type HelpObjectStoreMutationApiCreateProviderConnectionsArgs = {
|
|
36971
|
-
input: HelpObjectStoreProviderConnectionsInput;
|
|
36972
|
-
};
|
|
36973
|
-
export declare type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
|
|
36974
|
-
id: Scalars['ID']['input'];
|
|
36975
|
-
};
|
|
36976
|
-
export declare type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
|
|
36977
|
-
input: HelpObjectStoreProviderConnectionInput;
|
|
36978
|
-
};
|
|
36979
37046
|
export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
36980
37047
|
__typename?: 'HelpObjectStorePortal';
|
|
36981
37048
|
ari: Scalars['ID']['output'];
|
|
@@ -36990,88 +37057,10 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
36990
37057
|
title?: Maybe<Scalars['String']['output']>;
|
|
36991
37058
|
};
|
|
36992
37059
|
export declare type HelpObjectStorePortalResult = HelpObjectStorePortal | HelpObjectStoreQueryError;
|
|
36993
|
-
export declare type HelpObjectStoreProviderAuthStatus = {
|
|
36994
|
-
__typename?: 'HelpObjectStoreProviderAuthStatus';
|
|
36995
|
-
authUrl?: Maybe<Scalars['String']['output']>;
|
|
36996
|
-
isAuthRequired: Scalars['Boolean']['output'];
|
|
36997
|
-
provider: Scalars['String']['output'];
|
|
36998
|
-
};
|
|
36999
|
-
export declare type HelpObjectStoreProviderAuthStatusResult = HelpObjectStoreProviderAuthStatuses | HelpObjectStoreProvidersAuthError;
|
|
37000
|
-
export declare type HelpObjectStoreProviderAuthStatuses = {
|
|
37001
|
-
__typename?: 'HelpObjectStoreProviderAuthStatuses';
|
|
37002
|
-
providerAuthStatuses: Array<Maybe<HelpObjectStoreProviderAuthStatus>>;
|
|
37003
|
-
};
|
|
37004
|
-
export declare type HelpObjectStoreProviderConnection = Node & {
|
|
37005
|
-
__typename?: 'HelpObjectStoreProviderConnection';
|
|
37006
|
-
containerId?: Maybe<Scalars['String']['output']>;
|
|
37007
|
-
containerType?: Maybe<Scalars['String']['output']>;
|
|
37008
|
-
createdBy: Scalars['String']['output'];
|
|
37009
|
-
id: Scalars['ID']['output'];
|
|
37010
|
-
providerKey: Scalars['String']['output'];
|
|
37011
|
-
teamId: Scalars['String']['output'];
|
|
37012
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
37013
|
-
updatedBy: Scalars['String']['output'];
|
|
37014
|
-
url: Scalars['String']['output'];
|
|
37015
|
-
};
|
|
37016
|
-
export declare type HelpObjectStoreProviderConnectionEdge = {
|
|
37017
|
-
__typename?: 'HelpObjectStoreProviderConnectionEdge';
|
|
37018
|
-
cursor: Scalars['String']['output'];
|
|
37019
|
-
node: HelpObjectStoreProviderConnection;
|
|
37020
|
-
};
|
|
37021
|
-
export declare type HelpObjectStoreProviderConnectionError = {
|
|
37022
|
-
__typename?: 'HelpObjectStoreProviderConnectionError';
|
|
37023
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
37024
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
37025
|
-
};
|
|
37026
|
-
export declare type HelpObjectStoreProviderConnectionInput = {
|
|
37027
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
37028
|
-
providerKey: Scalars['String']['input'];
|
|
37029
|
-
teamId: Scalars['String']['input'];
|
|
37030
|
-
url: Scalars['String']['input'];
|
|
37031
|
-
};
|
|
37032
|
-
export declare type HelpObjectStoreProviderConnectionMutationError = {
|
|
37033
|
-
__typename?: 'HelpObjectStoreProviderConnectionMutationError';
|
|
37034
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
37035
|
-
errorMessage: Scalars['String']['output'];
|
|
37036
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
37037
|
-
providerKey: Scalars['String']['output'];
|
|
37038
|
-
teamId: Scalars['String']['output'];
|
|
37039
|
-
url: Scalars['String']['output'];
|
|
37040
|
-
};
|
|
37041
|
-
export declare type HelpObjectStoreProviderConnectionPayload = {
|
|
37042
|
-
__typename?: 'HelpObjectStoreProviderConnectionPayload';
|
|
37043
|
-
errors?: Maybe<Array<HelpObjectStoreProviderConnectionMutationError>>;
|
|
37044
|
-
providerConnections?: Maybe<Array<HelpObjectStoreProviderConnection>>;
|
|
37045
|
-
success: Scalars['Boolean']['output'];
|
|
37046
|
-
};
|
|
37047
|
-
export declare type HelpObjectStoreProviderConnectionResult = HelpObjectStoreProviderConnectionError | HelpObjectStoreProviderConnections;
|
|
37048
|
-
export declare type HelpObjectStoreProviderConnectionUpdateDeletePayload = {
|
|
37049
|
-
__typename?: 'HelpObjectStoreProviderConnectionUpdateDeletePayload';
|
|
37050
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
37051
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
37052
|
-
id: Scalars['ID']['output'];
|
|
37053
|
-
success: Scalars['Boolean']['output'];
|
|
37054
|
-
};
|
|
37055
|
-
export declare type HelpObjectStoreProviderConnections = {
|
|
37056
|
-
__typename?: 'HelpObjectStoreProviderConnections';
|
|
37057
|
-
edges: Array<Maybe<HelpObjectStoreProviderConnectionEdge>>;
|
|
37058
|
-
pageInfo: PageInfo;
|
|
37059
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
37060
|
-
};
|
|
37061
|
-
export declare type HelpObjectStoreProviderConnectionsInput = {
|
|
37062
|
-
providerConnections: Array<HelpObjectStoreProviderConnectionInput>;
|
|
37063
|
-
};
|
|
37064
|
-
export declare type HelpObjectStoreProvidersAuthError = {
|
|
37065
|
-
__typename?: 'HelpObjectStoreProvidersAuthError';
|
|
37066
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
37067
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
37068
|
-
};
|
|
37069
37060
|
export declare type HelpObjectStoreQueryApi = {
|
|
37070
37061
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
37071
37062
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
37072
37063
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
37073
|
-
providerAuthStatuses?: Maybe<HelpObjectStoreProviderAuthStatusResult>;
|
|
37074
|
-
providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
|
|
37075
37064
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
37076
37065
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
37077
37066
|
};
|
|
@@ -37081,16 +37070,6 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
37081
37070
|
export declare type HelpObjectStoreQueryApiChannelsArgs = {
|
|
37082
37071
|
ids: Array<Scalars['ID']['input']>;
|
|
37083
37072
|
};
|
|
37084
|
-
export declare type HelpObjectStoreQueryApiProviderAuthStatusesArgs = {
|
|
37085
|
-
cloudId: Scalars['ID']['input'];
|
|
37086
|
-
};
|
|
37087
|
-
export declare type HelpObjectStoreQueryApiProviderConnectionsArgs = {
|
|
37088
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
37089
|
-
cloudId: Scalars['ID']['input'];
|
|
37090
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37091
|
-
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
37092
|
-
teamId: Scalars['String']['input'];
|
|
37093
|
-
};
|
|
37094
37073
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
37095
37074
|
ids: Array<Scalars['ID']['input']>;
|
|
37096
37075
|
};
|
|
@@ -57721,6 +57700,7 @@ export declare type OpsgenieSavedSearches = {
|
|
|
57721
57700
|
__typename?: 'OpsgenieSavedSearches';
|
|
57722
57701
|
createdByMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57723
57702
|
sharedWithMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57703
|
+
starred?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57724
57704
|
};
|
|
57725
57705
|
export declare type OpsgenieSchedule = {
|
|
57726
57706
|
__typename?: 'OpsgenieSchedule';
|
|
@@ -66232,9 +66212,20 @@ export declare type ToolchainWorkspace = Node & {
|
|
|
66232
66212
|
export declare type ToolchainWorkspaceConnection = {
|
|
66233
66213
|
__typename?: 'ToolchainWorkspaceConnection';
|
|
66234
66214
|
edges?: Maybe<Array<Maybe<ToolchainWorkspaceEdge>>>;
|
|
66215
|
+
error?: Maybe<QueryError>;
|
|
66235
66216
|
nodes?: Maybe<Array<Maybe<ToolchainWorkspace>>>;
|
|
66236
66217
|
pageInfo: PageInfo;
|
|
66237
66218
|
};
|
|
66219
|
+
export declare enum ToolchainWorkspaceConnectionErrorCode {
|
|
66220
|
+
ProviderActionError = "PROVIDER_ACTION_ERROR",
|
|
66221
|
+
ProviderNotSupported = "PROVIDER_NOT_SUPPORTED"
|
|
66222
|
+
}
|
|
66223
|
+
export declare type ToolchainWorkspaceConnectionErrorExtension = QueryErrorExtension & {
|
|
66224
|
+
__typename?: 'ToolchainWorkspaceConnectionErrorExtension';
|
|
66225
|
+
errorCode?: Maybe<ToolchainWorkspaceConnectionErrorCode>;
|
|
66226
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
66227
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
66228
|
+
};
|
|
66238
66229
|
export declare type ToolchainWorkspaceEdge = {
|
|
66239
66230
|
__typename?: 'ToolchainWorkspaceEdge';
|
|
66240
66231
|
cursor: Scalars['String']['output'];
|