@forge/cli-shared 6.5.1-next.3 → 6.5.1-next.5
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 +13 -0
- package/out/apps/register-app.d.ts +3 -2
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +11 -1
- package/out/config/config-file.d.ts +2 -1
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +22 -1
- package/out/graphql/graphql-types.d.ts +241 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -14
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -1
- package/package.json +2 -2
|
@@ -3955,6 +3955,22 @@ export declare type CompassAssistantAnswer = Node & {
|
|
|
3955
3955
|
status?: Maybe<Scalars['String']['output']>;
|
|
3956
3956
|
value?: Maybe<Scalars['String']['output']>;
|
|
3957
3957
|
};
|
|
3958
|
+
export declare type CompassAssistantConversation = {
|
|
3959
|
+
__typename?: 'CompassAssistantConversation';
|
|
3960
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3961
|
+
id: Scalars['ID']['output'];
|
|
3962
|
+
messages: Array<CompassAssistantMessage>;
|
|
3963
|
+
state: Scalars['String']['output'];
|
|
3964
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3965
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
3966
|
+
};
|
|
3967
|
+
export declare type CompassAssistantMessage = {
|
|
3968
|
+
__typename?: 'CompassAssistantMessage';
|
|
3969
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
3970
|
+
messageType: Scalars['String']['output'];
|
|
3971
|
+
role: Scalars['String']['output'];
|
|
3972
|
+
timestamp: Scalars['DateTime']['output'];
|
|
3973
|
+
};
|
|
3958
3974
|
export declare type CompassAttentionItem = Node & {
|
|
3959
3975
|
__typename?: 'CompassAttentionItem';
|
|
3960
3976
|
actionLabel: Scalars['String']['output'];
|
|
@@ -4085,6 +4101,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4085
4101
|
applyScorecardToComponent?: Maybe<ApplyCompassScorecardToComponentPayload>;
|
|
4086
4102
|
attachComponentDataManager?: Maybe<AttachCompassComponentDataManagerPayload>;
|
|
4087
4103
|
attachEventSource?: Maybe<AttachEventSourcePayload>;
|
|
4104
|
+
continueChat?: Maybe<CompassAssistantConversation>;
|
|
4088
4105
|
createAnnouncement?: Maybe<CompassCreateAnnouncementPayload>;
|
|
4089
4106
|
createAssistantAnswer?: Maybe<CompassCreateAssistantAnswerPayload>;
|
|
4090
4107
|
createCampaign?: Maybe<CompassCreateCampaignPayload>;
|
|
@@ -4138,6 +4155,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
4138
4155
|
removeTeamLabels?: Maybe<CompassRemoveTeamLabelsPayload>;
|
|
4139
4156
|
revokeJqlMetricSourceUser?: Maybe<CompassRevokeJqlMetricSourceUserPayload>;
|
|
4140
4157
|
setEntityProperty?: Maybe<CompassSetEntityPropertyPayload>;
|
|
4158
|
+
startChat?: Maybe<CompassAssistantConversation>;
|
|
4141
4159
|
synchronizeLinkAssociations?: Maybe<CompassSynchronizeLinkAssociationsPayload>;
|
|
4142
4160
|
unlinkExternalSource?: Maybe<UnlinkExternalSourcePayload>;
|
|
4143
4161
|
unsetEntityProperty?: Maybe<CompassUnsetEntityPropertyPayload>;
|
|
@@ -4184,6 +4202,11 @@ export declare type CompassCatalogMutationApiAttachComponentDataManagerArgs = {
|
|
|
4184
4202
|
export declare type CompassCatalogMutationApiAttachEventSourceArgs = {
|
|
4185
4203
|
input: AttachEventSourceInput;
|
|
4186
4204
|
};
|
|
4205
|
+
export declare type CompassCatalogMutationApiContinueChatArgs = {
|
|
4206
|
+
cloudId: Scalars['ID']['input'];
|
|
4207
|
+
conversationId: Scalars['ID']['input'];
|
|
4208
|
+
message: Scalars['String']['input'];
|
|
4209
|
+
};
|
|
4187
4210
|
export declare type CompassCatalogMutationApiCreateAnnouncementArgs = {
|
|
4188
4211
|
input: CompassCreateAnnouncementInput;
|
|
4189
4212
|
};
|
|
@@ -4352,6 +4375,10 @@ export declare type CompassCatalogMutationApiRevokeJqlMetricSourceUserArgs = {
|
|
|
4352
4375
|
export declare type CompassCatalogMutationApiSetEntityPropertyArgs = {
|
|
4353
4376
|
input: CompassSetEntityPropertyInput;
|
|
4354
4377
|
};
|
|
4378
|
+
export declare type CompassCatalogMutationApiStartChatArgs = {
|
|
4379
|
+
cloudId: Scalars['ID']['input'];
|
|
4380
|
+
message: Scalars['String']['input'];
|
|
4381
|
+
};
|
|
4355
4382
|
export declare type CompassCatalogMutationApiSynchronizeLinkAssociationsArgs = {
|
|
4356
4383
|
input?: InputMaybe<CompassSynchronizeLinkAssociationsInput>;
|
|
4357
4384
|
};
|
|
@@ -4441,6 +4468,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
4441
4468
|
componentTypes?: Maybe<CompassComponentTypesQueryResult>;
|
|
4442
4469
|
components?: Maybe<Array<CompassComponent>>;
|
|
4443
4470
|
componentsByReferences?: Maybe<Array<CompassComponent>>;
|
|
4471
|
+
conversation?: Maybe<CompassAssistantConversation>;
|
|
4444
4472
|
customFieldDefinition?: Maybe<CompassCustomFieldDefinitionResult>;
|
|
4445
4473
|
customFieldDefinitions?: Maybe<CompassCustomFieldDefinitionsResult>;
|
|
4446
4474
|
customPermissionConfigs?: Maybe<CompassCustomPermissionConfigsResult>;
|
|
@@ -4522,6 +4550,10 @@ export declare type CompassCatalogQueryApiComponentsArgs = {
|
|
|
4522
4550
|
export declare type CompassCatalogQueryApiComponentsByReferencesArgs = {
|
|
4523
4551
|
references: Array<ComponentReferenceInput>;
|
|
4524
4552
|
};
|
|
4553
|
+
export declare type CompassCatalogQueryApiConversationArgs = {
|
|
4554
|
+
cloudId: Scalars['ID']['input'];
|
|
4555
|
+
conversationId: Scalars['ID']['input'];
|
|
4556
|
+
};
|
|
4525
4557
|
export declare type CompassCatalogQueryApiCustomFieldDefinitionArgs = {
|
|
4526
4558
|
query: CompassCustomFieldDefinitionQuery;
|
|
4527
4559
|
};
|
|
@@ -28515,6 +28547,8 @@ export declare type GraphStore = {
|
|
|
28515
28547
|
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
28516
28548
|
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28517
28549
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28550
|
+
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28551
|
+
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28518
28552
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28519
28553
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
28520
28554
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
@@ -28531,6 +28565,8 @@ export declare type GraphStore = {
|
|
|
28531
28565
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
28532
28566
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
28533
28567
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
28568
|
+
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
28569
|
+
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
28534
28570
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
28535
28571
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28536
28572
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
@@ -28670,6 +28706,7 @@ export declare type GraphStoreAtlasGoalHasSubAtlasGoalInverseArgs = {
|
|
|
28670
28706
|
};
|
|
28671
28707
|
export declare type GraphStoreAtlasHomeFeedArgs = {
|
|
28672
28708
|
container_ids: Array<Scalars['ID']['input']>;
|
|
28709
|
+
ranking_criteria?: InputMaybe<GraphStoreAtlasHomeRankingCriteria>;
|
|
28673
28710
|
};
|
|
28674
28711
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalArgs = {
|
|
28675
28712
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30922,6 +30959,20 @@ export declare type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
|
30922
30959
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30923
30960
|
id: Scalars['ID']['input'];
|
|
30924
30961
|
};
|
|
30962
|
+
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
30963
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30964
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30965
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30966
|
+
id: Scalars['ID']['input'];
|
|
30967
|
+
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
30968
|
+
};
|
|
30969
|
+
export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
30970
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30971
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30972
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30973
|
+
id: Scalars['ID']['input'];
|
|
30974
|
+
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
30975
|
+
};
|
|
30925
30976
|
export declare type GraphStoreUserAuthoredPrArgs = {
|
|
30926
30977
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30927
30978
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31034,6 +31085,20 @@ export declare type GraphStoreUserOwnsComponentInverseArgs = {
|
|
|
31034
31085
|
id: Scalars['ID']['input'];
|
|
31035
31086
|
sort?: InputMaybe<GraphStoreUserOwnsComponentSortInput>;
|
|
31036
31087
|
};
|
|
31088
|
+
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
31089
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31090
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31091
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31092
|
+
id: Scalars['ID']['input'];
|
|
31093
|
+
sort?: InputMaybe<GraphStoreUserReportedIncidentSortInput>;
|
|
31094
|
+
};
|
|
31095
|
+
export declare type GraphStoreUserReportedIncidentInverseArgs = {
|
|
31096
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31097
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31098
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31099
|
+
id: Scalars['ID']['input'];
|
|
31100
|
+
sort?: InputMaybe<GraphStoreUserReportedIncidentSortInput>;
|
|
31101
|
+
};
|
|
31037
31102
|
export declare type GraphStoreUserReportsIssueArgs = {
|
|
31038
31103
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31039
31104
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31474,6 +31539,13 @@ export declare type GraphStoreAtlasHomeQueryNode = {
|
|
|
31474
31539
|
item?: Maybe<GraphStoreAtlasHomeQueryItem>;
|
|
31475
31540
|
source: Scalars['String']['output'];
|
|
31476
31541
|
};
|
|
31542
|
+
export declare type GraphStoreAtlasHomeRankingCriteria = {
|
|
31543
|
+
criteria: GraphStoreAtlasHomeRankingCriteriaEnum;
|
|
31544
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
31545
|
+
};
|
|
31546
|
+
export declare enum GraphStoreAtlasHomeRankingCriteriaEnum {
|
|
31547
|
+
RoundRobinRandom = "ROUND_ROBIN_RANDOM"
|
|
31548
|
+
}
|
|
31477
31549
|
export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
|
|
31478
31550
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
31479
31551
|
};
|
|
@@ -40080,6 +40152,34 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
40080
40152
|
};
|
|
40081
40153
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion = JiraIssue;
|
|
40082
40154
|
export declare type GraphStoreSimplifiedTestPerfhammerRelationshipUnion = ExternalBuildInfo;
|
|
40155
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
40156
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
40157
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
40158
|
+
pageInfo: PageInfo;
|
|
40159
|
+
};
|
|
40160
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentEdge = {
|
|
40161
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentEdge';
|
|
40162
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40163
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40164
|
+
id: Scalars['ID']['output'];
|
|
40165
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40166
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIncidentUnion>;
|
|
40167
|
+
};
|
|
40168
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseConnection = HasPageInfo & {
|
|
40169
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentInverseConnection';
|
|
40170
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseEdge>>>;
|
|
40171
|
+
pageInfo: PageInfo;
|
|
40172
|
+
};
|
|
40173
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
40174
|
+
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentInverseEdge';
|
|
40175
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40176
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40177
|
+
id: Scalars['ID']['output'];
|
|
40178
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40179
|
+
node?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseUnion>;
|
|
40180
|
+
};
|
|
40181
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40182
|
+
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
40083
40183
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
40084
40184
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
40085
40185
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -40312,6 +40412,34 @@ export declare type GraphStoreSimplifiedUserOwnsComponentInverseEdge = {
|
|
|
40312
40412
|
};
|
|
40313
40413
|
export declare type GraphStoreSimplifiedUserOwnsComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40314
40414
|
export declare type GraphStoreSimplifiedUserOwnsComponentUnion = CompassComponent;
|
|
40415
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
40416
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
40417
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
40418
|
+
pageInfo: PageInfo;
|
|
40419
|
+
};
|
|
40420
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentEdge = {
|
|
40421
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentEdge';
|
|
40422
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40423
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40424
|
+
id: Scalars['ID']['output'];
|
|
40425
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40426
|
+
node?: Maybe<GraphStoreSimplifiedUserReportedIncidentUnion>;
|
|
40427
|
+
};
|
|
40428
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentInverseConnection = HasPageInfo & {
|
|
40429
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentInverseConnection';
|
|
40430
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentInverseEdge>>>;
|
|
40431
|
+
pageInfo: PageInfo;
|
|
40432
|
+
};
|
|
40433
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentInverseEdge = {
|
|
40434
|
+
__typename?: 'GraphStoreSimplifiedUserReportedIncidentInverseEdge';
|
|
40435
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40436
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40437
|
+
id: Scalars['ID']['output'];
|
|
40438
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40439
|
+
node?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseUnion>;
|
|
40440
|
+
};
|
|
40441
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40442
|
+
export declare type GraphStoreSimplifiedUserReportedIncidentUnion = JiraIssue;
|
|
40315
40443
|
export declare type GraphStoreSimplifiedUserReportsIssueConnection = HasPageInfo & {
|
|
40316
40444
|
__typename?: 'GraphStoreSimplifiedUserReportsIssueConnection';
|
|
40317
40445
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportsIssueEdge>>>;
|
|
@@ -41242,6 +41370,9 @@ export declare type GraphStoreTestPerfhammerMaterializationSortInput = {
|
|
|
41242
41370
|
export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
41243
41371
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41244
41372
|
};
|
|
41373
|
+
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
41374
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41375
|
+
};
|
|
41245
41376
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
41246
41377
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41247
41378
|
};
|
|
@@ -41272,6 +41403,9 @@ export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
|
41272
41403
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41273
41404
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
41274
41405
|
};
|
|
41406
|
+
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
41407
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41408
|
+
};
|
|
41275
41409
|
export declare type GraphStoreUserReportsIssueSortInput = {
|
|
41276
41410
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41277
41411
|
};
|
|
@@ -42649,6 +42783,7 @@ export declare type HelpLayout = Node & {
|
|
|
42649
42783
|
id: Scalars['ID']['output'];
|
|
42650
42784
|
reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
|
|
42651
42785
|
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
42786
|
+
type?: Maybe<HelpLayoutType>;
|
|
42652
42787
|
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
42653
42788
|
};
|
|
42654
42789
|
export declare type HelpLayoutSectionsArgs = {
|
|
@@ -42805,6 +42940,7 @@ export declare type HelpLayoutCreatePayload = Payload & {
|
|
|
42805
42940
|
export declare type HelpLayoutCreationInput = {
|
|
42806
42941
|
parentAri: Scalars['ID']['input'];
|
|
42807
42942
|
sections: Array<HelpLayoutSectionInput>;
|
|
42943
|
+
type?: InputMaybe<HelpLayoutType>;
|
|
42808
42944
|
};
|
|
42809
42945
|
export declare type HelpLayoutEditorElement = HelpLayoutVisualEntity & Node & {
|
|
42810
42946
|
__typename?: 'HelpLayoutEditorElement';
|
|
@@ -43216,6 +43352,10 @@ export declare type HelpLayoutTopicsListInput = {
|
|
|
43216
43352
|
elementTitle?: InputMaybe<Scalars['String']['input']>;
|
|
43217
43353
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
43218
43354
|
};
|
|
43355
|
+
export declare enum HelpLayoutType {
|
|
43356
|
+
CustomPage = "CUSTOM_PAGE",
|
|
43357
|
+
HomePage = "HOME_PAGE"
|
|
43358
|
+
}
|
|
43219
43359
|
export declare type HelpLayoutUpdateInput = {
|
|
43220
43360
|
layoutId: Scalars['ID']['input'];
|
|
43221
43361
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -50722,6 +50862,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
50722
50862
|
User = "USER",
|
|
50723
50863
|
Version = "VERSION"
|
|
50724
50864
|
}
|
|
50865
|
+
export declare type JiraJqlBoardInput = {
|
|
50866
|
+
boardId?: InputMaybe<Scalars['Long']['input']>;
|
|
50867
|
+
};
|
|
50725
50868
|
export declare type JiraJqlBuilder = {
|
|
50726
50869
|
__typename?: 'JiraJqlBuilder';
|
|
50727
50870
|
cascadingSelectValues?: Maybe<JiraJqlCascadingOptionFieldValueConnection>;
|
|
@@ -50754,6 +50897,7 @@ export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
|
50754
50897
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
50755
50898
|
jqlTerm: Scalars['String']['input'];
|
|
50756
50899
|
projectOptions?: InputMaybe<JiraProjectOptions>;
|
|
50900
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
50757
50901
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
50758
50902
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
50759
50903
|
};
|
|
@@ -51110,6 +51254,9 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
51110
51254
|
jqlTerm: Scalars['String']['output'];
|
|
51111
51255
|
resolution?: Maybe<JiraResolution>;
|
|
51112
51256
|
};
|
|
51257
|
+
export declare type JiraJqlScopeInput = {
|
|
51258
|
+
board?: InputMaybe<JiraJqlBoardInput>;
|
|
51259
|
+
};
|
|
51113
51260
|
export declare type JiraJqlSearchTemplate = {
|
|
51114
51261
|
__typename?: 'JiraJqlSearchTemplate';
|
|
51115
51262
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -53692,6 +53839,7 @@ export declare type JiraProject = Node & {
|
|
|
53692
53839
|
projectUrl?: Maybe<Scalars['String']['output']>;
|
|
53693
53840
|
projectWithVisibleIssueTypeIds?: Maybe<JiraProjectWithIssueTypeIds>;
|
|
53694
53841
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
53842
|
+
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
53695
53843
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
53696
53844
|
servicesAvailableToLinkWith?: Maybe<DevOpsServiceConnection>;
|
|
53697
53845
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
@@ -53811,6 +53959,10 @@ export declare type JiraProjectRepositoriesArgs = {
|
|
|
53811
53959
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53812
53960
|
sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
|
|
53813
53961
|
};
|
|
53962
|
+
export declare type JiraProjectRequestTypesArgs = {
|
|
53963
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53964
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53965
|
+
};
|
|
53814
53966
|
export declare type JiraProjectServicesAvailableToLinkWithArgs = {
|
|
53815
53967
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53816
53968
|
filter?: InputMaybe<DevOpsServicesFilterInput>;
|
|
@@ -59132,6 +59284,7 @@ export declare type JiraUserPreferences = {
|
|
|
59132
59284
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
59133
59285
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
59134
59286
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
59287
|
+
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
59135
59288
|
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
59136
59289
|
};
|
|
59137
59290
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
@@ -59140,12 +59293,16 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
59140
59293
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
59141
59294
|
projectKey: Scalars['String']['input'];
|
|
59142
59295
|
};
|
|
59296
|
+
export declare type JiraUserPreferencesRequestTypeTableViewSettingsArgs = {
|
|
59297
|
+
projectKey: Scalars['String']['input'];
|
|
59298
|
+
};
|
|
59143
59299
|
export declare type JiraUserPreferencesShowDateFieldAssociationMessageByIssueKeyArgs = {
|
|
59144
59300
|
issueKey: Scalars['String']['input'];
|
|
59145
59301
|
};
|
|
59146
59302
|
export declare type JiraUserPreferencesMutation = {
|
|
59147
59303
|
__typename?: 'JiraUserPreferencesMutation';
|
|
59148
59304
|
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
59305
|
+
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
59149
59306
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
59150
59307
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
59151
59308
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
@@ -59154,6 +59311,10 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
59154
59311
|
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
59155
59312
|
issueKey: Scalars['String']['input'];
|
|
59156
59313
|
};
|
|
59314
|
+
export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsArgs = {
|
|
59315
|
+
projectKey: Scalars['String']['input'];
|
|
59316
|
+
viewSettings: Scalars['String']['input'];
|
|
59317
|
+
};
|
|
59157
59318
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
59158
59319
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
59159
59320
|
};
|
|
@@ -61646,6 +61807,15 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
61646
61807
|
Person = "PERSON",
|
|
61647
61808
|
Team = "TEAM"
|
|
61648
61809
|
}
|
|
61810
|
+
export declare enum KnowledgeDiscoverySearchQueryClassificationSubtype {
|
|
61811
|
+
Command = "COMMAND",
|
|
61812
|
+
Confluence = "CONFLUENCE",
|
|
61813
|
+
Evaluate = "EVALUATE",
|
|
61814
|
+
Jira = "JIRA",
|
|
61815
|
+
JobTitle = "JOB_TITLE",
|
|
61816
|
+
Llm = "LLM",
|
|
61817
|
+
Question = "QUESTION"
|
|
61818
|
+
}
|
|
61649
61819
|
export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
61650
61820
|
__typename?: 'KnowledgeDiscoverySearchRelatedEntities';
|
|
61651
61821
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
@@ -61654,6 +61824,7 @@ export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDis
|
|
|
61654
61824
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
61655
61825
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
61656
61826
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
61827
|
+
subTypes?: Maybe<Array<Maybe<KnowledgeDiscoverySearchQueryClassificationSubtype>>>;
|
|
61657
61828
|
transformedQuery: Scalars['String']['output'];
|
|
61658
61829
|
};
|
|
61659
61830
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
@@ -63206,6 +63377,17 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
63206
63377
|
vendorId: Scalars['String']['output'];
|
|
63207
63378
|
vendorLinks?: Maybe<MarketplaceConsoleVendorLinks>;
|
|
63208
63379
|
};
|
|
63380
|
+
export declare type MarketplaceConsoleProductListingAdditionalChecks = {
|
|
63381
|
+
__typename?: 'MarketplaceConsoleProductListingAdditionalChecks';
|
|
63382
|
+
canProductBeDelisted?: Maybe<Scalars['Boolean']['output']>;
|
|
63383
|
+
isProductJiraCompatible?: Maybe<Scalars['Boolean']['output']>;
|
|
63384
|
+
};
|
|
63385
|
+
export declare type MarketplaceConsoleProductListingAdditionalChecksInput = {
|
|
63386
|
+
cloudAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
63387
|
+
dataCenterAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
63388
|
+
productId: Scalars['ID']['input'];
|
|
63389
|
+
serverAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
63390
|
+
};
|
|
63209
63391
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
63210
63392
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
63211
63393
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -63253,6 +63435,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
63253
63435
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
63254
63436
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
63255
63437
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
63438
|
+
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
63256
63439
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
63257
63440
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
63258
63441
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
@@ -63312,6 +63495,9 @@ export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
|
63312
63495
|
appKey: Scalars['ID']['input'];
|
|
63313
63496
|
productId: Scalars['ID']['input'];
|
|
63314
63497
|
};
|
|
63498
|
+
export declare type MarketplaceConsoleQueryApiProductListingAdditionalChecksArgs = {
|
|
63499
|
+
productListingAdditionalChecksInput: MarketplaceConsoleProductListingAdditionalChecksInput;
|
|
63500
|
+
};
|
|
63315
63501
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
63316
63502
|
appId: Scalars['ID']['input'];
|
|
63317
63503
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -65185,6 +65371,7 @@ export declare type MercuryQueryApi = {
|
|
|
65185
65371
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
65186
65372
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
65187
65373
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
65374
|
+
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
65188
65375
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
65189
65376
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
65190
65377
|
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
@@ -65246,6 +65433,9 @@ export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
|
65246
65433
|
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
65247
65434
|
cloudId: Scalars['ID']['input'];
|
|
65248
65435
|
};
|
|
65436
|
+
export declare type MercuryQueryApiFocusAreaTypesByArisArgs = {
|
|
65437
|
+
ids: Array<Scalars['ID']['input']>;
|
|
65438
|
+
};
|
|
65249
65439
|
export declare type MercuryQueryApiFocusAreasArgs = {
|
|
65250
65440
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65251
65441
|
cloudId: Scalars['ID']['input'];
|
|
@@ -73039,9 +73229,11 @@ export declare type QuerySpacesWithExemptionsArgs = {
|
|
|
73039
73229
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
73040
73230
|
};
|
|
73041
73231
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
73232
|
+
appId: Scalars['ID']['input'];
|
|
73042
73233
|
installationId: Scalars['ID']['input'];
|
|
73043
73234
|
};
|
|
73044
73235
|
export declare type QuerySqlSlowQueryLogsArgs = {
|
|
73236
|
+
appId: Scalars['ID']['input'];
|
|
73045
73237
|
installationId: Scalars['ID']['input'];
|
|
73046
73238
|
interval: QueryInterval;
|
|
73047
73239
|
queryType: Array<QueryType>;
|
|
@@ -73530,6 +73722,7 @@ export declare type RadarWorkspace = {
|
|
|
73530
73722
|
__typename?: 'RadarWorkspace';
|
|
73531
73723
|
entityId: Scalars['ID']['output'];
|
|
73532
73724
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
73725
|
+
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
73533
73726
|
functions: Array<RadarFunction>;
|
|
73534
73727
|
id: Scalars['ID']['output'];
|
|
73535
73728
|
positionFields: Array<RadarFieldDefinition>;
|
|
@@ -80837,18 +81030,26 @@ export declare type TrelloAttachmentConnection = {
|
|
|
80837
81030
|
nodes?: Maybe<Array<TrelloAttachment>>;
|
|
80838
81031
|
pageInfo: PageInfo;
|
|
80839
81032
|
};
|
|
81033
|
+
export declare type TrelloAttachmentConnectionUpdated = {
|
|
81034
|
+
__typename?: 'TrelloAttachmentConnectionUpdated';
|
|
81035
|
+
edges?: Maybe<Array<TrelloAttachmentEdgeUpdated>>;
|
|
81036
|
+
};
|
|
80840
81037
|
export declare type TrelloAttachmentEdge = {
|
|
80841
81038
|
__typename?: 'TrelloAttachmentEdge';
|
|
80842
81039
|
cursor: Scalars['String']['output'];
|
|
80843
81040
|
node: TrelloAttachment;
|
|
80844
81041
|
};
|
|
81042
|
+
export declare type TrelloAttachmentEdgeUpdated = {
|
|
81043
|
+
__typename?: 'TrelloAttachmentEdgeUpdated';
|
|
81044
|
+
node: TrelloAttachment;
|
|
81045
|
+
};
|
|
80845
81046
|
export declare type TrelloBoard = Node & {
|
|
80846
81047
|
__typename?: 'TrelloBoard';
|
|
80847
81048
|
closed: Scalars['Boolean']['output'];
|
|
80848
81049
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
80849
81050
|
creator?: Maybe<TrelloMember>;
|
|
80850
81051
|
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
80851
|
-
description?: Maybe<
|
|
81052
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
80852
81053
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
80853
81054
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
80854
81055
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
@@ -81042,6 +81243,7 @@ export declare type TrelloBoardPrefs = {
|
|
|
81042
81243
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
81043
81244
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
81044
81245
|
selfJoin?: Maybe<Scalars['Boolean']['output']>;
|
|
81246
|
+
showCompleteStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
81045
81247
|
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
81046
81248
|
voting?: Maybe<Scalars['String']['output']>;
|
|
81047
81249
|
};
|
|
@@ -81065,7 +81267,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
81065
81267
|
__typename?: 'TrelloBoardUpdated';
|
|
81066
81268
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
81067
81269
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
81068
|
-
description?: Maybe<
|
|
81270
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
81069
81271
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
81070
81272
|
id?: Maybe<Scalars['ID']['output']>;
|
|
81071
81273
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
@@ -81126,7 +81328,7 @@ export declare type TrelloCard = Node & {
|
|
|
81126
81328
|
cover?: Maybe<TrelloCardCover>;
|
|
81127
81329
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
81128
81330
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
81129
|
-
description?: Maybe<
|
|
81331
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
81130
81332
|
due?: Maybe<TrelloCardDueInfo>;
|
|
81131
81333
|
id: Scalars['ID']['output'];
|
|
81132
81334
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -81312,7 +81514,9 @@ export declare enum TrelloCardRole {
|
|
|
81312
81514
|
}
|
|
81313
81515
|
export declare type TrelloCardUpdated = {
|
|
81314
81516
|
__typename?: 'TrelloCardUpdated';
|
|
81517
|
+
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
81315
81518
|
badges?: Maybe<TrelloCardBadges>;
|
|
81519
|
+
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
81316
81520
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
81317
81521
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
81318
81522
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
@@ -81340,7 +81544,8 @@ export declare type TrelloCardViewer = {
|
|
|
81340
81544
|
};
|
|
81341
81545
|
export declare type TrelloCheckItem = {
|
|
81342
81546
|
__typename?: 'TrelloCheckItem';
|
|
81343
|
-
|
|
81547
|
+
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
81548
|
+
name?: Maybe<TrelloUserGeneratedText>;
|
|
81344
81549
|
objectId: Scalars['ID']['output'];
|
|
81345
81550
|
position?: Maybe<Scalars['Float']['output']>;
|
|
81346
81551
|
state?: Maybe<TrelloCheckItemState>;
|
|
@@ -81351,11 +81556,24 @@ export declare type TrelloCheckItemConnection = {
|
|
|
81351
81556
|
nodes?: Maybe<Array<TrelloCheckItem>>;
|
|
81352
81557
|
pageInfo: PageInfo;
|
|
81353
81558
|
};
|
|
81559
|
+
export declare type TrelloCheckItemConnectionUpdated = {
|
|
81560
|
+
__typename?: 'TrelloCheckItemConnectionUpdated';
|
|
81561
|
+
edges?: Maybe<Array<TrelloCheckItemEdgeUpdated>>;
|
|
81562
|
+
};
|
|
81563
|
+
export declare type TrelloCheckItemDueInfo = {
|
|
81564
|
+
__typename?: 'TrelloCheckItemDueInfo';
|
|
81565
|
+
at?: Maybe<Scalars['DateTime']['output']>;
|
|
81566
|
+
reminder?: Maybe<Scalars['Int']['output']>;
|
|
81567
|
+
};
|
|
81354
81568
|
export declare type TrelloCheckItemEdge = {
|
|
81355
81569
|
__typename?: 'TrelloCheckItemEdge';
|
|
81356
81570
|
cursor: Scalars['String']['output'];
|
|
81357
81571
|
node: TrelloCheckItem;
|
|
81358
81572
|
};
|
|
81573
|
+
export declare type TrelloCheckItemEdgeUpdated = {
|
|
81574
|
+
__typename?: 'TrelloCheckItemEdgeUpdated';
|
|
81575
|
+
node: TrelloCheckItem;
|
|
81576
|
+
};
|
|
81359
81577
|
export declare enum TrelloCheckItemState {
|
|
81360
81578
|
Complete = "COMPLETE",
|
|
81361
81579
|
Incomplete = "INCOMPLETE"
|
|
@@ -81379,11 +81597,26 @@ export declare type TrelloChecklistConnection = {
|
|
|
81379
81597
|
nodes?: Maybe<Array<TrelloChecklist>>;
|
|
81380
81598
|
pageInfo: PageInfo;
|
|
81381
81599
|
};
|
|
81600
|
+
export declare type TrelloChecklistConnectionUpdated = {
|
|
81601
|
+
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
81602
|
+
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
81603
|
+
};
|
|
81382
81604
|
export declare type TrelloChecklistEdge = {
|
|
81383
81605
|
__typename?: 'TrelloChecklistEdge';
|
|
81384
81606
|
cursor: Scalars['String']['output'];
|
|
81385
81607
|
node: TrelloChecklist;
|
|
81386
81608
|
};
|
|
81609
|
+
export declare type TrelloChecklistEdgeUpdated = {
|
|
81610
|
+
__typename?: 'TrelloChecklistEdgeUpdated';
|
|
81611
|
+
node: TrelloChecklistUpdated;
|
|
81612
|
+
};
|
|
81613
|
+
export declare type TrelloChecklistUpdated = {
|
|
81614
|
+
__typename?: 'TrelloChecklistUpdated';
|
|
81615
|
+
checkItems?: Maybe<TrelloCheckItemConnectionUpdated>;
|
|
81616
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
81617
|
+
objectId: Scalars['ID']['output'];
|
|
81618
|
+
position?: Maybe<Scalars['Float']['output']>;
|
|
81619
|
+
};
|
|
81387
81620
|
export declare type TrelloCreateCardInput = {
|
|
81388
81621
|
listId: Scalars['ID']['input'];
|
|
81389
81622
|
name: Scalars['String']['input'];
|
|
@@ -81505,35 +81738,6 @@ export declare type TrelloDeletePlannerCalendarEventPayload = Payload & {
|
|
|
81505
81738
|
event?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
81506
81739
|
success: Scalars['Boolean']['output'];
|
|
81507
81740
|
};
|
|
81508
|
-
export declare type TrelloDescription = {
|
|
81509
|
-
__typename?: 'TrelloDescription';
|
|
81510
|
-
customData?: Maybe<TrelloDescriptionData>;
|
|
81511
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
81512
|
-
};
|
|
81513
|
-
export declare type TrelloDescriptionCustomEmoji = {
|
|
81514
|
-
__typename?: 'TrelloDescriptionCustomEmoji';
|
|
81515
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
81516
|
-
url?: Maybe<Scalars['URL']['output']>;
|
|
81517
|
-
};
|
|
81518
|
-
export declare type TrelloDescriptionCustomEmojiConnection = {
|
|
81519
|
-
__typename?: 'TrelloDescriptionCustomEmojiConnection';
|
|
81520
|
-
edges?: Maybe<Array<TrelloDescriptionCustomEmojiEdge>>;
|
|
81521
|
-
nodes?: Maybe<Array<TrelloDescriptionCustomEmoji>>;
|
|
81522
|
-
pageInfo: PageInfo;
|
|
81523
|
-
};
|
|
81524
|
-
export declare type TrelloDescriptionCustomEmojiEdge = {
|
|
81525
|
-
__typename?: 'TrelloDescriptionCustomEmojiEdge';
|
|
81526
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
81527
|
-
node?: Maybe<TrelloDescriptionCustomEmoji>;
|
|
81528
|
-
};
|
|
81529
|
-
export declare type TrelloDescriptionData = {
|
|
81530
|
-
__typename?: 'TrelloDescriptionData';
|
|
81531
|
-
emojis?: Maybe<TrelloDescriptionCustomEmojiConnection>;
|
|
81532
|
-
};
|
|
81533
|
-
export declare type TrelloDescriptionDataEmojisArgs = {
|
|
81534
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
81535
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81536
|
-
};
|
|
81537
81741
|
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
81538
81742
|
event: TrelloEditPlannerCalendarEventOptions;
|
|
81539
81743
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -82464,6 +82668,10 @@ export declare type TrelloUploadedBackground = {
|
|
|
82464
82668
|
__typename?: 'TrelloUploadedBackground';
|
|
82465
82669
|
objectId: Scalars['ID']['output'];
|
|
82466
82670
|
};
|
|
82671
|
+
export declare type TrelloUserGeneratedText = {
|
|
82672
|
+
__typename?: 'TrelloUserGeneratedText';
|
|
82673
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
82674
|
+
};
|
|
82467
82675
|
export declare type TrelloWatchCardInput = {
|
|
82468
82676
|
cardId: Scalars['ID']['input'];
|
|
82469
82677
|
};
|