@forge/cli-shared 8.3.0-next.0 → 8.3.0-next.0-experimental-ab129b0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +388 -59
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -41
- package/package.json +2 -2
|
@@ -2928,6 +2928,7 @@ export declare type ApplyPolarisProjectTemplatePayload = Payload & {
|
|
|
2928
2928
|
success: Scalars['Boolean']['output'];
|
|
2929
2929
|
};
|
|
2930
2930
|
export declare type AppsFilter = {
|
|
2931
|
+
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
2931
2932
|
isPublishable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2932
2933
|
migrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
2933
2934
|
storesPersonalData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -3240,6 +3241,7 @@ export declare type AssetsDmDataSource = {
|
|
|
3240
3241
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
3241
3242
|
dataSourceName?: Maybe<Scalars['String']['output']>;
|
|
3242
3243
|
isJobExecutionFailed?: Maybe<Scalars['Boolean']['output']>;
|
|
3244
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
3243
3245
|
lastExecutionDate?: Maybe<Scalars['String']['output']>;
|
|
3244
3246
|
lastExecutionName?: Maybe<Scalars['String']['output']>;
|
|
3245
3247
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
@@ -3271,9 +3273,10 @@ export declare type AssetsDmDataSourceDefaultTransformFunctions = {
|
|
|
3271
3273
|
};
|
|
3272
3274
|
export declare type AssetsDmDataSourceDetails = {
|
|
3273
3275
|
__typename?: 'AssetsDMDataSourceDetails';
|
|
3274
|
-
dataSourceId
|
|
3276
|
+
dataSourceId?: Maybe<Scalars['ID']['output']>;
|
|
3275
3277
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
3276
3278
|
isTemplate: Scalars['Boolean']['output'];
|
|
3279
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
3277
3280
|
name: Scalars['String']['output'];
|
|
3278
3281
|
objectClassName: Scalars['String']['output'];
|
|
3279
3282
|
steps: AssetsDmDataSourceSteps;
|
|
@@ -3441,7 +3444,9 @@ export declare type AssetsDmObjectsListDataColumn = {
|
|
|
3441
3444
|
export declare type AssetsDmObjectsListDataRow = {
|
|
3442
3445
|
__typename?: 'AssetsDMObjectsListDataRow';
|
|
3443
3446
|
data: Array<AssetsDmObjectsListDataRowItem>;
|
|
3444
|
-
|
|
3447
|
+
recordId: Scalars['String']['output'];
|
|
3448
|
+
recordKey: Scalars['String']['output'];
|
|
3449
|
+
recordPrimaryValue: Scalars['String']['output'];
|
|
3445
3450
|
tags: Array<AssetsDmObjectsListTag>;
|
|
3446
3451
|
};
|
|
3447
3452
|
export declare type AssetsDmObjectsListDataRowItem = {
|
|
@@ -3486,7 +3491,8 @@ export declare enum AssetsDmObjectsListSortOrder {
|
|
|
3486
3491
|
export declare type AssetsDmObjectsListTag = {
|
|
3487
3492
|
__typename?: 'AssetsDMObjectsListTag';
|
|
3488
3493
|
name: Scalars['String']['output'];
|
|
3489
|
-
|
|
3494
|
+
tagCode: Scalars['Int']['output'];
|
|
3495
|
+
tagId: Scalars['ID']['output'];
|
|
3490
3496
|
};
|
|
3491
3497
|
export declare type AssetsDmSchemaObjectType = {
|
|
3492
3498
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
@@ -12706,6 +12712,15 @@ export declare type ConfluenceCreateBlogPostPropertyPayload = Payload & {
|
|
|
12706
12712
|
errors?: Maybe<Array<MutationError>>;
|
|
12707
12713
|
success: Scalars['Boolean']['output'];
|
|
12708
12714
|
};
|
|
12715
|
+
export declare type ConfluenceCreateCsvExportTaskInput = {
|
|
12716
|
+
spaceAri: Scalars['String']['input'];
|
|
12717
|
+
};
|
|
12718
|
+
export declare type ConfluenceCreateCsvExportTaskPayload = Payload & {
|
|
12719
|
+
__typename?: 'ConfluenceCreateCsvExportTaskPayload';
|
|
12720
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12721
|
+
exportTaskId: Scalars['ID']['output'];
|
|
12722
|
+
success: Scalars['Boolean']['output'];
|
|
12723
|
+
};
|
|
12709
12724
|
export declare type ConfluenceCreateCustomRoleInput = {
|
|
12710
12725
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
12711
12726
|
name: Scalars['String']['input'];
|
|
@@ -12864,6 +12879,9 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
12864
12879
|
success: Scalars['Boolean']['output'];
|
|
12865
12880
|
};
|
|
12866
12881
|
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
12882
|
+
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
12883
|
+
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
12884
|
+
newRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
12867
12885
|
roleId: Scalars['ID']['input'];
|
|
12868
12886
|
};
|
|
12869
12887
|
export declare type ConfluenceDeleteCustomRolePayload = Payload & {
|
|
@@ -13008,6 +13026,34 @@ export declare type ConfluenceExperimentInitModernizePayload = {
|
|
|
13008
13026
|
errors?: Maybe<Array<MutationError>>;
|
|
13009
13027
|
success: Scalars['Boolean']['output'];
|
|
13010
13028
|
};
|
|
13029
|
+
export declare type ConfluenceExpert = {
|
|
13030
|
+
__typename?: 'ConfluenceExpert';
|
|
13031
|
+
accountId: Scalars['ID']['output'];
|
|
13032
|
+
allTimeReputation?: Maybe<ConfluenceExpertReputation>;
|
|
13033
|
+
weeklyReputation?: Maybe<ConfluenceExpertReputation>;
|
|
13034
|
+
};
|
|
13035
|
+
export declare type ConfluenceExpertWeeklyReputationArgs = {
|
|
13036
|
+
numWeeks: Scalars['Int']['input'];
|
|
13037
|
+
};
|
|
13038
|
+
export declare type ConfluenceExpertConnection = {
|
|
13039
|
+
__typename?: 'ConfluenceExpertConnection';
|
|
13040
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
13041
|
+
edges?: Maybe<Array<Maybe<ConfluenceExpertEdge>>>;
|
|
13042
|
+
links?: Maybe<LinksContextBase>;
|
|
13043
|
+
nodes?: Maybe<Array<Maybe<ConfluenceExpert>>>;
|
|
13044
|
+
pageInfo?: Maybe<PageInfo>;
|
|
13045
|
+
};
|
|
13046
|
+
export declare type ConfluenceExpertEdge = {
|
|
13047
|
+
__typename?: 'ConfluenceExpertEdge';
|
|
13048
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13049
|
+
node?: Maybe<ConfluenceExpert>;
|
|
13050
|
+
};
|
|
13051
|
+
export declare type ConfluenceExpertReputation = {
|
|
13052
|
+
__typename?: 'ConfluenceExpertReputation';
|
|
13053
|
+
acceptedAnswers?: Maybe<Scalars['Int']['output']>;
|
|
13054
|
+
score?: Maybe<Scalars['Int']['output']>;
|
|
13055
|
+
totalAnswers?: Maybe<Scalars['Int']['output']>;
|
|
13056
|
+
};
|
|
13011
13057
|
export declare type ConfluenceExtensionEgressDeclaration = {
|
|
13012
13058
|
__typename?: 'ConfluenceExtensionEgressDeclaration';
|
|
13013
13059
|
addresses?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -13096,6 +13142,10 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13096
13142
|
type?: Maybe<Scalars['String']['output']>;
|
|
13097
13143
|
userAccess?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
13098
13144
|
};
|
|
13145
|
+
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13146
|
+
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13147
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
13148
|
+
};
|
|
13099
13149
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
13100
13150
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
13101
13151
|
None = "NONE"
|
|
@@ -13241,18 +13291,6 @@ export declare type ConfluenceLabelWatchStatus = {
|
|
|
13241
13291
|
__typename?: 'ConfluenceLabelWatchStatus';
|
|
13242
13292
|
isWatching: Scalars['Boolean']['output'];
|
|
13243
13293
|
};
|
|
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
13294
|
export declare type ConfluenceLike = {
|
|
13257
13295
|
__typename?: 'ConfluenceLike';
|
|
13258
13296
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13782,6 +13820,13 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
13782
13820
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
13783
13821
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13784
13822
|
};
|
|
13823
|
+
export declare type ConfluenceQuestionsConfiguration = {
|
|
13824
|
+
__typename?: 'ConfluenceQuestionsConfiguration';
|
|
13825
|
+
confluenceQuestionsGlobalSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
13826
|
+
confluenceQuestionsGlobalSpaceKey?: Maybe<Scalars['String']['output']>;
|
|
13827
|
+
isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13828
|
+
isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
|
|
13829
|
+
};
|
|
13785
13830
|
export declare type ConfluenceReactedUsersInput = {
|
|
13786
13831
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
13787
13832
|
containerType?: InputMaybe<ContainerType>;
|
|
@@ -14120,6 +14165,7 @@ export declare type ConfluenceStorage = {
|
|
|
14120
14165
|
};
|
|
14121
14166
|
export declare type ConfluenceSubCalendarEmbedInfo = {
|
|
14122
14167
|
__typename?: 'ConfluenceSubCalendarEmbedInfo';
|
|
14168
|
+
canView: Scalars['Boolean']['output'];
|
|
14123
14169
|
spaceId: Scalars['ID']['output'];
|
|
14124
14170
|
spaceKey: Scalars['String']['output'];
|
|
14125
14171
|
subCalendarDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -16705,6 +16751,17 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
16705
16751
|
isValid: Scalars['Boolean']['output'];
|
|
16706
16752
|
message?: Maybe<Scalars['String']['output']>;
|
|
16707
16753
|
};
|
|
16754
|
+
export declare type ConvoAiJira3pRelatedLinksEdge = {
|
|
16755
|
+
__typename?: 'ConvoAiJira3pRelatedLinksEdge';
|
|
16756
|
+
cursor: Scalars['String']['output'];
|
|
16757
|
+
node?: Maybe<ConvoAiThirdPartyRelatedLink>;
|
|
16758
|
+
};
|
|
16759
|
+
export declare type ConvoAiJira3pRelatedLinksResult = {
|
|
16760
|
+
__typename?: 'ConvoAiJira3pRelatedLinksResult';
|
|
16761
|
+
edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
|
|
16762
|
+
errors?: Maybe<Array<QueryError>>;
|
|
16763
|
+
pageInfo: PageInfo;
|
|
16764
|
+
};
|
|
16708
16765
|
export declare type ConvoAiJiraConfluenceBlogSuggestion = {
|
|
16709
16766
|
__typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
|
|
16710
16767
|
entity?: Maybe<ConfluenceBlogPost>;
|
|
@@ -16764,6 +16821,20 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
16764
16821
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
16765
16822
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
16766
16823
|
};
|
|
16824
|
+
export declare type ConvoAiPromptSuggestionResult = {
|
|
16825
|
+
__typename?: 'ConvoAiPromptSuggestionResult';
|
|
16826
|
+
suggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
16827
|
+
};
|
|
16828
|
+
export declare type ConvoAiPromptSuggestionsInput = {
|
|
16829
|
+
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
16830
|
+
};
|
|
16831
|
+
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
16832
|
+
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
16833
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
16834
|
+
name: Scalars['String']['output'];
|
|
16835
|
+
productATI?: Maybe<Scalars['String']['output']>;
|
|
16836
|
+
url: Scalars['String']['output'];
|
|
16837
|
+
};
|
|
16767
16838
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
16768
16839
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
16769
16840
|
project: Scalars['ID']['input'];
|
|
@@ -20310,9 +20381,9 @@ export declare type DevAiRovoDevArchiveSessionPayload = Payload & {
|
|
|
20310
20381
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20311
20382
|
success: Scalars['Boolean']['output'];
|
|
20312
20383
|
};
|
|
20313
|
-
export declare type
|
|
20384
|
+
export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
20314
20385
|
issueAris: Array<Scalars['ID']['input']>;
|
|
20315
|
-
options:
|
|
20386
|
+
options: DevAiRovoDevCreateSessionByCloudIdInput;
|
|
20316
20387
|
};
|
|
20317
20388
|
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
20318
20389
|
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
@@ -20320,6 +20391,13 @@ export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
|
20320
20391
|
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
20321
20392
|
success: Scalars['Boolean']['output'];
|
|
20322
20393
|
};
|
|
20394
|
+
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
20395
|
+
cloudId: Scalars['ID']['input'];
|
|
20396
|
+
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
20397
|
+
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
20398
|
+
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
20399
|
+
repository: DevAiRovoDevRepositoryInput;
|
|
20400
|
+
};
|
|
20323
20401
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
20324
20402
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
20325
20403
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
@@ -20371,6 +20449,11 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20371
20449
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
20372
20450
|
workspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
20373
20451
|
};
|
|
20452
|
+
export declare enum DevAiRovoDevSessionArchivedFilter {
|
|
20453
|
+
All = "ALL",
|
|
20454
|
+
ArchivedOnly = "ARCHIVED_ONLY",
|
|
20455
|
+
NonArchivedOnly = "NON_ARCHIVED_ONLY"
|
|
20456
|
+
}
|
|
20374
20457
|
export declare type DevAiRovoDevSessionConnection = {
|
|
20375
20458
|
__typename?: 'DevAiRovoDevSessionConnection';
|
|
20376
20459
|
edges?: Maybe<Array<Maybe<DevAiRovoDevSessionEdge>>>;
|
|
@@ -20410,6 +20493,15 @@ export declare enum DevAiRovoDevSessionStatus {
|
|
|
20410
20493
|
ReadyForReview = "READY_FOR_REVIEW",
|
|
20411
20494
|
WaitingForUser = "WAITING_FOR_USER"
|
|
20412
20495
|
}
|
|
20496
|
+
export declare type DevAiRovoDevUnarchiveSessionInput = {
|
|
20497
|
+
sessionId: Scalars['ID']['input'];
|
|
20498
|
+
};
|
|
20499
|
+
export declare type DevAiRovoDevUnarchiveSessionPayload = Payload & {
|
|
20500
|
+
__typename?: 'DevAiRovoDevUnarchiveSessionPayload';
|
|
20501
|
+
errors: Array<MutationError>;
|
|
20502
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
20503
|
+
success: Scalars['Boolean']['output'];
|
|
20504
|
+
};
|
|
20413
20505
|
export declare type DevAiRunAutofixScanInput = {
|
|
20414
20506
|
repoUrl: Scalars['URL']['input'];
|
|
20415
20507
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -21116,6 +21208,7 @@ export declare type DevOpsMetrics = {
|
|
|
21116
21208
|
deploymentSize?: Maybe<DevOpsMetricsDeploymentSize>;
|
|
21117
21209
|
perDeploymentMetrics?: Maybe<DevOpsMetricsPerDeploymentMetricsConnection>;
|
|
21118
21210
|
perIssueMetrics?: Maybe<DevOpsMetricsPerIssueMetricsConnection>;
|
|
21211
|
+
perPRCycleTimeBreakdownMetrics?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownMetrics>;
|
|
21119
21212
|
perProjectPRCycleTimeMetrics?: Maybe<DevOpsMetricsPerProjectPrCycleTimeMetricsConnection>;
|
|
21120
21213
|
};
|
|
21121
21214
|
export declare type DevOpsMetricsCycleTimeArgs = {
|
|
@@ -21143,6 +21236,9 @@ export declare type DevOpsMetricsPerIssueMetricsArgs = {
|
|
|
21143
21236
|
filter: DevOpsMetricsPerIssueMetricsFilter;
|
|
21144
21237
|
first: Scalars['Int']['input'];
|
|
21145
21238
|
};
|
|
21239
|
+
export declare type DevOpsMetricsPerPrCycleTimeBreakdownMetricsArgs = {
|
|
21240
|
+
filter: DevOpsMetricsFilterInput;
|
|
21241
|
+
};
|
|
21146
21242
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
21147
21243
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21148
21244
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
@@ -21272,6 +21368,21 @@ export declare type DevOpsMetricsPerIssueMetricsFilter = {
|
|
|
21272
21368
|
jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
21273
21369
|
startFromInclusive: Scalars['DateTime']['input'];
|
|
21274
21370
|
};
|
|
21371
|
+
export declare type DevOpsMetricsPerPrCycleTimeBreakdownMetrics = {
|
|
21372
|
+
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownMetrics';
|
|
21373
|
+
cycleTimeBreakdownMetrics?: Maybe<Array<Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics>>>;
|
|
21374
|
+
};
|
|
21375
|
+
export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
21376
|
+
Review = "REVIEW",
|
|
21377
|
+
TimeToFirstReview = "TIME_TO_FIRST_REVIEW",
|
|
21378
|
+
TimeToMerge = "TIME_TO_MERGE"
|
|
21379
|
+
}
|
|
21380
|
+
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21381
|
+
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
21382
|
+
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21383
|
+
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21384
|
+
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
21385
|
+
};
|
|
21275
21386
|
export declare type DevOpsMetricsPerProjectPrCycleTimeMetrics = {
|
|
21276
21387
|
__typename?: 'DevOpsMetricsPerProjectPRCycleTimeMetrics';
|
|
21277
21388
|
medianHistoricalPRCycleTime: Scalars['Float']['output'];
|
|
@@ -22984,7 +23095,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
22984
23095
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
22985
23096
|
node?: Maybe<ExternalAssociation>;
|
|
22986
23097
|
};
|
|
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;
|
|
23098
|
+
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
23099
|
export declare type ExternalAttachment = {
|
|
22989
23100
|
__typename?: 'ExternalAttachment';
|
|
22990
23101
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23479,12 +23590,13 @@ export declare type ExternalEntities = {
|
|
|
23479
23590
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
23480
23591
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23481
23592
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23593
|
+
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
23482
23594
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23483
23595
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23484
23596
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
23485
23597
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
23486
23598
|
};
|
|
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;
|
|
23599
|
+
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
23600
|
export declare type ExternalEnvironment = {
|
|
23489
23601
|
__typename?: 'ExternalEnvironment';
|
|
23490
23602
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -23880,6 +23992,27 @@ export declare enum ExternalSpaceSubtype {
|
|
|
23880
23992
|
Software = "SOFTWARE",
|
|
23881
23993
|
Space = "SPACE"
|
|
23882
23994
|
}
|
|
23995
|
+
export declare type ExternalTest = Node & {
|
|
23996
|
+
__typename?: 'ExternalTest';
|
|
23997
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
23998
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
23999
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24000
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
24001
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24002
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
24003
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24004
|
+
id: Scalars['ID']['output'];
|
|
24005
|
+
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
24006
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24007
|
+
provider?: Maybe<ExternalProvider>;
|
|
24008
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
24009
|
+
statusPrecedence?: Maybe<Scalars['String']['output']>;
|
|
24010
|
+
testType?: Maybe<Scalars['String']['output']>;
|
|
24011
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24012
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24013
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24014
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
24015
|
+
};
|
|
23883
24016
|
export declare type ExternalTestInfo = {
|
|
23884
24017
|
__typename?: 'ExternalTestInfo';
|
|
23885
24018
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -52523,7 +52656,7 @@ export declare type HelpLayoutAnnouncementInput = {
|
|
|
52523
52656
|
useGlobalSettings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52524
52657
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52525
52658
|
};
|
|
52526
|
-
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
52659
|
+
export declare type HelpLayoutAtomicElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutKnowledgeCardsElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement;
|
|
52527
52660
|
export declare type HelpLayoutAtomicElementInput = {
|
|
52528
52661
|
announcementInput?: InputMaybe<HelpLayoutAnnouncementInput>;
|
|
52529
52662
|
breadcrumbInput?: InputMaybe<HelpLayoutBreadcrumbElementInput>;
|
|
@@ -52534,6 +52667,7 @@ export declare type HelpLayoutAtomicElementInput = {
|
|
|
52534
52667
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
52535
52668
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
52536
52669
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
52670
|
+
knowledgeCardsInput?: InputMaybe<HelpLayoutKnowledgeCardsElementInput>;
|
|
52537
52671
|
noContentElementInput?: InputMaybe<HelpLayoutNoContentElementInput>;
|
|
52538
52672
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
52539
52673
|
portalsListInput?: InputMaybe<HelpLayoutPortalsListInput>;
|
|
@@ -52550,6 +52684,7 @@ export declare enum HelpLayoutAtomicElementKey {
|
|
|
52550
52684
|
Heading = "HEADING",
|
|
52551
52685
|
Hero = "HERO",
|
|
52552
52686
|
Image = "IMAGE",
|
|
52687
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
52553
52688
|
NoContent = "NO_CONTENT",
|
|
52554
52689
|
Paragraph = "PARAGRAPH",
|
|
52555
52690
|
PortalsList = "PORTALS_LIST",
|
|
@@ -52675,7 +52810,7 @@ export declare type HelpLayoutEditorInput = {
|
|
|
52675
52810
|
adf: Scalars['String']['input'];
|
|
52676
52811
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52677
52812
|
};
|
|
52678
|
-
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
52813
|
+
export declare type HelpLayoutElement = HelpLayoutAnnouncementElement | HelpLayoutBreadcrumbElement | HelpLayoutConnectElement | HelpLayoutEditorElement | HelpLayoutForgeElement | HelpLayoutHeadingAtomicElement | HelpLayoutHeroElement | HelpLayoutImageAtomicElement | HelpLayoutKnowledgeCardsElement | HelpLayoutLinkCardCompositeElement | HelpLayoutNoContentElement | HelpLayoutParagraphAtomicElement | HelpLayoutPortalsListElement | HelpLayoutSearchAtomicElement | HelpLayoutSuggestedRequestFormsListElement | HelpLayoutTopicsListElement | QueryError;
|
|
52679
52814
|
export declare enum HelpLayoutElementCategory {
|
|
52680
52815
|
Basic = "BASIC",
|
|
52681
52816
|
Navigation = "NAVIGATION"
|
|
@@ -52690,6 +52825,7 @@ export declare type HelpLayoutElementInput = {
|
|
|
52690
52825
|
headingConfigInput?: InputMaybe<HelpLayoutHeadingConfigInput>;
|
|
52691
52826
|
heroElementInput?: InputMaybe<HelpLayoutHeroElementInput>;
|
|
52692
52827
|
imageConfigInput?: InputMaybe<HelpLayoutImageConfigInput>;
|
|
52828
|
+
knowledgeCardsInput?: InputMaybe<HelpLayoutKnowledgeCardsElementInput>;
|
|
52693
52829
|
linkCardInput?: InputMaybe<HelpLayoutLinkCardInput>;
|
|
52694
52830
|
noContentElementInput?: InputMaybe<HelpLayoutNoContentElementInput>;
|
|
52695
52831
|
paragraphConfigInput?: InputMaybe<HelpLayoutParagraphConfigInput>;
|
|
@@ -52707,6 +52843,7 @@ export declare enum HelpLayoutElementKey {
|
|
|
52707
52843
|
Heading = "HEADING",
|
|
52708
52844
|
Hero = "HERO",
|
|
52709
52845
|
Image = "IMAGE",
|
|
52846
|
+
KnowledgeCards = "KNOWLEDGE_CARDS",
|
|
52710
52847
|
LinkCard = "LINK_CARD",
|
|
52711
52848
|
NoContent = "NO_CONTENT",
|
|
52712
52849
|
Paragraph = "PARAGRAPH",
|
|
@@ -52844,6 +52981,15 @@ export declare type HelpLayoutImageConfigInput = {
|
|
|
52844
52981
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
52845
52982
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52846
52983
|
};
|
|
52984
|
+
export declare type HelpLayoutKnowledgeCardsElement = HelpLayoutVisualEntity & Node & {
|
|
52985
|
+
__typename?: 'HelpLayoutKnowledgeCardsElement';
|
|
52986
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
52987
|
+
id: Scalars['ID']['output'];
|
|
52988
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
52989
|
+
};
|
|
52990
|
+
export declare type HelpLayoutKnowledgeCardsElementInput = {
|
|
52991
|
+
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
52992
|
+
};
|
|
52847
52993
|
export declare type HelpLayoutLinkCardCompositeElement = HelpLayoutCompositeElement & HelpLayoutVisualEntity & Node & {
|
|
52848
52994
|
__typename?: 'HelpLayoutLinkCardCompositeElement';
|
|
52849
52995
|
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
@@ -58045,6 +58191,7 @@ export declare type JiraDeleteBoardViewStatusColumnPayload = Payload & {
|
|
|
58045
58191
|
__typename?: 'JiraDeleteBoardViewStatusColumnPayload';
|
|
58046
58192
|
boardView?: Maybe<JiraBoardView>;
|
|
58047
58193
|
errors?: Maybe<Array<MutationError>>;
|
|
58194
|
+
migrationId?: Maybe<Scalars['ID']['output']>;
|
|
58048
58195
|
success: Scalars['Boolean']['output'];
|
|
58049
58196
|
};
|
|
58050
58197
|
export declare type JiraDeleteCustomBackgroundInput = {
|
|
@@ -63547,7 +63694,6 @@ export declare type JiraMutation = {
|
|
|
63547
63694
|
scheduleBulkExecuteProjectCleanupRecommendations?: Maybe<JiraBulkCleanupProjectsPayload>;
|
|
63548
63695
|
scheduleCalendarIssue?: Maybe<JiraScheduleCalendarIssuePayload>;
|
|
63549
63696
|
scheduleCalendarIssueV2?: Maybe<JiraScheduleCalendarIssueWithScenarioPayload>;
|
|
63550
|
-
scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
63551
63697
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
63552
63698
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
63553
63699
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
@@ -64013,10 +64159,6 @@ export declare type JiraMutationScheduleCalendarIssueV2Args = {
|
|
|
64013
64159
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
64014
64160
|
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
64015
64161
|
};
|
|
64016
|
-
export declare type JiraMutationScheduleTimelineItemArgs = {
|
|
64017
|
-
cloudId: Scalars['ID']['input'];
|
|
64018
|
-
input: JiraScheduleTimelineItemInput;
|
|
64019
|
-
};
|
|
64020
64162
|
export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
64021
64163
|
cloudId: Scalars['ID']['input'];
|
|
64022
64164
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
@@ -64816,6 +64958,7 @@ export declare type JiraOnboardingConfig = {
|
|
|
64816
64958
|
destination?: Maybe<Scalars['URL']['output']>;
|
|
64817
64959
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64818
64960
|
logo?: Maybe<JiraOnboardingMedia>;
|
|
64961
|
+
mediaReadToken?: Maybe<JiraOnboardingMediaReadToken>;
|
|
64819
64962
|
modals?: Maybe<Array<Maybe<JiraOnboardingModal>>>;
|
|
64820
64963
|
name: Scalars['String']['output'];
|
|
64821
64964
|
onboardingConfigAri: Scalars['ID']['output'];
|
|
@@ -64874,6 +65017,11 @@ export declare type JiraOnboardingMediaInput = {
|
|
|
64874
65017
|
mediaType: JiraOnboardingMediaType;
|
|
64875
65018
|
url?: InputMaybe<Scalars['URL']['input']>;
|
|
64876
65019
|
};
|
|
65020
|
+
export declare type JiraOnboardingMediaReadToken = {
|
|
65021
|
+
__typename?: 'JiraOnboardingMediaReadToken';
|
|
65022
|
+
collectionName: Scalars['String']['output'];
|
|
65023
|
+
token: Scalars['String']['output'];
|
|
65024
|
+
};
|
|
64877
65025
|
export declare enum JiraOnboardingMediaType {
|
|
64878
65026
|
Image = "IMAGE",
|
|
64879
65027
|
Video = "VIDEO"
|
|
@@ -68841,7 +68989,7 @@ export declare type JiraScheduleCalendarIssueWithScenarioPayload = Payload & {
|
|
|
68841
68989
|
success: Scalars['Boolean']['output'];
|
|
68842
68990
|
};
|
|
68843
68991
|
export declare type JiraScheduleTimelineItemInput = {
|
|
68844
|
-
|
|
68992
|
+
endDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
68845
68993
|
issueId: Scalars['ID']['input'];
|
|
68846
68994
|
operation: JiraScheduleTimelineItemOperation;
|
|
68847
68995
|
startDate?: InputMaybe<JiraClearableDateFieldInput>;
|
|
@@ -81464,6 +81612,7 @@ export declare type Mutation = {
|
|
|
81464
81612
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
81465
81613
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
81466
81614
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
81615
|
+
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
81467
81616
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
81468
81617
|
confluence_createPdfExportTaskForBulkContent?: Maybe<ConfluenceCreatePdfExportTaskForBulkContentPayload>;
|
|
81469
81618
|
confluence_createPdfExportTaskForSingleContent?: Maybe<ConfluenceCreatePdfExportTaskForSingleContentPayload>;
|
|
@@ -81616,8 +81765,10 @@ export declare type Mutation = {
|
|
|
81616
81765
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
81617
81766
|
devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
|
|
81618
81767
|
devai_rovodevArchiveSession?: Maybe<DevAiRovoDevArchiveSessionPayload>;
|
|
81619
|
-
|
|
81768
|
+
devai_rovodevCreateBulkSessionByCloudId?: Maybe<DevAiRovoDevBulkCreateSessionPayload>;
|
|
81620
81769
|
devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
81770
|
+
devai_rovodevCreateSessionByCloudId?: Maybe<DevAiRovoDevCreateSessionPayload>;
|
|
81771
|
+
devai_rovodevUnarchiveSession?: Maybe<DevAiRovoDevUnarchiveSessionPayload>;
|
|
81621
81772
|
disableExperiment?: Maybe<TapExperiment>;
|
|
81622
81773
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
81623
81774
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -81756,8 +81907,11 @@ export declare type Mutation = {
|
|
|
81756
81907
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
81757
81908
|
projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
|
|
81758
81909
|
projects_addMembers?: Maybe<TownsquareProjectsAddMembersPayload>;
|
|
81910
|
+
projects_addTeamContributors?: Maybe<TownsquareProjectsAddTeamContributorsPayload>;
|
|
81911
|
+
projects_clone?: Maybe<TownsquareProjectsClonePayload>;
|
|
81759
81912
|
projects_create?: Maybe<TownsquareProjectsCreatePayload>;
|
|
81760
81913
|
projects_createLink?: Maybe<TownsquareProjectsCreateLinkPayload>;
|
|
81914
|
+
projects_createUpdate?: Maybe<TownsquareProjectsCreateUpdatePayload>;
|
|
81761
81915
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
81762
81916
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
81763
81917
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
@@ -82064,6 +82218,7 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
82064
82218
|
cloudId: Scalars['ID']['input'];
|
|
82065
82219
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
82066
82220
|
input: AssetsDmDataSourceInput;
|
|
82221
|
+
jobId?: InputMaybe<Scalars['String']['input']>;
|
|
82067
82222
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
82068
82223
|
workspaceId: Scalars['ID']['input'];
|
|
82069
82224
|
};
|
|
@@ -82200,6 +82355,10 @@ export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
|
82200
82355
|
cloudId: Scalars['ID']['input'];
|
|
82201
82356
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
82202
82357
|
};
|
|
82358
|
+
export declare type MutationConfluence_CreateCsvExportTaskArgs = {
|
|
82359
|
+
cloudId: Scalars['ID']['input'];
|
|
82360
|
+
input: ConfluenceCreateCsvExportTaskInput;
|
|
82361
|
+
};
|
|
82203
82362
|
export declare type MutationConfluence_CreateCustomRoleArgs = {
|
|
82204
82363
|
cloudId: Scalars['ID']['input'];
|
|
82205
82364
|
input: ConfluenceCreateCustomRoleInput;
|
|
@@ -82764,12 +82923,18 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
|
|
|
82764
82923
|
export declare type MutationDevai_RovodevArchiveSessionArgs = {
|
|
82765
82924
|
input: DevAiRovoDevArchiveSessionInput;
|
|
82766
82925
|
};
|
|
82767
|
-
export declare type
|
|
82768
|
-
input:
|
|
82926
|
+
export declare type MutationDevai_RovodevCreateBulkSessionByCloudIdArgs = {
|
|
82927
|
+
input: DevAiRovoDevBulkCreateSessionByCloudIdInput;
|
|
82769
82928
|
};
|
|
82770
82929
|
export declare type MutationDevai_RovodevCreateSessionArgs = {
|
|
82771
82930
|
input: DevAiRovoDevCreateSessionInput;
|
|
82772
82931
|
};
|
|
82932
|
+
export declare type MutationDevai_RovodevCreateSessionByCloudIdArgs = {
|
|
82933
|
+
input: DevAiRovoDevCreateSessionByCloudIdInput;
|
|
82934
|
+
};
|
|
82935
|
+
export declare type MutationDevai_RovodevUnarchiveSessionArgs = {
|
|
82936
|
+
input: DevAiRovoDevUnarchiveSessionInput;
|
|
82937
|
+
};
|
|
82773
82938
|
export declare type MutationDisableExperimentArgs = {
|
|
82774
82939
|
experimentKey: Scalars['String']['input'];
|
|
82775
82940
|
};
|
|
@@ -83142,12 +83307,21 @@ export declare type MutationProjects_AddGoalLinkArgs = {
|
|
|
83142
83307
|
export declare type MutationProjects_AddMembersArgs = {
|
|
83143
83308
|
input?: InputMaybe<TownsquareProjectsAddMembersInput>;
|
|
83144
83309
|
};
|
|
83310
|
+
export declare type MutationProjects_AddTeamContributorsArgs = {
|
|
83311
|
+
input?: InputMaybe<TownsquareProjectsAddTeamContributorsInput>;
|
|
83312
|
+
};
|
|
83313
|
+
export declare type MutationProjects_CloneArgs = {
|
|
83314
|
+
input: TownsquareProjectsCloneInput;
|
|
83315
|
+
};
|
|
83145
83316
|
export declare type MutationProjects_CreateArgs = {
|
|
83146
83317
|
input: TownsquareProjectsCreateInput;
|
|
83147
83318
|
};
|
|
83148
83319
|
export declare type MutationProjects_CreateLinkArgs = {
|
|
83149
83320
|
input?: InputMaybe<TownsquareProjectsCreateLinkInput>;
|
|
83150
83321
|
};
|
|
83322
|
+
export declare type MutationProjects_CreateUpdateArgs = {
|
|
83323
|
+
input?: InputMaybe<TownsquareProjectsCreateUpdateInput>;
|
|
83324
|
+
};
|
|
83151
83325
|
export declare type MutationProjects_DeleteLinkArgs = {
|
|
83152
83326
|
input?: InputMaybe<TownsquareProjectsDeleteLinkInput>;
|
|
83153
83327
|
};
|
|
@@ -86156,6 +86330,7 @@ export declare type PremiumExtensionsFeature = {
|
|
|
86156
86330
|
isEntitled: Scalars['Boolean']['output'];
|
|
86157
86331
|
};
|
|
86158
86332
|
export declare enum PrincipalFilterType {
|
|
86333
|
+
App = "APP",
|
|
86159
86334
|
Group = "GROUP",
|
|
86160
86335
|
Guest = "GUEST",
|
|
86161
86336
|
Team = "TEAM",
|
|
@@ -86623,7 +86798,6 @@ export declare type Query = {
|
|
|
86623
86798
|
comments?: Maybe<PaginatedCommentList>;
|
|
86624
86799
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
86625
86800
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
86626
|
-
confluenceLegacy_tenant?: Maybe<ConfluenceLegacyTenant>;
|
|
86627
86801
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
86628
86802
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
86629
86803
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
@@ -86635,12 +86809,19 @@ export declare type Query = {
|
|
|
86635
86809
|
confluence_contentSmartLinksForDraft?: Maybe<PaginatedSmartLinkList>;
|
|
86636
86810
|
confluence_contentWatchersUnfiltered?: Maybe<PaginatedPersonList>;
|
|
86637
86811
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
86812
|
+
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
86813
|
+
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
86638
86814
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
86639
86815
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
86640
86816
|
confluence_empty?: Maybe<Scalars['String']['output']>;
|
|
86641
86817
|
confluence_expandTypeFromJira?: Maybe<ConfluenceExpandTypeFromJira>;
|
|
86818
|
+
confluence_expert?: Maybe<ConfluenceExpert>;
|
|
86819
|
+
confluence_expertsByTopic?: Maybe<ConfluenceExpertConnection>;
|
|
86820
|
+
confluence_expertsOfAllTime?: Maybe<ConfluenceExpertConnection>;
|
|
86821
|
+
confluence_expertsOfWeek?: Maybe<ConfluenceExpertConnection>;
|
|
86642
86822
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
86643
86823
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
86824
|
+
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
86644
86825
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
86645
86826
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
86646
86827
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
@@ -86648,10 +86829,10 @@ export declare type Query = {
|
|
|
86648
86829
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
86649
86830
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
86650
86831
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
86651
|
-
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
86652
86832
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
86653
86833
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
86654
86834
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
86835
|
+
confluence_questionsConfiguration?: Maybe<ConfluenceQuestionsConfiguration>;
|
|
86655
86836
|
confluence_reactedUsers?: Maybe<ConfluenceReactedUsersResponsePayload>;
|
|
86656
86837
|
confluence_reactionsSummaries?: Maybe<Array<Maybe<ConfluenceReactionSummary>>>;
|
|
86657
86838
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
@@ -86708,8 +86889,10 @@ export declare type Query = {
|
|
|
86708
86889
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86709
86890
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
86710
86891
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
86892
|
+
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
86711
86893
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
86712
86894
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
86895
|
+
convoai_promptSuggestions?: Maybe<ConvoAiPromptSuggestionResult>;
|
|
86713
86896
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
86714
86897
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
86715
86898
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -87378,14 +87561,16 @@ export declare type QueryAssetsDm_AdaptersArgs = {
|
|
|
87378
87561
|
};
|
|
87379
87562
|
export declare type QueryAssetsDm_DataSourceConfigArgs = {
|
|
87380
87563
|
cloudId: Scalars['ID']['input'];
|
|
87381
|
-
dataSourceId
|
|
87564
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
87382
87565
|
dataSourceTypeId: Scalars['Int']['input'];
|
|
87566
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
87383
87567
|
workspaceId: Scalars['ID']['input'];
|
|
87384
87568
|
};
|
|
87385
87569
|
export declare type QueryAssetsDm_DataSourceDetailsArgs = {
|
|
87386
87570
|
cloudId: Scalars['ID']['input'];
|
|
87387
|
-
dataSourceId
|
|
87571
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
87388
87572
|
dataSourceTypeId: Scalars['Int']['input'];
|
|
87573
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
87389
87574
|
workspaceId: Scalars['ID']['input'];
|
|
87390
87575
|
};
|
|
87391
87576
|
export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
@@ -87395,9 +87580,10 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
87395
87580
|
};
|
|
87396
87581
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
87397
87582
|
cloudID: Scalars['ID']['input'];
|
|
87398
|
-
dataSourceId
|
|
87583
|
+
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
87399
87584
|
dataSourceTypeId: Scalars['Int']['input'];
|
|
87400
87585
|
isTemplate: Scalars['Boolean']['input'];
|
|
87586
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
87401
87587
|
workspaceId: Scalars['ID']['input'];
|
|
87402
87588
|
};
|
|
87403
87589
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
@@ -87406,12 +87592,12 @@ export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
|
87406
87592
|
};
|
|
87407
87593
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
87408
87594
|
cloudId: Scalars['ID']['input'];
|
|
87409
|
-
objectId: Scalars['
|
|
87595
|
+
objectId: Scalars['ID']['input'];
|
|
87410
87596
|
workspaceId: Scalars['ID']['input'];
|
|
87411
87597
|
};
|
|
87412
87598
|
export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
87413
87599
|
cloudId: Scalars['ID']['input'];
|
|
87414
|
-
objectId: Scalars['
|
|
87600
|
+
objectId: Scalars['ID']['input'];
|
|
87415
87601
|
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
87416
87602
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
87417
87603
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -87576,9 +87762,6 @@ export declare type QueryCommentsArgs = {
|
|
|
87576
87762
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87577
87763
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
87578
87764
|
};
|
|
87579
|
-
export declare type QueryConfluenceLegacy_TenantArgs = {
|
|
87580
|
-
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87581
|
-
};
|
|
87582
87765
|
export declare type QueryConfluenceUsersArgs = {
|
|
87583
87766
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87584
87767
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87636,6 +87819,14 @@ export declare type QueryConfluence_ContentWatchersUnfilteredArgs = {
|
|
|
87636
87819
|
export declare type QueryConfluence_ContentsArgs = {
|
|
87637
87820
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
87638
87821
|
};
|
|
87822
|
+
export declare type QueryConfluence_ContextualTitleEmojiArgs = {
|
|
87823
|
+
pageAri: Scalars['ID']['input'];
|
|
87824
|
+
pageTitle: Scalars['String']['input'];
|
|
87825
|
+
};
|
|
87826
|
+
export declare type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
87827
|
+
cloudId: Scalars['ID']['input'];
|
|
87828
|
+
taskId: Scalars['String']['input'];
|
|
87829
|
+
};
|
|
87639
87830
|
export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
|
|
87640
87831
|
cloudId: Scalars['ID']['input'];
|
|
87641
87832
|
};
|
|
@@ -87649,6 +87840,28 @@ export declare type QueryConfluence_EmptyArgs = {
|
|
|
87649
87840
|
export declare type QueryConfluence_ExpandTypeFromJiraArgs = {
|
|
87650
87841
|
cloudId: Scalars['ID']['input'];
|
|
87651
87842
|
};
|
|
87843
|
+
export declare type QueryConfluence_ExpertArgs = {
|
|
87844
|
+
cloudId: Scalars['ID']['input'];
|
|
87845
|
+
id: Scalars['ID']['input'];
|
|
87846
|
+
};
|
|
87847
|
+
export declare type QueryConfluence_ExpertsByTopicArgs = {
|
|
87848
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87849
|
+
cloudId: Scalars['ID']['input'];
|
|
87850
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87851
|
+
topicId?: InputMaybe<Scalars['ID']['input']>;
|
|
87852
|
+
topicName?: InputMaybe<Scalars['String']['input']>;
|
|
87853
|
+
};
|
|
87854
|
+
export declare type QueryConfluence_ExpertsOfAllTimeArgs = {
|
|
87855
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87856
|
+
cloudId: Scalars['ID']['input'];
|
|
87857
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87858
|
+
};
|
|
87859
|
+
export declare type QueryConfluence_ExpertsOfWeekArgs = {
|
|
87860
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87861
|
+
cloudId: Scalars['ID']['input'];
|
|
87862
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87863
|
+
numWeeks: Scalars['Int']['input'];
|
|
87864
|
+
};
|
|
87652
87865
|
export declare type QueryConfluence_ExternalCollaboratorsByCriteriaArgs = {
|
|
87653
87866
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87654
87867
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87668,6 +87881,10 @@ export declare type QueryConfluence_ForgeExtensionsByTypeArgs = {
|
|
|
87668
87881
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
87669
87882
|
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
87670
87883
|
};
|
|
87884
|
+
export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
87885
|
+
cloudId: Scalars['ID']['input'];
|
|
87886
|
+
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
87887
|
+
};
|
|
87671
87888
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
87672
87889
|
cloudId: Scalars['ID']['input'];
|
|
87673
87890
|
spaceKey: Scalars['String']['input'];
|
|
@@ -87709,6 +87926,9 @@ export declare type QueryConfluence_PublicLinkSpaceHomePageArgs = {
|
|
|
87709
87926
|
cloudId: Scalars['ID']['input'];
|
|
87710
87927
|
spaceKey: Scalars['String']['input'];
|
|
87711
87928
|
};
|
|
87929
|
+
export declare type QueryConfluence_QuestionsConfigurationArgs = {
|
|
87930
|
+
cloudId: Scalars['ID']['input'];
|
|
87931
|
+
};
|
|
87712
87932
|
export declare type QueryConfluence_ReactedUsersArgs = {
|
|
87713
87933
|
cloudId: Scalars['ID']['input'];
|
|
87714
87934
|
input: ConfluenceReactedUsersInput;
|
|
@@ -87749,7 +87969,6 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
87749
87969
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87750
87970
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
87751
87971
|
cql: Scalars['String']['input'];
|
|
87752
|
-
excludeServiceAppUsers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87753
87972
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87754
87973
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
87755
87974
|
sitePermissionTypeFilter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88019,6 +88238,13 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
88019
88238
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88020
88239
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
88021
88240
|
};
|
|
88241
|
+
export declare type QueryConvoai_JiraRelated3pLinksSuggestionsByIssueIdArgs = {
|
|
88242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88243
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
88244
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88245
|
+
id: Scalars['ID']['input'];
|
|
88246
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
88247
|
+
};
|
|
88022
88248
|
export declare type QueryConvoai_JiraRelatedResourcesSuggestionsArgs = {
|
|
88023
88249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88024
88250
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -88039,6 +88265,10 @@ export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
|
88039
88265
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
88040
88266
|
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
88041
88267
|
};
|
|
88268
|
+
export declare type QueryConvoai_PromptSuggestionsArgs = {
|
|
88269
|
+
cloudId: Scalars['ID']['input'];
|
|
88270
|
+
input: ConvoAiPromptSuggestionsInput;
|
|
88271
|
+
};
|
|
88042
88272
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
88043
88273
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
88044
88274
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -88295,6 +88525,7 @@ export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
|
88295
88525
|
export declare type QueryDevai_RovodevSessionsArgs = {
|
|
88296
88526
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
88297
88527
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88528
|
+
isArchived?: InputMaybe<DevAiRovoDevSessionArchivedFilter>;
|
|
88298
88529
|
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
88299
88530
|
sort?: InputMaybe<DevAiRovoDevSessionSort>;
|
|
88300
88531
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -91391,6 +91622,7 @@ export declare type RoleAssignmentPrincipalInput = {
|
|
|
91391
91622
|
};
|
|
91392
91623
|
export declare enum RoleAssignmentPrincipalType {
|
|
91393
91624
|
AccessClass = "ACCESS_CLASS",
|
|
91625
|
+
App = "APP",
|
|
91394
91626
|
Group = "GROUP",
|
|
91395
91627
|
Team = "TEAM",
|
|
91396
91628
|
User = "USER"
|
|
@@ -93525,7 +93757,6 @@ export declare type ShepherdClassification = {
|
|
|
93525
93757
|
__typename?: 'ShepherdClassification';
|
|
93526
93758
|
changedBy?: Maybe<ShepherdClassificationUser>;
|
|
93527
93759
|
changedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
93528
|
-
color?: Maybe<ShepherdClassificationLevelColor>;
|
|
93529
93760
|
createdBy?: Maybe<ShepherdClassificationUser>;
|
|
93530
93761
|
createdOn?: Maybe<Scalars['DateTime']['output']>;
|
|
93531
93762
|
definition?: Maybe<Scalars['String']['output']>;
|
|
@@ -93542,21 +93773,6 @@ export declare type ShepherdClassificationEdge = {
|
|
|
93542
93773
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
93543
93774
|
node?: Maybe<ShepherdClassification>;
|
|
93544
93775
|
};
|
|
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
93776
|
export declare enum ShepherdClassificationStatus {
|
|
93561
93777
|
Archived = "ARCHIVED",
|
|
93562
93778
|
Draft = "DRAFT",
|
|
@@ -95758,6 +95974,7 @@ export declare type SpfAskComment = {
|
|
|
95758
95974
|
__typename?: 'SpfAskComment';
|
|
95759
95975
|
askId: Scalars['String']['output'];
|
|
95760
95976
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
95977
|
+
createdByUser?: Maybe<User>;
|
|
95761
95978
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
95762
95979
|
data: Scalars['String']['output'];
|
|
95763
95980
|
id: Scalars['ID']['output'];
|
|
@@ -95789,6 +96006,7 @@ export declare type SpfAskEdge = {
|
|
|
95789
96006
|
export declare type SpfAskLink = {
|
|
95790
96007
|
__typename?: 'SpfAskLink';
|
|
95791
96008
|
askId: Scalars['String']['output'];
|
|
96009
|
+
attachedByUser?: Maybe<User>;
|
|
95792
96010
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
95793
96011
|
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
95794
96012
|
id: Scalars['ID']['output'];
|
|
@@ -96179,6 +96397,12 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
96179
96397
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
96180
96398
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
96181
96399
|
};
|
|
96400
|
+
export declare type StakeholderCommsGroups = {
|
|
96401
|
+
__typename?: 'StakeholderCommsGroups';
|
|
96402
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
96403
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
96404
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
96405
|
+
};
|
|
96182
96406
|
export declare type StakeholderCommsModePreference = {
|
|
96183
96407
|
__typename?: 'StakeholderCommsModePreference';
|
|
96184
96408
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -96249,8 +96473,11 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
96249
96473
|
export declare type StakeholderCommsStakeholder = {
|
|
96250
96474
|
__typename?: 'StakeholderCommsStakeholder';
|
|
96251
96475
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
96476
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
96477
|
+
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
96252
96478
|
id: Scalars['ID']['output'];
|
|
96253
96479
|
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
96480
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
96254
96481
|
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
96255
96482
|
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
96256
96483
|
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
@@ -98791,6 +99018,30 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
98791
99018
|
success: Scalars['Boolean']['output'];
|
|
98792
99019
|
users?: Maybe<Array<User>>;
|
|
98793
99020
|
};
|
|
99021
|
+
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
99022
|
+
projectId: Scalars['ID']['input'];
|
|
99023
|
+
teamId: Scalars['ID']['input'];
|
|
99024
|
+
userIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
99025
|
+
};
|
|
99026
|
+
export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
99027
|
+
__typename?: 'TownsquareProjectsAddTeamContributorsPayload';
|
|
99028
|
+
contributor?: Maybe<TownsquareContributor>;
|
|
99029
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99030
|
+
project?: Maybe<TownsquareProject>;
|
|
99031
|
+
success: Scalars['Boolean']['output'];
|
|
99032
|
+
};
|
|
99033
|
+
export declare type TownsquareProjectsCloneInput = {
|
|
99034
|
+
addLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99035
|
+
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99036
|
+
name: Scalars['String']['input'];
|
|
99037
|
+
projectId: Scalars['ID']['input'];
|
|
99038
|
+
};
|
|
99039
|
+
export declare type TownsquareProjectsClonePayload = {
|
|
99040
|
+
__typename?: 'TownsquareProjectsClonePayload';
|
|
99041
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99042
|
+
project?: Maybe<TownsquareProject>;
|
|
99043
|
+
success: Scalars['Boolean']['output'];
|
|
99044
|
+
};
|
|
98794
99045
|
export declare type TownsquareProjectsCreateInput = {
|
|
98795
99046
|
containerId: Scalars['String']['input'];
|
|
98796
99047
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
@@ -98824,6 +99075,21 @@ export declare type TownsquareProjectsCreatePayload = {
|
|
|
98824
99075
|
project?: Maybe<TownsquareProject>;
|
|
98825
99076
|
success: Scalars['Boolean']['output'];
|
|
98826
99077
|
};
|
|
99078
|
+
export declare type TownsquareProjectsCreateUpdateInput = {
|
|
99079
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
99080
|
+
phase?: InputMaybe<Scalars['String']['input']>;
|
|
99081
|
+
projectId: Scalars['ID']['input'];
|
|
99082
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
99083
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
99084
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
99085
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
99086
|
+
};
|
|
99087
|
+
export declare type TownsquareProjectsCreateUpdatePayload = {
|
|
99088
|
+
__typename?: 'TownsquareProjectsCreateUpdatePayload';
|
|
99089
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99090
|
+
success: Scalars['Boolean']['output'];
|
|
99091
|
+
update?: Maybe<TownsquareProjectUpdate>;
|
|
99092
|
+
};
|
|
98827
99093
|
export declare type TownsquareProjectsDeleteLinkInput = {
|
|
98828
99094
|
linkId: Scalars['ID']['input'];
|
|
98829
99095
|
};
|
|
@@ -99194,6 +99460,17 @@ export declare type TownsquareUnshardedWorkspaceSummaryEdge = {
|
|
|
99194
99460
|
cursor: Scalars['String']['output'];
|
|
99195
99461
|
node?: Maybe<TownsquareUnshardedWorkspaceSummary>;
|
|
99196
99462
|
};
|
|
99463
|
+
export declare type TownsquareUpdateHighlightInput = {
|
|
99464
|
+
description: Scalars['String']['input'];
|
|
99465
|
+
summary: Scalars['String']['input'];
|
|
99466
|
+
type: TownsquareHighlightType;
|
|
99467
|
+
};
|
|
99468
|
+
export declare type TownsquareUpdateNoteInput = {
|
|
99469
|
+
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99470
|
+
description: Scalars['String']['input'];
|
|
99471
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
99472
|
+
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
99473
|
+
};
|
|
99197
99474
|
export declare enum TownsquareUpdateType {
|
|
99198
99475
|
System = "SYSTEM",
|
|
99199
99476
|
User = "USER"
|
|
@@ -99357,8 +99634,8 @@ export declare type TrelloActionLimits = {
|
|
|
99357
99634
|
};
|
|
99358
99635
|
export declare type TrelloActionListEntity = {
|
|
99359
99636
|
__typename?: 'TrelloActionListEntity';
|
|
99360
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
99361
99637
|
name?: Maybe<Scalars['String']['output']>;
|
|
99638
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99362
99639
|
type?: Maybe<Scalars['String']['output']>;
|
|
99363
99640
|
};
|
|
99364
99641
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -99366,8 +99643,8 @@ export declare type TrelloActionMemberEntity = {
|
|
|
99366
99643
|
avatarHash?: Maybe<Scalars['String']['output']>;
|
|
99367
99644
|
avatarUrl?: Maybe<Scalars['URL']['output']>;
|
|
99368
99645
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
99369
|
-
id: Scalars['ID']['output'];
|
|
99370
99646
|
initials?: Maybe<Scalars['String']['output']>;
|
|
99647
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99371
99648
|
text?: Maybe<Scalars['String']['output']>;
|
|
99372
99649
|
type?: Maybe<Scalars['String']['output']>;
|
|
99373
99650
|
username?: Maybe<Scalars['String']['output']>;
|
|
@@ -99401,6 +99678,17 @@ export declare type TrelloAddAttachmentToCardActionDisplayEntities = {
|
|
|
99401
99678
|
card?: Maybe<TrelloActionCardEntity>;
|
|
99402
99679
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
99403
99680
|
};
|
|
99681
|
+
export declare type TrelloAddBoardStarInput = {
|
|
99682
|
+
boardId: Scalars['ID']['input'];
|
|
99683
|
+
position: Scalars['Float']['input'];
|
|
99684
|
+
userId: Scalars['ID']['input'];
|
|
99685
|
+
};
|
|
99686
|
+
export declare type TrelloAddBoardStarPayload = Payload & {
|
|
99687
|
+
__typename?: 'TrelloAddBoardStarPayload';
|
|
99688
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99689
|
+
member?: Maybe<TrelloMember>;
|
|
99690
|
+
success: Scalars['Boolean']['output'];
|
|
99691
|
+
};
|
|
99404
99692
|
export declare type TrelloAddChecklistToCardAction = TrelloAction & TrelloCardActionData & {
|
|
99405
99693
|
__typename?: 'TrelloAddChecklistToCardAction';
|
|
99406
99694
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -99888,6 +100176,7 @@ export declare type TrelloBoardUpdated = {
|
|
|
99888
100176
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99889
100177
|
onCustomFieldDeleted?: Maybe<Array<TrelloCustomFieldDeleted>>;
|
|
99890
100178
|
onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
|
|
100179
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
99891
100180
|
powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
|
|
99892
100181
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
99893
100182
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -100643,6 +100932,16 @@ export declare type TrelloCreatePlannerCalendarEventPayload = Payload & {
|
|
|
100643
100932
|
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
100644
100933
|
success: Scalars['Boolean']['output'];
|
|
100645
100934
|
};
|
|
100935
|
+
export declare type TrelloCreateWorkspaceTagInput = {
|
|
100936
|
+
name: Scalars['String']['input'];
|
|
100937
|
+
workspaceId: Scalars['ID']['input'];
|
|
100938
|
+
};
|
|
100939
|
+
export declare type TrelloCreateWorkspaceTagPayload = Payload & {
|
|
100940
|
+
__typename?: 'TrelloCreateWorkspaceTagPayload';
|
|
100941
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100942
|
+
success: Scalars['Boolean']['output'];
|
|
100943
|
+
tag?: Maybe<TrelloTag>;
|
|
100944
|
+
};
|
|
100646
100945
|
export declare type TrelloCustomField = {
|
|
100647
100946
|
__typename?: 'TrelloCustomField';
|
|
100648
100947
|
display?: Maybe<TrelloCustomFieldDisplay>;
|
|
@@ -101169,6 +101468,7 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
|
101169
101468
|
};
|
|
101170
101469
|
export declare type TrelloMutationApi = {
|
|
101171
101470
|
__typename?: 'TrelloMutationApi';
|
|
101471
|
+
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
101172
101472
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
101173
101473
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
101174
101474
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
@@ -101177,6 +101477,7 @@ export declare type TrelloMutationApi = {
|
|
|
101177
101477
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
101178
101478
|
createOrUpdatePlannerCalendar?: Maybe<TrelloCreateOrUpdatePlannerCalendarPayload>;
|
|
101179
101479
|
createPlannerCalendarEvent?: Maybe<TrelloCreatePlannerCalendarEventPayload>;
|
|
101480
|
+
createWorkspaceTag?: Maybe<TrelloCreateWorkspaceTagPayload>;
|
|
101180
101481
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
101181
101482
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
101182
101483
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
@@ -101200,6 +101501,9 @@ export declare type TrelloMutationApi = {
|
|
|
101200
101501
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
101201
101502
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
101202
101503
|
};
|
|
101504
|
+
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
101505
|
+
input: TrelloAddBoardStarInput;
|
|
101506
|
+
};
|
|
101203
101507
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
101204
101508
|
input: TrelloAddMemberInput;
|
|
101205
101509
|
};
|
|
@@ -101224,6 +101528,9 @@ export declare type TrelloMutationApiCreateOrUpdatePlannerCalendarArgs = {
|
|
|
101224
101528
|
export declare type TrelloMutationApiCreatePlannerCalendarEventArgs = {
|
|
101225
101529
|
input: TrelloCreatePlannerCalendarEventInput;
|
|
101226
101530
|
};
|
|
101531
|
+
export declare type TrelloMutationApiCreateWorkspaceTagArgs = {
|
|
101532
|
+
input: TrelloCreateWorkspaceTagInput;
|
|
101533
|
+
};
|
|
101227
101534
|
export declare type TrelloMutationApiDeletePlannerCalendarEventArgs = {
|
|
101228
101535
|
input: TrelloDeletePlannerCalendarEventInput;
|
|
101229
101536
|
};
|
|
@@ -101681,6 +101988,7 @@ export declare type TrelloPowerUp = {
|
|
|
101681
101988
|
export declare type TrelloPowerUpData = {
|
|
101682
101989
|
__typename?: 'TrelloPowerUpData';
|
|
101683
101990
|
access?: Maybe<TrelloPowerUpDataAccess>;
|
|
101991
|
+
id: Scalars['ID']['output'];
|
|
101684
101992
|
modelId?: Maybe<Scalars['ID']['output']>;
|
|
101685
101993
|
objectId: Scalars['ID']['output'];
|
|
101686
101994
|
powerUp?: Maybe<TrelloPowerUp>;
|
|
@@ -101728,6 +102036,17 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
101728
102036
|
__typename?: 'TrelloPowerUpUpdated';
|
|
101729
102037
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101730
102038
|
};
|
|
102039
|
+
export declare type TrelloProposedSmartSchedule = {
|
|
102040
|
+
__typename?: 'TrelloProposedSmartSchedule';
|
|
102041
|
+
events?: Maybe<Array<TrelloProposedSmartScheduleEvent>>;
|
|
102042
|
+
unscheduledCards?: Maybe<Array<TrelloCard>>;
|
|
102043
|
+
};
|
|
102044
|
+
export declare type TrelloProposedSmartScheduleEvent = {
|
|
102045
|
+
__typename?: 'TrelloProposedSmartScheduleEvent';
|
|
102046
|
+
cards?: Maybe<Array<TrelloCard>>;
|
|
102047
|
+
endTime?: Maybe<Scalars['DateTime']['output']>;
|
|
102048
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
102049
|
+
};
|
|
101731
102050
|
export declare type TrelloProviderCalendarDeleted = {
|
|
101732
102051
|
__typename?: 'TrelloProviderCalendarDeleted';
|
|
101733
102052
|
id: Scalars['ID']['output'];
|
|
@@ -101768,6 +102087,7 @@ export declare type TrelloQueryApi = {
|
|
|
101768
102087
|
providerCalendarById?: Maybe<TrelloPlannerProviderCalendar>;
|
|
101769
102088
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
101770
102089
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
102090
|
+
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
101771
102091
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
101772
102092
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
101773
102093
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
@@ -101867,6 +102187,9 @@ export declare type TrelloQueryApiProviderPlannerCalendarsByAccountIdArgs = {
|
|
|
101867
102187
|
export declare type TrelloQueryApiRecentBoardsByIdsArgs = {
|
|
101868
102188
|
ids: Array<Scalars['ID']['input']>;
|
|
101869
102189
|
};
|
|
102190
|
+
export declare type TrelloQueryApiSmartScheduleCardsArgs = {
|
|
102191
|
+
input: TrelloSmartScheduleCardsInput;
|
|
102192
|
+
};
|
|
101870
102193
|
export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
101871
102194
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101872
102195
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
@@ -101969,6 +102292,11 @@ export declare type TrelloScaleProps = {
|
|
|
101969
102292
|
url?: Maybe<Scalars['URL']['output']>;
|
|
101970
102293
|
width?: Maybe<Scalars['Int']['output']>;
|
|
101971
102294
|
};
|
|
102295
|
+
export declare type TrelloSmartScheduleCardsInput = {
|
|
102296
|
+
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
102297
|
+
endDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
102298
|
+
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
102299
|
+
};
|
|
101972
102300
|
export declare type TrelloSticker = {
|
|
101973
102301
|
__typename?: 'TrelloSticker';
|
|
101974
102302
|
image?: Maybe<Scalars['String']['output']>;
|
|
@@ -102330,6 +102658,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
102330
102658
|
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
102331
102659
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
102332
102660
|
description?: Maybe<Scalars['String']['output']>;
|
|
102661
|
+
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
102333
102662
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
102334
102663
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
102335
102664
|
id: Scalars['ID']['output'];
|