@forge/cli-shared 5.4.1-next.2 → 5.4.1-next.4
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 +14 -0
- package/out/graphql/graphql-types.d.ts +123 -122
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +6 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.4.1-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [c341349]
|
|
8
|
+
- @forge/manifest@7.7.0-next.4
|
|
9
|
+
|
|
10
|
+
## 5.4.1-next.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [10f4545]
|
|
15
|
+
- @forge/manifest@7.7.0-next.3
|
|
16
|
+
|
|
3
17
|
## 5.4.1-next.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -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']>;
|
|
@@ -2549,6 +2558,11 @@ export declare type CcpMapEntry = {
|
|
|
2549
2558
|
key?: Maybe<Scalars['String']['output']>;
|
|
2550
2559
|
value?: Maybe<Scalars['String']['output']>;
|
|
2551
2560
|
};
|
|
2561
|
+
export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExperienceCapability & {
|
|
2562
|
+
__typename?: 'CcpMultipleProductUpgradesExperienceCapability';
|
|
2563
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
2564
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
2565
|
+
};
|
|
2552
2566
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
2553
2567
|
__typename?: 'CcpOffering';
|
|
2554
2568
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2789,6 +2803,7 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
2789
2803
|
__typename?: 'CcpTransactionAccountExperienceCapabilities';
|
|
2790
2804
|
addPaymentMethod?: Maybe<CcpExperienceCapability>;
|
|
2791
2805
|
addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
|
|
2806
|
+
multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
|
|
2792
2807
|
};
|
|
2793
2808
|
export declare type CcpTrial = CommerceTrial & {
|
|
2794
2809
|
__typename?: 'CcpTrial';
|
|
@@ -3267,6 +3282,8 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3267
3282
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
3268
3283
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
3269
3284
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3285
|
+
deleteComponentType?: Maybe<DeleteCompassComponentTypePayload>;
|
|
3286
|
+
deleteComponents?: Maybe<BulkDeleteCompassComponentsPayload>;
|
|
3270
3287
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3271
3288
|
deleteDocument?: Maybe<CompassDeleteDocumentPayload>;
|
|
3272
3289
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
@@ -3424,6 +3441,12 @@ export declare type CompassCatalogMutationApiDeleteComponentLinkArgs = {
|
|
|
3424
3441
|
export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
3425
3442
|
input: CompassDeleteComponentSubscriptionInput;
|
|
3426
3443
|
};
|
|
3444
|
+
export declare type CompassCatalogMutationApiDeleteComponentTypeArgs = {
|
|
3445
|
+
input: DeleteCompassComponentTypeInput;
|
|
3446
|
+
};
|
|
3447
|
+
export declare type CompassCatalogMutationApiDeleteComponentsArgs = {
|
|
3448
|
+
input: BulkDeleteCompassComponentsInput;
|
|
3449
|
+
};
|
|
3427
3450
|
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
3428
3451
|
input: CompassDeleteCustomFieldDefinitionInput;
|
|
3429
3452
|
};
|
|
@@ -3914,7 +3937,6 @@ export declare type CompassComponentInstancePermissions = {
|
|
|
3914
3937
|
connectEventSource?: Maybe<CompassPermissionResult>;
|
|
3915
3938
|
connectMetricSource?: Maybe<CompassPermissionResult>;
|
|
3916
3939
|
createAnnouncement?: Maybe<CompassPermissionResult>;
|
|
3917
|
-
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
3918
3940
|
delete?: Maybe<CompassPermissionResult>;
|
|
3919
3941
|
edit?: Maybe<CompassPermissionResult>;
|
|
3920
3942
|
modifyAnnouncement?: Maybe<CompassPermissionResult>;
|
|
@@ -3963,6 +3985,7 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
3963
3985
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
3964
3986
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
3965
3987
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
3988
|
+
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
3966
3989
|
};
|
|
3967
3990
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
3968
3991
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
@@ -3977,6 +4000,10 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
3977
4000
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3978
4001
|
query?: InputMaybe<CompassScorecardScoreHistoryQuery>;
|
|
3979
4002
|
};
|
|
4003
|
+
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
4004
|
+
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
4005
|
+
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
4006
|
+
};
|
|
3980
4007
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
3981
4008
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
3982
4009
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -5706,6 +5733,7 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
|
5706
5733
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
5707
5734
|
cursor: Scalars['String']['output'];
|
|
5708
5735
|
node?: Maybe<CompassComponent>;
|
|
5736
|
+
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
5709
5737
|
};
|
|
5710
5738
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
5711
5739
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
@@ -13779,7 +13807,7 @@ export declare type ContentPlatformAdvocateQuote = {
|
|
|
13779
13807
|
advocateQuoteId: Scalars['String']['output'];
|
|
13780
13808
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13781
13809
|
heroQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
13782
|
-
name
|
|
13810
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13783
13811
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
13784
13812
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13785
13813
|
};
|
|
@@ -13885,7 +13913,7 @@ export declare type ContentPlatformAnimatedTourCard = {
|
|
|
13885
13913
|
epicName?: Maybe<Scalars['String']['output']>;
|
|
13886
13914
|
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
13887
13915
|
priority?: Maybe<Scalars['String']['output']>;
|
|
13888
|
-
summary
|
|
13916
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
13889
13917
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13890
13918
|
};
|
|
13891
13919
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
@@ -13914,7 +13942,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
13914
13942
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13915
13943
|
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
13916
13944
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
13917
|
-
name
|
|
13945
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13918
13946
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
13919
13947
|
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
13920
13948
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14341,14 +14369,14 @@ export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
|
14341
14369
|
};
|
|
14342
14370
|
export declare type ContentPlatformIpmImageModal = {
|
|
14343
14371
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14344
|
-
body
|
|
14372
|
+
body?: Maybe<Scalars['JSON']['output']>;
|
|
14345
14373
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14346
14374
|
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
14347
14375
|
ctaButtonUrl?: Maybe<Scalars['String']['output']>;
|
|
14348
14376
|
id: Scalars['String']['output'];
|
|
14349
14377
|
image?: Maybe<Scalars['JSON']['output']>;
|
|
14350
14378
|
ipmNumber: Scalars['String']['output'];
|
|
14351
|
-
title
|
|
14379
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14352
14380
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14353
14381
|
variant?: Maybe<Scalars['String']['output']>;
|
|
14354
14382
|
};
|
|
@@ -14374,7 +14402,7 @@ export declare type ContentPlatformMarketplaceApp = {
|
|
|
14374
14402
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14375
14403
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14376
14404
|
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14377
|
-
name
|
|
14405
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14378
14406
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14379
14407
|
url: Scalars['String']['output'];
|
|
14380
14408
|
};
|
|
@@ -14388,7 +14416,7 @@ export declare type ContentPlatformOrganization = {
|
|
|
14388
14416
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14389
14417
|
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
14390
14418
|
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
14391
|
-
name
|
|
14419
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14392
14420
|
organizationSize?: Maybe<ContentPlatformTaxonomyCompanySize>;
|
|
14393
14421
|
region?: Maybe<ContentPlatformTaxonomyRegion>;
|
|
14394
14422
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -14490,7 +14518,7 @@ export declare type ContentPlatformProduct = {
|
|
|
14490
14518
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14491
14519
|
deployment?: Maybe<Scalars['String']['output']>;
|
|
14492
14520
|
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14493
|
-
name
|
|
14521
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14494
14522
|
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
14495
14523
|
productNameId?: Maybe<Scalars['String']['output']>;
|
|
14496
14524
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14734,8 +14762,8 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
14734
14762
|
export declare type ContentPlatformTaxonomyCompanySize = {
|
|
14735
14763
|
__typename?: 'ContentPlatformTaxonomyCompanySize';
|
|
14736
14764
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14737
|
-
name
|
|
14738
|
-
shortDescription
|
|
14765
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14766
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
14739
14767
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14740
14768
|
};
|
|
14741
14769
|
export declare type ContentPlatformTaxonomyContentHub = {
|
|
@@ -14805,18 +14833,18 @@ export declare type ContentPlatformTaxonomyUserRole = {
|
|
|
14805
14833
|
export declare type ContentPlatformTaxonomyUserRoleNew = {
|
|
14806
14834
|
__typename?: 'ContentPlatformTaxonomyUserRoleNew';
|
|
14807
14835
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14808
|
-
roleDescription
|
|
14836
|
+
roleDescription?: Maybe<Scalars['String']['output']>;
|
|
14809
14837
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14810
|
-
userRole
|
|
14838
|
+
userRole?: Maybe<Scalars['String']['output']>;
|
|
14811
14839
|
userRoleId: Scalars['String']['output'];
|
|
14812
14840
|
};
|
|
14813
14841
|
export declare type ContentPlatformTemplate = {
|
|
14814
14842
|
__typename?: 'ContentPlatformTemplate';
|
|
14815
|
-
aboutThisTemplate
|
|
14843
|
+
aboutThisTemplate?: Maybe<Scalars['String']['output']>;
|
|
14816
14844
|
category?: Maybe<Array<ContentPlatformCategory>>;
|
|
14817
14845
|
contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
|
|
14818
14846
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14819
|
-
howToUseThisTemplate
|
|
14847
|
+
howToUseThisTemplate?: Maybe<Array<ContentPlatformTemplateGuide>>;
|
|
14820
14848
|
keyFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
14821
14849
|
name?: Maybe<Scalars['String']['output']>;
|
|
14822
14850
|
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
@@ -14903,7 +14931,7 @@ export declare type ContentPlatformTemplateContentSearchConnection = {
|
|
|
14903
14931
|
export declare type ContentPlatformTemplateGuide = {
|
|
14904
14932
|
__typename?: 'ContentPlatformTemplateGuide';
|
|
14905
14933
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14906
|
-
name
|
|
14934
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14907
14935
|
steps?: Maybe<Array<ContentPlatformTemplateUseStep>>;
|
|
14908
14936
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14909
14937
|
};
|
|
@@ -14914,7 +14942,7 @@ export declare type ContentPlatformTemplateImageAsset = {
|
|
|
14914
14942
|
description?: Maybe<Scalars['String']['output']>;
|
|
14915
14943
|
details: Scalars['JSON']['output'];
|
|
14916
14944
|
fileName: Scalars['String']['output'];
|
|
14917
|
-
title
|
|
14945
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14918
14946
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14919
14947
|
url: Scalars['String']['output'];
|
|
14920
14948
|
};
|
|
@@ -14944,7 +14972,7 @@ export declare type ContentPlatformTemplateUseStep = {
|
|
|
14944
14972
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14945
14973
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14946
14974
|
description?: Maybe<Scalars['String']['output']>;
|
|
14947
|
-
name
|
|
14975
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14948
14976
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14949
14977
|
};
|
|
14950
14978
|
export declare type ContentPlatformTextComponent = {
|
|
@@ -14967,17 +14995,17 @@ export declare type ContentPlatformTopicIntroduction = {
|
|
|
14967
14995
|
export declare type ContentPlatformTopicOverview = {
|
|
14968
14996
|
__typename?: 'ContentPlatformTopicOverview';
|
|
14969
14997
|
author?: Maybe<ContentPlatformAuthor>;
|
|
14970
|
-
bannerImage
|
|
14998
|
+
bannerImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14971
14999
|
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
14972
15000
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14973
15001
|
description?: Maybe<Scalars['String']['output']>;
|
|
14974
15002
|
featuredContentContainer?: Maybe<Array<ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
14975
15003
|
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
14976
15004
|
name?: Maybe<Scalars['String']['output']>;
|
|
14977
|
-
nextBestAction
|
|
14978
|
-
relatedHub
|
|
15005
|
+
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
15006
|
+
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
14979
15007
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
14980
|
-
title
|
|
15008
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14981
15009
|
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
14982
15010
|
topicOverviewId: Scalars['String']['output'];
|
|
14983
15011
|
upNextFooter?: Maybe<ContentPlatformHubArticle>;
|
|
@@ -15301,6 +15329,7 @@ export declare type CreateCompassScorecardInput = {
|
|
|
15301
15329
|
criterias?: InputMaybe<Array<CreateCompassScorecardCriteriaInput>>;
|
|
15302
15330
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
15303
15331
|
importance: CompassScorecardImportance;
|
|
15332
|
+
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15304
15333
|
name: Scalars['String']['input'];
|
|
15305
15334
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
15306
15335
|
};
|
|
@@ -16688,6 +16717,14 @@ export declare type DeleteCompassComponentPayload = Payload & {
|
|
|
16688
16717
|
errors?: Maybe<Array<MutationError>>;
|
|
16689
16718
|
success: Scalars['Boolean']['output'];
|
|
16690
16719
|
};
|
|
16720
|
+
export declare type DeleteCompassComponentTypeInput = {
|
|
16721
|
+
id: Scalars['ID']['input'];
|
|
16722
|
+
};
|
|
16723
|
+
export declare type DeleteCompassComponentTypePayload = Payload & {
|
|
16724
|
+
__typename?: 'DeleteCompassComponentTypePayload';
|
|
16725
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16726
|
+
success: Scalars['Boolean']['output'];
|
|
16727
|
+
};
|
|
16691
16728
|
export declare type DeleteCompassRelationshipInput = {
|
|
16692
16729
|
endNodeId: Scalars['ID']['input'];
|
|
16693
16730
|
startNodeId: Scalars['ID']['input'];
|
|
@@ -19231,6 +19268,23 @@ export declare enum ExternalApprovalStatus {
|
|
|
19231
19268
|
Needswork = "NEEDSWORK",
|
|
19232
19269
|
Unapproved = "UNAPPROVED"
|
|
19233
19270
|
}
|
|
19271
|
+
export declare type ExternalAssociation = {
|
|
19272
|
+
__typename?: 'ExternalAssociation';
|
|
19273
|
+
createdBy?: Maybe<ExternalUser>;
|
|
19274
|
+
entity?: Maybe<ExternalAssociationEntity>;
|
|
19275
|
+
id: Scalars['ID']['output'];
|
|
19276
|
+
};
|
|
19277
|
+
export declare type ExternalAssociationConnection = {
|
|
19278
|
+
__typename?: 'ExternalAssociationConnection';
|
|
19279
|
+
edges?: Maybe<Array<Maybe<ExternalAssociationEdge>>>;
|
|
19280
|
+
pageInfo?: Maybe<PageInfo>;
|
|
19281
|
+
};
|
|
19282
|
+
export declare type ExternalAssociationEdge = {
|
|
19283
|
+
__typename?: 'ExternalAssociationEdge';
|
|
19284
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19285
|
+
node?: Maybe<ExternalAssociation>;
|
|
19286
|
+
};
|
|
19287
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
19234
19288
|
export declare type ExternalAttachment = {
|
|
19235
19289
|
__typename?: 'ExternalAttachment';
|
|
19236
19290
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -19250,8 +19304,10 @@ export declare type ExternalAuthProvider = {
|
|
|
19250
19304
|
};
|
|
19251
19305
|
export declare type ExternalBranch = Node & {
|
|
19252
19306
|
__typename?: 'ExternalBranch';
|
|
19307
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19253
19308
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
19254
19309
|
container?: Maybe<ExternalEntity>;
|
|
19310
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19255
19311
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
19256
19312
|
id: Scalars['ID']['output'];
|
|
19257
19313
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -19270,6 +19326,7 @@ export declare type ExternalBuildCommitReference = {
|
|
|
19270
19326
|
};
|
|
19271
19327
|
export declare type ExternalBuildInfo = Node & {
|
|
19272
19328
|
__typename?: 'ExternalBuildInfo';
|
|
19329
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19273
19330
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
19274
19331
|
description?: Maybe<Scalars['String']['output']>;
|
|
19275
19332
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19315,9 +19372,11 @@ export declare type ExternalChapter = {
|
|
|
19315
19372
|
};
|
|
19316
19373
|
export declare type ExternalCommit = Node & {
|
|
19317
19374
|
__typename?: 'ExternalCommit';
|
|
19375
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19318
19376
|
author?: Maybe<ExternalUser>;
|
|
19319
19377
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
19320
19378
|
container?: Maybe<ExternalEntity>;
|
|
19379
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19321
19380
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19322
19381
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19323
19382
|
fileInfo?: Maybe<ExternalFileInfo>;
|
|
@@ -19333,6 +19392,7 @@ export declare enum ExternalCommitFlags {
|
|
|
19333
19392
|
}
|
|
19334
19393
|
export declare type ExternalConversation = Node & {
|
|
19335
19394
|
__typename?: 'ExternalConversation';
|
|
19395
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19336
19396
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19337
19397
|
createdBy?: Maybe<ExternalUser>;
|
|
19338
19398
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19366,6 +19426,7 @@ export declare type ExternalCue = {
|
|
|
19366
19426
|
};
|
|
19367
19427
|
export declare type ExternalDeployment = Node & {
|
|
19368
19428
|
__typename?: 'ExternalDeployment';
|
|
19429
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19369
19430
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19370
19431
|
description?: Maybe<Scalars['String']['output']>;
|
|
19371
19432
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19391,6 +19452,7 @@ export declare enum ExternalDeploymentState {
|
|
|
19391
19452
|
}
|
|
19392
19453
|
export declare type ExternalDesign = Node & {
|
|
19393
19454
|
__typename?: 'ExternalDesign';
|
|
19455
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19394
19456
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19395
19457
|
createdBy?: Maybe<ExternalUser>;
|
|
19396
19458
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19424,6 +19486,7 @@ export declare enum ExternalDesignType {
|
|
|
19424
19486
|
}
|
|
19425
19487
|
export declare type ExternalDocument = Node & {
|
|
19426
19488
|
__typename?: 'ExternalDocument';
|
|
19489
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19427
19490
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19428
19491
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19429
19492
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -19505,6 +19568,7 @@ export declare type ExternalExportLink = {
|
|
|
19505
19568
|
};
|
|
19506
19569
|
export declare type ExternalFeatureFlag = Node & {
|
|
19507
19570
|
__typename?: 'ExternalFeatureFlag';
|
|
19571
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19508
19572
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19509
19573
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19510
19574
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19567,7 +19631,9 @@ export declare enum ExternalMembershipType {
|
|
|
19567
19631
|
}
|
|
19568
19632
|
export declare type ExternalMessage = Node & {
|
|
19569
19633
|
__typename?: 'ExternalMessage';
|
|
19634
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19570
19635
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19636
|
+
container?: Maybe<ExternalEntity>;
|
|
19571
19637
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19572
19638
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19573
19639
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19594,9 +19660,11 @@ export declare type ExternalPipeline = {
|
|
|
19594
19660
|
};
|
|
19595
19661
|
export declare type ExternalPullRequest = Node & {
|
|
19596
19662
|
__typename?: 'ExternalPullRequest';
|
|
19663
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19597
19664
|
author?: Maybe<ExternalUser>;
|
|
19598
19665
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
19599
19666
|
container?: Maybe<ExternalEntity>;
|
|
19667
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19600
19668
|
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
19601
19669
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19602
19670
|
id: Scalars['ID']['output'];
|
|
@@ -19622,6 +19690,7 @@ export declare type ExternalRemoteLink = Node & {
|
|
|
19622
19690
|
__typename?: 'ExternalRemoteLink';
|
|
19623
19691
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19624
19692
|
assignee?: Maybe<ExternalUser>;
|
|
19693
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19625
19694
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
19626
19695
|
author?: Maybe<ExternalUser>;
|
|
19627
19696
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -19646,6 +19715,7 @@ export declare type ExternalRemoteLinkStatus = {
|
|
|
19646
19715
|
};
|
|
19647
19716
|
export declare type ExternalRepository = Node & {
|
|
19648
19717
|
__typename?: 'ExternalRepository';
|
|
19718
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19649
19719
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19650
19720
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
19651
19721
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19684,6 +19754,7 @@ export declare type ExternalUser = {
|
|
|
19684
19754
|
};
|
|
19685
19755
|
export declare type ExternalVideo = Node & {
|
|
19686
19756
|
__typename?: 'ExternalVideo';
|
|
19757
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19687
19758
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19688
19759
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
19689
19760
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -19707,6 +19778,7 @@ export declare type ExternalVideo = Node & {
|
|
|
19707
19778
|
export declare type ExternalVulnerability = Node & {
|
|
19708
19779
|
__typename?: 'ExternalVulnerability';
|
|
19709
19780
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19781
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19710
19782
|
description?: Maybe<Scalars['String']['output']>;
|
|
19711
19783
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19712
19784
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -35668,6 +35740,7 @@ export declare type HelpCenter = Node & {
|
|
|
35668
35740
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
35669
35741
|
type?: Maybe<HelpCenterType>;
|
|
35670
35742
|
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
35743
|
+
virtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
35671
35744
|
};
|
|
35672
35745
|
export declare type HelpCenterHelpDesksArgs = {
|
|
35673
35746
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35940,6 +36013,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
35940
36013
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
35941
36014
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
35942
36015
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
36016
|
+
updateProjectMapping?: Maybe<HelpCenterProjectMappingUpdatePayload>;
|
|
35943
36017
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
35944
36018
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
35945
36019
|
};
|
|
@@ -35976,6 +36050,9 @@ export declare type HelpCenterMutationApiUpdateLoginAnnouncementArgs = {
|
|
|
35976
36050
|
export declare type HelpCenterMutationApiUpdatePortalsConfigurationArgs = {
|
|
35977
36051
|
input: HelpCenterPortalsConfigurationUpdateInput;
|
|
35978
36052
|
};
|
|
36053
|
+
export declare type HelpCenterMutationApiUpdateProjectMappingArgs = {
|
|
36054
|
+
input: HelpCenterProjectMappingUpdateInput;
|
|
36055
|
+
};
|
|
35979
36056
|
export declare type HelpCenterMutationApiUpdateTopicArgs = {
|
|
35980
36057
|
input: HelpCenterBulkUpdateTopicInput;
|
|
35981
36058
|
};
|
|
@@ -36031,6 +36108,16 @@ export declare enum HelpCenterPortalsType {
|
|
|
36031
36108
|
Hidden = "HIDDEN",
|
|
36032
36109
|
Visible = "VISIBLE"
|
|
36033
36110
|
}
|
|
36111
|
+
export declare type HelpCenterProjectMappingUpdateInput = {
|
|
36112
|
+
helpCenterAri: Scalars['String']['input'];
|
|
36113
|
+
mappedProjectIds: Array<Scalars['String']['input']>;
|
|
36114
|
+
syncNewProjects: Scalars['Boolean']['input'];
|
|
36115
|
+
};
|
|
36116
|
+
export declare type HelpCenterProjectMappingUpdatePayload = Payload & {
|
|
36117
|
+
__typename?: 'HelpCenterProjectMappingUpdatePayload';
|
|
36118
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36119
|
+
success: Scalars['Boolean']['output'];
|
|
36120
|
+
};
|
|
36034
36121
|
export declare type HelpCenterQueryApi = {
|
|
36035
36122
|
__typename?: 'HelpCenterQueryApi';
|
|
36036
36123
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
@@ -36197,6 +36284,7 @@ export declare type HelpCenterUpdateInput = {
|
|
|
36197
36284
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
36198
36285
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
36199
36286
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
36287
|
+
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36200
36288
|
};
|
|
36201
36289
|
export declare type HelpCenterUpdatePayload = Payload & {
|
|
36202
36290
|
__typename?: 'HelpCenterUpdatePayload';
|
|
@@ -36960,22 +37048,10 @@ export declare enum HelpObjectStoreJsmEntityType {
|
|
|
36960
37048
|
export declare type HelpObjectStoreMutationApi = {
|
|
36961
37049
|
__typename?: 'HelpObjectStoreMutationApi';
|
|
36962
37050
|
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
36963
|
-
createProviderConnections?: Maybe<HelpObjectStoreProviderConnectionPayload>;
|
|
36964
|
-
deleteProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
36965
|
-
updateProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
36966
37051
|
};
|
|
36967
37052
|
export declare type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
36968
37053
|
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
36969
37054
|
};
|
|
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
37055
|
export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
36980
37056
|
__typename?: 'HelpObjectStorePortal';
|
|
36981
37057
|
ari: Scalars['ID']['output'];
|
|
@@ -36990,88 +37066,10 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
36990
37066
|
title?: Maybe<Scalars['String']['output']>;
|
|
36991
37067
|
};
|
|
36992
37068
|
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
37069
|
export declare type HelpObjectStoreQueryApi = {
|
|
37070
37070
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
37071
37071
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
37072
37072
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
37073
|
-
providerAuthStatuses?: Maybe<HelpObjectStoreProviderAuthStatusResult>;
|
|
37074
|
-
providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
|
|
37075
37073
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
37076
37074
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
37077
37075
|
};
|
|
@@ -37081,16 +37079,6 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
37081
37079
|
export declare type HelpObjectStoreQueryApiChannelsArgs = {
|
|
37082
37080
|
ids: Array<Scalars['ID']['input']>;
|
|
37083
37081
|
};
|
|
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
37082
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
37095
37083
|
ids: Array<Scalars['ID']['input']>;
|
|
37096
37084
|
};
|
|
@@ -57721,6 +57709,7 @@ export declare type OpsgenieSavedSearches = {
|
|
|
57721
57709
|
__typename?: 'OpsgenieSavedSearches';
|
|
57722
57710
|
createdByMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57723
57711
|
sharedWithMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57712
|
+
starred?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57724
57713
|
};
|
|
57725
57714
|
export declare type OpsgenieSchedule = {
|
|
57726
57715
|
__typename?: 'OpsgenieSchedule';
|
|
@@ -66232,9 +66221,20 @@ export declare type ToolchainWorkspace = Node & {
|
|
|
66232
66221
|
export declare type ToolchainWorkspaceConnection = {
|
|
66233
66222
|
__typename?: 'ToolchainWorkspaceConnection';
|
|
66234
66223
|
edges?: Maybe<Array<Maybe<ToolchainWorkspaceEdge>>>;
|
|
66224
|
+
error?: Maybe<QueryError>;
|
|
66235
66225
|
nodes?: Maybe<Array<Maybe<ToolchainWorkspace>>>;
|
|
66236
66226
|
pageInfo: PageInfo;
|
|
66237
66227
|
};
|
|
66228
|
+
export declare enum ToolchainWorkspaceConnectionErrorCode {
|
|
66229
|
+
ProviderActionError = "PROVIDER_ACTION_ERROR",
|
|
66230
|
+
ProviderNotSupported = "PROVIDER_NOT_SUPPORTED"
|
|
66231
|
+
}
|
|
66232
|
+
export declare type ToolchainWorkspaceConnectionErrorExtension = QueryErrorExtension & {
|
|
66233
|
+
__typename?: 'ToolchainWorkspaceConnectionErrorExtension';
|
|
66234
|
+
errorCode?: Maybe<ToolchainWorkspaceConnectionErrorCode>;
|
|
66235
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
66236
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
66237
|
+
};
|
|
66238
66238
|
export declare type ToolchainWorkspaceEdge = {
|
|
66239
66239
|
__typename?: 'ToolchainWorkspaceEdge';
|
|
66240
66240
|
cursor: Scalars['String']['output'];
|
|
@@ -68631,6 +68631,7 @@ export declare type UpdateCompassScorecardInput = {
|
|
|
68631
68631
|
deleteCriteria?: InputMaybe<Array<DeleteCompassScorecardCriteriaInput>>;
|
|
68632
68632
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
68633
68633
|
importance?: InputMaybe<CompassScorecardImportance>;
|
|
68634
|
+
isDeactivationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68634
68635
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
68635
68636
|
ownerId?: InputMaybe<Scalars['ID']['input']>;
|
|
68636
68637
|
updateCriteria?: InputMaybe<Array<UpdateCompassScorecardCriteriaInput>>;
|