@forge/cli-shared 6.5.1-next.4 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +230 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -14
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -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
|
};
|
|
@@ -50728,6 +50862,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
50728
50862
|
User = "USER",
|
|
50729
50863
|
Version = "VERSION"
|
|
50730
50864
|
}
|
|
50865
|
+
export declare type JiraJqlBoardInput = {
|
|
50866
|
+
boardId?: InputMaybe<Scalars['Long']['input']>;
|
|
50867
|
+
};
|
|
50731
50868
|
export declare type JiraJqlBuilder = {
|
|
50732
50869
|
__typename?: 'JiraJqlBuilder';
|
|
50733
50870
|
cascadingSelectValues?: Maybe<JiraJqlCascadingOptionFieldValueConnection>;
|
|
@@ -50760,6 +50897,7 @@ export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
|
50760
50897
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
50761
50898
|
jqlTerm: Scalars['String']['input'];
|
|
50762
50899
|
projectOptions?: InputMaybe<JiraProjectOptions>;
|
|
50900
|
+
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
50763
50901
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
50764
50902
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
50765
50903
|
};
|
|
@@ -51116,6 +51254,9 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
51116
51254
|
jqlTerm: Scalars['String']['output'];
|
|
51117
51255
|
resolution?: Maybe<JiraResolution>;
|
|
51118
51256
|
};
|
|
51257
|
+
export declare type JiraJqlScopeInput = {
|
|
51258
|
+
board?: InputMaybe<JiraJqlBoardInput>;
|
|
51259
|
+
};
|
|
51119
51260
|
export declare type JiraJqlSearchTemplate = {
|
|
51120
51261
|
__typename?: 'JiraJqlSearchTemplate';
|
|
51121
51262
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -59143,6 +59284,7 @@ export declare type JiraUserPreferences = {
|
|
|
59143
59284
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
59144
59285
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
59145
59286
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
59287
|
+
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
59146
59288
|
showDateFieldAssociationMessageByIssueKey?: Maybe<Scalars['Boolean']['output']>;
|
|
59147
59289
|
};
|
|
59148
59290
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
@@ -59151,12 +59293,16 @@ export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProject
|
|
|
59151
59293
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
59152
59294
|
projectKey: Scalars['String']['input'];
|
|
59153
59295
|
};
|
|
59296
|
+
export declare type JiraUserPreferencesRequestTypeTableViewSettingsArgs = {
|
|
59297
|
+
projectKey: Scalars['String']['input'];
|
|
59298
|
+
};
|
|
59154
59299
|
export declare type JiraUserPreferencesShowDateFieldAssociationMessageByIssueKeyArgs = {
|
|
59155
59300
|
issueKey: Scalars['String']['input'];
|
|
59156
59301
|
};
|
|
59157
59302
|
export declare type JiraUserPreferencesMutation = {
|
|
59158
59303
|
__typename?: 'JiraUserPreferencesMutation';
|
|
59159
59304
|
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
59305
|
+
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
59160
59306
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
59161
59307
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
59162
59308
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
@@ -59165,6 +59311,10 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
59165
59311
|
export declare type JiraUserPreferencesMutationDismissDateFieldAssociationMessageByIssueKeyArgs = {
|
|
59166
59312
|
issueKey: Scalars['String']['input'];
|
|
59167
59313
|
};
|
|
59314
|
+
export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsArgs = {
|
|
59315
|
+
projectKey: Scalars['String']['input'];
|
|
59316
|
+
viewSettings: Scalars['String']['input'];
|
|
59317
|
+
};
|
|
59168
59318
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
59169
59319
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
59170
59320
|
};
|
|
@@ -61657,6 +61807,15 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
61657
61807
|
Person = "PERSON",
|
|
61658
61808
|
Team = "TEAM"
|
|
61659
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
|
+
}
|
|
61660
61819
|
export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
61661
61820
|
__typename?: 'KnowledgeDiscoverySearchRelatedEntities';
|
|
61662
61821
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
@@ -61665,6 +61824,7 @@ export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDis
|
|
|
61665
61824
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
61666
61825
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
61667
61826
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
61827
|
+
subTypes?: Maybe<Array<Maybe<KnowledgeDiscoverySearchQueryClassificationSubtype>>>;
|
|
61668
61828
|
transformedQuery: Scalars['String']['output'];
|
|
61669
61829
|
};
|
|
61670
61830
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
@@ -63217,6 +63377,17 @@ export declare type MarketplaceConsoleProductListing = {
|
|
|
63217
63377
|
vendorId: Scalars['String']['output'];
|
|
63218
63378
|
vendorLinks?: Maybe<MarketplaceConsoleVendorLinks>;
|
|
63219
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
|
+
};
|
|
63220
63391
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
63221
63392
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
63222
63393
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -63264,6 +63435,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
63264
63435
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
63265
63436
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
63266
63437
|
product?: Maybe<MarketplaceConsoleProduct>;
|
|
63438
|
+
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
63267
63439
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
63268
63440
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
63269
63441
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
@@ -63323,6 +63495,9 @@ export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
|
63323
63495
|
appKey: Scalars['ID']['input'];
|
|
63324
63496
|
productId: Scalars['ID']['input'];
|
|
63325
63497
|
};
|
|
63498
|
+
export declare type MarketplaceConsoleQueryApiProductListingAdditionalChecksArgs = {
|
|
63499
|
+
productListingAdditionalChecksInput: MarketplaceConsoleProductListingAdditionalChecksInput;
|
|
63500
|
+
};
|
|
63326
63501
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
63327
63502
|
appId: Scalars['ID']['input'];
|
|
63328
63503
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -65196,6 +65371,7 @@ export declare type MercuryQueryApi = {
|
|
|
65196
65371
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
65197
65372
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
65198
65373
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
65374
|
+
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
65199
65375
|
focusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
65200
65376
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
65201
65377
|
forYouFocusAreaActivityHistory?: Maybe<MercuryForYouFocusAreaActivityHistory>;
|
|
@@ -65257,6 +65433,9 @@ export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
|
65257
65433
|
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
65258
65434
|
cloudId: Scalars['ID']['input'];
|
|
65259
65435
|
};
|
|
65436
|
+
export declare type MercuryQueryApiFocusAreaTypesByArisArgs = {
|
|
65437
|
+
ids: Array<Scalars['ID']['input']>;
|
|
65438
|
+
};
|
|
65260
65439
|
export declare type MercuryQueryApiFocusAreasArgs = {
|
|
65261
65440
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65262
65441
|
cloudId: Scalars['ID']['input'];
|
|
@@ -73050,9 +73229,11 @@ export declare type QuerySpacesWithExemptionsArgs = {
|
|
|
73050
73229
|
spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
73051
73230
|
};
|
|
73052
73231
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
73232
|
+
appId: Scalars['ID']['input'];
|
|
73053
73233
|
installationId: Scalars['ID']['input'];
|
|
73054
73234
|
};
|
|
73055
73235
|
export declare type QuerySqlSlowQueryLogsArgs = {
|
|
73236
|
+
appId: Scalars['ID']['input'];
|
|
73056
73237
|
installationId: Scalars['ID']['input'];
|
|
73057
73238
|
interval: QueryInterval;
|
|
73058
73239
|
queryType: Array<QueryType>;
|
|
@@ -73541,6 +73722,7 @@ export declare type RadarWorkspace = {
|
|
|
73541
73722
|
__typename?: 'RadarWorkspace';
|
|
73542
73723
|
entityId: Scalars['ID']['output'];
|
|
73543
73724
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
73725
|
+
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
73544
73726
|
functions: Array<RadarFunction>;
|
|
73545
73727
|
id: Scalars['ID']['output'];
|
|
73546
73728
|
positionFields: Array<RadarFieldDefinition>;
|
|
@@ -80848,18 +81030,26 @@ export declare type TrelloAttachmentConnection = {
|
|
|
80848
81030
|
nodes?: Maybe<Array<TrelloAttachment>>;
|
|
80849
81031
|
pageInfo: PageInfo;
|
|
80850
81032
|
};
|
|
81033
|
+
export declare type TrelloAttachmentConnectionUpdated = {
|
|
81034
|
+
__typename?: 'TrelloAttachmentConnectionUpdated';
|
|
81035
|
+
edges?: Maybe<Array<TrelloAttachmentEdgeUpdated>>;
|
|
81036
|
+
};
|
|
80851
81037
|
export declare type TrelloAttachmentEdge = {
|
|
80852
81038
|
__typename?: 'TrelloAttachmentEdge';
|
|
80853
81039
|
cursor: Scalars['String']['output'];
|
|
80854
81040
|
node: TrelloAttachment;
|
|
80855
81041
|
};
|
|
81042
|
+
export declare type TrelloAttachmentEdgeUpdated = {
|
|
81043
|
+
__typename?: 'TrelloAttachmentEdgeUpdated';
|
|
81044
|
+
node: TrelloAttachment;
|
|
81045
|
+
};
|
|
80856
81046
|
export declare type TrelloBoard = Node & {
|
|
80857
81047
|
__typename?: 'TrelloBoard';
|
|
80858
81048
|
closed: Scalars['Boolean']['output'];
|
|
80859
81049
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
80860
81050
|
creator?: Maybe<TrelloMember>;
|
|
80861
81051
|
customFields?: Maybe<TrelloCustomFieldConnection>;
|
|
80862
|
-
description?: Maybe<
|
|
81052
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
80863
81053
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
80864
81054
|
enterpriseOwned: Scalars['Boolean']['output'];
|
|
80865
81055
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
@@ -81053,6 +81243,7 @@ export declare type TrelloBoardPrefs = {
|
|
|
81053
81243
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
81054
81244
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
81055
81245
|
selfJoin?: Maybe<Scalars['Boolean']['output']>;
|
|
81246
|
+
showCompleteStatus?: Maybe<Scalars['Boolean']['output']>;
|
|
81056
81247
|
switcherViews?: Maybe<Array<Maybe<TrelloSwitcherViewsInfo>>>;
|
|
81057
81248
|
voting?: Maybe<Scalars['String']['output']>;
|
|
81058
81249
|
};
|
|
@@ -81076,7 +81267,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
81076
81267
|
__typename?: 'TrelloBoardUpdated';
|
|
81077
81268
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
81078
81269
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
81079
|
-
description?: Maybe<
|
|
81270
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
81080
81271
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
81081
81272
|
id?: Maybe<Scalars['ID']['output']>;
|
|
81082
81273
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
@@ -81137,7 +81328,7 @@ export declare type TrelloCard = Node & {
|
|
|
81137
81328
|
cover?: Maybe<TrelloCardCover>;
|
|
81138
81329
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
81139
81330
|
customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
|
|
81140
|
-
description?: Maybe<
|
|
81331
|
+
description?: Maybe<TrelloUserGeneratedText>;
|
|
81141
81332
|
due?: Maybe<TrelloCardDueInfo>;
|
|
81142
81333
|
id: Scalars['ID']['output'];
|
|
81143
81334
|
isTemplate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -81323,7 +81514,9 @@ export declare enum TrelloCardRole {
|
|
|
81323
81514
|
}
|
|
81324
81515
|
export declare type TrelloCardUpdated = {
|
|
81325
81516
|
__typename?: 'TrelloCardUpdated';
|
|
81517
|
+
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
81326
81518
|
badges?: Maybe<TrelloCardBadges>;
|
|
81519
|
+
checklists?: Maybe<TrelloChecklistConnectionUpdated>;
|
|
81327
81520
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
81328
81521
|
cover?: Maybe<TrelloCardCoverUpdated>;
|
|
81329
81522
|
creation?: Maybe<TrelloCardCreationInfo>;
|
|
@@ -81351,7 +81544,8 @@ export declare type TrelloCardViewer = {
|
|
|
81351
81544
|
};
|
|
81352
81545
|
export declare type TrelloCheckItem = {
|
|
81353
81546
|
__typename?: 'TrelloCheckItem';
|
|
81354
|
-
|
|
81547
|
+
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
81548
|
+
name?: Maybe<TrelloUserGeneratedText>;
|
|
81355
81549
|
objectId: Scalars['ID']['output'];
|
|
81356
81550
|
position?: Maybe<Scalars['Float']['output']>;
|
|
81357
81551
|
state?: Maybe<TrelloCheckItemState>;
|
|
@@ -81362,11 +81556,24 @@ export declare type TrelloCheckItemConnection = {
|
|
|
81362
81556
|
nodes?: Maybe<Array<TrelloCheckItem>>;
|
|
81363
81557
|
pageInfo: PageInfo;
|
|
81364
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
|
+
};
|
|
81365
81568
|
export declare type TrelloCheckItemEdge = {
|
|
81366
81569
|
__typename?: 'TrelloCheckItemEdge';
|
|
81367
81570
|
cursor: Scalars['String']['output'];
|
|
81368
81571
|
node: TrelloCheckItem;
|
|
81369
81572
|
};
|
|
81573
|
+
export declare type TrelloCheckItemEdgeUpdated = {
|
|
81574
|
+
__typename?: 'TrelloCheckItemEdgeUpdated';
|
|
81575
|
+
node: TrelloCheckItem;
|
|
81576
|
+
};
|
|
81370
81577
|
export declare enum TrelloCheckItemState {
|
|
81371
81578
|
Complete = "COMPLETE",
|
|
81372
81579
|
Incomplete = "INCOMPLETE"
|
|
@@ -81390,11 +81597,26 @@ export declare type TrelloChecklistConnection = {
|
|
|
81390
81597
|
nodes?: Maybe<Array<TrelloChecklist>>;
|
|
81391
81598
|
pageInfo: PageInfo;
|
|
81392
81599
|
};
|
|
81600
|
+
export declare type TrelloChecklistConnectionUpdated = {
|
|
81601
|
+
__typename?: 'TrelloChecklistConnectionUpdated';
|
|
81602
|
+
edges?: Maybe<Array<TrelloChecklistEdgeUpdated>>;
|
|
81603
|
+
};
|
|
81393
81604
|
export declare type TrelloChecklistEdge = {
|
|
81394
81605
|
__typename?: 'TrelloChecklistEdge';
|
|
81395
81606
|
cursor: Scalars['String']['output'];
|
|
81396
81607
|
node: TrelloChecklist;
|
|
81397
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
|
+
};
|
|
81398
81620
|
export declare type TrelloCreateCardInput = {
|
|
81399
81621
|
listId: Scalars['ID']['input'];
|
|
81400
81622
|
name: Scalars['String']['input'];
|
|
@@ -81516,35 +81738,6 @@ export declare type TrelloDeletePlannerCalendarEventPayload = Payload & {
|
|
|
81516
81738
|
event?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
81517
81739
|
success: Scalars['Boolean']['output'];
|
|
81518
81740
|
};
|
|
81519
|
-
export declare type TrelloDescription = {
|
|
81520
|
-
__typename?: 'TrelloDescription';
|
|
81521
|
-
customData?: Maybe<TrelloDescriptionData>;
|
|
81522
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
81523
|
-
};
|
|
81524
|
-
export declare type TrelloDescriptionCustomEmoji = {
|
|
81525
|
-
__typename?: 'TrelloDescriptionCustomEmoji';
|
|
81526
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
81527
|
-
url?: Maybe<Scalars['URL']['output']>;
|
|
81528
|
-
};
|
|
81529
|
-
export declare type TrelloDescriptionCustomEmojiConnection = {
|
|
81530
|
-
__typename?: 'TrelloDescriptionCustomEmojiConnection';
|
|
81531
|
-
edges?: Maybe<Array<TrelloDescriptionCustomEmojiEdge>>;
|
|
81532
|
-
nodes?: Maybe<Array<TrelloDescriptionCustomEmoji>>;
|
|
81533
|
-
pageInfo: PageInfo;
|
|
81534
|
-
};
|
|
81535
|
-
export declare type TrelloDescriptionCustomEmojiEdge = {
|
|
81536
|
-
__typename?: 'TrelloDescriptionCustomEmojiEdge';
|
|
81537
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
81538
|
-
node?: Maybe<TrelloDescriptionCustomEmoji>;
|
|
81539
|
-
};
|
|
81540
|
-
export declare type TrelloDescriptionData = {
|
|
81541
|
-
__typename?: 'TrelloDescriptionData';
|
|
81542
|
-
emojis?: Maybe<TrelloDescriptionCustomEmojiConnection>;
|
|
81543
|
-
};
|
|
81544
|
-
export declare type TrelloDescriptionDataEmojisArgs = {
|
|
81545
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
81546
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81547
|
-
};
|
|
81548
81741
|
export declare type TrelloEditPlannerCalendarEventInput = {
|
|
81549
81742
|
event: TrelloEditPlannerCalendarEventOptions;
|
|
81550
81743
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -82475,6 +82668,10 @@ export declare type TrelloUploadedBackground = {
|
|
|
82475
82668
|
__typename?: 'TrelloUploadedBackground';
|
|
82476
82669
|
objectId: Scalars['ID']['output'];
|
|
82477
82670
|
};
|
|
82671
|
+
export declare type TrelloUserGeneratedText = {
|
|
82672
|
+
__typename?: 'TrelloUserGeneratedText';
|
|
82673
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
82674
|
+
};
|
|
82478
82675
|
export declare type TrelloWatchCardInput = {
|
|
82479
82676
|
cardId: Scalars['ID']['input'];
|
|
82480
82677
|
};
|