@forge/cli-shared 8.3.0-next.0 → 8.3.0-next.0-experimental-47556b0
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 +15 -0
- package/out/graphql/graphql-types.d.ts +461 -61
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -41
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -0
- package/package.json +2 -2
|
@@ -1279,7 +1279,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
1279
1279
|
invocationDescription: Scalars['String']['output'];
|
|
1280
1280
|
isActive: Scalars['Boolean']['output'];
|
|
1281
1281
|
isDefault: Scalars['Boolean']['output'];
|
|
1282
|
-
isValid:
|
|
1282
|
+
isValid: AgentStudioScenarioValidation;
|
|
1283
1283
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
1284
1284
|
name: Scalars['String']['output'];
|
|
1285
1285
|
};
|
|
@@ -1440,11 +1440,21 @@ export declare type AgentStudioScenario = {
|
|
|
1440
1440
|
invocationDescription: Scalars['String']['output'];
|
|
1441
1441
|
isActive: Scalars['Boolean']['output'];
|
|
1442
1442
|
isDefault: Scalars['Boolean']['output'];
|
|
1443
|
-
isValid:
|
|
1443
|
+
isValid: AgentStudioScenarioValidation;
|
|
1444
1444
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
1445
1445
|
name: Scalars['String']['output'];
|
|
1446
1446
|
};
|
|
1447
1447
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
1448
|
+
export declare type AgentStudioScenarioValidation = {
|
|
1449
|
+
__typename?: 'AgentStudioScenarioValidation';
|
|
1450
|
+
message?: Maybe<Array<Maybe<AgentStudioScenarioValidationError>>>;
|
|
1451
|
+
value: Scalars['Boolean']['output'];
|
|
1452
|
+
};
|
|
1453
|
+
export declare type AgentStudioScenarioValidationError = {
|
|
1454
|
+
__typename?: 'AgentStudioScenarioValidationError';
|
|
1455
|
+
key: Scalars['String']['output'];
|
|
1456
|
+
value: Scalars['String']['output'];
|
|
1457
|
+
};
|
|
1448
1458
|
export declare type AgentStudioScenariosEdge = {
|
|
1449
1459
|
__typename?: 'AgentStudioScenariosEdge';
|
|
1450
1460
|
cursor: Scalars['String']['output'];
|
|
@@ -2928,6 +2938,7 @@ export declare type ApplyPolarisProjectTemplatePayload = Payload & {
|
|
|
2928
2938
|
success: Scalars['Boolean']['output'];
|
|
2929
2939
|
};
|
|
2930
2940
|
export declare type AppsFilter = {
|
|
2941
|
+
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2931
2942
|
isPublishable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2932
2943
|
migrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
2933
2944
|
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3240,6 +3251,7 @@ export declare type AssetsDmDataSource = {
|
|
|
3240
3251
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
3241
3252
|
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
3242
3253
|
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
3254
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
3243
3255
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
3244
3256
|
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
3245
3257
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
@@ -3271,9 +3283,10 @@ export declare type AssetsDmDataSourceDefaultTransformFunctions = {
|
|
|
3271
3283
|
};
|
|
3272
3284
|
export declare type AssetsDmDataSourceDetails = {
|
|
3273
3285
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
3274
|
-
dataSourceId
|
|
3286
|
+
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
3275
3287
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
3276
3288
|
isTemplate: Scalars['Boolean']['output'];
|
|
3289
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
3277
3290
|
name: Scalars['String']['output'];
|
|
3278
3291
|
objectClassName: Scalars['String']['output'];
|
|
3279
3292
|
steps: AssetsDmDataSourceSteps;
|
|
@@ -3441,7 +3454,9 @@ export declare type AssetsDmObjectsListDataColumn = {
|
|
|
3441
3454
|
export declare type AssetsDmObjectsListDataRow = {
|
|
3442
3455
|
__typename?: 'AssetsDMObjectsListDataRow';
|
|
3443
3456
|
data: Array<AssetsDmObjectsListDataRowItem>;
|
|
3444
|
-
|
|
3457
|
+
recordId: Scalars['String']['output'];
|
|
3458
|
+
recordKey: Scalars['String']['output'];
|
|
3459
|
+
recordPrimaryValue: Scalars['String']['output'];
|
|
3445
3460
|
tags: Array<AssetsDmObjectsListTag>;
|
|
3446
3461
|
};
|
|
3447
3462
|
export declare type AssetsDmObjectsListDataRowItem = {
|
|
@@ -3486,7 +3501,8 @@ export declare enum AssetsDmObjectsListSortOrder {
|
|
|
3486
3501
|
export declare type AssetsDmObjectsListTag = {
|
|
3487
3502
|
__typename?: 'AssetsDMObjectsListTag';
|
|
3488
3503
|
name: Scalars['String']['output'];
|
|
3489
|
-
|
|
3504
|
+
tagCode: Scalars['Int']['output'];
|
|
3505
|
+
tagId: Scalars['ID']['output'];
|
|
3490
3506
|
};
|
|
3491
3507
|
export declare type AssetsDmSchemaObjectType = {
|
|
3492
3508
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
@@ -12706,6 +12722,15 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
12706
12722
|
errors?: Maybe<Array<MutationError>>;
|
|
12707
12723
|
success: Scalars['Boolean']['output'];
|
|
12708
12724
|
};
|
|
12725
|
+
export declare type ConfluenceCreateCsvExportTaskInput = {
|
|
12726
|
+
spaceAri: Scalars['String']['input'];
|
|
12727
|
+
};
|
|
12728
|
+
export declare type ConfluenceCreateCsvExportTaskPayload = Payload & {
|
|
12729
|
+
__typename?: 'ConfluenceCreateCsvExportTaskPayload';
|
|
12730
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12731
|
+
exportTaskId: Scalars['ID']['output'];
|
|
12732
|
+
success: Scalars['Boolean']['output'];
|
|
12733
|
+
};
|
|
12709
12734
|
export declare type ConfluenceCreateCustomRoleInput = {
|
|
12710
12735
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
12711
12736
|
name: Scalars['String']['input'];
|
|
@@ -12864,6 +12889,9 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
12864
12889
|
success: Scalars['Boolean']['output'];
|
|
12865
12890
|
};
|
|
12866
12891
|
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
12892
|
+
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
12893
|
+
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
12894
|
+
newRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
12867
12895
|
roleId: Scalars['ID']['input'];
|
|
12868
12896
|
};
|
|
12869
12897
|
export declare type ConfluenceDeleteCustomRolePayload = Payload & {
|
|
@@ -13008,6 +13036,34 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
13008
13036
|
errors?: Maybe<Array<MutationError>>;
|
|
13009
13037
|
success: Scalars['Boolean']['output'];
|
|
13010
13038
|
};
|
|
13039
|
+
export declare type ConfluenceExpert = {
|
|
13040
|
+
__typename?: 'ConfluenceExpert';
|
|
13041
|
+
accountId: Scalars['ID']['output'];
|
|
13042
|
+
allTimeReputation?: Maybe<ConfluenceExpertReputation>;
|
|
13043
|
+
weeklyReputation?: Maybe<ConfluenceExpertReputation>;
|
|
13044
|
+
};
|
|
13045
|
+
export declare type ConfluenceExpertWeeklyReputationArgs = {
|
|
13046
|
+
numWeeks: Scalars['Int']['input'];
|
|
13047
|
+
};
|
|
13048
|
+
export declare type ConfluenceExpertConnection = {
|
|
13049
|
+
__typename?: 'ConfluenceExpertConnection';
|
|
13050
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
13051
|
+
edges?: Maybe<Array<Maybe<ConfluenceExpertEdge>>>;
|
|
13052
|
+
links?: Maybe<LinksContextBase>;
|
|
13053
|
+
nodes?: Maybe<Array<Maybe<ConfluenceExpert>>>;
|
|
13054
|
+
pageInfo?: Maybe<PageInfo>;
|
|
13055
|
+
};
|
|
13056
|
+
export declare type ConfluenceExpertEdge = {
|
|
13057
|
+
__typename?: 'ConfluenceExpertEdge';
|
|
13058
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13059
|
+
node?: Maybe<ConfluenceExpert>;
|
|
13060
|
+
};
|
|
13061
|
+
export declare type ConfluenceExpertReputation = {
|
|
13062
|
+
__typename?: 'ConfluenceExpertReputation';
|
|
13063
|
+
acceptedAnswers?: Maybe<Scalars['Int']['output']>;
|
|
13064
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
13065
|
+
totalAnswers?: Maybe<Scalars['Int']['output']>;
|
|
13066
|
+
};
|
|
13011
13067
|
export declare type ConfluenceExtensionEgressDeclaration = {
|
|
13012
13068
|
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
13013
13069
|
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -13096,6 +13152,10 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13096
13152
|
type?: Maybe<Scalars['String']['output']>;
|
|
13097
13153
|
userAccess?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
13098
13154
|
};
|
|
13155
|
+
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13156
|
+
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13157
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
13158
|
+
};
|
|
13099
13159
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
13100
13160
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
13101
13161
|
None = "NONE"
|
|
@@ -13241,18 +13301,6 @@ export declare type ConfluenceLabelWatchStatus = {
|
|
|
13241
13301
|
__typename?: 'ConfluenceLabelWatchStatus';
|
|
13242
13302
|
isWatching: Scalars['Boolean']['output'];
|
|
13243
13303
|
};
|
|
13244
|
-
export declare enum ConfluenceLegacyEnvironment {
|
|
13245
|
-
Development = "DEVELOPMENT",
|
|
13246
|
-
Production = "PRODUCTION",
|
|
13247
|
-
Staging = "STAGING"
|
|
13248
|
-
}
|
|
13249
|
-
export declare type ConfluenceLegacyTenant = {
|
|
13250
|
-
__typename?: 'ConfluenceLegacyTenant';
|
|
13251
|
-
activationId?: Maybe<Scalars['String']['output']>;
|
|
13252
|
-
cloudId: Scalars['ID']['output'];
|
|
13253
|
-
environment: ConfluenceLegacyEnvironment;
|
|
13254
|
-
shard: Scalars['String']['output'];
|
|
13255
|
-
};
|
|
13256
13304
|
export declare type ConfluenceLike = {
|
|
13257
13305
|
__typename?: 'ConfluenceLike';
|
|
13258
13306
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13782,6 +13830,13 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
13782
13830
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
13783
13831
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13784
13832
|
};
|
|
13833
|
+
export declare type ConfluenceQuestionsConfiguration = {
|
|
13834
|
+
__typename?: 'ConfluenceQuestionsConfiguration';
|
|
13835
|
+
confluenceQuestionsGlobalSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
13836
|
+
confluenceQuestionsGlobalSpaceKey?: Maybe<Scalars['String']['output']>;
|
|
13837
|
+
isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13838
|
+
isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
|
|
13839
|
+
};
|
|
13785
13840
|
export declare type ConfluenceReactedUsersInput = {
|
|
13786
13841
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
13787
13842
|
containerType?: InputMaybe<ContainerType>;
|
|
@@ -14120,6 +14175,7 @@ export declare type ConfluenceStorage = {
|
|
|
14120
14175
|
};
|
|
14121
14176
|
export declare type ConfluenceSubCalendarEmbedInfo = {
|
|
14122
14177
|
__typename?: 'ConfluenceSubCalendarEmbedInfo';
|
|
14178
|
+
canView: Scalars['Boolean']['output'];
|
|
14123
14179
|
spaceId: Scalars['ID']['output'];
|
|
14124
14180
|
spaceKey: Scalars['String']['output'];
|
|
14125
14181
|
subCalendarDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -16705,6 +16761,17 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
16705
16761
|
isValid: Scalars['Boolean']['output'];
|
|
16706
16762
|
message?: Maybe<Scalars['String']['output']>;
|
|
16707
16763
|
};
|
|
16764
|
+
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
16765
|
+
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
16766
|
+
cursor: Scalars['String']['output'];
|
|
16767
|
+
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
16768
|
+
};
|
|
16769
|
+
export declare type ConvoAiJira3pRelatedLinksResult = {
|
|
16770
|
+
__typename?: 'ConvoAiJira3pRelatedLinksResult';
|
|
16771
|
+
edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
|
|
16772
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16773
|
+
pageInfo: PageInfo;
|
|
16774
|
+
};
|
|
16708
16775
|
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
16709
16776
|
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
16710
16777
|
entity?: Maybe<ConfluenceBlogPost>;
|
|
@@ -16764,6 +16831,20 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
16764
16831
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
16765
16832
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
16766
16833
|
};
|
|
16834
|
+
export declare type ConvoAiPromptSuggestionResult = {
|
|
16835
|
+
__typename?: 'ConvoAiPromptSuggestionResult';
|
|
16836
|
+
suggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
16837
|
+
};
|
|
16838
|
+
export declare type ConvoAiPromptSuggestionsInput = {
|
|
16839
|
+
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
16840
|
+
};
|
|
16841
|
+
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
16842
|
+
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
16843
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
16844
|
+
name: Scalars['String']['output'];
|
|
16845
|
+
productATI?: Maybe<Scalars['String']['output']>;
|
|
16846
|
+
url: Scalars['String']['output'];
|
|
16847
|
+
};
|
|
16767
16848
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
16768
16849
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
16769
16850
|
project: Scalars['ID']['input'];
|
|
@@ -20310,9 +20391,9 @@ export declare type DevAiRovoDevArchiveSessionPayload = Payload & {
|
|
|
20310
20391
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20311
20392
|
success: Scalars['Boolean']['output'];
|
|
20312
20393
|
};
|
|
20313
|
-
export declare type
|
|
20394
|
+
export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
20314
20395
|
issueAris: Array<Scalars['ID']['input']>;
|
|
20315
|
-
options:
|
|
20396
|
+
options: DevAiRovoDevCreateSessionByCloudIdInput;
|
|
20316
20397
|
};
|
|
20317
20398
|
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
20318
20399
|
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
@@ -20320,6 +20401,13 @@ export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
|
20320
20401
|
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
20321
20402
|
success: Scalars['Boolean']['output'];
|
|
20322
20403
|
};
|
|
20404
|
+
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
20405
|
+
cloudId: Scalars['ID']['input'];
|
|
20406
|
+
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
20407
|
+
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
20408
|
+
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
20409
|
+
repository: DevAiRovoDevRepositoryInput;
|
|
20410
|
+
};
|
|
20323
20411
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
20324
20412
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
20325
20413
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
@@ -20371,6 +20459,11 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20371
20459
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20372
20460
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
20373
20461
|
};
|
|
20462
|
+
export declare enum DevAiRovoDevSessionArchivedFilter {
|
|
20463
|
+
All = "ALL",
|
|
20464
|
+
ArchivedOnly = "ARCHIVED_ONLY",
|
|
20465
|
+
NonArchivedOnly = "NON_ARCHIVED_ONLY"
|
|
20466
|
+
}
|
|
20374
20467
|
export declare type DevAiRovoDevSessionConnection = {
|
|
20375
20468
|
__typename?: 'DevAiRovoDevSessionConnection';
|
|
20376
20469
|
edges?: Maybe<Array<Maybe<DevAiRovoDevSessionEdge>>>;
|
|
@@ -20410,6 +20503,15 @@ export declare enum DevAiRovoDevSessionStatus {
|
|
|
20410
20503
|
ReadyForReview = "READY_FOR_REVIEW",
|
|
20411
20504
|
WaitingForUser = "WAITING_FOR_USER"
|
|
20412
20505
|
}
|
|
20506
|
+
export declare type DevAiRovoDevUnarchiveSessionInput = {
|
|
20507
|
+
sessionId: Scalars['ID']['input'];
|
|
20508
|
+
};
|
|
20509
|
+
export declare type DevAiRovoDevUnarchiveSessionPayload = Payload & {
|
|
20510
|
+
__typename?: 'DevAiRovoDevUnarchiveSessionPayload';
|
|
20511
|
+
errors: Array<MutationError>;
|
|
20512
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
20513
|
+
success: Scalars['Boolean']['output'];
|
|
20514
|
+
};
|
|
20413
20515
|
export declare type DevAiRunAutofixScanInput = {
|
|
20414
20516
|
repoUrl: Scalars['URL']['input'];
|
|
20415
20517
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -21116,6 +21218,7 @@ export declare type DevOpsMetrics = {
|
|
|
21116
21218
|
deploymentSize?: Maybe<DevOpsMetricsDeploymentSize>;
|
|
21117
21219
|
perDeploymentMetrics?: Maybe<DevOpsMetricsPerDeploymentMetricsConnection>;
|
|
21118
21220
|
perIssueMetrics?: Maybe<DevOpsMetricsPerIssueMetricsConnection>;
|
|
21221
|
+
perPRCycleTimeBreakdownMetrics?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownMetrics>;
|
|
21119
21222
|
perProjectPRCycleTimeMetrics?: Maybe<DevOpsMetricsPerProjectPrCycleTimeMetricsConnection>;
|
|
21120
21223
|
};
|
|
21121
21224
|
export declare type DevOpsMetricsCycleTimeArgs = {
|
|
@@ -21143,6 +21246,9 @@ export declare type DevOpsMetricsPerIssueMetricsArgs = {
|
|
|
21143
21246
|
filter: DevOpsMetricsPerIssueMetricsFilter;
|
|
21144
21247
|
first: Scalars['Int']['input'];
|
|
21145
21248
|
};
|
|
21249
|
+
export declare type DevOpsMetricsPerPrCycleTimeBreakdownMetricsArgs = {
|
|
21250
|
+
filter: DevOpsMetricsFilterInput;
|
|
21251
|
+
};
|
|
21146
21252
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
21147
21253
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21148
21254
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
@@ -21272,6 +21378,21 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
21272
21378
|
jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
21273
21379
|
startFromInclusive: Scalars['DateTime']['input'];
|
|
21274
21380
|
};
|
|
21381
|
+
export declare type DevOpsMetricsPerPrCycleTimeBreakdownMetrics = {
|
|
21382
|
+
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownMetrics';
|
|
21383
|
+
cycleTimeBreakdownMetrics?: Maybe<Array<Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics>>>;
|
|
21384
|
+
};
|
|
21385
|
+
export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
21386
|
+
Review = "REVIEW",
|
|
21387
|
+
TimeToFirstReview = "TIME_TO_FIRST_REVIEW",
|
|
21388
|
+
TimeToMerge = "TIME_TO_MERGE"
|
|
21389
|
+
}
|
|
21390
|
+
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21391
|
+
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
21392
|
+
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21393
|
+
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21394
|
+
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
21395
|
+
};
|
|
21275
21396
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
21276
21397
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
21277
21398
|
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
@@ -22984,7 +23105,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22984
23105
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22985
23106
|
node?: Maybe<ExternalAssociation>;
|
|
22986
23107
|
};
|
|
22987
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
23108
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
22988
23109
|
export declare type ExternalAttachment = {
|
|
22989
23110
|
__typename?: 'ExternalAttachment';
|
|
22990
23111
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23479,12 +23600,13 @@ export declare type ExternalEntities = {
|
|
|
23479
23600
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
23480
23601
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23481
23602
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23603
|
+
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
23482
23604
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23483
23605
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23484
23606
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
23485
23607
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
23486
23608
|
};
|
|
23487
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23609
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23488
23610
|
export declare type ExternalEnvironment = {
|
|
23489
23611
|
__typename?: 'ExternalEnvironment';
|
|
23490
23612
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -23880,6 +24002,27 @@ export declare enum ExternalSpaceSubtype {
|
|
|
23880
24002
|
Software = "SOFTWARE",
|
|
23881
24003
|
Space = "SPACE"
|
|
23882
24004
|
}
|
|
24005
|
+
export declare type ExternalTest = Node & {
|
|
24006
|
+
__typename?: 'ExternalTest';
|
|
24007
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
24008
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
24009
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24010
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
24011
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24012
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
24013
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24014
|
+
id: Scalars['ID']['output'];
|
|
24015
|
+
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
24016
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24017
|
+
provider?: Maybe<ExternalProvider>;
|
|
24018
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
24019
|
+
statusPrecedence?: Maybe<Scalars['String']['output']>;
|
|
24020
|
+
testType?: Maybe<Scalars['String']['output']>;
|
|
24021
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24022
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24023
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24024
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
24025
|
+
};
|
|
23883
24026
|
export declare type ExternalTestInfo = {
|
|
23884
24027
|
__typename?: 'ExternalTestInfo';
|
|
23885
24028
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -52523,7 +52666,7 @@ export declare type HelpLayoutAnnouncementInput = {
|
|
|
52523
52666
|
useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52524
52667
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52525
52668
|
};
|
|
52526
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
52669
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutKnowledgeCardsElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
52527
52670
|
export declare type HelpLayoutAtomicElementInput = {
|
|
52528
52671
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
52529
52672
|
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
@@ -52534,6 +52677,7 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
52534
52677
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
52535
52678
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
52536
52679
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
52680
|
+
knowledgeCardsInput?: InputMaybe<HelpLayoutKnowledgeCardsElementInput>;
|
|
52537
52681
|
noContentElementInput?: InputMaybe<HelpLayoutNoContentElementInput>;
|
|
52538
52682
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
52539
52683
|
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
@@ -52550,6 +52694,7 @@ export declare enum HelpLayoutAtomicElementKey {
|
|
|
52550
52694
|
Heading = "HEADING",
|
|
52551
52695
|
Hero = "HERO",
|
|
52552
52696
|
Image = "IMAGE",
|
|
52697
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
52553
52698
|
NoContent = "NO_CONTENT",
|
|
52554
52699
|
Paragraph = "PARAGRAPH",
|
|
52555
52700
|
PortalsList = "PORTALS_LIST",
|
|
@@ -52675,7 +52820,7 @@ export declare type HelpLayoutEditorInput = {
|
|
|
52675
52820
|
adf: Scalars['String']['input'];
|
|
52676
52821
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52677
52822
|
};
|
|
52678
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
52823
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutKnowledgeCardsElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
52679
52824
|
export declare enum HelpLayoutElementCategory {
|
|
52680
52825
|
Basic = "BASIC",
|
|
52681
52826
|
Navigation = "NAVIGATION"
|
|
@@ -52690,6 +52835,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
52690
52835
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
52691
52836
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
52692
52837
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
52838
|
+
knowledgeCardsInput?: InputMaybe<HelpLayoutKnowledgeCardsElementInput>;
|
|
52693
52839
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
52694
52840
|
noContentElementInput?: InputMaybe<HelpLayoutNoContentElementInput>;
|
|
52695
52841
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
@@ -52707,6 +52853,7 @@ export declare enum HelpLayoutElementKey {
|
|
|
52707
52853
|
Heading = "HEADING",
|
|
52708
52854
|
Hero = "HERO",
|
|
52709
52855
|
Image = "IMAGE",
|
|
52856
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
52710
52857
|
LinkCard = "LINK_CARD",
|
|
52711
52858
|
NoContent = "NO_CONTENT",
|
|
52712
52859
|
Paragraph = "PARAGRAPH",
|
|
@@ -52844,6 +52991,15 @@ export declare type HelpLayoutImageConfigInput = {
|
|
|
52844
52991
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
52845
52992
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52846
52993
|
};
|
|
52994
|
+
export declare type HelpLayoutKnowledgeCardsElement = HelpLayoutVisualEntity & Node & {
|
|
52995
|
+
__typename?: 'HelpLayoutKnowledgeCardsElement';
|
|
52996
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
52997
|
+
id: Scalars['ID']['output'];
|
|
52998
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
52999
|
+
};
|
|
53000
|
+
export declare type HelpLayoutKnowledgeCardsElementInput = {
|
|
53001
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
53002
|
+
};
|
|
52847
53003
|
export declare type HelpLayoutLinkCardCompositeElement = HelpLayoutCompositeElement & HelpLayoutVisualEntity & Node & {
|
|
52848
53004
|
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
52849
53005
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
@@ -58045,6 +58201,7 @@ export declare type JiraDeleteBoardViewStatusColumnPayload = Payload & {
|
|
|
58045
58201
|
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
58046
58202
|
boardView?: Maybe<JiraBoardView>;
|
|
58047
58203
|
errors?: Maybe<Array<MutationError>>;
|
|
58204
|
+
migrationId?: Maybe<Scalars['ID']['output']>;
|
|
58048
58205
|
success: Scalars['Boolean']['output'];
|
|
58049
58206
|
};
|
|
58050
58207
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
@@ -63547,7 +63704,6 @@ export declare type JiraMutation = {
|
|
|
63547
63704
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
63548
63705
|
scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
|
|
63549
63706
|
scheduleCalendarIssueV2?: Maybe<JiraScheduleCalendarIssueWithScenarioPayload>;
|
|
63550
|
-
scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
63551
63707
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
63552
63708
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
63553
63709
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
@@ -64013,10 +64169,6 @@ export declare type JiraMutationScheduleCalendarIssueV2Args = {
|
|
|
64013
64169
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
64014
64170
|
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
64015
64171
|
};
|
|
64016
|
-
export declare type JiraMutationScheduleTimelineItemArgs = {
|
|
64017
|
-
cloudId: Scalars['ID']['input'];
|
|
64018
|
-
input: JiraScheduleTimelineItemInput;
|
|
64019
|
-
};
|
|
64020
64172
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
64021
64173
|
cloudId: Scalars['ID']['input'];
|
|
64022
64174
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -64816,6 +64968,7 @@ export declare type JiraOnboardingConfig = {
|
|
|
64816
64968
|
destination?: Maybe<Scalars['URL']['output']>;
|
|
64817
64969
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64818
64970
|
logo?: Maybe<JiraOnboardingMedia>;
|
|
64971
|
+
mediaReadToken?: Maybe<JiraOnboardingMediaReadToken>;
|
|
64819
64972
|
modals?: Maybe<Array<Maybe<JiraOnboardingModal>>>;
|
|
64820
64973
|
name: Scalars['String']['output'];
|
|
64821
64974
|
onboardingConfigAri: Scalars['ID']['output'];
|
|
@@ -64874,6 +65027,11 @@ export declare type JiraOnboardingMediaInput = {
|
|
|
64874
65027
|
mediaType: JiraOnboardingMediaType;
|
|
64875
65028
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
64876
65029
|
};
|
|
65030
|
+
export declare type JiraOnboardingMediaReadToken = {
|
|
65031
|
+
__typename?: 'JiraOnboardingMediaReadToken';
|
|
65032
|
+
collectionName: Scalars['String']['output'];
|
|
65033
|
+
token: Scalars['String']['output'];
|
|
65034
|
+
};
|
|
64877
65035
|
export declare enum JiraOnboardingMediaType {
|
|
64878
65036
|
Image = "IMAGE",
|
|
64879
65037
|
Video = "VIDEO"
|
|
@@ -68841,7 +68999,7 @@ export declare type JiraScheduleCalendarIssueWithScenarioPayload = Payload & {
|
|
|
68841
68999
|
success: Scalars['Boolean']['output'];
|
|
68842
69000
|
};
|
|
68843
69001
|
export declare type JiraScheduleTimelineItemInput = {
|
|
68844
|
-
|
|
69002
|
+
endDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
68845
69003
|
issueId: Scalars['ID']['input'];
|
|
68846
69004
|
operation: JiraScheduleTimelineItemOperation;
|
|
68847
69005
|
startDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
@@ -79958,6 +80116,30 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
79958
80116
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
79959
80117
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
79960
80118
|
};
|
|
80119
|
+
export declare type MercuryOnCreateChangeProposalPayload = Payload & {
|
|
80120
|
+
__typename?: 'MercuryOnCreateChangeProposalPayload';
|
|
80121
|
+
errors?: Maybe<Array<MutationError>>;
|
|
80122
|
+
id: Scalars['ID']['output'];
|
|
80123
|
+
success: Scalars['Boolean']['output'];
|
|
80124
|
+
};
|
|
80125
|
+
export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
80126
|
+
__typename?: 'MercuryOnDeleteChangeProposalPayload';
|
|
80127
|
+
errors?: Maybe<Array<MutationError>>;
|
|
80128
|
+
id: Scalars['ID']['output'];
|
|
80129
|
+
success: Scalars['Boolean']['output'];
|
|
80130
|
+
};
|
|
80131
|
+
export declare type MercuryOnUpdateChangeProposalPayload = Payload & {
|
|
80132
|
+
__typename?: 'MercuryOnUpdateChangeProposalPayload';
|
|
80133
|
+
errors?: Maybe<Array<MutationError>>;
|
|
80134
|
+
id: Scalars['ID']['output'];
|
|
80135
|
+
success: Scalars['Boolean']['output'];
|
|
80136
|
+
};
|
|
80137
|
+
export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
|
|
80138
|
+
__typename?: 'MercuryOnUpdateStrategicEventPayload';
|
|
80139
|
+
errors?: Maybe<Array<MutationError>>;
|
|
80140
|
+
id: Scalars['ID']['output'];
|
|
80141
|
+
success: Scalars['Boolean']['output'];
|
|
80142
|
+
};
|
|
79961
80143
|
export declare type MercuryOriginalProjectStatus = {
|
|
79962
80144
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
79963
80145
|
};
|
|
@@ -80832,6 +81014,27 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
80832
81014
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
80833
81015
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
80834
81016
|
};
|
|
81017
|
+
export declare type MercurySubscriptionApi = {
|
|
81018
|
+
__typename?: 'MercurySubscriptionApi';
|
|
81019
|
+
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81020
|
+
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81021
|
+
onUpdateChangeProposal?: Maybe<MercuryOnUpdateChangeProposalPayload>;
|
|
81022
|
+
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81023
|
+
};
|
|
81024
|
+
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
81025
|
+
strategicEventId: Scalars['ID']['input'];
|
|
81026
|
+
};
|
|
81027
|
+
export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
81028
|
+
id: Scalars['ID']['input'];
|
|
81029
|
+
strategicEventId: Scalars['ID']['input'];
|
|
81030
|
+
};
|
|
81031
|
+
export declare type MercurySubscriptionApiOnUpdateChangeProposalArgs = {
|
|
81032
|
+
id: Scalars['ID']['input'];
|
|
81033
|
+
strategicEventId: Scalars['ID']['input'];
|
|
81034
|
+
};
|
|
81035
|
+
export declare type MercurySubscriptionApiOnUpdateStrategicEventArgs = {
|
|
81036
|
+
id: Scalars['ID']['input'];
|
|
81037
|
+
};
|
|
80835
81038
|
export declare type MercuryTargetDate = {
|
|
80836
81039
|
__typename?: 'MercuryTargetDate';
|
|
80837
81040
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -81464,6 +81667,7 @@ export declare type Mutation = {
|
|
|
81464
81667
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
81465
81668
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
81466
81669
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
81670
|
+
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
81467
81671
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
81468
81672
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
81469
81673
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
@@ -81616,8 +81820,10 @@ export declare type Mutation = {
|
|
|
81616
81820
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
81617
81821
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
81618
81822
|
devai_rovodevArchiveSession?: Maybe<DevAiRovoDevArchiveSessionPayload>;
|
|
81619
|
-
|
|
81823
|
+
devai_rovodevCreateBulkSessionByCloudId?: Maybe<DevAiRovoDevBulkCreateSessionPayload>;
|
|
81620
81824
|
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
81825
|
+
devai_rovodevCreateSessionByCloudId?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
81826
|
+
devai_rovodevUnarchiveSession?: Maybe<DevAiRovoDevUnarchiveSessionPayload>;
|
|
81621
81827
|
disableExperiment?: Maybe<TapExperiment>;
|
|
81622
81828
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
81623
81829
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -81635,6 +81841,7 @@ export declare type Mutation = {
|
|
|
81635
81841
|
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
81636
81842
|
followUser?: Maybe<FollowUserPayload>;
|
|
81637
81843
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
81844
|
+
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
81638
81845
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
81639
81846
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
81640
81847
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
@@ -81756,8 +81963,11 @@ export declare type Mutation = {
|
|
|
81756
81963
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
81757
81964
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
81758
81965
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
81966
|
+
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
81967
|
+
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
81759
81968
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
81760
81969
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
81970
|
+
projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
|
|
81761
81971
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
81762
81972
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
81763
81973
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
@@ -82064,6 +82274,7 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
82064
82274
|
cloudId: Scalars['ID']['input'];
|
|
82065
82275
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
82066
82276
|
input: AssetsDmDataSourceInput;
|
|
82277
|
+
jobId?: InputMaybe<Scalars['String']['input']>;
|
|
82067
82278
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
82068
82279
|
workspaceId: Scalars['ID']['input'];
|
|
82069
82280
|
};
|
|
@@ -82200,6 +82411,10 @@ export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
|
82200
82411
|
cloudId: Scalars['ID']['input'];
|
|
82201
82412
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
82202
82413
|
};
|
|
82414
|
+
export declare type MutationConfluence_CreateCsvExportTaskArgs = {
|
|
82415
|
+
cloudId: Scalars['ID']['input'];
|
|
82416
|
+
input: ConfluenceCreateCsvExportTaskInput;
|
|
82417
|
+
};
|
|
82203
82418
|
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
82204
82419
|
cloudId: Scalars['ID']['input'];
|
|
82205
82420
|
input: ConfluenceCreateCustomRoleInput;
|
|
@@ -82764,12 +82979,18 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
82764
82979
|
export declare type MutationDevai_RovodevArchiveSessionArgs = {
|
|
82765
82980
|
input: DevAiRovoDevArchiveSessionInput;
|
|
82766
82981
|
};
|
|
82767
|
-
export declare type
|
|
82768
|
-
input:
|
|
82982
|
+
export declare type MutationDevai_RovodevCreateBulkSessionByCloudIdArgs = {
|
|
82983
|
+
input: DevAiRovoDevBulkCreateSessionByCloudIdInput;
|
|
82769
82984
|
};
|
|
82770
82985
|
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
82771
82986
|
input: DevAiRovoDevCreateSessionInput;
|
|
82772
82987
|
};
|
|
82988
|
+
export declare type MutationDevai_RovodevCreateSessionByCloudIdArgs = {
|
|
82989
|
+
input: DevAiRovoDevCreateSessionByCloudIdInput;
|
|
82990
|
+
};
|
|
82991
|
+
export declare type MutationDevai_RovodevUnarchiveSessionArgs = {
|
|
82992
|
+
input: DevAiRovoDevUnarchiveSessionInput;
|
|
82993
|
+
};
|
|
82773
82994
|
export declare type MutationDisableExperimentArgs = {
|
|
82774
82995
|
experimentKey: Scalars['String']['input'];
|
|
82775
82996
|
};
|
|
@@ -82805,6 +83026,9 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
82805
83026
|
id: Scalars['ID']['input'];
|
|
82806
83027
|
targetType: PermsReportTargetType;
|
|
82807
83028
|
};
|
|
83029
|
+
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
83030
|
+
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
83031
|
+
};
|
|
82808
83032
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
82809
83033
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
82810
83034
|
};
|
|
@@ -83142,12 +83366,21 @@ export declare type MutationProjects_AddGoalLinkArgs = {
|
|
|
83142
83366
|
export declare type MutationProjects_AddMembersArgs = {
|
|
83143
83367
|
input?: InputMaybe<TownsquareProjectsAddMembersInput>;
|
|
83144
83368
|
};
|
|
83369
|
+
export declare type MutationProjects_AddTeamContributorsArgs = {
|
|
83370
|
+
input?: InputMaybe<TownsquareProjectsAddTeamContributorsInput>;
|
|
83371
|
+
};
|
|
83372
|
+
export declare type MutationProjects_CloneArgs = {
|
|
83373
|
+
input: TownsquareProjectsCloneInput;
|
|
83374
|
+
};
|
|
83145
83375
|
export declare type MutationProjects_CreateArgs = {
|
|
83146
83376
|
input: TownsquareProjectsCreateInput;
|
|
83147
83377
|
};
|
|
83148
83378
|
export declare type MutationProjects_CreateLinkArgs = {
|
|
83149
83379
|
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
83150
83380
|
};
|
|
83381
|
+
export declare type MutationProjects_CreateUpdateArgs = {
|
|
83382
|
+
input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
|
|
83383
|
+
};
|
|
83151
83384
|
export declare type MutationProjects_DeleteLinkArgs = {
|
|
83152
83385
|
input?: InputMaybe<TownsquareProjectsDeleteLinkInput>;
|
|
83153
83386
|
};
|
|
@@ -86156,6 +86389,7 @@ export declare type PremiumExtensionsFeature = {
|
|
|
86156
86389
|
isEntitled: Scalars['Boolean']['output'];
|
|
86157
86390
|
};
|
|
86158
86391
|
export declare enum PrincipalFilterType {
|
|
86392
|
+
App = "APP",
|
|
86159
86393
|
Group = "GROUP",
|
|
86160
86394
|
Guest = "GUEST",
|
|
86161
86395
|
Team = "TEAM",
|
|
@@ -86623,7 +86857,6 @@ export declare type Query = {
|
|
|
86623
86857
|
comments?: Maybe<PaginatedCommentList>;
|
|
86624
86858
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
86625
86859
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
86626
|
-
confluenceLegacy_tenant?: Maybe<ConfluenceLegacyTenant>;
|
|
86627
86860
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
86628
86861
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
86629
86862
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
@@ -86635,12 +86868,19 @@ export declare type Query = {
|
|
|
86635
86868
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
86636
86869
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
86637
86870
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
86871
|
+
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
86872
|
+
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
86638
86873
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
86639
86874
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
86640
86875
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
86641
86876
|
confluence_expandTypeFromJira?: Maybe<ConfluenceExpandTypeFromJira>;
|
|
86877
|
+
confluence_expert?: Maybe<ConfluenceExpert>;
|
|
86878
|
+
confluence_expertsByTopic?: Maybe<ConfluenceExpertConnection>;
|
|
86879
|
+
confluence_expertsOfAllTime?: Maybe<ConfluenceExpertConnection>;
|
|
86880
|
+
confluence_expertsOfWeek?: Maybe<ConfluenceExpertConnection>;
|
|
86642
86881
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
86643
86882
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
86883
|
+
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
86644
86884
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
86645
86885
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
86646
86886
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
@@ -86648,10 +86888,10 @@ export declare type Query = {
|
|
|
86648
86888
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
86649
86889
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
86650
86890
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
86651
|
-
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
86652
86891
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
86653
86892
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
86654
86893
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
86894
|
+
confluence_questionsConfiguration?: Maybe<ConfluenceQuestionsConfiguration>;
|
|
86655
86895
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
86656
86896
|
confluence_reactionsSummaries?: Maybe<Array<Maybe<ConfluenceReactionSummary>>>;
|
|
86657
86897
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
@@ -86708,8 +86948,10 @@ export declare type Query = {
|
|
|
86708
86948
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86709
86949
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86710
86950
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
86951
|
+
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
86711
86952
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
86712
86953
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
86954
|
+
convoai_promptSuggestions?: Maybe<ConvoAiPromptSuggestionResult>;
|
|
86713
86955
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
86714
86956
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
86715
86957
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -87378,14 +87620,16 @@ export declare type QueryAssetsDm_AdaptersArgs = {
|
|
|
87378
87620
|
};
|
|
87379
87621
|
export declare type QueryAssetsDm_DataSourceConfigArgs = {
|
|
87380
87622
|
cloudId: Scalars['ID']['input'];
|
|
87381
|
-
dataSourceId
|
|
87623
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
87382
87624
|
dataSourceTypeId: Scalars['Int']['input'];
|
|
87625
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
87383
87626
|
workspaceId: Scalars['ID']['input'];
|
|
87384
87627
|
};
|
|
87385
87628
|
export declare type QueryAssetsDm_DataSourceDetailsArgs = {
|
|
87386
87629
|
cloudId: Scalars['ID']['input'];
|
|
87387
|
-
dataSourceId
|
|
87630
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
87388
87631
|
dataSourceTypeId: Scalars['Int']['input'];
|
|
87632
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
87389
87633
|
workspaceId: Scalars['ID']['input'];
|
|
87390
87634
|
};
|
|
87391
87635
|
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
@@ -87395,9 +87639,10 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
87395
87639
|
};
|
|
87396
87640
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
87397
87641
|
cloudID: Scalars['ID']['input'];
|
|
87398
|
-
dataSourceId
|
|
87642
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
87399
87643
|
dataSourceTypeId: Scalars['Int']['input'];
|
|
87400
87644
|
isTemplate: Scalars['Boolean']['input'];
|
|
87645
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
87401
87646
|
workspaceId: Scalars['ID']['input'];
|
|
87402
87647
|
};
|
|
87403
87648
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
@@ -87406,12 +87651,12 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
|
87406
87651
|
};
|
|
87407
87652
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
87408
87653
|
cloudId: Scalars['ID']['input'];
|
|
87409
|
-
objectId: Scalars['
|
|
87654
|
+
objectId: Scalars['ID']['input'];
|
|
87410
87655
|
workspaceId: Scalars['ID']['input'];
|
|
87411
87656
|
};
|
|
87412
87657
|
export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
87413
87658
|
cloudId: Scalars['ID']['input'];
|
|
87414
|
-
objectId: Scalars['
|
|
87659
|
+
objectId: Scalars['ID']['input'];
|
|
87415
87660
|
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
87416
87661
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
87417
87662
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -87576,9 +87821,6 @@ export declare type QueryCommentsArgs = {
|
|
|
87576
87821
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87577
87822
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
87578
87823
|
};
|
|
87579
|
-
export declare type QueryConfluenceLegacy_TenantArgs = {
|
|
87580
|
-
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87581
|
-
};
|
|
87582
87824
|
export declare type QueryConfluenceUsersArgs = {
|
|
87583
87825
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87584
87826
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87636,6 +87878,14 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
87636
87878
|
export declare type QueryConfluence_ContentsArgs = {
|
|
87637
87879
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
87638
87880
|
};
|
|
87881
|
+
export declare type QueryConfluence_ContextualTitleEmojiArgs = {
|
|
87882
|
+
pageAri: Scalars['ID']['input'];
|
|
87883
|
+
pageTitle: Scalars['String']['input'];
|
|
87884
|
+
};
|
|
87885
|
+
export declare type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
87886
|
+
cloudId: Scalars['ID']['input'];
|
|
87887
|
+
taskId: Scalars['String']['input'];
|
|
87888
|
+
};
|
|
87639
87889
|
export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
|
|
87640
87890
|
cloudId: Scalars['ID']['input'];
|
|
87641
87891
|
};
|
|
@@ -87649,6 +87899,28 @@ export declare type QueryConfluence_EmptyArgs = {
|
|
|
87649
87899
|
export declare type QueryConfluence_ExpandTypeFromJiraArgs = {
|
|
87650
87900
|
cloudId: Scalars['ID']['input'];
|
|
87651
87901
|
};
|
|
87902
|
+
export declare type QueryConfluence_ExpertArgs = {
|
|
87903
|
+
cloudId: Scalars['ID']['input'];
|
|
87904
|
+
id: Scalars['ID']['input'];
|
|
87905
|
+
};
|
|
87906
|
+
export declare type QueryConfluence_ExpertsByTopicArgs = {
|
|
87907
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87908
|
+
cloudId: Scalars['ID']['input'];
|
|
87909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87910
|
+
topicId?: InputMaybe<Scalars['ID']['input']>;
|
|
87911
|
+
topicName?: InputMaybe<Scalars['String']['input']>;
|
|
87912
|
+
};
|
|
87913
|
+
export declare type QueryConfluence_ExpertsOfAllTimeArgs = {
|
|
87914
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87915
|
+
cloudId: Scalars['ID']['input'];
|
|
87916
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87917
|
+
};
|
|
87918
|
+
export declare type QueryConfluence_ExpertsOfWeekArgs = {
|
|
87919
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87920
|
+
cloudId: Scalars['ID']['input'];
|
|
87921
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87922
|
+
numWeeks: Scalars['Int']['input'];
|
|
87923
|
+
};
|
|
87652
87924
|
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
87653
87925
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87654
87926
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87668,6 +87940,10 @@ export declare type QueryConfluence_ForgeExtensionsByTypeArgs = {
|
|
|
87668
87940
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
87669
87941
|
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87670
87942
|
};
|
|
87943
|
+
export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
87944
|
+
cloudId: Scalars['ID']['input'];
|
|
87945
|
+
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
87946
|
+
};
|
|
87671
87947
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
87672
87948
|
cloudId: Scalars['ID']['input'];
|
|
87673
87949
|
spaceKey: Scalars['String']['input'];
|
|
@@ -87709,6 +87985,9 @@ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
|
87709
87985
|
cloudId: Scalars['ID']['input'];
|
|
87710
87986
|
spaceKey: Scalars['String']['input'];
|
|
87711
87987
|
};
|
|
87988
|
+
export declare type QueryConfluence_QuestionsConfigurationArgs = {
|
|
87989
|
+
cloudId: Scalars['ID']['input'];
|
|
87990
|
+
};
|
|
87712
87991
|
export declare type QueryConfluence_ReactedUsersArgs = {
|
|
87713
87992
|
cloudId: Scalars['ID']['input'];
|
|
87714
87993
|
input: ConfluenceReactedUsersInput;
|
|
@@ -87749,7 +88028,6 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
87749
88028
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87750
88029
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
87751
88030
|
cql: Scalars['String']['input'];
|
|
87752
|
-
excludeServiceAppUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87753
88031
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87754
88032
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
87755
88033
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88019,6 +88297,13 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
88019
88297
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88020
88298
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
88021
88299
|
};
|
|
88300
|
+
export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
88301
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88302
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
88303
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88304
|
+
id: Scalars['ID']['input'];
|
|
88305
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
88306
|
+
};
|
|
88022
88307
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
88023
88308
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88024
88309
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88039,6 +88324,10 @@ export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
|
88039
88324
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
88040
88325
|
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
88041
88326
|
};
|
|
88327
|
+
export declare type QueryConvoai_PromptSuggestionsArgs = {
|
|
88328
|
+
cloudId: Scalars['ID']['input'];
|
|
88329
|
+
input: ConvoAiPromptSuggestionsInput;
|
|
88330
|
+
};
|
|
88042
88331
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
88043
88332
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
88044
88333
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -88295,6 +88584,7 @@ export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
|
88295
88584
|
export declare type QueryDevai_RovodevSessionsArgs = {
|
|
88296
88585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88297
88586
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88587
|
+
isArchived?: InputMaybe<DevAiRovoDevSessionArchivedFilter>;
|
|
88298
88588
|
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
88299
88589
|
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
88300
88590
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -91391,6 +91681,7 @@ export declare type RoleAssignmentPrincipalInput = {
|
|
|
91391
91681
|
};
|
|
91392
91682
|
export declare enum RoleAssignmentPrincipalType {
|
|
91393
91683
|
AccessClass = "ACCESS_CLASS",
|
|
91684
|
+
App = "APP",
|
|
91394
91685
|
Group = "GROUP",
|
|
91395
91686
|
Team = "TEAM",
|
|
91396
91687
|
User = "USER"
|
|
@@ -93525,7 +93816,6 @@ export declare type ShepherdClassification = {
|
|
|
93525
93816
|
__typename?: 'ShepherdClassification';
|
|
93526
93817
|
changedBy?: Maybe<ShepherdClassificationUser>;
|
|
93527
93818
|
changedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
93528
|
-
color?: Maybe<ShepherdClassificationLevelColor>;
|
|
93529
93819
|
createdBy?: Maybe<ShepherdClassificationUser>;
|
|
93530
93820
|
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
93531
93821
|
definition?: Maybe<Scalars['String']['output']>;
|
|
@@ -93542,21 +93832,6 @@ export declare type ShepherdClassificationEdge = {
|
|
|
93542
93832
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
93543
93833
|
node?: Maybe<ShepherdClassification>;
|
|
93544
93834
|
};
|
|
93545
|
-
export declare enum ShepherdClassificationLevelColor {
|
|
93546
|
-
Blue = "BLUE",
|
|
93547
|
-
BlueBold = "BLUE_BOLD",
|
|
93548
|
-
Green = "GREEN",
|
|
93549
|
-
Grey = "GREY",
|
|
93550
|
-
Lime = "LIME",
|
|
93551
|
-
Navy = "NAVY",
|
|
93552
|
-
None = "NONE",
|
|
93553
|
-
Orange = "ORANGE",
|
|
93554
|
-
Purple = "PURPLE",
|
|
93555
|
-
Red = "RED",
|
|
93556
|
-
RedBold = "RED_BOLD",
|
|
93557
|
-
Teal = "TEAL",
|
|
93558
|
-
Yellow = "YELLOW"
|
|
93559
|
-
}
|
|
93560
93835
|
export declare enum ShepherdClassificationStatus {
|
|
93561
93836
|
Archived = "ARCHIVED",
|
|
93562
93837
|
Draft = "DRAFT",
|
|
@@ -95758,6 +96033,7 @@ export declare type SpfAskComment = {
|
|
|
95758
96033
|
__typename?: 'SpfAskComment';
|
|
95759
96034
|
askId: Scalars['String']['output'];
|
|
95760
96035
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96036
|
+
createdByUser?: Maybe<User>;
|
|
95761
96037
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
95762
96038
|
data: Scalars['String']['output'];
|
|
95763
96039
|
id: Scalars['ID']['output'];
|
|
@@ -95789,6 +96065,7 @@ export declare type SpfAskEdge = {
|
|
|
95789
96065
|
export declare type SpfAskLink = {
|
|
95790
96066
|
__typename?: 'SpfAskLink';
|
|
95791
96067
|
askId: Scalars['String']['output'];
|
|
96068
|
+
attachedByUser?: Maybe<User>;
|
|
95792
96069
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
95793
96070
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
95794
96071
|
id: Scalars['ID']['output'];
|
|
@@ -96179,6 +96456,12 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
96179
96456
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
96180
96457
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
96181
96458
|
};
|
|
96459
|
+
export declare type StakeholderCommsGroups = {
|
|
96460
|
+
__typename?: 'StakeholderCommsGroups';
|
|
96461
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96462
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
96463
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
96464
|
+
};
|
|
96182
96465
|
export declare type StakeholderCommsModePreference = {
|
|
96183
96466
|
__typename?: 'StakeholderCommsModePreference';
|
|
96184
96467
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -96249,8 +96532,11 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
96249
96532
|
export declare type StakeholderCommsStakeholder = {
|
|
96250
96533
|
__typename?: 'StakeholderCommsStakeholder';
|
|
96251
96534
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
96535
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
96536
|
+
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
96252
96537
|
id: Scalars['ID']['output'];
|
|
96253
96538
|
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96539
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
96254
96540
|
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
96255
96541
|
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
96256
96542
|
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
@@ -96509,6 +96795,7 @@ export declare type Subscription = {
|
|
|
96509
96795
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
96510
96796
|
jira?: Maybe<JiraSubscription>;
|
|
96511
96797
|
jsmChat?: Maybe<JsmChatSubscription>;
|
|
96798
|
+
mercury?: Maybe<MercurySubscriptionApi>;
|
|
96512
96799
|
migration: MigrationSubscription;
|
|
96513
96800
|
migrationPlanningService: MigrationPlanningServiceSubscription;
|
|
96514
96801
|
sandbox: SandboxSubscription;
|
|
@@ -98324,6 +98611,17 @@ export declare type TownsquareGoalUpdateEdge = {
|
|
|
98324
98611
|
cursor: Scalars['String']['output'];
|
|
98325
98612
|
node?: Maybe<TownsquareGoalUpdate>;
|
|
98326
98613
|
};
|
|
98614
|
+
export declare type TownsquareGoalsAddGoalTeamLinkInput = {
|
|
98615
|
+
goalId: Scalars['ID']['input'];
|
|
98616
|
+
teamId: Scalars['ID']['input'];
|
|
98617
|
+
};
|
|
98618
|
+
export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
98619
|
+
__typename?: 'TownsquareGoalsAddGoalTeamLinkPayload';
|
|
98620
|
+
errors?: Maybe<Array<MutationError>>;
|
|
98621
|
+
goal?: Maybe<TownsquareGoal>;
|
|
98622
|
+
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
98623
|
+
success: Scalars['Boolean']['output'];
|
|
98624
|
+
};
|
|
98327
98625
|
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
98328
98626
|
goalId: Scalars['ID']['input'];
|
|
98329
98627
|
isWatching: Scalars['Boolean']['input'];
|
|
@@ -98791,6 +99089,30 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
98791
99089
|
success: Scalars['Boolean']['output'];
|
|
98792
99090
|
users?: Maybe<Array<User>>;
|
|
98793
99091
|
};
|
|
99092
|
+
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
99093
|
+
projectId: Scalars['ID']['input'];
|
|
99094
|
+
teamId: Scalars['ID']['input'];
|
|
99095
|
+
userIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
99096
|
+
};
|
|
99097
|
+
export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
99098
|
+
__typename?: 'TownsquareProjectsAddTeamContributorsPayload';
|
|
99099
|
+
contributor?: Maybe<TownsquareContributor>;
|
|
99100
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99101
|
+
project?: Maybe<TownsquareProject>;
|
|
99102
|
+
success: Scalars['Boolean']['output'];
|
|
99103
|
+
};
|
|
99104
|
+
export declare type TownsquareProjectsCloneInput = {
|
|
99105
|
+
addLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99106
|
+
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99107
|
+
name: Scalars['String']['input'];
|
|
99108
|
+
projectId: Scalars['ID']['input'];
|
|
99109
|
+
};
|
|
99110
|
+
export declare type TownsquareProjectsClonePayload = {
|
|
99111
|
+
__typename?: 'TownsquareProjectsClonePayload';
|
|
99112
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99113
|
+
project?: Maybe<TownsquareProject>;
|
|
99114
|
+
success: Scalars['Boolean']['output'];
|
|
99115
|
+
};
|
|
98794
99116
|
export declare type TownsquareProjectsCreateInput = {
|
|
98795
99117
|
containerId: Scalars['String']['input'];
|
|
98796
99118
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
@@ -98824,6 +99146,21 @@ export declare type TownsquareProjectsCreatePayload = {
|
|
|
98824
99146
|
project?: Maybe<TownsquareProject>;
|
|
98825
99147
|
success: Scalars['Boolean']['output'];
|
|
98826
99148
|
};
|
|
99149
|
+
export declare type TownsquareProjectsCreateUpdateInput = {
|
|
99150
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
99151
|
+
phase?: InputMaybe<Scalars['String']['input']>;
|
|
99152
|
+
projectId: Scalars['ID']['input'];
|
|
99153
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
99154
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
99155
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
99156
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
99157
|
+
};
|
|
99158
|
+
export declare type TownsquareProjectsCreateUpdatePayload = {
|
|
99159
|
+
__typename?: 'TownsquareProjectsCreateUpdatePayload';
|
|
99160
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99161
|
+
success: Scalars['Boolean']['output'];
|
|
99162
|
+
update?: Maybe<TownsquareProjectUpdate>;
|
|
99163
|
+
};
|
|
98827
99164
|
export declare type TownsquareProjectsDeleteLinkInput = {
|
|
98828
99165
|
linkId: Scalars['ID']['input'];
|
|
98829
99166
|
};
|
|
@@ -99194,6 +99531,17 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
|
99194
99531
|
cursor: Scalars['String']['output'];
|
|
99195
99532
|
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
99196
99533
|
};
|
|
99534
|
+
export declare type TownsquareUpdateHighlightInput = {
|
|
99535
|
+
description: Scalars['String']['input'];
|
|
99536
|
+
summary: Scalars['String']['input'];
|
|
99537
|
+
type: TownsquareHighlightType;
|
|
99538
|
+
};
|
|
99539
|
+
export declare type TownsquareUpdateNoteInput = {
|
|
99540
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99541
|
+
description: Scalars['String']['input'];
|
|
99542
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
99543
|
+
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
99544
|
+
};
|
|
99197
99545
|
export declare enum TownsquareUpdateType {
|
|
99198
99546
|
System = "SYSTEM",
|
|
99199
99547
|
User = "USER"
|
|
@@ -99357,8 +99705,8 @@ export declare type TrelloActionLimits = {
|
|
|
99357
99705
|
};
|
|
99358
99706
|
export declare type TrelloActionListEntity = {
|
|
99359
99707
|
__typename?: 'TrelloActionListEntity';
|
|
99360
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
99361
99708
|
name?: Maybe<Scalars['String']['output']>;
|
|
99709
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99362
99710
|
type?: Maybe<Scalars['String']['output']>;
|
|
99363
99711
|
};
|
|
99364
99712
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -99366,8 +99714,8 @@ export declare type TrelloActionMemberEntity = {
|
|
|
99366
99714
|
avatarHash?: Maybe<Scalars['String']['output']>;
|
|
99367
99715
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
99368
99716
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
99369
|
-
id: Scalars['ID']['output'];
|
|
99370
99717
|
initials?: Maybe<Scalars['String']['output']>;
|
|
99718
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99371
99719
|
text?: Maybe<Scalars['String']['output']>;
|
|
99372
99720
|
type?: Maybe<Scalars['String']['output']>;
|
|
99373
99721
|
username?: Maybe<Scalars['String']['output']>;
|
|
@@ -99401,6 +99749,17 @@ export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
|
99401
99749
|
card?: Maybe<TrelloActionCardEntity>;
|
|
99402
99750
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
99403
99751
|
};
|
|
99752
|
+
export declare type TrelloAddBoardStarInput = {
|
|
99753
|
+
boardId: Scalars['ID']['input'];
|
|
99754
|
+
position: Scalars['Float']['input'];
|
|
99755
|
+
userId: Scalars['ID']['input'];
|
|
99756
|
+
};
|
|
99757
|
+
export declare type TrelloAddBoardStarPayload = Payload & {
|
|
99758
|
+
__typename?: 'TrelloAddBoardStarPayload';
|
|
99759
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99760
|
+
member?: Maybe<TrelloMember>;
|
|
99761
|
+
success: Scalars['Boolean']['output'];
|
|
99762
|
+
};
|
|
99404
99763
|
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
99405
99764
|
__typename?: 'TrelloAddChecklistToCardAction';
|
|
99406
99765
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -99888,6 +100247,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
99888
100247
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99889
100248
|
onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
|
|
99890
100249
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
100250
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
99891
100251
|
powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
|
|
99892
100252
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
99893
100253
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -100643,6 +101003,16 @@ export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
|
100643
101003
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
100644
101004
|
success: Scalars['Boolean']['output'];
|
|
100645
101005
|
};
|
|
101006
|
+
export declare type TrelloCreateWorkspaceTagInput = {
|
|
101007
|
+
name: Scalars['String']['input'];
|
|
101008
|
+
workspaceId: Scalars['ID']['input'];
|
|
101009
|
+
};
|
|
101010
|
+
export declare type TrelloCreateWorkspaceTagPayload = Payload & {
|
|
101011
|
+
__typename?: 'TrelloCreateWorkspaceTagPayload';
|
|
101012
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101013
|
+
success: Scalars['Boolean']['output'];
|
|
101014
|
+
tag?: Maybe<TrelloTag>;
|
|
101015
|
+
};
|
|
100646
101016
|
export declare type TrelloCustomField = {
|
|
100647
101017
|
__typename?: 'TrelloCustomField';
|
|
100648
101018
|
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
@@ -101169,6 +101539,7 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
|
101169
101539
|
};
|
|
101170
101540
|
export declare type TrelloMutationApi = {
|
|
101171
101541
|
__typename?: 'TrelloMutationApi';
|
|
101542
|
+
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
101172
101543
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
101173
101544
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
101174
101545
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
@@ -101177,6 +101548,7 @@ export declare type TrelloMutationApi = {
|
|
|
101177
101548
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
101178
101549
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
101179
101550
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
101551
|
+
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
101180
101552
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
101181
101553
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
101182
101554
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
@@ -101200,6 +101572,9 @@ export declare type TrelloMutationApi = {
|
|
|
101200
101572
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
101201
101573
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
101202
101574
|
};
|
|
101575
|
+
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
101576
|
+
input: TrelloAddBoardStarInput;
|
|
101577
|
+
};
|
|
101203
101578
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
101204
101579
|
input: TrelloAddMemberInput;
|
|
101205
101580
|
};
|
|
@@ -101224,6 +101599,9 @@ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
|
101224
101599
|
export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
|
|
101225
101600
|
input: TrelloCreatePlannerCalendarEventInput;
|
|
101226
101601
|
};
|
|
101602
|
+
export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
|
|
101603
|
+
input: TrelloCreateWorkspaceTagInput;
|
|
101604
|
+
};
|
|
101227
101605
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
101228
101606
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
101229
101607
|
};
|
|
@@ -101681,6 +102059,7 @@ export declare type TrelloPowerUp = {
|
|
|
101681
102059
|
export declare type TrelloPowerUpData = {
|
|
101682
102060
|
__typename?: 'TrelloPowerUpData';
|
|
101683
102061
|
access?: Maybe<TrelloPowerUpDataAccess>;
|
|
102062
|
+
id: Scalars['ID']['output'];
|
|
101684
102063
|
modelId?: Maybe<Scalars['ID']['output']>;
|
|
101685
102064
|
objectId: Scalars['ID']['output'];
|
|
101686
102065
|
powerUp?: Maybe<TrelloPowerUp>;
|
|
@@ -101728,6 +102107,17 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
101728
102107
|
__typename?: 'TrelloPowerUpUpdated';
|
|
101729
102108
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101730
102109
|
};
|
|
102110
|
+
export declare type TrelloProposedSmartSchedule = {
|
|
102111
|
+
__typename?: 'TrelloProposedSmartSchedule';
|
|
102112
|
+
events?: Maybe<Array<TrelloProposedSmartScheduleEvent>>;
|
|
102113
|
+
unscheduledCards?: Maybe<Array<TrelloCard>>;
|
|
102114
|
+
};
|
|
102115
|
+
export declare type TrelloProposedSmartScheduleEvent = {
|
|
102116
|
+
__typename?: 'TrelloProposedSmartScheduleEvent';
|
|
102117
|
+
cards?: Maybe<Array<TrelloCard>>;
|
|
102118
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
102119
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
102120
|
+
};
|
|
101731
102121
|
export declare type TrelloProviderCalendarDeleted = {
|
|
101732
102122
|
__typename?: 'TrelloProviderCalendarDeleted';
|
|
101733
102123
|
id: Scalars['ID']['output'];
|
|
@@ -101768,6 +102158,7 @@ export declare type TrelloQueryApi = {
|
|
|
101768
102158
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
101769
102159
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
101770
102160
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
102161
|
+
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
101771
102162
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
101772
102163
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
101773
102164
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
@@ -101867,6 +102258,9 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
101867
102258
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
101868
102259
|
ids: Array<Scalars['ID']['input']>;
|
|
101869
102260
|
};
|
|
102261
|
+
export declare type TrelloQueryApiSmartScheduleCardsArgs = {
|
|
102262
|
+
input: TrelloSmartScheduleCardsInput;
|
|
102263
|
+
};
|
|
101870
102264
|
export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
101871
102265
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101872
102266
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
@@ -101969,6 +102363,11 @@ export declare type TrelloScaleProps = {
|
|
|
101969
102363
|
url?: Maybe<Scalars['URL']['output']>;
|
|
101970
102364
|
width?: Maybe<Scalars['Int']['output']>;
|
|
101971
102365
|
};
|
|
102366
|
+
export declare type TrelloSmartScheduleCardsInput = {
|
|
102367
|
+
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102368
|
+
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
102369
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
102370
|
+
};
|
|
101972
102371
|
export declare type TrelloSticker = {
|
|
101973
102372
|
__typename?: 'TrelloSticker';
|
|
101974
102373
|
image?: Maybe<Scalars['String']['output']>;
|
|
@@ -102330,6 +102729,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
102330
102729
|
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
102331
102730
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
102332
102731
|
description?: Maybe<Scalars['String']['output']>;
|
|
102732
|
+
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
102333
102733
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
102334
102734
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
102335
102735
|
id: Scalars['ID']['output'];
|