@forge/cli-shared 5.4.1-next.1 → 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 +17 -0
- package/out/graphql/graphql-types.d.ts +374 -164
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -8
- package/package.json +2 -2
|
@@ -136,8 +136,10 @@ export declare type ActionsAction = {
|
|
|
136
136
|
auth: Array<ActionsAuthType>;
|
|
137
137
|
description?: Maybe<ActionsDescription>;
|
|
138
138
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
139
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
139
140
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
140
141
|
isConsequential: Scalars['Boolean']['output'];
|
|
142
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
141
143
|
};
|
|
142
144
|
export declare type ActionsActionInput = {
|
|
143
145
|
__typename?: 'ActionsActionInput';
|
|
@@ -146,6 +148,7 @@ export declare type ActionsActionInput = {
|
|
|
146
148
|
items?: Maybe<ActionsActionInputItems>;
|
|
147
149
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
148
150
|
required: Scalars['Boolean']['output'];
|
|
151
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
149
152
|
type: Scalars['String']['output'];
|
|
150
153
|
};
|
|
151
154
|
export declare type ActionsActionInputItems = {
|
|
@@ -2139,6 +2142,15 @@ export declare enum BuiltinPolarisIdeaField {
|
|
|
2139
2142
|
Updated = "UPDATED",
|
|
2140
2143
|
Votes = "VOTES"
|
|
2141
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
|
+
};
|
|
2142
2154
|
export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
2143
2155
|
__typename?: 'BulkMutationErrorExtension';
|
|
2144
2156
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -3257,12 +3269,15 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3257
3269
|
createStarredComponent?: Maybe<CreateCompassStarredComponentPayload>;
|
|
3258
3270
|
createTeamCheckin?: Maybe<CompassCreateTeamCheckinPayload>;
|
|
3259
3271
|
createWebhook?: Maybe<CompassCreateWebhookPayload>;
|
|
3272
|
+
deactivateScorecardForComponent?: Maybe<CompassDeactivateScorecardForComponentPayload>;
|
|
3260
3273
|
deleteAnnouncement?: Maybe<CompassDeleteAnnouncementPayload>;
|
|
3261
3274
|
deleteCampaign?: Maybe<CompassDeleteCampaignPayload>;
|
|
3262
3275
|
deleteComponent?: Maybe<DeleteCompassComponentPayload>;
|
|
3263
3276
|
deleteComponentExternalAlias?: Maybe<DeleteCompassComponentExternalAliasPayload>;
|
|
3264
3277
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
3265
3278
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3279
|
+
deleteComponentType?: Maybe<DeleteCompassComponentTypePayload>;
|
|
3280
|
+
deleteComponents?: Maybe<BulkDeleteCompassComponentsPayload>;
|
|
3266
3281
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3267
3282
|
deleteDocument?: Maybe<CompassDeleteDocumentPayload>;
|
|
3268
3283
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
@@ -3277,6 +3292,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3277
3292
|
detachEventSource?: Maybe<DetachEventSourcePayload>;
|
|
3278
3293
|
insertMetricValue?: Maybe<CompassInsertMetricValuePayload>;
|
|
3279
3294
|
insertMetricValueByExternalId?: Maybe<CompassInsertMetricValueByExternalIdPayload>;
|
|
3295
|
+
reactivateScorecardForComponent?: Maybe<CompassReactivateScorecardForComponentPayload>;
|
|
3280
3296
|
removeComponentLabels?: Maybe<RemoveCompassComponentLabelsPayload>;
|
|
3281
3297
|
removeScorecardFromComponent?: Maybe<RemoveCompassScorecardFromComponentPayload>;
|
|
3282
3298
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
@@ -3291,6 +3307,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3291
3307
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
3292
3308
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
3293
3309
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
3310
|
+
updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
|
|
3294
3311
|
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
3295
3312
|
updateCustomFieldDefinition?: Maybe<CompassUpdateCustomFieldDefinitionPayload>;
|
|
3296
3313
|
updateCustomPermissionConfigs?: Maybe<CompassUpdatePermissionConfigsPayload>;
|
|
@@ -3396,6 +3413,10 @@ export declare type CompassCatalogMutationApiCreateTeamCheckinArgs = {
|
|
|
3396
3413
|
export declare type CompassCatalogMutationApiCreateWebhookArgs = {
|
|
3397
3414
|
input: CompassCreateWebhookInput;
|
|
3398
3415
|
};
|
|
3416
|
+
export declare type CompassCatalogMutationApiDeactivateScorecardForComponentArgs = {
|
|
3417
|
+
componentId: Scalars['ID']['input'];
|
|
3418
|
+
scorecardId: Scalars['ID']['input'];
|
|
3419
|
+
};
|
|
3399
3420
|
export declare type CompassCatalogMutationApiDeleteAnnouncementArgs = {
|
|
3400
3421
|
input: CompassDeleteAnnouncementInput;
|
|
3401
3422
|
};
|
|
@@ -3414,6 +3435,12 @@ export declare type CompassCatalogMutationApiDeleteComponentLinkArgs = {
|
|
|
3414
3435
|
export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
3415
3436
|
input: CompassDeleteComponentSubscriptionInput;
|
|
3416
3437
|
};
|
|
3438
|
+
export declare type CompassCatalogMutationApiDeleteComponentTypeArgs = {
|
|
3439
|
+
input: DeleteCompassComponentTypeInput;
|
|
3440
|
+
};
|
|
3441
|
+
export declare type CompassCatalogMutationApiDeleteComponentsArgs = {
|
|
3442
|
+
input: BulkDeleteCompassComponentsInput;
|
|
3443
|
+
};
|
|
3417
3444
|
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
3418
3445
|
input: CompassDeleteCustomFieldDefinitionInput;
|
|
3419
3446
|
};
|
|
@@ -3456,6 +3483,10 @@ export declare type CompassCatalogMutationApiInsertMetricValueArgs = {
|
|
|
3456
3483
|
export declare type CompassCatalogMutationApiInsertMetricValueByExternalIdArgs = {
|
|
3457
3484
|
input: CompassInsertMetricValueByExternalIdInput;
|
|
3458
3485
|
};
|
|
3486
|
+
export declare type CompassCatalogMutationApiReactivateScorecardForComponentArgs = {
|
|
3487
|
+
componentId: Scalars['ID']['input'];
|
|
3488
|
+
scorecardId: Scalars['ID']['input'];
|
|
3489
|
+
};
|
|
3459
3490
|
export declare type CompassCatalogMutationApiRemoveComponentLabelsArgs = {
|
|
3460
3491
|
input: RemoveCompassComponentLabelsInput;
|
|
3461
3492
|
};
|
|
@@ -3501,6 +3532,9 @@ export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueAr
|
|
|
3501
3532
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
3502
3533
|
input: UpdateCompassComponentTypeInput;
|
|
3503
3534
|
};
|
|
3535
|
+
export declare type CompassCatalogMutationApiUpdateComponentTypeMetadataArgs = {
|
|
3536
|
+
input: UpdateCompassComponentTypeMetadataInput;
|
|
3537
|
+
};
|
|
3504
3538
|
export declare type CompassCatalogMutationApiUpdateComponentsArgs = {
|
|
3505
3539
|
input: BulkUpdateCompassComponentsInput;
|
|
3506
3540
|
};
|
|
@@ -3702,6 +3736,7 @@ export declare type CompassComponent = Node & {
|
|
|
3702
3736
|
changeMetadata: CompassChangeMetadata;
|
|
3703
3737
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
3704
3738
|
dataManager?: Maybe<CompassComponentDataManager>;
|
|
3739
|
+
deactivatedScorecards?: Maybe<CompassDeactivatedScorecardsConnection>;
|
|
3705
3740
|
description?: Maybe<Scalars['String']['output']>;
|
|
3706
3741
|
eventSources?: Maybe<Array<EventSource>>;
|
|
3707
3742
|
events?: Maybe<CompassEventsQueryResult>;
|
|
@@ -3723,6 +3758,10 @@ export declare type CompassComponent = Node & {
|
|
|
3723
3758
|
viewerPermissions?: Maybe<CompassComponentInstancePermissions>;
|
|
3724
3759
|
viewerSubscription?: Maybe<CompassViewerSubscription>;
|
|
3725
3760
|
};
|
|
3761
|
+
export declare type CompassComponentDeactivatedScorecardsArgs = {
|
|
3762
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
3763
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3764
|
+
};
|
|
3726
3765
|
export declare type CompassComponentEventsArgs = {
|
|
3727
3766
|
query?: InputMaybe<CompassEventsQuery>;
|
|
3728
3767
|
};
|
|
@@ -3856,6 +3895,14 @@ export declare type CompassComponentDataManager = {
|
|
|
3856
3895
|
externalSourceURL?: Maybe<Scalars['URL']['output']>;
|
|
3857
3896
|
lastSyncEvent?: Maybe<ComponentSyncEvent>;
|
|
3858
3897
|
};
|
|
3898
|
+
export declare type CompassComponentDeactivatedScorecardsEdge = {
|
|
3899
|
+
__typename?: 'CompassComponentDeactivatedScorecardsEdge';
|
|
3900
|
+
cursor: Scalars['String']['output'];
|
|
3901
|
+
deactivatedBy?: Maybe<User>;
|
|
3902
|
+
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
3903
|
+
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
3904
|
+
node?: Maybe<CompassDeactivatedScorecard>;
|
|
3905
|
+
};
|
|
3859
3906
|
export declare type CompassComponentEndpoint = {
|
|
3860
3907
|
__typename?: 'CompassComponentEndpoint';
|
|
3861
3908
|
checksum: Scalars['String']['output'];
|
|
@@ -3884,7 +3931,6 @@ export declare type CompassComponentInstancePermissions = {
|
|
|
3884
3931
|
connectEventSource?: Maybe<CompassPermissionResult>;
|
|
3885
3932
|
connectMetricSource?: Maybe<CompassPermissionResult>;
|
|
3886
3933
|
createAnnouncement?: Maybe<CompassPermissionResult>;
|
|
3887
|
-
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
3888
3934
|
delete?: Maybe<CompassPermissionResult>;
|
|
3889
3935
|
edit?: Maybe<CompassPermissionResult>;
|
|
3890
3936
|
modifyAnnouncement?: Maybe<CompassPermissionResult>;
|
|
@@ -3933,6 +3979,7 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
3933
3979
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
3934
3980
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
3935
3981
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
3982
|
+
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
3936
3983
|
};
|
|
3937
3984
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
3938
3985
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
@@ -3947,6 +3994,10 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
3947
3994
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3948
3995
|
query?: InputMaybe<CompassScorecardScoreHistoryQuery>;
|
|
3949
3996
|
};
|
|
3997
|
+
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
3998
|
+
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
3999
|
+
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
4000
|
+
};
|
|
3950
4001
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
3951
4002
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
3952
4003
|
scorecardId: Scalars['ID']['input'];
|
|
@@ -4624,6 +4675,31 @@ export declare type CompassCustomUserFieldInput = {
|
|
|
4624
4675
|
definitionId: Scalars['ID']['input'];
|
|
4625
4676
|
userIdValue?: InputMaybe<Scalars['ID']['input']>;
|
|
4626
4677
|
};
|
|
4678
|
+
export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
|
|
4679
|
+
__typename?: 'CompassDeactivateScorecardForComponentPayload';
|
|
4680
|
+
componentDetails?: Maybe<CompassComponent>;
|
|
4681
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4682
|
+
success: Scalars['Boolean']['output'];
|
|
4683
|
+
};
|
|
4684
|
+
export declare type CompassDeactivatedScorecard = {
|
|
4685
|
+
__typename?: 'CompassDeactivatedScorecard';
|
|
4686
|
+
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
4687
|
+
applicationModel: CompassScorecardApplicationModel;
|
|
4688
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4689
|
+
id: Scalars['ID']['output'];
|
|
4690
|
+
name: Scalars['String']['output'];
|
|
4691
|
+
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
4692
|
+
type: Scalars['String']['output'];
|
|
4693
|
+
};
|
|
4694
|
+
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
4695
|
+
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
4696
|
+
};
|
|
4697
|
+
export declare type CompassDeactivatedScorecardsConnection = {
|
|
4698
|
+
__typename?: 'CompassDeactivatedScorecardsConnection';
|
|
4699
|
+
edges?: Maybe<Array<CompassComponentDeactivatedScorecardsEdge>>;
|
|
4700
|
+
nodes?: Maybe<Array<CompassDeactivatedScorecard>>;
|
|
4701
|
+
pageInfo: PageInfo;
|
|
4702
|
+
};
|
|
4627
4703
|
export declare type CompassDeleteAnnouncementInput = {
|
|
4628
4704
|
cloudId: Scalars['ID']['input'];
|
|
4629
4705
|
id: Scalars['ID']['input'];
|
|
@@ -5514,6 +5590,12 @@ export declare type CompassQueryTimeRange = {
|
|
|
5514
5590
|
endDate: Scalars['DateTime']['input'];
|
|
5515
5591
|
startDate: Scalars['DateTime']['input'];
|
|
5516
5592
|
};
|
|
5593
|
+
export declare type CompassReactivateScorecardForComponentPayload = Payload & {
|
|
5594
|
+
__typename?: 'CompassReactivateScorecardForComponentPayload';
|
|
5595
|
+
componentDetails?: Maybe<CompassComponent>;
|
|
5596
|
+
errors?: Maybe<Array<MutationError>>;
|
|
5597
|
+
success: Scalars['Boolean']['output'];
|
|
5598
|
+
};
|
|
5517
5599
|
export declare type CompassRelationship = {
|
|
5518
5600
|
__typename?: 'CompassRelationship';
|
|
5519
5601
|
changeMetadata?: Maybe<CompassChangeMetadata>;
|
|
@@ -5584,9 +5666,11 @@ export declare type CompassScorecard = Node & {
|
|
|
5584
5666
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
5585
5667
|
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
5586
5668
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
5669
|
+
deactivatedComponents?: Maybe<CompassScorecardDeactivatedComponentsConnection>;
|
|
5587
5670
|
description?: Maybe<Scalars['String']['output']>;
|
|
5588
5671
|
id: Scalars['ID']['output'];
|
|
5589
5672
|
importance: CompassScorecardImportance;
|
|
5673
|
+
isDeactivationEnabled: Scalars['Boolean']['output'];
|
|
5590
5674
|
name: Scalars['String']['output'];
|
|
5591
5675
|
owner?: Maybe<User>;
|
|
5592
5676
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
@@ -5608,6 +5692,11 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
|
|
|
5608
5692
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5609
5693
|
query?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQuery>;
|
|
5610
5694
|
};
|
|
5695
|
+
export declare type CompassScorecardDeactivatedComponentsArgs = {
|
|
5696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5697
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5698
|
+
query?: InputMaybe<CompassScorecardDeactivatedComponentsQuery>;
|
|
5699
|
+
};
|
|
5611
5700
|
export declare type CompassScorecardScorecardScoreArgs = {
|
|
5612
5701
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
5613
5702
|
};
|
|
@@ -5638,6 +5727,7 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
|
5638
5727
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
5639
5728
|
cursor: Scalars['String']['output'];
|
|
5640
5729
|
node?: Maybe<CompassComponent>;
|
|
5730
|
+
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
5641
5731
|
};
|
|
5642
5732
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
5643
5733
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
@@ -5791,6 +5881,33 @@ export declare type CompassScorecardCriterionScoreStatusStatistic = {
|
|
|
5791
5881
|
count: Scalars['Int']['output'];
|
|
5792
5882
|
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
5793
5883
|
};
|
|
5884
|
+
export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
5885
|
+
__typename?: 'CompassScorecardDeactivatedComponentsConnection';
|
|
5886
|
+
edges?: Maybe<Array<CompassScorecardDeactivatedComponentsEdge>>;
|
|
5887
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
5888
|
+
pageInfo: PageInfo;
|
|
5889
|
+
};
|
|
5890
|
+
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
5891
|
+
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
5892
|
+
cursor: Scalars['String']['output'];
|
|
5893
|
+
deactivatedBy?: Maybe<User>;
|
|
5894
|
+
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
5895
|
+
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
5896
|
+
node?: Maybe<CompassComponent>;
|
|
5897
|
+
};
|
|
5898
|
+
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
5899
|
+
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
5900
|
+
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
5901
|
+
};
|
|
5902
|
+
export declare type CompassScorecardDeactivatedComponentsQueryFilter = {
|
|
5903
|
+
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
5904
|
+
owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
5905
|
+
types?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
5906
|
+
};
|
|
5907
|
+
export declare type CompassScorecardDeactivatedComponentsQuerySort = {
|
|
5908
|
+
name: Scalars['String']['input'];
|
|
5909
|
+
order: CompassScorecardQuerySortOrder;
|
|
5910
|
+
};
|
|
5794
5911
|
export declare type CompassScorecardEdge = {
|
|
5795
5912
|
__typename?: 'CompassScorecardEdge';
|
|
5796
5913
|
cursor: Scalars['String']['output'];
|
|
@@ -7748,6 +7865,7 @@ export declare enum ConfluenceLegacyContentDataClassificationQueryContentStatus
|
|
|
7748
7865
|
}
|
|
7749
7866
|
export declare enum ConfluenceLegacyContentDeleteActionType {
|
|
7750
7867
|
DeleteDraft = "DELETE_DRAFT",
|
|
7868
|
+
DeleteDraftIfBlank = "DELETE_DRAFT_IF_BLANK",
|
|
7751
7869
|
MoveToTrash = "MOVE_TO_TRASH",
|
|
7752
7870
|
PurgeFromTrash = "PURGE_FROM_TRASH"
|
|
7753
7871
|
}
|
|
@@ -8308,6 +8426,7 @@ export declare type ConfluenceLegacyDeleteContentDataClassificationLevelPayload
|
|
|
8308
8426
|
export declare type ConfluenceLegacyDeleteContentResponsePayload = {
|
|
8309
8427
|
__typename?: 'ConfluenceLegacyDeleteContentResponsePayload';
|
|
8310
8428
|
contentId: Scalars['ID']['output'];
|
|
8429
|
+
wasDeleted: Scalars['Boolean']['output'];
|
|
8311
8430
|
};
|
|
8312
8431
|
export declare type ConfluenceLegacyDeleteContentTemplateLabelInput = {
|
|
8313
8432
|
contentTemplateId: Scalars['ID']['input'];
|
|
@@ -13682,7 +13801,7 @@ export declare type ContentPlatformAdvocateQuote = {
|
|
|
13682
13801
|
advocateQuoteId: Scalars['String']['output'];
|
|
13683
13802
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13684
13803
|
heroQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
13685
|
-
name
|
|
13804
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13686
13805
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
13687
13806
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13688
13807
|
};
|
|
@@ -13788,7 +13907,7 @@ export declare type ContentPlatformAnimatedTourCard = {
|
|
|
13788
13907
|
epicName?: Maybe<Scalars['String']['output']>;
|
|
13789
13908
|
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
13790
13909
|
priority?: Maybe<Scalars['String']['output']>;
|
|
13791
|
-
summary
|
|
13910
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
13792
13911
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13793
13912
|
};
|
|
13794
13913
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
@@ -13817,7 +13936,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
13817
13936
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13818
13937
|
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
13819
13938
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
13820
|
-
name
|
|
13939
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13821
13940
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
13822
13941
|
shortBiography?: Maybe<Scalars['String']['output']>;
|
|
13823
13942
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14244,14 +14363,14 @@ export declare type ContentPlatformIpmFlagSearchConnection = {
|
|
|
14244
14363
|
};
|
|
14245
14364
|
export declare type ContentPlatformIpmImageModal = {
|
|
14246
14365
|
__typename?: 'ContentPlatformIpmImageModal';
|
|
14247
|
-
body
|
|
14366
|
+
body?: Maybe<Scalars['JSON']['output']>;
|
|
14248
14367
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14249
14368
|
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
14250
14369
|
ctaButtonUrl?: Maybe<Scalars['String']['output']>;
|
|
14251
14370
|
id: Scalars['String']['output'];
|
|
14252
14371
|
image?: Maybe<Scalars['JSON']['output']>;
|
|
14253
14372
|
ipmNumber: Scalars['String']['output'];
|
|
14254
|
-
title
|
|
14373
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14255
14374
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14256
14375
|
variant?: Maybe<Scalars['String']['output']>;
|
|
14257
14376
|
};
|
|
@@ -14277,7 +14396,7 @@ export declare type ContentPlatformMarketplaceApp = {
|
|
|
14277
14396
|
__typename?: 'ContentPlatformMarketplaceApp';
|
|
14278
14397
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14279
14398
|
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14280
|
-
name
|
|
14399
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14281
14400
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14282
14401
|
url: Scalars['String']['output'];
|
|
14283
14402
|
};
|
|
@@ -14291,7 +14410,7 @@ export declare type ContentPlatformOrganization = {
|
|
|
14291
14410
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14292
14411
|
industry?: Maybe<Array<ContentPlatformTaxonomyIndustry>>;
|
|
14293
14412
|
logo?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
14294
|
-
name
|
|
14413
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14295
14414
|
organizationSize?: Maybe<ContentPlatformTaxonomyCompanySize>;
|
|
14296
14415
|
region?: Maybe<ContentPlatformTaxonomyRegion>;
|
|
14297
14416
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -14393,7 +14512,7 @@ export declare type ContentPlatformProduct = {
|
|
|
14393
14512
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14394
14513
|
deployment?: Maybe<Scalars['String']['output']>;
|
|
14395
14514
|
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14396
|
-
name
|
|
14515
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14397
14516
|
productBlurb?: Maybe<Scalars['String']['output']>;
|
|
14398
14517
|
productNameId?: Maybe<Scalars['String']['output']>;
|
|
14399
14518
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -14637,8 +14756,8 @@ export declare type ContentPlatformTaxonomyChangeCategory = {
|
|
|
14637
14756
|
export declare type ContentPlatformTaxonomyCompanySize = {
|
|
14638
14757
|
__typename?: 'ContentPlatformTaxonomyCompanySize';
|
|
14639
14758
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14640
|
-
name
|
|
14641
|
-
shortDescription
|
|
14759
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14760
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
14642
14761
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14643
14762
|
};
|
|
14644
14763
|
export declare type ContentPlatformTaxonomyContentHub = {
|
|
@@ -14708,18 +14827,18 @@ export declare type ContentPlatformTaxonomyUserRole = {
|
|
|
14708
14827
|
export declare type ContentPlatformTaxonomyUserRoleNew = {
|
|
14709
14828
|
__typename?: 'ContentPlatformTaxonomyUserRoleNew';
|
|
14710
14829
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14711
|
-
roleDescription
|
|
14830
|
+
roleDescription?: Maybe<Scalars['String']['output']>;
|
|
14712
14831
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14713
|
-
userRole
|
|
14832
|
+
userRole?: Maybe<Scalars['String']['output']>;
|
|
14714
14833
|
userRoleId: Scalars['String']['output'];
|
|
14715
14834
|
};
|
|
14716
14835
|
export declare type ContentPlatformTemplate = {
|
|
14717
14836
|
__typename?: 'ContentPlatformTemplate';
|
|
14718
|
-
aboutThisTemplate
|
|
14837
|
+
aboutThisTemplate?: Maybe<Scalars['String']['output']>;
|
|
14719
14838
|
category?: Maybe<Array<ContentPlatformCategory>>;
|
|
14720
14839
|
contributor?: Maybe<ContentPlatformOrganizationAndAuthorUnion>;
|
|
14721
14840
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14722
|
-
howToUseThisTemplate
|
|
14841
|
+
howToUseThisTemplate?: Maybe<Array<ContentPlatformTemplateGuide>>;
|
|
14723
14842
|
keyFeatures?: Maybe<Array<ContentPlatformTaxonomyFeature>>;
|
|
14724
14843
|
name?: Maybe<Scalars['String']['output']>;
|
|
14725
14844
|
oneLinerHeadline?: Maybe<Scalars['String']['output']>;
|
|
@@ -14806,7 +14925,7 @@ export declare type ContentPlatformTemplateContentSearchConnection = {
|
|
|
14806
14925
|
export declare type ContentPlatformTemplateGuide = {
|
|
14807
14926
|
__typename?: 'ContentPlatformTemplateGuide';
|
|
14808
14927
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14809
|
-
name
|
|
14928
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14810
14929
|
steps?: Maybe<Array<ContentPlatformTemplateUseStep>>;
|
|
14811
14930
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14812
14931
|
};
|
|
@@ -14817,7 +14936,7 @@ export declare type ContentPlatformTemplateImageAsset = {
|
|
|
14817
14936
|
description?: Maybe<Scalars['String']['output']>;
|
|
14818
14937
|
details: Scalars['JSON']['output'];
|
|
14819
14938
|
fileName: Scalars['String']['output'];
|
|
14820
|
-
title
|
|
14939
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14821
14940
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14822
14941
|
url: Scalars['String']['output'];
|
|
14823
14942
|
};
|
|
@@ -14847,7 +14966,7 @@ export declare type ContentPlatformTemplateUseStep = {
|
|
|
14847
14966
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14848
14967
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14849
14968
|
description?: Maybe<Scalars['String']['output']>;
|
|
14850
|
-
name
|
|
14969
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14851
14970
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14852
14971
|
};
|
|
14853
14972
|
export declare type ContentPlatformTextComponent = {
|
|
@@ -14870,17 +14989,17 @@ export declare type ContentPlatformTopicIntroduction = {
|
|
|
14870
14989
|
export declare type ContentPlatformTopicOverview = {
|
|
14871
14990
|
__typename?: 'ContentPlatformTopicOverview';
|
|
14872
14991
|
author?: Maybe<ContentPlatformAuthor>;
|
|
14873
|
-
bannerImage
|
|
14992
|
+
bannerImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14874
14993
|
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
14875
14994
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14876
14995
|
description?: Maybe<Scalars['String']['output']>;
|
|
14877
14996
|
featuredContentContainer?: Maybe<Array<ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
14878
14997
|
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
14879
14998
|
name?: Maybe<Scalars['String']['output']>;
|
|
14880
|
-
nextBestAction
|
|
14881
|
-
relatedHub
|
|
14999
|
+
nextBestAction?: Maybe<Array<ContentPlatformHubArticleAndTutorialUnion>>;
|
|
15000
|
+
relatedHub?: Maybe<Array<ContentPlatformTaxonomyContentHub>>;
|
|
14882
15001
|
subtitle?: Maybe<Scalars['String']['output']>;
|
|
14883
|
-
title
|
|
15002
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
14884
15003
|
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
14885
15004
|
topicOverviewId: Scalars['String']['output'];
|
|
14886
15005
|
upNextFooter?: Maybe<ContentPlatformHubArticle>;
|
|
@@ -16591,6 +16710,14 @@ export declare type DeleteCompassComponentPayload = Payload & {
|
|
|
16591
16710
|
errors?: Maybe<Array<MutationError>>;
|
|
16592
16711
|
success: Scalars['Boolean']['output'];
|
|
16593
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
|
+
};
|
|
16594
16721
|
export declare type DeleteCompassRelationshipInput = {
|
|
16595
16722
|
endNodeId: Scalars['ID']['input'];
|
|
16596
16723
|
startNodeId: Scalars['ID']['input'];
|
|
@@ -19134,6 +19261,23 @@ export declare enum ExternalApprovalStatus {
|
|
|
19134
19261
|
Needswork = "NEEDSWORK",
|
|
19135
19262
|
Unapproved = "UNAPPROVED"
|
|
19136
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;
|
|
19137
19281
|
export declare type ExternalAttachment = {
|
|
19138
19282
|
__typename?: 'ExternalAttachment';
|
|
19139
19283
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -19153,8 +19297,10 @@ export declare type ExternalAuthProvider = {
|
|
|
19153
19297
|
};
|
|
19154
19298
|
export declare type ExternalBranch = Node & {
|
|
19155
19299
|
__typename?: 'ExternalBranch';
|
|
19300
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19156
19301
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
19157
19302
|
container?: Maybe<ExternalEntity>;
|
|
19303
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19158
19304
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
19159
19305
|
id: Scalars['ID']['output'];
|
|
19160
19306
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -19173,6 +19319,7 @@ export declare type ExternalBuildCommitReference = {
|
|
|
19173
19319
|
};
|
|
19174
19320
|
export declare type ExternalBuildInfo = Node & {
|
|
19175
19321
|
__typename?: 'ExternalBuildInfo';
|
|
19322
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19176
19323
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
19177
19324
|
description?: Maybe<Scalars['String']['output']>;
|
|
19178
19325
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19218,9 +19365,11 @@ export declare type ExternalChapter = {
|
|
|
19218
19365
|
};
|
|
19219
19366
|
export declare type ExternalCommit = Node & {
|
|
19220
19367
|
__typename?: 'ExternalCommit';
|
|
19368
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19221
19369
|
author?: Maybe<ExternalUser>;
|
|
19222
19370
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
19223
19371
|
container?: Maybe<ExternalEntity>;
|
|
19372
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19224
19373
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19225
19374
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19226
19375
|
fileInfo?: Maybe<ExternalFileInfo>;
|
|
@@ -19236,6 +19385,7 @@ export declare enum ExternalCommitFlags {
|
|
|
19236
19385
|
}
|
|
19237
19386
|
export declare type ExternalConversation = Node & {
|
|
19238
19387
|
__typename?: 'ExternalConversation';
|
|
19388
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19239
19389
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19240
19390
|
createdBy?: Maybe<ExternalUser>;
|
|
19241
19391
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19269,6 +19419,7 @@ export declare type ExternalCue = {
|
|
|
19269
19419
|
};
|
|
19270
19420
|
export declare type ExternalDeployment = Node & {
|
|
19271
19421
|
__typename?: 'ExternalDeployment';
|
|
19422
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19272
19423
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19273
19424
|
description?: Maybe<Scalars['String']['output']>;
|
|
19274
19425
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19294,6 +19445,7 @@ export declare enum ExternalDeploymentState {
|
|
|
19294
19445
|
}
|
|
19295
19446
|
export declare type ExternalDesign = Node & {
|
|
19296
19447
|
__typename?: 'ExternalDesign';
|
|
19448
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19297
19449
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19298
19450
|
createdBy?: Maybe<ExternalUser>;
|
|
19299
19451
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19327,6 +19479,7 @@ export declare enum ExternalDesignType {
|
|
|
19327
19479
|
}
|
|
19328
19480
|
export declare type ExternalDocument = Node & {
|
|
19329
19481
|
__typename?: 'ExternalDocument';
|
|
19482
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19330
19483
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19331
19484
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19332
19485
|
content?: Maybe<ExternalLargeContent>;
|
|
@@ -19408,6 +19561,7 @@ export declare type ExternalExportLink = {
|
|
|
19408
19561
|
};
|
|
19409
19562
|
export declare type ExternalFeatureFlag = Node & {
|
|
19410
19563
|
__typename?: 'ExternalFeatureFlag';
|
|
19564
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19411
19565
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19412
19566
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19413
19567
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19470,7 +19624,9 @@ export declare enum ExternalMembershipType {
|
|
|
19470
19624
|
}
|
|
19471
19625
|
export declare type ExternalMessage = Node & {
|
|
19472
19626
|
__typename?: 'ExternalMessage';
|
|
19627
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19473
19628
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19629
|
+
container?: Maybe<ExternalEntity>;
|
|
19474
19630
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19475
19631
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19476
19632
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19497,9 +19653,11 @@ export declare type ExternalPipeline = {
|
|
|
19497
19653
|
};
|
|
19498
19654
|
export declare type ExternalPullRequest = Node & {
|
|
19499
19655
|
__typename?: 'ExternalPullRequest';
|
|
19656
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19500
19657
|
author?: Maybe<ExternalUser>;
|
|
19501
19658
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
19502
19659
|
container?: Maybe<ExternalEntity>;
|
|
19660
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19503
19661
|
destinationBranch?: Maybe<ExternalBranchReference>;
|
|
19504
19662
|
displayId?: Maybe<Scalars['String']['output']>;
|
|
19505
19663
|
id: Scalars['ID']['output'];
|
|
@@ -19525,6 +19683,7 @@ export declare type ExternalRemoteLink = Node & {
|
|
|
19525
19683
|
__typename?: 'ExternalRemoteLink';
|
|
19526
19684
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19527
19685
|
assignee?: Maybe<ExternalUser>;
|
|
19686
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19528
19687
|
attributeMap?: Maybe<Array<Maybe<ExternalRemoteLinkAttributeTuple>>>;
|
|
19529
19688
|
author?: Maybe<ExternalUser>;
|
|
19530
19689
|
category?: Maybe<Scalars['String']['output']>;
|
|
@@ -19549,6 +19708,7 @@ export declare type ExternalRemoteLinkStatus = {
|
|
|
19549
19708
|
};
|
|
19550
19709
|
export declare type ExternalRepository = Node & {
|
|
19551
19710
|
__typename?: 'ExternalRepository';
|
|
19711
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19552
19712
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19553
19713
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
19554
19714
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19587,6 +19747,7 @@ export declare type ExternalUser = {
|
|
|
19587
19747
|
};
|
|
19588
19748
|
export declare type ExternalVideo = Node & {
|
|
19589
19749
|
__typename?: 'ExternalVideo';
|
|
19750
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19590
19751
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19591
19752
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
19592
19753
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -19610,6 +19771,7 @@ export declare type ExternalVideo = Node & {
|
|
|
19610
19771
|
export declare type ExternalVulnerability = Node & {
|
|
19611
19772
|
__typename?: 'ExternalVulnerability';
|
|
19612
19773
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19774
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
19613
19775
|
description?: Maybe<Scalars['String']['output']>;
|
|
19614
19776
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19615
19777
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -35843,6 +36005,7 @@ export declare type HelpCenterMutationApi = {
|
|
|
35843
36005
|
updateHomePageAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
35844
36006
|
updateLoginAnnouncement?: Maybe<HelpCenterAnnouncementUpdatePayload>;
|
|
35845
36007
|
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
36008
|
+
updateProjectMapping?: Maybe<HelpCenterProjectMappingUpdatePayload>;
|
|
35846
36009
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
35847
36010
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
35848
36011
|
};
|
|
@@ -35879,6 +36042,9 @@ export declare type HelpCenterMutationApiUpdateLoginAnnouncementArgs = {
|
|
|
35879
36042
|
export declare type HelpCenterMutationApiUpdatePortalsConfigurationArgs = {
|
|
35880
36043
|
input: HelpCenterPortalsConfigurationUpdateInput;
|
|
35881
36044
|
};
|
|
36045
|
+
export declare type HelpCenterMutationApiUpdateProjectMappingArgs = {
|
|
36046
|
+
input: HelpCenterProjectMappingUpdateInput;
|
|
36047
|
+
};
|
|
35882
36048
|
export declare type HelpCenterMutationApiUpdateTopicArgs = {
|
|
35883
36049
|
input: HelpCenterBulkUpdateTopicInput;
|
|
35884
36050
|
};
|
|
@@ -35934,10 +36100,21 @@ export declare enum HelpCenterPortalsType {
|
|
|
35934
36100
|
Hidden = "HIDDEN",
|
|
35935
36101
|
Visible = "VISIBLE"
|
|
35936
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
|
+
};
|
|
35937
36113
|
export declare type HelpCenterQueryApi = {
|
|
35938
36114
|
__typename?: 'HelpCenterQueryApi';
|
|
35939
36115
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
35940
36116
|
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
36117
|
+
helpCenterByHoistedProjectIdRouted?: Maybe<HelpCenterQueryResult>;
|
|
35941
36118
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
35942
36119
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
35943
36120
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
@@ -35954,6 +36131,10 @@ export declare type HelpCenterQueryApiGetHelpDeskByIdArgs = {
|
|
|
35954
36131
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
35955
36132
|
projectAri: Scalars['ID']['input'];
|
|
35956
36133
|
};
|
|
36134
|
+
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
|
|
36135
|
+
projectAri: Scalars['ID']['input'];
|
|
36136
|
+
workspaceAri: Scalars['ID']['input'];
|
|
36137
|
+
};
|
|
35957
36138
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
35958
36139
|
helpCenterAri: Scalars['ID']['input'];
|
|
35959
36140
|
};
|
|
@@ -36858,22 +37039,10 @@ export declare enum HelpObjectStoreJsmEntityType {
|
|
|
36858
37039
|
export declare type HelpObjectStoreMutationApi = {
|
|
36859
37040
|
__typename?: 'HelpObjectStoreMutationApi';
|
|
36860
37041
|
createEntityMapping?: Maybe<HelpObjectStoreCreateEntityMappingPayload>;
|
|
36861
|
-
createProviderConnections?: Maybe<HelpObjectStoreProviderConnectionPayload>;
|
|
36862
|
-
deleteProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
36863
|
-
updateProviderConnection?: Maybe<HelpObjectStoreProviderConnectionUpdateDeletePayload>;
|
|
36864
37042
|
};
|
|
36865
37043
|
export declare type HelpObjectStoreMutationApiCreateEntityMappingArgs = {
|
|
36866
37044
|
input: HelpObjectStoreBulkCreateEntityMappingInput;
|
|
36867
37045
|
};
|
|
36868
|
-
export declare type HelpObjectStoreMutationApiCreateProviderConnectionsArgs = {
|
|
36869
|
-
input: HelpObjectStoreProviderConnectionsInput;
|
|
36870
|
-
};
|
|
36871
|
-
export declare type HelpObjectStoreMutationApiDeleteProviderConnectionArgs = {
|
|
36872
|
-
id: Scalars['ID']['input'];
|
|
36873
|
-
};
|
|
36874
|
-
export declare type HelpObjectStoreMutationApiUpdateProviderConnectionArgs = {
|
|
36875
|
-
input: HelpObjectStoreProviderConnectionInput;
|
|
36876
|
-
};
|
|
36877
37046
|
export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
36878
37047
|
__typename?: 'HelpObjectStorePortal';
|
|
36879
37048
|
ari: Scalars['ID']['output'];
|
|
@@ -36888,88 +37057,10 @@ export declare type HelpObjectStorePortal = HelpObjectStoreHelpObject & Node & {
|
|
|
36888
37057
|
title?: Maybe<Scalars['String']['output']>;
|
|
36889
37058
|
};
|
|
36890
37059
|
export declare type HelpObjectStorePortalResult = HelpObjectStorePortal | HelpObjectStoreQueryError;
|
|
36891
|
-
export declare type HelpObjectStoreProviderAuthStatus = {
|
|
36892
|
-
__typename?: 'HelpObjectStoreProviderAuthStatus';
|
|
36893
|
-
authUrl?: Maybe<Scalars['String']['output']>;
|
|
36894
|
-
isAuthRequired: Scalars['Boolean']['output'];
|
|
36895
|
-
provider: Scalars['String']['output'];
|
|
36896
|
-
};
|
|
36897
|
-
export declare type HelpObjectStoreProviderAuthStatusResult = HelpObjectStoreProviderAuthStatuses | HelpObjectStoreProvidersAuthError;
|
|
36898
|
-
export declare type HelpObjectStoreProviderAuthStatuses = {
|
|
36899
|
-
__typename?: 'HelpObjectStoreProviderAuthStatuses';
|
|
36900
|
-
providerAuthStatuses: Array<Maybe<HelpObjectStoreProviderAuthStatus>>;
|
|
36901
|
-
};
|
|
36902
|
-
export declare type HelpObjectStoreProviderConnection = Node & {
|
|
36903
|
-
__typename?: 'HelpObjectStoreProviderConnection';
|
|
36904
|
-
containerId?: Maybe<Scalars['String']['output']>;
|
|
36905
|
-
containerType?: Maybe<Scalars['String']['output']>;
|
|
36906
|
-
createdBy: Scalars['String']['output'];
|
|
36907
|
-
id: Scalars['ID']['output'];
|
|
36908
|
-
providerKey: Scalars['String']['output'];
|
|
36909
|
-
teamId: Scalars['String']['output'];
|
|
36910
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
36911
|
-
updatedBy: Scalars['String']['output'];
|
|
36912
|
-
url: Scalars['String']['output'];
|
|
36913
|
-
};
|
|
36914
|
-
export declare type HelpObjectStoreProviderConnectionEdge = {
|
|
36915
|
-
__typename?: 'HelpObjectStoreProviderConnectionEdge';
|
|
36916
|
-
cursor: Scalars['String']['output'];
|
|
36917
|
-
node: HelpObjectStoreProviderConnection;
|
|
36918
|
-
};
|
|
36919
|
-
export declare type HelpObjectStoreProviderConnectionError = {
|
|
36920
|
-
__typename?: 'HelpObjectStoreProviderConnectionError';
|
|
36921
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
36922
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
36923
|
-
};
|
|
36924
|
-
export declare type HelpObjectStoreProviderConnectionInput = {
|
|
36925
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
36926
|
-
providerKey: Scalars['String']['input'];
|
|
36927
|
-
teamId: Scalars['String']['input'];
|
|
36928
|
-
url: Scalars['String']['input'];
|
|
36929
|
-
};
|
|
36930
|
-
export declare type HelpObjectStoreProviderConnectionMutationError = {
|
|
36931
|
-
__typename?: 'HelpObjectStoreProviderConnectionMutationError';
|
|
36932
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
36933
|
-
errorMessage: Scalars['String']['output'];
|
|
36934
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
36935
|
-
providerKey: Scalars['String']['output'];
|
|
36936
|
-
teamId: Scalars['String']['output'];
|
|
36937
|
-
url: Scalars['String']['output'];
|
|
36938
|
-
};
|
|
36939
|
-
export declare type HelpObjectStoreProviderConnectionPayload = {
|
|
36940
|
-
__typename?: 'HelpObjectStoreProviderConnectionPayload';
|
|
36941
|
-
errors?: Maybe<Array<HelpObjectStoreProviderConnectionMutationError>>;
|
|
36942
|
-
providerConnections?: Maybe<Array<HelpObjectStoreProviderConnection>>;
|
|
36943
|
-
success: Scalars['Boolean']['output'];
|
|
36944
|
-
};
|
|
36945
|
-
export declare type HelpObjectStoreProviderConnectionResult = HelpObjectStoreProviderConnectionError | HelpObjectStoreProviderConnections;
|
|
36946
|
-
export declare type HelpObjectStoreProviderConnectionUpdateDeletePayload = {
|
|
36947
|
-
__typename?: 'HelpObjectStoreProviderConnectionUpdateDeletePayload';
|
|
36948
|
-
errorKey?: Maybe<Scalars['String']['output']>;
|
|
36949
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
36950
|
-
id: Scalars['ID']['output'];
|
|
36951
|
-
success: Scalars['Boolean']['output'];
|
|
36952
|
-
};
|
|
36953
|
-
export declare type HelpObjectStoreProviderConnections = {
|
|
36954
|
-
__typename?: 'HelpObjectStoreProviderConnections';
|
|
36955
|
-
edges: Array<Maybe<HelpObjectStoreProviderConnectionEdge>>;
|
|
36956
|
-
pageInfo: PageInfo;
|
|
36957
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
36958
|
-
};
|
|
36959
|
-
export declare type HelpObjectStoreProviderConnectionsInput = {
|
|
36960
|
-
providerConnections: Array<HelpObjectStoreProviderConnectionInput>;
|
|
36961
|
-
};
|
|
36962
|
-
export declare type HelpObjectStoreProvidersAuthError = {
|
|
36963
|
-
__typename?: 'HelpObjectStoreProvidersAuthError';
|
|
36964
|
-
extensions?: Maybe<Array<QueryErrorExtension>>;
|
|
36965
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
36966
|
-
};
|
|
36967
37060
|
export declare type HelpObjectStoreQueryApi = {
|
|
36968
37061
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
36969
37062
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
36970
37063
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
36971
|
-
providerAuthStatuses?: Maybe<HelpObjectStoreProviderAuthStatusResult>;
|
|
36972
|
-
providerConnections?: Maybe<HelpObjectStoreProviderConnectionResult>;
|
|
36973
37064
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
36974
37065
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
36975
37066
|
};
|
|
@@ -36979,16 +37070,6 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
36979
37070
|
export declare type HelpObjectStoreQueryApiChannelsArgs = {
|
|
36980
37071
|
ids: Array<Scalars['ID']['input']>;
|
|
36981
37072
|
};
|
|
36982
|
-
export declare type HelpObjectStoreQueryApiProviderAuthStatusesArgs = {
|
|
36983
|
-
cloudId: Scalars['ID']['input'];
|
|
36984
|
-
};
|
|
36985
|
-
export declare type HelpObjectStoreQueryApiProviderConnectionsArgs = {
|
|
36986
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
36987
|
-
cloudId: Scalars['ID']['input'];
|
|
36988
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36989
|
-
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
36990
|
-
teamId: Scalars['String']['input'];
|
|
36991
|
-
};
|
|
36992
37073
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
36993
37074
|
ids: Array<Scalars['ID']['input']>;
|
|
36994
37075
|
};
|
|
@@ -41111,6 +41192,10 @@ export declare type JiraEntityPropertyString = JiraEntityProperty & Node & {
|
|
|
41111
41192
|
propertyKey?: Maybe<Scalars['String']['output']>;
|
|
41112
41193
|
stringValue?: Maybe<Scalars['String']['output']>;
|
|
41113
41194
|
};
|
|
41195
|
+
export declare enum JiraEntityScope {
|
|
41196
|
+
Global = "GLOBAL",
|
|
41197
|
+
Project = "PROJECT"
|
|
41198
|
+
}
|
|
41114
41199
|
export declare type JiraEpic = {
|
|
41115
41200
|
__typename?: 'JiraEpic';
|
|
41116
41201
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -41239,6 +41324,32 @@ export declare type JiraFetchBulkOperationDetailsResponseBulkTransitionsArgs = {
|
|
|
41239
41324
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41240
41325
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
41241
41326
|
};
|
|
41327
|
+
export declare type JiraField = {
|
|
41328
|
+
__typename?: 'JiraField';
|
|
41329
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
41330
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
41331
|
+
id: Scalars['ID']['output'];
|
|
41332
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
41333
|
+
scope?: Maybe<JiraEntityScope>;
|
|
41334
|
+
typeKey?: Maybe<Scalars['String']['output']>;
|
|
41335
|
+
typeName?: Maybe<Scalars['String']['output']>;
|
|
41336
|
+
};
|
|
41337
|
+
export declare type JiraFieldAssociationWithIssueTypes = {
|
|
41338
|
+
__typename?: 'JiraFieldAssociationWithIssueTypes';
|
|
41339
|
+
field?: Maybe<JiraField>;
|
|
41340
|
+
fieldOperation?: Maybe<JiraFieldOperation>;
|
|
41341
|
+
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
41342
|
+
};
|
|
41343
|
+
export declare type JiraFieldAssociationWithIssueTypesConnection = {
|
|
41344
|
+
__typename?: 'JiraFieldAssociationWithIssueTypesConnection';
|
|
41345
|
+
edges?: Maybe<Array<Maybe<JiraFieldAssociationWithIssueTypesEdge>>>;
|
|
41346
|
+
pageInfo: PageInfo;
|
|
41347
|
+
};
|
|
41348
|
+
export declare type JiraFieldAssociationWithIssueTypesEdge = {
|
|
41349
|
+
__typename?: 'JiraFieldAssociationWithIssueTypesEdge';
|
|
41350
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41351
|
+
node?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
41352
|
+
};
|
|
41242
41353
|
export declare type JiraFieldConfig = {
|
|
41243
41354
|
__typename?: 'JiraFieldConfig';
|
|
41244
41355
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41269,6 +41380,13 @@ export declare type JiraFieldNonEditableReason = {
|
|
|
41269
41380
|
__typename?: 'JiraFieldNonEditableReason';
|
|
41270
41381
|
message?: Maybe<Scalars['String']['output']>;
|
|
41271
41382
|
};
|
|
41383
|
+
export declare type JiraFieldOperation = {
|
|
41384
|
+
__typename?: 'JiraFieldOperation';
|
|
41385
|
+
canDelete?: Maybe<Scalars['Boolean']['output']>;
|
|
41386
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
41387
|
+
canModifyOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
41388
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
41389
|
+
};
|
|
41272
41390
|
export declare type JiraFieldOptionIdsFilterInput = {
|
|
41273
41391
|
operation: JiraFieldOptionIdsFilterOperation;
|
|
41274
41392
|
optionIds: Array<Scalars['ID']['input']>;
|
|
@@ -43162,11 +43280,13 @@ export declare type JiraIssueTransitionCommentVisibilityInput = {
|
|
|
43162
43280
|
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
43163
43281
|
};
|
|
43164
43282
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
43283
|
+
JiraAffectedServicesField?: InputMaybe<Array<JiraUpdateAffectedServicesFieldInput>>;
|
|
43165
43284
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
43166
43285
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
43167
43286
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
43168
43287
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
43169
43288
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
43289
|
+
JiraConnectMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
43170
43290
|
JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
43171
43291
|
JiraConnectRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
43172
43292
|
JiraConnectSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
@@ -43509,6 +43629,7 @@ export declare enum JiraJqlClauseType {
|
|
|
43509
43629
|
}
|
|
43510
43630
|
export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
43511
43631
|
__typename?: 'JiraJqlComponentFieldValue';
|
|
43632
|
+
component?: Maybe<JiraComponent>;
|
|
43512
43633
|
displayName: Scalars['String']['output'];
|
|
43513
43634
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
43514
43635
|
jqlTerm: Scalars['String']['output'];
|
|
@@ -43691,6 +43812,7 @@ export declare type JiraJqlOptionFieldValue = JiraJqlFieldValue & {
|
|
|
43691
43812
|
displayName: Scalars['String']['output'];
|
|
43692
43813
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
43693
43814
|
jqlTerm: Scalars['String']['output'];
|
|
43815
|
+
option?: Maybe<JiraOption>;
|
|
43694
43816
|
};
|
|
43695
43817
|
export declare type JiraJqlOptionFieldValueConnection = {
|
|
43696
43818
|
__typename?: 'JiraJqlOptionFieldValueConnection';
|
|
@@ -43795,6 +43917,7 @@ export declare type JiraJqlStatusFieldValue = JiraJqlFieldValue & {
|
|
|
43795
43917
|
displayName: Scalars['String']['output'];
|
|
43796
43918
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
43797
43919
|
jqlTerm: Scalars['String']['output'];
|
|
43920
|
+
status?: Maybe<JiraStatus>;
|
|
43798
43921
|
statusCategory: JiraStatusCategory;
|
|
43799
43922
|
};
|
|
43800
43923
|
export declare enum JiraJqlSyntaxError {
|
|
@@ -43843,6 +43966,7 @@ export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
|
43843
43966
|
displayName: Scalars['String']['output'];
|
|
43844
43967
|
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
43845
43968
|
jqlTerm: Scalars['String']['output'];
|
|
43969
|
+
version?: Maybe<JiraVersion>;
|
|
43846
43970
|
};
|
|
43847
43971
|
export declare type JiraJqlVersionFieldValueConnection = {
|
|
43848
43972
|
__typename?: 'JiraJqlVersionFieldValueConnection';
|
|
@@ -45941,6 +46065,7 @@ export declare type JiraProject = Node & {
|
|
|
45941
46065
|
projectType?: Maybe<JiraProjectType>;
|
|
45942
46066
|
projectTypeName?: Maybe<Scalars['String']['output']>;
|
|
45943
46067
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
46068
|
+
projectWithVisibleIssueTypeIds?: Maybe<JiraProjectWithIssueTypeIds>;
|
|
45944
46069
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
45945
46070
|
repositoryRelationships?: Maybe<JiraProjectAndRepositoryRelationshipConnection>;
|
|
45946
46071
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
@@ -46597,6 +46722,14 @@ export declare type JiraProjectUpdateNameMutationPayload = Payload & {
|
|
|
46597
46722
|
project?: Maybe<JiraProject>;
|
|
46598
46723
|
success: Scalars['Boolean']['output'];
|
|
46599
46724
|
};
|
|
46725
|
+
export declare type JiraProjectWithIssueTypeIds = {
|
|
46726
|
+
__typename?: 'JiraProjectWithIssueTypeIds';
|
|
46727
|
+
fieldAssociationWithIssueTypes?: Maybe<JiraFieldAssociationWithIssueTypesConnection>;
|
|
46728
|
+
};
|
|
46729
|
+
export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
|
|
46730
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46731
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46732
|
+
};
|
|
46600
46733
|
export declare type JiraPullRequestReviewer = {
|
|
46601
46734
|
__typename?: 'JiraPullRequestReviewer';
|
|
46602
46735
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -48272,6 +48405,7 @@ export declare type JiraScreenTabLayoutItem = {
|
|
|
48272
48405
|
__typename?: 'JiraScreenTabLayoutItem';
|
|
48273
48406
|
fields?: Maybe<JiraScreenTabLayoutFieldsConnection>;
|
|
48274
48407
|
id: Scalars['ID']['output'];
|
|
48408
|
+
tabId?: Maybe<Scalars['String']['output']>;
|
|
48275
48409
|
title: Scalars['String']['output'];
|
|
48276
48410
|
};
|
|
48277
48411
|
export declare type JiraScreenTabLayoutItemFieldsArgs = {
|
|
@@ -50319,7 +50453,7 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
|
50319
50453
|
};
|
|
50320
50454
|
export declare type JiraUnsplashAttributionInput = {
|
|
50321
50455
|
cloudId: Scalars['ID']['input'];
|
|
50322
|
-
|
|
50456
|
+
filePaths: Array<Scalars['ID']['input']>;
|
|
50323
50457
|
};
|
|
50324
50458
|
export declare type JiraUnsplashAttributionPayload = Payload & {
|
|
50325
50459
|
__typename?: 'JiraUnsplashAttributionPayload';
|
|
@@ -52994,7 +53128,6 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
|
52994
53128
|
};
|
|
52995
53129
|
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
52996
53130
|
Acronym = "ACRONYM",
|
|
52997
|
-
IndustryJargon = "INDUSTRY_JARGON",
|
|
52998
53131
|
Other = "OTHER",
|
|
52999
53132
|
Project = "PROJECT",
|
|
53000
53133
|
Team = "TEAM"
|
|
@@ -53806,32 +53939,31 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
53806
53939
|
}
|
|
53807
53940
|
export declare type MarketplaceConsoleEdition = {
|
|
53808
53941
|
__typename?: 'MarketplaceConsoleEdition';
|
|
53809
|
-
features
|
|
53942
|
+
features: Array<MarketplaceConsoleFeature>;
|
|
53810
53943
|
id: Scalars['ID']['output'];
|
|
53811
53944
|
isDefault: Scalars['Boolean']['output'];
|
|
53812
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
53813
53945
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
53814
53946
|
type: MarketplaceConsoleEditionType;
|
|
53815
53947
|
};
|
|
53816
|
-
export declare type
|
|
53817
|
-
features
|
|
53948
|
+
export declare type MarketplaceConsoleEditionInput = {
|
|
53949
|
+
features: Array<MarketplaceConsoleFeatureInput>;
|
|
53950
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
53818
53951
|
isDefault: Scalars['Boolean']['input'];
|
|
53819
|
-
|
|
53820
|
-
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53952
|
+
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
53821
53953
|
type: MarketplaceConsoleEditionType;
|
|
53822
53954
|
};
|
|
53955
|
+
export declare type MarketplaceConsoleEditionPricingKnownError = MarketplaceConsoleError & {
|
|
53956
|
+
__typename?: 'MarketplaceConsoleEditionPricingKnownError';
|
|
53957
|
+
id: Scalars['ID']['output'];
|
|
53958
|
+
message: Scalars['String']['output'];
|
|
53959
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
53960
|
+
type: MarketplaceConsoleEditionType;
|
|
53961
|
+
};
|
|
53962
|
+
export declare type MarketplaceConsoleEditionResponse = MarketplaceConsoleEdition | MarketplaceConsoleEditionPricingKnownError;
|
|
53823
53963
|
export declare enum MarketplaceConsoleEditionType {
|
|
53824
53964
|
Advanced = "ADVANCED",
|
|
53825
53965
|
Standard = "STANDARD"
|
|
53826
53966
|
}
|
|
53827
|
-
export declare type MarketplaceConsoleEditionUpdate = {
|
|
53828
|
-
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
|
|
53829
|
-
id: Scalars['ID']['input'];
|
|
53830
|
-
isDefault: Scalars['Boolean']['input'];
|
|
53831
|
-
name: Scalars['String']['input'];
|
|
53832
|
-
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53833
|
-
type: Scalars['String']['input'];
|
|
53834
|
-
};
|
|
53835
53967
|
export declare type MarketplaceConsoleEditionsActivation = {
|
|
53836
53968
|
__typename?: 'MarketplaceConsoleEditionsActivation';
|
|
53837
53969
|
lastUpdated: Scalars['String']['output'];
|
|
@@ -53868,14 +54000,9 @@ export declare type MarketplaceConsoleFeature = {
|
|
|
53868
54000
|
name: Scalars['String']['output'];
|
|
53869
54001
|
position: Scalars['Int']['output'];
|
|
53870
54002
|
};
|
|
53871
|
-
export declare type
|
|
54003
|
+
export declare type MarketplaceConsoleFeatureInput = {
|
|
53872
54004
|
description: Scalars['String']['input'];
|
|
53873
|
-
|
|
53874
|
-
position: Scalars['Int']['input'];
|
|
53875
|
-
};
|
|
53876
|
-
export declare type MarketplaceConsoleFeatureUpdate = {
|
|
53877
|
-
description: Scalars['String']['input'];
|
|
53878
|
-
id: Scalars['ID']['input'];
|
|
54005
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
53879
54006
|
name: Scalars['String']['input'];
|
|
53880
54007
|
position: Scalars['Int']['input'];
|
|
53881
54008
|
};
|
|
@@ -53962,10 +54089,9 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
53962
54089
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53963
54090
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53964
54091
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53965
|
-
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53966
54092
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53967
54093
|
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53968
|
-
|
|
54094
|
+
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
53969
54095
|
};
|
|
53970
54096
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53971
54097
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
@@ -53974,10 +54100,6 @@ export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
|
53974
54100
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53975
54101
|
appSoftwareId: Scalars['String']['input'];
|
|
53976
54102
|
};
|
|
53977
|
-
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53978
|
-
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53979
|
-
product: MarketplaceConsoleEditionsInput;
|
|
53980
|
-
};
|
|
53981
54103
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53982
54104
|
appSoftwareId: Scalars['String']['input'];
|
|
53983
54105
|
token: Scalars['String']['input'];
|
|
@@ -53985,8 +54107,8 @@ export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
|
53985
54107
|
export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
53986
54108
|
deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
|
|
53987
54109
|
};
|
|
53988
|
-
export declare type
|
|
53989
|
-
|
|
54110
|
+
export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
54111
|
+
editions: Array<MarketplaceConsoleEditionInput>;
|
|
53990
54112
|
product: MarketplaceConsoleEditionsInput;
|
|
53991
54113
|
};
|
|
53992
54114
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
@@ -54059,7 +54181,7 @@ export declare type MarketplaceConsolePricingItem = {
|
|
|
54059
54181
|
ceiling: Scalars['Float']['output'];
|
|
54060
54182
|
floor: Scalars['Float']['output'];
|
|
54061
54183
|
};
|
|
54062
|
-
export declare type
|
|
54184
|
+
export declare type MarketplaceConsolePricingItemInput = {
|
|
54063
54185
|
amount: Scalars['Float']['input'];
|
|
54064
54186
|
ceiling: Scalars['Float']['input'];
|
|
54065
54187
|
floor: Scalars['Float']['input'];
|
|
@@ -54069,13 +54191,13 @@ export declare type MarketplaceConsolePricingPlan = {
|
|
|
54069
54191
|
currency: MarketplaceConsolePricingCurrency;
|
|
54070
54192
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
54071
54193
|
status: MarketplaceConsolePricingPlanStatus;
|
|
54072
|
-
tieredPricing:
|
|
54194
|
+
tieredPricing: Array<MarketplaceConsolePricingItem>;
|
|
54073
54195
|
};
|
|
54074
|
-
export declare type
|
|
54196
|
+
export declare type MarketplaceConsolePricingPlanInput = {
|
|
54075
54197
|
currency: MarketplaceConsolePricingCurrency;
|
|
54076
54198
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
54077
54199
|
status: MarketplaceConsolePricingPlanStatus;
|
|
54078
|
-
tieredPricing:
|
|
54200
|
+
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
54079
54201
|
};
|
|
54080
54202
|
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
54081
54203
|
Draft = "DRAFT",
|
|
@@ -54222,13 +54344,6 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
54222
54344
|
id: Scalars['ID']['output'];
|
|
54223
54345
|
name: Scalars['String']['output'];
|
|
54224
54346
|
};
|
|
54225
|
-
export declare type MarketplaceConsoleTieredPricing = {
|
|
54226
|
-
__typename?: 'MarketplaceConsoleTieredPricing';
|
|
54227
|
-
items: Array<MarketplaceConsolePricingItem>;
|
|
54228
|
-
};
|
|
54229
|
-
export declare type MarketplaceConsoleTieredPricingModify = {
|
|
54230
|
-
items: Array<MarketplaceConsolePricingItemModify>;
|
|
54231
|
-
};
|
|
54232
54347
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
54233
54348
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
54234
54349
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -57585,6 +57700,7 @@ export declare type OpsgenieSavedSearches = {
|
|
|
57585
57700
|
__typename?: 'OpsgenieSavedSearches';
|
|
57586
57701
|
createdByMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57587
57702
|
sharedWithMe?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57703
|
+
starred?: Maybe<Array<OpsgenieSavedSearch>>;
|
|
57588
57704
|
};
|
|
57589
57705
|
export declare type OpsgenieSchedule = {
|
|
57590
57706
|
__typename?: 'OpsgenieSchedule';
|
|
@@ -66096,9 +66212,20 @@ export declare type ToolchainWorkspace = Node & {
|
|
|
66096
66212
|
export declare type ToolchainWorkspaceConnection = {
|
|
66097
66213
|
__typename?: 'ToolchainWorkspaceConnection';
|
|
66098
66214
|
edges?: Maybe<Array<Maybe<ToolchainWorkspaceEdge>>>;
|
|
66215
|
+
error?: Maybe<QueryError>;
|
|
66099
66216
|
nodes?: Maybe<Array<Maybe<ToolchainWorkspace>>>;
|
|
66100
66217
|
pageInfo: PageInfo;
|
|
66101
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
|
+
};
|
|
66102
66229
|
export declare type ToolchainWorkspaceEdge = {
|
|
66103
66230
|
__typename?: 'ToolchainWorkspaceEdge';
|
|
66104
66231
|
cursor: Scalars['String']['output'];
|
|
@@ -66819,6 +66946,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
66819
66946
|
__typename?: 'TrelloBoardUpdated';
|
|
66820
66947
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
66821
66948
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
66949
|
+
description?: Maybe<TrelloDescription>;
|
|
66822
66950
|
id?: Maybe<Scalars['ID']['output']>;
|
|
66823
66951
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
66824
66952
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -67314,6 +67442,7 @@ export declare type TrelloMember = Node & {
|
|
|
67314
67442
|
initials?: Maybe<Scalars['String']['output']>;
|
|
67315
67443
|
nonPublicData?: Maybe<TrelloMemberNonPublicData>;
|
|
67316
67444
|
objectId: Scalars['ID']['output'];
|
|
67445
|
+
planner?: Maybe<TrelloPlanner>;
|
|
67317
67446
|
referrer?: Maybe<TrelloMember>;
|
|
67318
67447
|
url?: Maybe<Scalars['String']['output']>;
|
|
67319
67448
|
user?: Maybe<User>;
|
|
@@ -67408,6 +67537,59 @@ export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
|
67408
67537
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
67409
67538
|
input: TrelloWatchCardInput;
|
|
67410
67539
|
};
|
|
67540
|
+
export declare type TrelloPlanner = {
|
|
67541
|
+
__typename?: 'TrelloPlanner';
|
|
67542
|
+
accounts?: Maybe<TrelloPlannerAccountConnection>;
|
|
67543
|
+
};
|
|
67544
|
+
export declare type TrelloPlannerAccountsArgs = {
|
|
67545
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67547
|
+
};
|
|
67548
|
+
export declare type TrelloPlannerAccount = Node & {
|
|
67549
|
+
__typename?: 'TrelloPlannerAccount';
|
|
67550
|
+
accountType: TrelloSupportedPlannerProviders;
|
|
67551
|
+
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67552
|
+
id: Scalars['ID']['output'];
|
|
67553
|
+
};
|
|
67554
|
+
export declare type TrelloPlannerAccountEnabledCalendarsArgs = {
|
|
67555
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67556
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67557
|
+
};
|
|
67558
|
+
export declare type TrelloPlannerAccountConnection = {
|
|
67559
|
+
__typename?: 'TrelloPlannerAccountConnection';
|
|
67560
|
+
edges?: Maybe<Array<TrelloPlannerAccountEdge>>;
|
|
67561
|
+
nodes?: Maybe<Array<TrelloPlannerAccount>>;
|
|
67562
|
+
pageInfo: PageInfo;
|
|
67563
|
+
};
|
|
67564
|
+
export declare type TrelloPlannerAccountEdge = {
|
|
67565
|
+
__typename?: 'TrelloPlannerAccountEdge';
|
|
67566
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67567
|
+
node?: Maybe<TrelloPlannerAccount>;
|
|
67568
|
+
};
|
|
67569
|
+
export declare type TrelloPlannerCalendar = Node & {
|
|
67570
|
+
__typename?: 'TrelloPlannerCalendar';
|
|
67571
|
+
color: Scalars['String']['output'];
|
|
67572
|
+
enabled: Scalars['Boolean']['output'];
|
|
67573
|
+
id: Scalars['ID']['output'];
|
|
67574
|
+
memberId: Scalars['ID']['output'];
|
|
67575
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
67576
|
+
timezone: Scalars['String']['output'];
|
|
67577
|
+
title: Scalars['String']['output'];
|
|
67578
|
+
type: TrelloSupportedPlannerProviders;
|
|
67579
|
+
workspaceId: Scalars['ID']['output'];
|
|
67580
|
+
};
|
|
67581
|
+
export declare type TrelloPlannerCalendarConnection = {
|
|
67582
|
+
__typename?: 'TrelloPlannerCalendarConnection';
|
|
67583
|
+
edges?: Maybe<Array<TrelloPlannerCalendarEdge>>;
|
|
67584
|
+
nodes?: Maybe<Array<TrelloPlannerCalendar>>;
|
|
67585
|
+
pageInfo: PageInfo;
|
|
67586
|
+
updateCursor?: Maybe<Scalars['String']['output']>;
|
|
67587
|
+
};
|
|
67588
|
+
export declare type TrelloPlannerCalendarEdge = {
|
|
67589
|
+
__typename?: 'TrelloPlannerCalendarEdge';
|
|
67590
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67591
|
+
node?: Maybe<TrelloPlannerCalendar>;
|
|
67592
|
+
};
|
|
67411
67593
|
export declare type TrelloPopularLabelForColor = {
|
|
67412
67594
|
__typename?: 'TrelloPopularLabelForColor';
|
|
67413
67595
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -67472,6 +67654,8 @@ export declare type TrelloQueryApi = {
|
|
|
67472
67654
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
67473
67655
|
list?: Maybe<TrelloList>;
|
|
67474
67656
|
member?: Maybe<TrelloMember>;
|
|
67657
|
+
plannerAccountsByMemberId?: Maybe<TrelloPlannerAccountConnection>;
|
|
67658
|
+
plannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
67475
67659
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
67476
67660
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
67477
67661
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
@@ -67499,6 +67683,16 @@ export declare type TrelloQueryApiListArgs = {
|
|
|
67499
67683
|
export declare type TrelloQueryApiMemberArgs = {
|
|
67500
67684
|
id: Scalars['ID']['input'];
|
|
67501
67685
|
};
|
|
67686
|
+
export declare type TrelloQueryApiPlannerAccountsByMemberIdArgs = {
|
|
67687
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67688
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67689
|
+
id: Scalars['ID']['input'];
|
|
67690
|
+
};
|
|
67691
|
+
export declare type TrelloQueryApiPlannerCalendarsByAccountIdArgs = {
|
|
67692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
67693
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
67694
|
+
id: Scalars['ID']['input'];
|
|
67695
|
+
};
|
|
67502
67696
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
67503
67697
|
ids: Array<Scalars['ID']['input']>;
|
|
67504
67698
|
};
|
|
@@ -67563,6 +67757,9 @@ export declare type TrelloSubscriptionApi = {
|
|
|
67563
67757
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
67564
67758
|
id: Scalars['ID']['input'];
|
|
67565
67759
|
};
|
|
67760
|
+
export declare enum TrelloSupportedPlannerProviders {
|
|
67761
|
+
Google = "GOOGLE"
|
|
67762
|
+
}
|
|
67566
67763
|
export declare type TrelloSwitcherViewsInfo = {
|
|
67567
67764
|
__typename?: 'TrelloSwitcherViewsInfo';
|
|
67568
67765
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -67749,6 +67946,7 @@ export declare type TrelloWorkspaceMembershipsConnection = {
|
|
|
67749
67946
|
export declare type TrelloWorkspacePrefs = {
|
|
67750
67947
|
__typename?: 'TrelloWorkspacePrefs';
|
|
67751
67948
|
associatedDomain?: Maybe<Scalars['String']['output']>;
|
|
67949
|
+
atlassianIntelligenceEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
67752
67950
|
attachmentRestrictions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
67753
67951
|
boardDeleteRestrict?: Maybe<TrelloBoardRestrictions>;
|
|
67754
67952
|
boardInviteRestrict?: Maybe<Scalars['String']['output']>;
|
|
@@ -68336,6 +68534,18 @@ export declare type UpdateCompassComponentTypeInput = {
|
|
|
68336
68534
|
type?: InputMaybe<CompassComponentType>;
|
|
68337
68535
|
typeId?: InputMaybe<Scalars['ID']['input']>;
|
|
68338
68536
|
};
|
|
68537
|
+
export declare type UpdateCompassComponentTypeMetadataInput = {
|
|
68538
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
68539
|
+
iconKey?: InputMaybe<Scalars['String']['input']>;
|
|
68540
|
+
id: Scalars['ID']['input'];
|
|
68541
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
68542
|
+
};
|
|
68543
|
+
export declare type UpdateCompassComponentTypeMetadataPayload = {
|
|
68544
|
+
__typename?: 'UpdateCompassComponentTypeMetadataPayload';
|
|
68545
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68546
|
+
success: Scalars['Boolean']['output'];
|
|
68547
|
+
updatedComponentType?: Maybe<CompassComponentTypeObject>;
|
|
68548
|
+
};
|
|
68339
68549
|
export declare type UpdateCompassComponentTypePayload = Payload & {
|
|
68340
68550
|
__typename?: 'UpdateCompassComponentTypePayload';
|
|
68341
68551
|
componentDetails?: Maybe<CompassComponent>;
|