@forge/cli-shared 9.3.0-next.11-experimental-4b981ef → 9.3.0-next.12
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 +3 -21
- package/out/apps/template-module.d.ts.map +1 -1
- package/out/apps/template-module.js +5 -4
- package/out/apps/template.d.ts.map +1 -1
- package/out/apps/template.js +10 -4
- package/out/graphql/graphql-types.d.ts +655 -47
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +157 -31
- package/out/graphql/minimal-graphql-runner.d.ts +2 -1
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/http-client/feedback-post-client.d.ts +1 -0
- package/out/http-client/feedback-post-client.d.ts.map +1 -1
- package/out/http-client/feedback-post-client.js +3 -1
- package/out/http-client/file-uploader.d.ts.map +1 -1
- package/out/http-client/file-uploader.js +9 -36
- package/out/http-client/global-edge-http-client.d.ts +1 -0
- package/out/http-client/global-edge-http-client.d.ts.map +1 -1
- package/out/http-client/trace.d.ts +2 -3
- package/out/http-client/trace.d.ts.map +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +4 -2
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +4 -30
- package/package.json +4 -2
|
@@ -11133,8 +11133,10 @@ export type AppPreDeploymentCheckError = {
|
|
|
11133
11133
|
};
|
|
11134
11134
|
export type AppPreDeploymentCheckInput = {
|
|
11135
11135
|
appId: Scalars['ID']['input'];
|
|
11136
|
+
buildTag?: InputMaybe<Scalars['String']['input']>;
|
|
11136
11137
|
bypassRules?: InputMaybe<Array<AppPreDeploymentCheckRules>>;
|
|
11137
11138
|
environmentKey: Scalars['String']['input'];
|
|
11139
|
+
majorVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11138
11140
|
manifestUrl: Scalars['URL']['input'];
|
|
11139
11141
|
};
|
|
11140
11142
|
export type AppPreDeploymentCheckOutcome = {
|
|
@@ -40719,14 +40721,6 @@ export type CreateInlineTaskNotificationPayload = Payload & {
|
|
|
40719
40721
|
success: Scalars['Boolean']['output'];
|
|
40720
40722
|
tasks: Array<Maybe<IndividualInlineTaskNotification>>;
|
|
40721
40723
|
};
|
|
40722
|
-
export type CreateInvitationUrlPayload = {
|
|
40723
|
-
__typename?: 'CreateInvitationUrlPayload';
|
|
40724
|
-
expiration: Scalars['String']['output'];
|
|
40725
|
-
id: Scalars['ID']['output'];
|
|
40726
|
-
rules: Array<InvitationUrlRule>;
|
|
40727
|
-
status: InvitationUrlsStatus;
|
|
40728
|
-
url: Scalars['String']['output'];
|
|
40729
|
-
};
|
|
40730
40724
|
export type CreateJiraPlaybookInput = {
|
|
40731
40725
|
cloudId: Scalars['ID']['input'];
|
|
40732
40726
|
filters?: InputMaybe<Array<JiraPlaybookIssueFilterInput>>;
|
|
@@ -47950,6 +47944,15 @@ export type DlpClassificationLevelsAutoUpdatedResponse = {
|
|
|
47950
47944
|
__typename?: 'DlpClassificationLevelsAutoUpdatedResponse';
|
|
47951
47945
|
levels?: Maybe<Array<Maybe<DlpClassificationLevelAutoUpdated>>>;
|
|
47952
47946
|
};
|
|
47947
|
+
export type DlpCreateFalsePositivesInput = {
|
|
47948
|
+
falsePositives: Array<DlpFalsePositiveInput>;
|
|
47949
|
+
orgId: Scalars['String']['input'];
|
|
47950
|
+
};
|
|
47951
|
+
export type DlpCreateFalsePositivesResult = {
|
|
47952
|
+
__typename?: 'DlpCreateFalsePositivesResult';
|
|
47953
|
+
errors: Array<DlpFalsePositiveError>;
|
|
47954
|
+
falsePositives: Array<DlpFalsePositive>;
|
|
47955
|
+
};
|
|
47953
47956
|
export type DlpDetectionContentSummary = {
|
|
47954
47957
|
__typename?: 'DlpDetectionContentSummary';
|
|
47955
47958
|
containerCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -47985,6 +47988,60 @@ export type DlpDetectorClassificationMappingResponse = {
|
|
|
47985
47988
|
scope?: Maybe<DlpScope>;
|
|
47986
47989
|
status?: Maybe<DlpMappingStatus>;
|
|
47987
47990
|
};
|
|
47991
|
+
export type DlpFalsePositive = {
|
|
47992
|
+
__typename?: 'DlpFalsePositive';
|
|
47993
|
+
actorId?: Maybe<Scalars['String']['output']>;
|
|
47994
|
+
app?: Maybe<Scalars['String']['output']>;
|
|
47995
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
47996
|
+
confidence?: Maybe<Scalars['String']['output']>;
|
|
47997
|
+
contentHash?: Maybe<Scalars['String']['output']>;
|
|
47998
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
47999
|
+
detectorId?: Maybe<Scalars['String']['output']>;
|
|
48000
|
+
excludedAt?: Maybe<Scalars['String']['output']>;
|
|
48001
|
+
excludedBy?: Maybe<Scalars['String']['output']>;
|
|
48002
|
+
findingId?: Maybe<Scalars['String']['output']>;
|
|
48003
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
48004
|
+
lastDetectedAt?: Maybe<Scalars['String']['output']>;
|
|
48005
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
48006
|
+
objectTitle?: Maybe<Scalars['String']['output']>;
|
|
48007
|
+
parentResourceId?: Maybe<Scalars['String']['output']>;
|
|
48008
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
48009
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
48010
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
48011
|
+
};
|
|
48012
|
+
export type DlpFalsePositiveError = {
|
|
48013
|
+
__typename?: 'DlpFalsePositiveError';
|
|
48014
|
+
findingId?: Maybe<Scalars['String']['output']>;
|
|
48015
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
48016
|
+
};
|
|
48017
|
+
export type DlpFalsePositiveFiltersInput = {
|
|
48018
|
+
categories?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48019
|
+
detectorIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48020
|
+
workspaceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48021
|
+
};
|
|
48022
|
+
export type DlpFalsePositiveInput = {
|
|
48023
|
+
actorId?: InputMaybe<Scalars['String']['input']>;
|
|
48024
|
+
app?: InputMaybe<Scalars['String']['input']>;
|
|
48025
|
+
category?: InputMaybe<Scalars['String']['input']>;
|
|
48026
|
+
confidence?: InputMaybe<Scalars['String']['input']>;
|
|
48027
|
+
contentHash: Scalars['String']['input'];
|
|
48028
|
+
contentType: Scalars['String']['input'];
|
|
48029
|
+
detectorId: Scalars['String']['input'];
|
|
48030
|
+
findingId: Scalars['String']['input'];
|
|
48031
|
+
lastDetectedAt?: InputMaybe<Scalars['String']['input']>;
|
|
48032
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
48033
|
+
objectTitle?: InputMaybe<Scalars['String']['input']>;
|
|
48034
|
+
parentResourceId: Scalars['String']['input'];
|
|
48035
|
+
resourceId: Scalars['String']['input'];
|
|
48036
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
48037
|
+
workspaceId: Scalars['String']['input'];
|
|
48038
|
+
};
|
|
48039
|
+
export type DlpFalsePositivesListResponse = {
|
|
48040
|
+
__typename?: 'DlpFalsePositivesListResponse';
|
|
48041
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48042
|
+
falsePositives: Array<DlpFalsePositive>;
|
|
48043
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48044
|
+
};
|
|
47988
48045
|
export type DlpFinding = {
|
|
47989
48046
|
__typename?: 'DlpFinding';
|
|
47990
48047
|
app?: Maybe<Scalars['String']['output']>;
|
|
@@ -47993,6 +48050,7 @@ export type DlpFinding = {
|
|
|
47993
48050
|
confidenceLevel?: Maybe<Scalars['String']['output']>;
|
|
47994
48051
|
detectedDate?: Maybe<Scalars['String']['output']>;
|
|
47995
48052
|
detectorId?: Maybe<Scalars['String']['output']>;
|
|
48053
|
+
detectorTitle?: Maybe<Scalars['String']['output']>;
|
|
47996
48054
|
detectorType?: Maybe<Scalars['String']['output']>;
|
|
47997
48055
|
findingId?: Maybe<Scalars['String']['output']>;
|
|
47998
48056
|
maxConfidence?: Maybe<Scalars['Float']['output']>;
|
|
@@ -48030,6 +48088,15 @@ export type DlpPreviewRulesImpactResponse = {
|
|
|
48030
48088
|
totalObjectsUpdatedByRules?: Maybe<Scalars['Int']['output']>;
|
|
48031
48089
|
totalObjectsWithDetections?: Maybe<Scalars['Int']['output']>;
|
|
48032
48090
|
};
|
|
48091
|
+
export type DlpRemoveFalsePositiveInput = {
|
|
48092
|
+
id: Scalars['String']['input'];
|
|
48093
|
+
orgId: Scalars['String']['input'];
|
|
48094
|
+
};
|
|
48095
|
+
export type DlpRemoveFalsePositiveResult = {
|
|
48096
|
+
__typename?: 'DlpRemoveFalsePositiveResult';
|
|
48097
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
48098
|
+
reverted?: Maybe<Scalars['Boolean']['output']>;
|
|
48099
|
+
};
|
|
48033
48100
|
export type DlpScope = {
|
|
48034
48101
|
__typename?: 'DlpScope';
|
|
48035
48102
|
scopeType?: Maybe<DlpScopeType>;
|
|
@@ -119242,6 +119309,7 @@ export type HelpCenterQueryApiHelpCenterByHoistedProjectIdRoutedArgs = {
|
|
|
119242
119309
|
};
|
|
119243
119310
|
export type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
119244
119311
|
helpCenterAri: Scalars['ID']['input'];
|
|
119312
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
119245
119313
|
};
|
|
119246
119314
|
export type HelpCenterQueryApiHelpCenterPageByIdArgs = {
|
|
119247
119315
|
helpCenterPageAri: Scalars['ID']['input'];
|
|
@@ -119466,6 +119534,7 @@ export type HelpCenterUpdateInput = {
|
|
|
119466
119534
|
helpCenterAri: Scalars['String']['input'];
|
|
119467
119535
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
119468
119536
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
119537
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
119469
119538
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
119470
119539
|
productEntityImages?: InputMaybe<Array<HelpCenterProductEntityImageInput>>;
|
|
119471
119540
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -121460,28 +121529,6 @@ export type IntervalInput = {
|
|
|
121460
121529
|
endTime: Scalars['DateTime']['input'];
|
|
121461
121530
|
startTime: Scalars['DateTime']['input'];
|
|
121462
121531
|
};
|
|
121463
|
-
export type InvitationUrl = {
|
|
121464
|
-
__typename?: 'InvitationUrl';
|
|
121465
|
-
expiration: Scalars['String']['output'];
|
|
121466
|
-
id: Scalars['String']['output'];
|
|
121467
|
-
rules: Array<InvitationUrlRule>;
|
|
121468
|
-
status: InvitationUrlsStatus;
|
|
121469
|
-
url: Scalars['String']['output'];
|
|
121470
|
-
};
|
|
121471
|
-
export type InvitationUrlRule = {
|
|
121472
|
-
__typename?: 'InvitationUrlRule';
|
|
121473
|
-
resource: Scalars['ID']['output'];
|
|
121474
|
-
role: Scalars['ID']['output'];
|
|
121475
|
-
};
|
|
121476
|
-
export type InvitationUrlsPayload = {
|
|
121477
|
-
__typename?: 'InvitationUrlsPayload';
|
|
121478
|
-
urls: Array<Maybe<InvitationUrl>>;
|
|
121479
|
-
};
|
|
121480
|
-
export declare enum InvitationUrlsStatus {
|
|
121481
|
-
Active = "ACTIVE",
|
|
121482
|
-
Deleted = "DELETED",
|
|
121483
|
-
Expired = "EXPIRED"
|
|
121484
|
-
}
|
|
121485
121532
|
export type InvocationMetrics = {
|
|
121486
121533
|
__typename?: 'InvocationMetrics';
|
|
121487
121534
|
appExecutionRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -122426,6 +122473,10 @@ export type JiraAgentInSpaceContextSuggestedSourcesArgs = {
|
|
|
122426
122473
|
filter?: InputMaybe<JiraAgentContextFilter>;
|
|
122427
122474
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122428
122475
|
};
|
|
122476
|
+
export type JiraAgentInSpaceTriggersArgs = {
|
|
122477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
122478
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122479
|
+
};
|
|
122429
122480
|
export type JiraAgentInSpaceConnection = HasPageInfo & {
|
|
122430
122481
|
__typename?: 'JiraAgentInSpaceConnection';
|
|
122431
122482
|
edges?: Maybe<Array<Maybe<JiraAgentInSpaceEdge>>>;
|
|
@@ -122500,6 +122551,7 @@ export declare enum JiraAgentInSpaceTriggerKind {
|
|
|
122500
122551
|
}
|
|
122501
122552
|
export type JiraAgentInSpaceWorkflowTrigger = JiraAgentInSpaceTrigger & {
|
|
122502
122553
|
__typename?: 'JiraAgentInSpaceWorkflowTrigger';
|
|
122554
|
+
editUrl?: Maybe<Scalars['String']['output']>;
|
|
122503
122555
|
from?: Maybe<JiraStatus>;
|
|
122504
122556
|
id: Scalars['ID']['output'];
|
|
122505
122557
|
kind: JiraAgentInSpaceTriggerKind;
|
|
@@ -150963,6 +151015,23 @@ export declare enum JiraZeroOneOrMany {
|
|
|
150963
151015
|
One = "ONE",
|
|
150964
151016
|
Zero = "ZERO"
|
|
150965
151017
|
}
|
|
151018
|
+
export type JpdBoardViewConfig = {
|
|
151019
|
+
__typename?: 'JpdBoardViewConfig';
|
|
151020
|
+
cardSize?: Maybe<JpdViewCardSize>;
|
|
151021
|
+
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
151022
|
+
columns?: Maybe<JpdViewLayoutConfig>;
|
|
151023
|
+
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
151024
|
+
connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
|
|
151025
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
151026
|
+
fields: Array<Scalars['String']['output']>;
|
|
151027
|
+
filters?: Maybe<JpdViewFilters>;
|
|
151028
|
+
hiddenFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
151029
|
+
issueLayout?: Maybe<JpdViewIssueLayoutTypeSimple>;
|
|
151030
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
151031
|
+
rankingConfig?: Maybe<JpdViewRankingConfig>;
|
|
151032
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
151033
|
+
swimlanes?: Maybe<JpdViewLayoutConfig>;
|
|
151034
|
+
};
|
|
150966
151035
|
export type JpdInsightDeletedEvent = {
|
|
150967
151036
|
__typename?: 'JpdInsightDeletedEvent';
|
|
150968
151037
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -150971,6 +151040,18 @@ export type JpdInsightDeletedEvent = {
|
|
|
150971
151040
|
performedAt: Scalars['String']['output'];
|
|
150972
151041
|
projectAri: Scalars['ID']['output'];
|
|
150973
151042
|
};
|
|
151043
|
+
export type JpdMatrixViewConfig = {
|
|
151044
|
+
__typename?: 'JpdMatrixViewConfig';
|
|
151045
|
+
axes?: Maybe<JpdViewMatrixAxes>;
|
|
151046
|
+
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
151047
|
+
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
151048
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
151049
|
+
fields: Array<Scalars['String']['output']>;
|
|
151050
|
+
filters?: Maybe<JpdViewFilters>;
|
|
151051
|
+
hiddenFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
151052
|
+
issueLayout?: Maybe<JpdViewIssueLayoutTypeSimple>;
|
|
151053
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
151054
|
+
};
|
|
150974
151055
|
export type JpdPlayContributionDeletedEvent = {
|
|
150975
151056
|
__typename?: 'JpdPlayContributionDeletedEvent';
|
|
150976
151057
|
contributionAri: Scalars['ID']['output'];
|
|
@@ -151069,6 +151150,95 @@ export type JpdSubscriptionsOnViewUpdatedArgs = {
|
|
|
151069
151150
|
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
151070
151151
|
projectAri: Scalars['ID']['input'];
|
|
151071
151152
|
};
|
|
151153
|
+
export type JpdTableViewConfig = {
|
|
151154
|
+
__typename?: 'JpdTableViewConfig';
|
|
151155
|
+
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
151156
|
+
columnSizes?: Maybe<Array<JpdViewTableColumnSize>>;
|
|
151157
|
+
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
151158
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
151159
|
+
fieldRollups?: Maybe<Array<JpdViewFieldRollup>>;
|
|
151160
|
+
fields: Array<Scalars['String']['output']>;
|
|
151161
|
+
filters?: Maybe<JpdViewFilters>;
|
|
151162
|
+
hiddenFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
151163
|
+
issueLayout?: Maybe<JpdViewIssueLayoutTypeSimple>;
|
|
151164
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
151165
|
+
numberColumnDisplay?: Maybe<JpdViewNumberColumnDisplay>;
|
|
151166
|
+
rankingConfig?: Maybe<JpdViewRankingConfig>;
|
|
151167
|
+
swimlanes?: Maybe<JpdViewLayoutConfig>;
|
|
151168
|
+
};
|
|
151169
|
+
export type JpdTimelineViewConfig = {
|
|
151170
|
+
__typename?: 'JpdTimelineViewConfig';
|
|
151171
|
+
colorConfig?: Maybe<JpdViewColorConfigWithBold>;
|
|
151172
|
+
columnWidth?: Maybe<Scalars['Int']['output']>;
|
|
151173
|
+
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
151174
|
+
connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
|
|
151175
|
+
dueDateField?: Maybe<Scalars['String']['output']>;
|
|
151176
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
151177
|
+
endTimestamp?: Maybe<Scalars['String']['output']>;
|
|
151178
|
+
fields: Array<Scalars['String']['output']>;
|
|
151179
|
+
filters?: Maybe<JpdViewFilters>;
|
|
151180
|
+
hiddenFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
151181
|
+
issueLayoutWithSummary?: Maybe<JpdViewIssueLayoutTypeWithSummary>;
|
|
151182
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
151183
|
+
rankingConfig?: Maybe<JpdViewRankingConfig>;
|
|
151184
|
+
scale: JpdViewTimelineScale;
|
|
151185
|
+
startDateField?: Maybe<Scalars['String']['output']>;
|
|
151186
|
+
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
151187
|
+
summaryCardField?: Maybe<Scalars['String']['output']>;
|
|
151188
|
+
swimlanes?: Maybe<JpdViewLayoutConfig>;
|
|
151189
|
+
todayMarker: JpdViewTodayMarker;
|
|
151190
|
+
};
|
|
151191
|
+
export type JpdTreeViewConfig = {
|
|
151192
|
+
__typename?: 'JpdTreeViewConfig';
|
|
151193
|
+
allowMultipleParents?: Maybe<Scalars['Boolean']['output']>;
|
|
151194
|
+
cardSize?: Maybe<JpdViewCardSize>;
|
|
151195
|
+
colorConfig?: Maybe<JpdViewColorConfigSimple>;
|
|
151196
|
+
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
151197
|
+
connectionsLayoutType?: Maybe<JpdViewConnectionsLayoutType>;
|
|
151198
|
+
enabledAutoSave?: Maybe<Scalars['Boolean']['output']>;
|
|
151199
|
+
filters?: Maybe<JpdViewFilters>;
|
|
151200
|
+
hierarchy?: Maybe<Array<JpdViewTreeHierarchy>>;
|
|
151201
|
+
issueLayoutWithSummary?: Maybe<JpdViewIssueLayoutTypeWithSummary>;
|
|
151202
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
151203
|
+
rankingConfig?: Maybe<JpdViewRankingConfig>;
|
|
151204
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
151205
|
+
treeDirection?: Maybe<JpdViewTreeDirection>;
|
|
151206
|
+
treeMode?: Maybe<JpdViewTreeMode>;
|
|
151207
|
+
};
|
|
151208
|
+
export type JpdView = {
|
|
151209
|
+
__typename?: 'JpdView';
|
|
151210
|
+
containerId: Scalars['ID']['output'];
|
|
151211
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
151212
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
151213
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
151214
|
+
globalViewId?: Maybe<Scalars['ID']['output']>;
|
|
151215
|
+
id: Scalars['ID']['output'];
|
|
151216
|
+
name: Scalars['String']['output'];
|
|
151217
|
+
ownerAaid?: Maybe<Scalars['String']['output']>;
|
|
151218
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
151219
|
+
viewType: JpdViewType;
|
|
151220
|
+
viewTypeConfig?: Maybe<JpdViewTypeConfig>;
|
|
151221
|
+
};
|
|
151222
|
+
export declare enum JpdViewCardSize {
|
|
151223
|
+
Default = "DEFAULT",
|
|
151224
|
+
Large = "LARGE",
|
|
151225
|
+
Small = "SMALL"
|
|
151226
|
+
}
|
|
151227
|
+
export type JpdViewColorConfigSimple = {
|
|
151228
|
+
__typename?: 'JpdViewColorConfigSimple';
|
|
151229
|
+
colorBy?: Maybe<Scalars['String']['output']>;
|
|
151230
|
+
colorStyle: JpdViewColorStyle;
|
|
151231
|
+
};
|
|
151232
|
+
export type JpdViewColorConfigWithBold = {
|
|
151233
|
+
__typename?: 'JpdViewColorConfigWithBold';
|
|
151234
|
+
boldColors?: Maybe<Scalars['Boolean']['output']>;
|
|
151235
|
+
colorBy?: Maybe<Scalars['String']['output']>;
|
|
151236
|
+
colorStyle: JpdViewColorStyle;
|
|
151237
|
+
};
|
|
151238
|
+
export declare enum JpdViewColorStyle {
|
|
151239
|
+
Background = "BACKGROUND",
|
|
151240
|
+
Highlight = "HIGHLIGHT"
|
|
151241
|
+
}
|
|
151072
151242
|
export type JpdViewCommentEvent = {
|
|
151073
151243
|
__typename?: 'JpdViewCommentEvent';
|
|
151074
151244
|
actionMadeAt: Scalars['String']['output'];
|
|
@@ -151079,6 +151249,11 @@ export type JpdViewCommentEvent = {
|
|
|
151079
151249
|
viewAri: Scalars['ID']['output'];
|
|
151080
151250
|
viewId: Scalars['Int']['output'];
|
|
151081
151251
|
};
|
|
151252
|
+
export declare enum JpdViewConnectionsLayoutType {
|
|
151253
|
+
Cards = "CARDS",
|
|
151254
|
+
List = "LIST",
|
|
151255
|
+
Summary = "SUMMARY"
|
|
151256
|
+
}
|
|
151082
151257
|
export type JpdViewCreatedDetails = {
|
|
151083
151258
|
__typename?: 'JpdViewCreatedDetails';
|
|
151084
151259
|
emoji?: Maybe<Scalars['String']['output']>;
|
|
@@ -151106,6 +151281,117 @@ export type JpdViewDeletedEvent = {
|
|
|
151106
151281
|
viewId: Scalars['Int']['output'];
|
|
151107
151282
|
viewUuid: Scalars['ID']['output'];
|
|
151108
151283
|
};
|
|
151284
|
+
export type JpdViewFieldRollup = {
|
|
151285
|
+
__typename?: 'JpdViewFieldRollup';
|
|
151286
|
+
field: Scalars['String']['output'];
|
|
151287
|
+
rollupType: JpdViewFieldRollupType;
|
|
151288
|
+
};
|
|
151289
|
+
export declare enum JpdViewFieldRollupType {
|
|
151290
|
+
Average = "AVERAGE",
|
|
151291
|
+
Count = "COUNT",
|
|
151292
|
+
Max = "MAX",
|
|
151293
|
+
Median = "MEDIAN",
|
|
151294
|
+
Min = "MIN",
|
|
151295
|
+
Sum = "SUM"
|
|
151296
|
+
}
|
|
151297
|
+
export type JpdViewFilterConjunct = {
|
|
151298
|
+
__typename?: 'JpdViewFilterConjunct';
|
|
151299
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
151300
|
+
filterType?: Maybe<JpdViewFilterConjunctType>;
|
|
151301
|
+
values?: Maybe<Array<JpdViewFilterValue>>;
|
|
151302
|
+
};
|
|
151303
|
+
export declare enum JpdViewFilterConjunctType {
|
|
151304
|
+
FieldExcludes = "FIELD_EXCLUDES",
|
|
151305
|
+
FieldHasValue = "FIELD_HAS_VALUE",
|
|
151306
|
+
FieldIncludes = "FIELD_INCLUDES",
|
|
151307
|
+
FieldNumeric = "FIELD_NUMERIC",
|
|
151308
|
+
Interval = "INTERVAL",
|
|
151309
|
+
Text = "TEXT"
|
|
151310
|
+
}
|
|
151311
|
+
export declare enum JpdViewFilterEnumType {
|
|
151312
|
+
BoardColumn = "BOARD_COLUMN",
|
|
151313
|
+
ViewGroup = "VIEW_GROUP"
|
|
151314
|
+
}
|
|
151315
|
+
export declare enum JpdViewFilterOperator {
|
|
151316
|
+
Eq = "EQ",
|
|
151317
|
+
Gt = "GT",
|
|
151318
|
+
Gte = "GTE",
|
|
151319
|
+
In = "IN",
|
|
151320
|
+
IsEmpty = "IS_EMPTY",
|
|
151321
|
+
IsNotEmpty = "IS_NOT_EMPTY",
|
|
151322
|
+
Lt = "LT",
|
|
151323
|
+
Lte = "LTE",
|
|
151324
|
+
Neq = "NEQ",
|
|
151325
|
+
NotIn = "NOT_IN"
|
|
151326
|
+
}
|
|
151327
|
+
export type JpdViewFilterValue = {
|
|
151328
|
+
__typename?: 'JpdViewFilterValue';
|
|
151329
|
+
enumValue?: Maybe<JpdViewFilterEnumType>;
|
|
151330
|
+
numericValue?: Maybe<Scalars['Float']['output']>;
|
|
151331
|
+
operator?: Maybe<JpdViewFilterOperator>;
|
|
151332
|
+
stringValue?: Maybe<Scalars['String']['output']>;
|
|
151333
|
+
};
|
|
151334
|
+
export type JpdViewFilters = {
|
|
151335
|
+
__typename?: 'JpdViewFilters';
|
|
151336
|
+
conjuncts?: Maybe<Array<JpdViewFilterConjunct>>;
|
|
151337
|
+
};
|
|
151338
|
+
export declare enum JpdViewIssueLayoutTypeSimple {
|
|
151339
|
+
Compact = "COMPACT",
|
|
151340
|
+
Detailed = "DETAILED"
|
|
151341
|
+
}
|
|
151342
|
+
export declare enum JpdViewIssueLayoutTypeWithSummary {
|
|
151343
|
+
Compact = "COMPACT",
|
|
151344
|
+
Detailed = "DETAILED",
|
|
151345
|
+
Summary = "SUMMARY"
|
|
151346
|
+
}
|
|
151347
|
+
export type JpdViewLayoutConfig = {
|
|
151348
|
+
__typename?: 'JpdViewLayoutConfig';
|
|
151349
|
+
connectionsFilters?: Maybe<JpdViewFilters>;
|
|
151350
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
151351
|
+
hideEmpty?: Maybe<Scalars['Boolean']['output']>;
|
|
151352
|
+
showMatchingConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
151353
|
+
valuesAndOrder?: Maybe<Array<Scalars['String']['output']>>;
|
|
151354
|
+
};
|
|
151355
|
+
export type JpdViewMatrixAxes = {
|
|
151356
|
+
__typename?: 'JpdViewMatrixAxes';
|
|
151357
|
+
size?: Maybe<JpdViewMatrixSize>;
|
|
151358
|
+
x: JpdViewMatrixAxis;
|
|
151359
|
+
y: JpdViewMatrixAxis;
|
|
151360
|
+
};
|
|
151361
|
+
export type JpdViewMatrixAxis = {
|
|
151362
|
+
__typename?: 'JpdViewMatrixAxis';
|
|
151363
|
+
field: Scalars['String']['output'];
|
|
151364
|
+
fieldOptions?: Maybe<Array<Scalars['String']['output']>>;
|
|
151365
|
+
reversed?: Maybe<Scalars['Boolean']['output']>;
|
|
151366
|
+
};
|
|
151367
|
+
export type JpdViewMatrixSize = {
|
|
151368
|
+
__typename?: 'JpdViewMatrixSize';
|
|
151369
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
151370
|
+
};
|
|
151371
|
+
export declare enum JpdViewNumberColumnDisplay {
|
|
151372
|
+
Disabled = "DISABLED",
|
|
151373
|
+
Enabled = "ENABLED"
|
|
151374
|
+
}
|
|
151375
|
+
export type JpdViewRanking = {
|
|
151376
|
+
__typename?: 'JpdViewRanking';
|
|
151377
|
+
field: Scalars['String']['output'];
|
|
151378
|
+
order: JpdViewRankingSortOrder;
|
|
151379
|
+
};
|
|
151380
|
+
export type JpdViewRankingConfig = {
|
|
151381
|
+
__typename?: 'JpdViewRankingConfig';
|
|
151382
|
+
ranking?: Maybe<JpdViewRanking>;
|
|
151383
|
+
rankingMode: JpdViewRankingMode;
|
|
151384
|
+
};
|
|
151385
|
+
export declare enum JpdViewRankingMode {
|
|
151386
|
+
FieldsSort = "FIELDS_SORT",
|
|
151387
|
+
ProjectRank = "PROJECT_RANK",
|
|
151388
|
+
ViewRank = "VIEW_RANK"
|
|
151389
|
+
}
|
|
151390
|
+
export declare enum JpdViewRankingSortOrder {
|
|
151391
|
+
Asc = "ASC",
|
|
151392
|
+
Desc = "DESC"
|
|
151393
|
+
}
|
|
151394
|
+
export type JpdViewResult = JpdViewSuccess | QueryError;
|
|
151109
151395
|
export type JpdViewSetCreatedEvent = {
|
|
151110
151396
|
__typename?: 'JpdViewSetCreatedEvent';
|
|
151111
151397
|
projectAri: Scalars['ID']['output'];
|
|
@@ -151125,6 +151411,59 @@ export type JpdViewSetUpdatedEvent = {
|
|
|
151125
151411
|
viewSetAri: Scalars['ID']['output'];
|
|
151126
151412
|
viewSetUuid: Scalars['ID']['output'];
|
|
151127
151413
|
};
|
|
151414
|
+
export type JpdViewSuccess = {
|
|
151415
|
+
__typename?: 'JpdViewSuccess';
|
|
151416
|
+
view: JpdView;
|
|
151417
|
+
};
|
|
151418
|
+
export type JpdViewTableColumnSize = {
|
|
151419
|
+
__typename?: 'JpdViewTableColumnSize';
|
|
151420
|
+
field: Scalars['String']['output'];
|
|
151421
|
+
width: Scalars['Int']['output'];
|
|
151422
|
+
};
|
|
151423
|
+
export declare enum JpdViewTimelineScale {
|
|
151424
|
+
Months = "MONTHS",
|
|
151425
|
+
Quarters = "QUARTERS",
|
|
151426
|
+
Weeks = "WEEKS",
|
|
151427
|
+
Years = "YEARS"
|
|
151428
|
+
}
|
|
151429
|
+
export declare enum JpdViewTodayMarker {
|
|
151430
|
+
Disabled = "DISABLED",
|
|
151431
|
+
Enabled = "ENABLED"
|
|
151432
|
+
}
|
|
151433
|
+
export declare enum JpdViewTreeDirection {
|
|
151434
|
+
Down = "DOWN",
|
|
151435
|
+
Left = "LEFT",
|
|
151436
|
+
Right = "RIGHT",
|
|
151437
|
+
Up = "UP"
|
|
151438
|
+
}
|
|
151439
|
+
export type JpdViewTreeHierarchy = {
|
|
151440
|
+
__typename?: 'JpdViewTreeHierarchy';
|
|
151441
|
+
fields?: Maybe<Array<Scalars['String']['output']>>;
|
|
151442
|
+
filters?: Maybe<JpdViewFilters>;
|
|
151443
|
+
hierarchyType: JpdViewTreeHierarchyType;
|
|
151444
|
+
items?: Maybe<Array<JpdViewTreeHierarchyItem>>;
|
|
151445
|
+
};
|
|
151446
|
+
export type JpdViewTreeHierarchyItem = {
|
|
151447
|
+
__typename?: 'JpdViewTreeHierarchyItem';
|
|
151448
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
151449
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
151450
|
+
};
|
|
151451
|
+
export declare enum JpdViewTreeHierarchyType {
|
|
151452
|
+
Field = "FIELD",
|
|
151453
|
+
IssueType = "ISSUE_TYPE"
|
|
151454
|
+
}
|
|
151455
|
+
export declare enum JpdViewTreeMode {
|
|
151456
|
+
Automatic = "AUTOMATIC",
|
|
151457
|
+
Manual = "MANUAL"
|
|
151458
|
+
}
|
|
151459
|
+
export declare enum JpdViewType {
|
|
151460
|
+
Board = "BOARD",
|
|
151461
|
+
Matrix = "MATRIX",
|
|
151462
|
+
Table = "TABLE",
|
|
151463
|
+
Timeline = "TIMELINE",
|
|
151464
|
+
Tree = "TREE"
|
|
151465
|
+
}
|
|
151466
|
+
export type JpdViewTypeConfig = JpdBoardViewConfig | JpdMatrixViewConfig | JpdTableViewConfig | JpdTimelineViewConfig | JpdTreeViewConfig;
|
|
151128
151467
|
export type JpdViewUpdatedEvent = {
|
|
151129
151468
|
__typename?: 'JpdViewUpdatedEvent';
|
|
151130
151469
|
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -153645,6 +153984,15 @@ export type JsmTelemetryProvider = {
|
|
|
153645
153984
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
153646
153985
|
provider: JsmTelemetryProviderType;
|
|
153647
153986
|
};
|
|
153987
|
+
export type JsmTelemetryProviderAvailability = {
|
|
153988
|
+
__typename?: 'JsmTelemetryProviderAvailability';
|
|
153989
|
+
capabilities: Array<Scalars['String']['output']>;
|
|
153990
|
+
connected: Scalars['Boolean']['output'];
|
|
153991
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
153992
|
+
displayName: Scalars['String']['output'];
|
|
153993
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
153994
|
+
provider: JsmTelemetryProviderType;
|
|
153995
|
+
};
|
|
153648
153996
|
export type JsmTelemetryProviderConnectionSchema = {
|
|
153649
153997
|
__typename?: 'JsmTelemetryProviderConnectionSchema';
|
|
153650
153998
|
provider: JsmTelemetryProviderType;
|
|
@@ -154488,6 +154836,14 @@ export type KitsuneInsightEdge = KitsuneEdge & {
|
|
|
154488
154836
|
cursor: Scalars['String']['output'];
|
|
154489
154837
|
node?: Maybe<KitsuneInsight>;
|
|
154490
154838
|
};
|
|
154839
|
+
export type KitsuneInsightSuggestion = {
|
|
154840
|
+
__typename?: 'KitsuneInsightSuggestion';
|
|
154841
|
+
embeddingType: Scalars['String']['output'];
|
|
154842
|
+
insight: KitsuneInsight;
|
|
154843
|
+
insightId: Scalars['ID']['output'];
|
|
154844
|
+
matchedContent: Scalars['String']['output'];
|
|
154845
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
154846
|
+
};
|
|
154491
154847
|
export type KitsuneJob = {
|
|
154492
154848
|
__typename?: 'KitsuneJob';
|
|
154493
154849
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -156420,6 +156776,7 @@ export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
|
156420
156776
|
ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
|
|
156421
156777
|
ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
|
|
156422
156778
|
ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
|
|
156779
|
+
ConfluencePagesCreatedCollaboratorTopic = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_TOPIC",
|
|
156423
156780
|
JiraAssignedCollaboratorInProject = "JIRA_ASSIGNED_COLLABORATOR_IN_PROJECT",
|
|
156424
156781
|
JiraMyWorkItems = "JIRA_MY_WORK_ITEMS",
|
|
156425
156782
|
JiraNlq = "JIRA_NLQ",
|
|
@@ -156428,10 +156785,13 @@ export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
|
156428
156785
|
JiraTicketsAssignedCollaborator = "JIRA_TICKETS_ASSIGNED_COLLABORATOR",
|
|
156429
156786
|
JiraTicketsCreated = "JIRA_TICKETS_CREATED",
|
|
156430
156787
|
JiraTicketsCreatedCollaborator = "JIRA_TICKETS_CREATED_COLLABORATOR",
|
|
156788
|
+
JiraTicketsCreatedCollaboratorTopic = "JIRA_TICKETS_CREATED_COLLABORATOR_TOPIC",
|
|
156431
156789
|
RelatedQuestion = "RELATED_QUESTION",
|
|
156432
156790
|
ThirdPartyGoogleCollaboratorDocs = "THIRD_PARTY_GOOGLE_COLLABORATOR_DOCS",
|
|
156791
|
+
ThirdPartyGoogleCollaboratorDocsTopic = "THIRD_PARTY_GOOGLE_COLLABORATOR_DOCS_TOPIC",
|
|
156433
156792
|
ThirdPartyGoogleMyDocs = "THIRD_PARTY_GOOGLE_MY_DOCS",
|
|
156434
156793
|
ThirdPartySharepointCollaboratorDocs = "THIRD_PARTY_SHAREPOINT_COLLABORATOR_DOCS",
|
|
156794
|
+
ThirdPartySharepointCollaboratorDocsTopic = "THIRD_PARTY_SHAREPOINT_COLLABORATOR_DOCS_TOPIC",
|
|
156435
156795
|
ThirdPartySharepointMyDocs = "THIRD_PARTY_SHAREPOINT_MY_DOCS",
|
|
156436
156796
|
ThirdPartySlackCollaboratorMessages = "THIRD_PARTY_SLACK_COLLABORATOR_MESSAGES",
|
|
156437
156797
|
ThirdPartySlackMyMessages = "THIRD_PARTY_SLACK_MY_MESSAGES",
|
|
@@ -162670,7 +163030,7 @@ export type MercuryAskActivityHistoryConnection = {
|
|
|
162670
163030
|
pageInfo: PageInfo;
|
|
162671
163031
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
162672
163032
|
};
|
|
162673
|
-
export type MercuryAskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
163033
|
+
export type MercuryAskActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraAlignAggProject | JiraIssue | MercuryOrganization | TeamV2 | TownsquareProject;
|
|
162674
163034
|
export type MercuryAskActivityHistoryEdge = {
|
|
162675
163035
|
__typename?: 'MercuryAskActivityHistoryEdge';
|
|
162676
163036
|
cursor: Scalars['String']['output'];
|
|
@@ -162991,6 +163351,10 @@ export type MercuryBaseJiraWorkStatusMapping = {
|
|
|
162991
163351
|
mappedStatusKey: Scalars['String']['output'];
|
|
162992
163352
|
providerMappingContext?: Maybe<MercuryJiraProviderMappingContext>;
|
|
162993
163353
|
};
|
|
163354
|
+
export declare enum MercuryBaselineContributionStatus {
|
|
163355
|
+
Contributing = "CONTRIBUTING",
|
|
163356
|
+
NonContributing = "NON_CONTRIBUTING"
|
|
163357
|
+
}
|
|
162994
163358
|
export type MercuryBaselineDetails = {
|
|
162995
163359
|
__typename?: 'MercuryBaselineDetails';
|
|
162996
163360
|
focusAreaId: Scalars['ID']['output'];
|
|
@@ -163014,6 +163378,26 @@ export declare enum MercuryBaselineJobStatus {
|
|
|
163014
163378
|
InProgress = "IN_PROGRESS",
|
|
163015
163379
|
Succeeded = "SUCCEEDED"
|
|
163016
163380
|
}
|
|
163381
|
+
export type MercuryBaselineRevision = {
|
|
163382
|
+
__typename?: 'MercuryBaselineRevision';
|
|
163383
|
+
createdBy?: Maybe<User>;
|
|
163384
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
163385
|
+
endYearMonth: Scalars['String']['output'];
|
|
163386
|
+
financialVersion?: Maybe<MercuryFinancialVersion>;
|
|
163387
|
+
id: Scalars['ID']['output'];
|
|
163388
|
+
startYearMonth: Scalars['String']['output'];
|
|
163389
|
+
};
|
|
163390
|
+
export type MercuryBaselineRevisionConnection = {
|
|
163391
|
+
__typename?: 'MercuryBaselineRevisionConnection';
|
|
163392
|
+
edges?: Maybe<Array<MercuryBaselineRevisionEdge>>;
|
|
163393
|
+
pageInfo: PageInfo;
|
|
163394
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
163395
|
+
};
|
|
163396
|
+
export type MercuryBaselineRevisionEdge = {
|
|
163397
|
+
__typename?: 'MercuryBaselineRevisionEdge';
|
|
163398
|
+
cursor: Scalars['String']['output'];
|
|
163399
|
+
node?: Maybe<MercuryBaselineRevision>;
|
|
163400
|
+
};
|
|
163017
163401
|
export type MercuryBenefitItem = Node & {
|
|
163018
163402
|
__typename?: 'MercuryBenefitItem';
|
|
163019
163403
|
benefitItemSummary?: Maybe<MercuryBenefitItemSummary>;
|
|
@@ -164785,6 +165169,16 @@ export type MercuryDeleteViewPayload = Payload & {
|
|
|
164785
165169
|
id: Scalars['ID']['output'];
|
|
164786
165170
|
success: Scalars['Boolean']['output'];
|
|
164787
165171
|
};
|
|
165172
|
+
export type MercuryDismissCompoundInsightInput = {
|
|
165173
|
+
cloudId: Scalars['ID']['input'];
|
|
165174
|
+
dismissalType: MercuryDismissalType;
|
|
165175
|
+
insightObjectId: Scalars['ID']['input'];
|
|
165176
|
+
};
|
|
165177
|
+
export type MercuryDismissCompoundInsightPayload = Payload & {
|
|
165178
|
+
__typename?: 'MercuryDismissCompoundInsightPayload';
|
|
165179
|
+
errors?: Maybe<Array<MutationError>>;
|
|
165180
|
+
success: Scalars['Boolean']['output'];
|
|
165181
|
+
};
|
|
164788
165182
|
export type MercuryDismissInsightInput = {
|
|
164789
165183
|
dismissalType: MercuryDismissalType;
|
|
164790
165184
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -164810,6 +165204,63 @@ export declare enum MercuryDismissalType {
|
|
|
164810
165204
|
Dismiss = "DISMISS",
|
|
164811
165205
|
Snooze = "SNOOZE"
|
|
164812
165206
|
}
|
|
165207
|
+
export type MercuryDismissedCompoundInsight = {
|
|
165208
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
165209
|
+
dismissalDate: Scalars['DateTime']['output'];
|
|
165210
|
+
dismissalType: MercuryDismissalType;
|
|
165211
|
+
};
|
|
165212
|
+
export type MercuryDismissedCompoundInsightConnection = {
|
|
165213
|
+
__typename?: 'MercuryDismissedCompoundInsightConnection';
|
|
165214
|
+
edges?: Maybe<Array<MercuryDismissedCompoundInsightEdge>>;
|
|
165215
|
+
pageInfo: PageInfo;
|
|
165216
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
165217
|
+
};
|
|
165218
|
+
export type MercuryDismissedCompoundInsightEdge = {
|
|
165219
|
+
__typename?: 'MercuryDismissedCompoundInsightEdge';
|
|
165220
|
+
cursor: Scalars['String']['output'];
|
|
165221
|
+
node?: Maybe<MercuryDismissedCompoundInsightObject>;
|
|
165222
|
+
};
|
|
165223
|
+
export type MercuryDismissedCompoundInsightObject = MercuryDismissedFocusAreaInsight | MercuryDismissedGoalInsight | MercuryDismissedJiraAlignProjectInsight | MercuryDismissedJiraIssueInsight | MercuryDismissedTownsquareProjectInsight;
|
|
165224
|
+
export type MercuryDismissedFocusAreaInsight = MercuryDismissedCompoundInsight & {
|
|
165225
|
+
__typename?: 'MercuryDismissedFocusAreaInsight';
|
|
165226
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
165227
|
+
ari: Scalars['ID']['output'];
|
|
165228
|
+
dismissalDate: Scalars['DateTime']['output'];
|
|
165229
|
+
dismissalType: MercuryDismissalType;
|
|
165230
|
+
insightData?: Maybe<MercuryFocusArea>;
|
|
165231
|
+
};
|
|
165232
|
+
export type MercuryDismissedGoalInsight = MercuryDismissedCompoundInsight & {
|
|
165233
|
+
__typename?: 'MercuryDismissedGoalInsight';
|
|
165234
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
165235
|
+
ari: Scalars['ID']['output'];
|
|
165236
|
+
dismissalDate: Scalars['DateTime']['output'];
|
|
165237
|
+
dismissalType: MercuryDismissalType;
|
|
165238
|
+
insightData?: Maybe<TownsquareGoal>;
|
|
165239
|
+
};
|
|
165240
|
+
export type MercuryDismissedJiraAlignProjectInsight = MercuryDismissedCompoundInsight & {
|
|
165241
|
+
__typename?: 'MercuryDismissedJiraAlignProjectInsight';
|
|
165242
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
165243
|
+
ari: Scalars['ID']['output'];
|
|
165244
|
+
dismissalDate: Scalars['DateTime']['output'];
|
|
165245
|
+
dismissalType: MercuryDismissalType;
|
|
165246
|
+
insightData?: Maybe<JiraAlignAggProject>;
|
|
165247
|
+
};
|
|
165248
|
+
export type MercuryDismissedJiraIssueInsight = MercuryDismissedCompoundInsight & {
|
|
165249
|
+
__typename?: 'MercuryDismissedJiraIssueInsight';
|
|
165250
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
165251
|
+
ari: Scalars['ID']['output'];
|
|
165252
|
+
dismissalDate: Scalars['DateTime']['output'];
|
|
165253
|
+
dismissalType: MercuryDismissalType;
|
|
165254
|
+
insightData?: Maybe<JiraIssue>;
|
|
165255
|
+
};
|
|
165256
|
+
export type MercuryDismissedTownsquareProjectInsight = MercuryDismissedCompoundInsight & {
|
|
165257
|
+
__typename?: 'MercuryDismissedTownsquareProjectInsight';
|
|
165258
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
165259
|
+
ari: Scalars['ID']['output'];
|
|
165260
|
+
dismissalDate: Scalars['DateTime']['output'];
|
|
165261
|
+
dismissalType: MercuryDismissalType;
|
|
165262
|
+
insightData?: Maybe<TownsquareProject>;
|
|
165263
|
+
};
|
|
164813
165264
|
export declare enum MercuryEntityType {
|
|
164814
165265
|
Ask = "ASK",
|
|
164815
165266
|
ChangeProposal = "CHANGE_PROPOSAL",
|
|
@@ -165002,8 +165453,10 @@ export type MercuryFocusArea = Node & {
|
|
|
165002
165453
|
archived: Scalars['Boolean']['output'];
|
|
165003
165454
|
ari: Scalars['String']['output'];
|
|
165004
165455
|
asks?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
165456
|
+
benefitBaselineRevisions?: Maybe<MercuryBaselineRevisionConnection>;
|
|
165005
165457
|
benefitSummary?: Maybe<MercuryFocusAreaBenefitSummary>;
|
|
165006
165458
|
budgets?: Maybe<Array<Maybe<MercuryFocusAreaBudget>>>;
|
|
165459
|
+
costBaselineRevisions?: Maybe<MercuryBaselineRevisionConnection>;
|
|
165007
165460
|
costSummary?: Maybe<MercuryFocusAreaCostSummary>;
|
|
165008
165461
|
createdDate: Scalars['String']['output'];
|
|
165009
165462
|
customFields?: Maybe<Array<MercuryCustomField>>;
|
|
@@ -165047,6 +165500,13 @@ export type MercuryFocusAreaAsksArgs = {
|
|
|
165047
165500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165048
165501
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165049
165502
|
};
|
|
165503
|
+
export type MercuryFocusAreaBenefitBaselineRevisionsArgs = {
|
|
165504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165505
|
+
contributionStatus?: InputMaybe<MercuryBaselineContributionStatus>;
|
|
165506
|
+
endYearMonth: Scalars['String']['input'];
|
|
165507
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165508
|
+
startYearMonth: Scalars['String']['input'];
|
|
165509
|
+
};
|
|
165050
165510
|
export type MercuryFocusAreaBenefitSummaryArgs = {
|
|
165051
165511
|
dimensions?: InputMaybe<Array<MercuryBenefitSummaryDimension>>;
|
|
165052
165512
|
endYearMonth: Scalars['String']['input'];
|
|
@@ -165057,6 +165517,13 @@ export type MercuryFocusAreaBudgetsArgs = {
|
|
|
165057
165517
|
endFiscalYear: Scalars['Int']['input'];
|
|
165058
165518
|
startFiscalYear: Scalars['Int']['input'];
|
|
165059
165519
|
};
|
|
165520
|
+
export type MercuryFocusAreaCostBaselineRevisionsArgs = {
|
|
165521
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165522
|
+
contributionStatus?: InputMaybe<MercuryBaselineContributionStatus>;
|
|
165523
|
+
endYearMonth: Scalars['String']['input'];
|
|
165524
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165525
|
+
startYearMonth: Scalars['String']['input'];
|
|
165526
|
+
};
|
|
165060
165527
|
export type MercuryFocusAreaCostSummaryArgs = {
|
|
165061
165528
|
dimensions?: InputMaybe<Array<MercuryCostSummaryDimension>>;
|
|
165062
165529
|
endYearMonth: Scalars['String']['input'];
|
|
@@ -166170,17 +166637,25 @@ export type MercuryInsightWidgetInsightsArgs = {
|
|
|
166170
166637
|
};
|
|
166171
166638
|
export type MercuryInsightsMutationApi = {
|
|
166172
166639
|
__typename?: 'MercuryInsightsMutationApi';
|
|
166640
|
+
dismissCompoundInsight?: Maybe<MercuryDismissCompoundInsightPayload>;
|
|
166173
166641
|
dismissInsight?: Maybe<MercuryDismissInsightPayload>;
|
|
166174
166642
|
dismissSuggestedFocusAreaFollowers?: Maybe<MercuryDismissSuggestedFocusAreaFollowers>;
|
|
166643
|
+
undoDismissCompoundInsight?: Maybe<MercuryUndoDismissCompoundInsightPayload>;
|
|
166175
166644
|
undoDismissInsight?: Maybe<MercuryUndoDismissInsightPayload>;
|
|
166176
166645
|
updateInsightWidget?: Maybe<MercuryUpdateInsightWidgetPayload>;
|
|
166177
166646
|
};
|
|
166647
|
+
export type MercuryInsightsMutationApiDismissCompoundInsightArgs = {
|
|
166648
|
+
input: MercuryDismissCompoundInsightInput;
|
|
166649
|
+
};
|
|
166178
166650
|
export type MercuryInsightsMutationApiDismissInsightArgs = {
|
|
166179
166651
|
input: MercuryDismissInsightInput;
|
|
166180
166652
|
};
|
|
166181
166653
|
export type MercuryInsightsMutationApiDismissSuggestedFocusAreaFollowersArgs = {
|
|
166182
166654
|
input: MercuryDismissSuggestedFocusAreaFollowersInput;
|
|
166183
166655
|
};
|
|
166656
|
+
export type MercuryInsightsMutationApiUndoDismissCompoundInsightArgs = {
|
|
166657
|
+
input: MercuryUndoDismissCompoundInsightInput;
|
|
166658
|
+
};
|
|
166184
166659
|
export type MercuryInsightsMutationApiUndoDismissInsightArgs = {
|
|
166185
166660
|
input: MercuryUndoDismissInsightInput;
|
|
166186
166661
|
};
|
|
@@ -166189,12 +166664,24 @@ export type MercuryInsightsMutationApiUpdateInsightWidgetArgs = {
|
|
|
166189
166664
|
};
|
|
166190
166665
|
export type MercuryInsightsQueryApi = {
|
|
166191
166666
|
__typename?: 'MercuryInsightsQueryApi';
|
|
166667
|
+
dismissedFocusAreaCompoundInsights?: Maybe<MercuryDismissedCompoundInsightConnection>;
|
|
166668
|
+
dismissedForYouCompoundInsights?: Maybe<MercuryDismissedCompoundInsightConnection>;
|
|
166192
166669
|
focusAreaFollowerSuggestions?: Maybe<Array<MercuryFocusAreaFollowerSuggestion>>;
|
|
166193
166670
|
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
166194
166671
|
focusAreaWorkSuggestions?: Maybe<Array<MercuryWorkSuggestionsSearchItem>>;
|
|
166195
166672
|
forYouInsights?: Maybe<MercuryInsightObjectConnection>;
|
|
166196
166673
|
previewInsightWidget?: Maybe<MercuryInsightWidget>;
|
|
166197
166674
|
};
|
|
166675
|
+
export type MercuryInsightsQueryApiDismissedFocusAreaCompoundInsightsArgs = {
|
|
166676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166677
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166678
|
+
focusAreaId: Scalars['ID']['input'];
|
|
166679
|
+
};
|
|
166680
|
+
export type MercuryInsightsQueryApiDismissedForYouCompoundInsightsArgs = {
|
|
166681
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166682
|
+
cloudId: Scalars['ID']['input'];
|
|
166683
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166684
|
+
};
|
|
166198
166685
|
export type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
166199
166686
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166200
166687
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -170321,6 +170808,15 @@ export type MercuryUnarchiveOrganizationPayload = Payload & {
|
|
|
170321
170808
|
errors?: Maybe<Array<MutationError>>;
|
|
170322
170809
|
success: Scalars['Boolean']['output'];
|
|
170323
170810
|
};
|
|
170811
|
+
export type MercuryUndoDismissCompoundInsightInput = {
|
|
170812
|
+
cloudId: Scalars['ID']['input'];
|
|
170813
|
+
insightObjectId: Scalars['ID']['input'];
|
|
170814
|
+
};
|
|
170815
|
+
export type MercuryUndoDismissCompoundInsightPayload = Payload & {
|
|
170816
|
+
__typename?: 'MercuryUndoDismissCompoundInsightPayload';
|
|
170817
|
+
errors?: Maybe<Array<MutationError>>;
|
|
170818
|
+
success: Scalars['Boolean']['output'];
|
|
170819
|
+
};
|
|
170324
170820
|
export type MercuryUndoDismissInsightInput = {
|
|
170325
170821
|
cloudId: Scalars['ID']['input'];
|
|
170326
170822
|
dismissalId: Scalars['ID']['input'];
|
|
@@ -172220,7 +172716,6 @@ export type Mutation = {
|
|
|
172220
172716
|
createHostedResourceUploadUrl?: Maybe<CreateHostedResourceUploadUrlPayload>;
|
|
172221
172717
|
createInlineComment?: Maybe<Comment>;
|
|
172222
172718
|
createInlineTaskNotification?: Maybe<CreateInlineTaskNotificationPayload>;
|
|
172223
|
-
createInvitationUrl?: Maybe<CreateInvitationUrlPayload>;
|
|
172224
172719
|
createLivePage?: Maybe<Content>;
|
|
172225
172720
|
createMentionNotification?: Maybe<CreateMentionNotificationPayload>;
|
|
172226
172721
|
createMentionReminderNotification?: Maybe<CreateMentionReminderNotificationPayload>;
|
|
@@ -172379,7 +172874,9 @@ export type Mutation = {
|
|
|
172379
172874
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
172380
172875
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
172381
172876
|
disableSuperAdmin?: Maybe<SuperAdminPayload>;
|
|
172877
|
+
dlp_createFalsePositives?: Maybe<DlpCreateFalsePositivesResult>;
|
|
172382
172878
|
dlp_reClassify?: Maybe<DlpClassificationJobResponse>;
|
|
172879
|
+
dlp_removeFalsePositive?: Maybe<DlpRemoveFalsePositiveResult>;
|
|
172383
172880
|
dlp_saveAutoClassificationRuleScope?: Maybe<Scalars['Boolean']['output']>;
|
|
172384
172881
|
dlp_saveDetectorClassificationMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
172385
172882
|
dlp_startPreviewRulesImpact?: Maybe<DlpStartPreviewResponse>;
|
|
@@ -173143,7 +173640,7 @@ export type Mutation = {
|
|
|
173143
173640
|
radar_updateNotificationSettings?: Maybe<Array<RadarNotification>>;
|
|
173144
173641
|
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarUpdatePositionLaborCostResponse>;
|
|
173145
173642
|
radar_updateSkill?: Maybe<RadarSkill>;
|
|
173146
|
-
radar_updateSkillMappingStatuses?: Maybe<Array<
|
|
173643
|
+
radar_updateSkillMappingStatuses?: Maybe<Array<RadarWorkerSkill>>;
|
|
173147
173644
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
173148
173645
|
radar_upsertAiScopedBudgetPolicies?: Maybe<RadarUpsertAiScopedBudgetPoliciesPayload>;
|
|
173149
173646
|
radar_upsertAiWorkspaceBudgetPolicy?: Maybe<RadarAiWorkspaceBudgetPolicy>;
|
|
@@ -176126,9 +176623,15 @@ export type MutationDisableExperimentArgs = {
|
|
|
176126
176623
|
export type MutationDisablePublicLinkForPageArgs = {
|
|
176127
176624
|
pageId: Scalars['ID']['input'];
|
|
176128
176625
|
};
|
|
176626
|
+
export type MutationDlp_CreateFalsePositivesArgs = {
|
|
176627
|
+
input: DlpCreateFalsePositivesInput;
|
|
176628
|
+
};
|
|
176129
176629
|
export type MutationDlp_ReClassifyArgs = {
|
|
176130
176630
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
176131
176631
|
};
|
|
176632
|
+
export type MutationDlp_RemoveFalsePositiveArgs = {
|
|
176633
|
+
input: DlpRemoveFalsePositiveInput;
|
|
176634
|
+
};
|
|
176132
176635
|
export type MutationDlp_SaveAutoClassificationRuleScopeArgs = {
|
|
176133
176636
|
orgId: Scalars['String']['input'];
|
|
176134
176637
|
scope?: InputMaybe<DlpScopeInput>;
|
|
@@ -183463,6 +183966,8 @@ export type Query = {
|
|
|
183463
183966
|
dlp_getAutoClassificationRuleScope?: Maybe<DlpScope>;
|
|
183464
183967
|
dlp_getDetectionContentSummary?: Maybe<DlpDetectionContentSummaryListResponse>;
|
|
183465
183968
|
dlp_getDetectorClassificationMapping?: Maybe<DlpDetectorClassificationMappingListResponse>;
|
|
183969
|
+
dlp_getFalsePositive?: Maybe<DlpFalsePositive>;
|
|
183970
|
+
dlp_getFalsePositives?: Maybe<DlpFalsePositivesListResponse>;
|
|
183466
183971
|
dlp_getFindings?: Maybe<DlpFindingsListResponse>;
|
|
183467
183972
|
dlp_getPreviewRulesImpact?: Maybe<DlpPreviewRulesImpactResponse>;
|
|
183468
183973
|
dlp_isClassificationTaskRunning?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -185714,6 +186219,7 @@ export type Query = {
|
|
|
185714
186219
|
gravity_importIdeas: GravityImportIdeasResult;
|
|
185715
186220
|
gravity_matchDelivery?: Maybe<GravityDeliveryMatchingResult>;
|
|
185716
186221
|
gravity_reactions?: Maybe<GravityReactionsResult>;
|
|
186222
|
+
gravity_view?: Maybe<JpdViewResult>;
|
|
185717
186223
|
gravity_viewArrangement?: Maybe<GravityViewArrangementResult>;
|
|
185718
186224
|
gravity_viewTemplateMappingProposals: GravityViewTemplateMappingProposalsResult;
|
|
185719
186225
|
gravity_viewTemplates: GravityViewTemplatesResult;
|
|
@@ -185753,7 +186259,6 @@ export type Query = {
|
|
|
185753
186259
|
instanceAnalyticsCount?: Maybe<InstanceAnalyticsCount>;
|
|
185754
186260
|
intentdetection_getIntent?: Maybe<IntentDetectionResponse>;
|
|
185755
186261
|
internalFrontendResource?: Maybe<FrontendResourceRenderResponse>;
|
|
185756
|
-
invitationUrls?: Maybe<InvitationUrlsPayload>;
|
|
185757
186262
|
isDataClassificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
185758
186263
|
isMoveContentStatesSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
185759
186264
|
isNewUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -185874,6 +186379,7 @@ export type Query = {
|
|
|
185874
186379
|
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
185875
186380
|
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
185876
186381
|
jsmTelemetry_incidentTelemetry?: Maybe<JsmTelemetryIncidentTelemetryResult>;
|
|
186382
|
+
jsmTelemetry_listAvailableTelemetryProviders?: Maybe<Array<JsmTelemetryProviderAvailability>>;
|
|
185877
186383
|
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
185878
186384
|
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
185879
186385
|
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
@@ -185909,6 +186415,7 @@ export type Query = {
|
|
|
185909
186415
|
kitsune_snippets?: Maybe<Array<Maybe<KitsuneSnippet>>>;
|
|
185910
186416
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
185911
186417
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
186418
|
+
kitsune_suggestInsights?: Maybe<Array<KitsuneInsightSuggestion>>;
|
|
185912
186419
|
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
185913
186420
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
185914
186421
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
@@ -190553,6 +191060,16 @@ export type QueryDlp_GetDetectorClassificationMappingArgs = {
|
|
|
190553
191060
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
190554
191061
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
190555
191062
|
};
|
|
191063
|
+
export type QueryDlp_GetFalsePositiveArgs = {
|
|
191064
|
+
id: Scalars['String']['input'];
|
|
191065
|
+
orgId: Scalars['String']['input'];
|
|
191066
|
+
};
|
|
191067
|
+
export type QueryDlp_GetFalsePositivesArgs = {
|
|
191068
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
191069
|
+
filters?: InputMaybe<DlpFalsePositiveFiltersInput>;
|
|
191070
|
+
orgId: Scalars['String']['input'];
|
|
191071
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
191072
|
+
};
|
|
190556
191073
|
export type QueryDlp_GetFindingsArgs = {
|
|
190557
191074
|
minConfidence?: InputMaybe<Scalars['String']['input']>;
|
|
190558
191075
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -206836,6 +207353,10 @@ export type QueryGravity_ReactionsArgs = {
|
|
|
206836
207353
|
cloudId: Scalars['ID']['input'];
|
|
206837
207354
|
input: GravityGetReactionsInput;
|
|
206838
207355
|
};
|
|
207356
|
+
export type QueryGravity_ViewArgs = {
|
|
207357
|
+
cloudId: Scalars['ID']['input'];
|
|
207358
|
+
viewId: Scalars['ID']['input'];
|
|
207359
|
+
};
|
|
206839
207360
|
export type QueryGravity_ViewArrangementArgs = {
|
|
206840
207361
|
cloudId: Scalars['ID']['input'];
|
|
206841
207362
|
viewId: Scalars['ID']['input'];
|
|
@@ -207465,6 +207986,9 @@ export type QueryJsmTelemetry_IncidentTelemetryArgs = {
|
|
|
207465
207986
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
207466
207987
|
incidentId: Scalars['ID']['input'];
|
|
207467
207988
|
};
|
|
207989
|
+
export type QueryJsmTelemetry_ListAvailableTelemetryProvidersArgs = {
|
|
207990
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
207991
|
+
};
|
|
207468
207992
|
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
207469
207993
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
207470
207994
|
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
@@ -207636,6 +208160,14 @@ export type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
207636
208160
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
207637
208161
|
workspaceAri: Scalars['ID']['input'];
|
|
207638
208162
|
};
|
|
208163
|
+
export type QueryKitsune_SuggestInsightsArgs = {
|
|
208164
|
+
embeddingType?: InputMaybe<Scalars['String']['input']>;
|
|
208165
|
+
input?: InputMaybe<KitsuneSearchInsightsInput>;
|
|
208166
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
208167
|
+
query: Scalars['String']['input'];
|
|
208168
|
+
spaceAri?: InputMaybe<Scalars['ID']['input']>;
|
|
208169
|
+
workspaceAri: Scalars['ID']['input'];
|
|
208170
|
+
};
|
|
207639
208171
|
export type QueryKitsune_ViewsArgs = {
|
|
207640
208172
|
ids: Array<Scalars['ID']['input']>;
|
|
207641
208173
|
};
|
|
@@ -209549,6 +210081,9 @@ export type QuickReloadComment = {
|
|
|
209549
210081
|
primaryActions: Array<Maybe<CommentUserAction>>;
|
|
209550
210082
|
secondaryActions: Array<Maybe<CommentUserAction>>;
|
|
209551
210083
|
};
|
|
210084
|
+
export type RadarAiBudgetPolicyAllowanceInput = {
|
|
210085
|
+
amount: Scalars['String']['input'];
|
|
210086
|
+
};
|
|
209552
210087
|
export type RadarAiConnector = {
|
|
209553
210088
|
__typename?: 'RadarAiConnector';
|
|
209554
210089
|
config?: Maybe<RadarAiConnectorConfig>;
|
|
@@ -209614,6 +210149,7 @@ export type RadarAiModelFieldValue = {
|
|
|
209614
210149
|
};
|
|
209615
210150
|
export type RadarAiScopedBudgetPolicy = {
|
|
209616
210151
|
__typename?: 'RadarAiScopedBudgetPolicy';
|
|
210152
|
+
allowance: RadarMoney;
|
|
209617
210153
|
allowanceAmount: Scalars['Int']['output'];
|
|
209618
210154
|
id: Scalars['ID']['output'];
|
|
209619
210155
|
scopeFieldValue: Scalars['String']['output'];
|
|
@@ -209632,6 +210168,7 @@ export type RadarAiScopedBudgetPolicyEdge = RadarEdge & {
|
|
|
209632
210168
|
};
|
|
209633
210169
|
export type RadarAiWorkspaceBudgetPolicy = {
|
|
209634
210170
|
__typename?: 'RadarAiWorkspaceBudgetPolicy';
|
|
210171
|
+
allowance: RadarMoney;
|
|
209635
210172
|
allowanceAmount: Scalars['Int']['output'];
|
|
209636
210173
|
id: Scalars['ID']['output'];
|
|
209637
210174
|
};
|
|
@@ -210318,9 +210855,8 @@ export type RadarSkillEdge = RadarEdge & {
|
|
|
210318
210855
|
node?: Maybe<RadarSkill>;
|
|
210319
210856
|
};
|
|
210320
210857
|
export type RadarSkillMappingStatusUpdateInput = {
|
|
210321
|
-
skillId: Scalars['ID']['input'];
|
|
210322
210858
|
status: RadarSkillVerificationStatus;
|
|
210323
|
-
|
|
210859
|
+
workerSkill: Scalars['ID']['input'];
|
|
210324
210860
|
};
|
|
210325
210861
|
export declare enum RadarSkillVerificationStatus {
|
|
210326
210862
|
Declined = "DECLINED",
|
|
@@ -210458,11 +210994,13 @@ export type RadarUpsertAiScopedBudgetPoliciesPayload = {
|
|
|
210458
210994
|
policies: Array<RadarAiScopedBudgetPolicy>;
|
|
210459
210995
|
};
|
|
210460
210996
|
export type RadarUpsertAiScopedBudgetPolicyInput = {
|
|
210461
|
-
|
|
210997
|
+
allowance?: InputMaybe<RadarAiBudgetPolicyAllowanceInput>;
|
|
210998
|
+
allowanceAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
210462
210999
|
scopeFieldValue: Scalars['String']['input'];
|
|
210463
211000
|
};
|
|
210464
211001
|
export type RadarUpsertAiWorkspaceBudgetPolicyInput = {
|
|
210465
|
-
|
|
211002
|
+
allowance?: InputMaybe<RadarAiBudgetPolicyAllowanceInput>;
|
|
211003
|
+
allowanceAmount?: InputMaybe<Scalars['Int']['input']>;
|
|
210466
211004
|
};
|
|
210467
211005
|
export type RadarUpsertViewInput = {
|
|
210468
211006
|
groupingField?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -233467,6 +234005,7 @@ export type SmartsContextServiceQueryApi = {
|
|
|
233467
234005
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
233468
234006
|
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
233469
234007
|
orbitObjectRecommendationsV2?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
234008
|
+
orbitTopicsUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
233470
234009
|
orbitUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
233471
234010
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
233472
234011
|
};
|
|
@@ -233476,6 +234015,9 @@ export type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
|
233476
234015
|
export type SmartsContextServiceQueryApiOrbitObjectRecommendationsV2Args = {
|
|
233477
234016
|
recommendationsQuery: SmartsRecommendationsOrbitQuery;
|
|
233478
234017
|
};
|
|
234018
|
+
export type SmartsContextServiceQueryApiOrbitTopicsUserRecommendationsArgs = {
|
|
234019
|
+
recommendationsQuery: SmartsRecommendationsOrbitTopicsQuery;
|
|
234020
|
+
};
|
|
233479
234021
|
export type SmartsContextServiceQueryApiOrbitUserRecommendationsArgs = {
|
|
233480
234022
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
233481
234023
|
};
|
|
@@ -233565,6 +234107,16 @@ export type SmartsRecommendationsOrbitQuery = {
|
|
|
233565
234107
|
requestingUserId: Scalars['String']['input'];
|
|
233566
234108
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
233567
234109
|
};
|
|
234110
|
+
export type SmartsRecommendationsOrbitTopicsQuery = {
|
|
234111
|
+
context: SmartsContext;
|
|
234112
|
+
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
234113
|
+
excludeSelf?: InputMaybe<Scalars['Boolean']['input']>;
|
|
234114
|
+
maxNumberOfResults?: InputMaybe<Scalars['Int']['input']>;
|
|
234115
|
+
modelRequestParams: SmartsOrbitModelRequestParams;
|
|
234116
|
+
requestingUserId: Scalars['String']['input'];
|
|
234117
|
+
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
234118
|
+
workspaceId: Scalars['String']['input'];
|
|
234119
|
+
};
|
|
233568
234120
|
export type SmartsRecommendationsQuery = {
|
|
233569
234121
|
context: SmartsContext;
|
|
233570
234122
|
excludeInactive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -244642,6 +245194,7 @@ export type TrelloAdministeredPaidWorkspacesUpdated = {
|
|
|
244642
245194
|
};
|
|
244643
245195
|
export type TrelloAgentSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
244644
245196
|
__typename?: 'TrelloAgentSessionUpdated';
|
|
245197
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
244645
245198
|
objectId: Scalars['ID']['output'];
|
|
244646
245199
|
sessionId: Scalars['ID']['output'];
|
|
244647
245200
|
tasks: TrelloAgentTaskUpdatedConnection;
|
|
@@ -244676,18 +245229,12 @@ export type TrelloAgentTaskStatus = {
|
|
|
244676
245229
|
state: TrelloAgentTaskState;
|
|
244677
245230
|
timestamp: Scalars['DateTime']['output'];
|
|
244678
245231
|
};
|
|
244679
|
-
export type TrelloAgentTaskStatusUpdated = {
|
|
244680
|
-
__typename?: 'TrelloAgentTaskStatusUpdated';
|
|
244681
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
244682
|
-
state: TrelloAgentTaskState;
|
|
244683
|
-
timestamp: Scalars['DateTime']['output'];
|
|
244684
|
-
};
|
|
244685
245232
|
export type TrelloAgentTaskUpdated = {
|
|
244686
245233
|
__typename?: 'TrelloAgentTaskUpdated';
|
|
244687
245234
|
id: Scalars['ID']['output'];
|
|
244688
245235
|
key?: Maybe<Scalars['String']['output']>;
|
|
244689
245236
|
sessionId?: Maybe<Scalars['ID']['output']>;
|
|
244690
|
-
status?: Maybe<
|
|
245237
|
+
status?: Maybe<TrelloAgentTaskStatus>;
|
|
244691
245238
|
};
|
|
244692
245239
|
export type TrelloAgentTaskUpdatedConnection = {
|
|
244693
245240
|
__typename?: 'TrelloAgentTaskUpdatedConnection';
|
|
@@ -244892,10 +245439,15 @@ export declare enum TrelloAiRuleType {
|
|
|
244892
245439
|
}
|
|
244893
245440
|
export type TrelloAppCreator = {
|
|
244894
245441
|
__typename?: 'TrelloAppCreator';
|
|
245442
|
+
authType?: Maybe<TrelloAppCreatorAuthType>;
|
|
244895
245443
|
icon?: Maybe<TrelloApplicationIcon>;
|
|
244896
245444
|
id: Scalars['ID']['output'];
|
|
244897
245445
|
name?: Maybe<Scalars['String']['output']>;
|
|
244898
245446
|
};
|
|
245447
|
+
export declare enum TrelloAppCreatorAuthType {
|
|
245448
|
+
AppKeyToken = "APP_KEY_TOKEN",
|
|
245449
|
+
Oauth2 = "OAUTH2"
|
|
245450
|
+
}
|
|
244899
245451
|
export type TrelloApplication = {
|
|
244900
245452
|
__typename?: 'TrelloApplication';
|
|
244901
245453
|
agreement?: Maybe<TrelloApplicationAgreement>;
|
|
@@ -247172,7 +247724,7 @@ export type TrelloEditBoardWithAiPayload = Payload & {
|
|
|
247172
247724
|
__typename?: 'TrelloEditBoardWithAiPayload';
|
|
247173
247725
|
errors?: Maybe<Array<MutationError>>;
|
|
247174
247726
|
success: Scalars['Boolean']['output'];
|
|
247175
|
-
|
|
247727
|
+
task?: Maybe<TrelloAgentTask>;
|
|
247176
247728
|
};
|
|
247177
247729
|
export type TrelloEditPlannerCalendarEventInput = {
|
|
247178
247730
|
event: TrelloEditPlannerCalendarEventOptions;
|
|
@@ -248361,6 +248913,15 @@ export type TrelloMultiboardDueStartFilterInput = {
|
|
|
248361
248913
|
due?: InputMaybe<TrelloMultiboardDateFieldFilterInput>;
|
|
248362
248914
|
start?: InputMaybe<TrelloMultiboardDateFieldFilterInput>;
|
|
248363
248915
|
};
|
|
248916
|
+
export type TrelloMultiboardLabelFilterInput = {
|
|
248917
|
+
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
248918
|
+
labels?: InputMaybe<Array<TrelloMultiboardLabelInput>>;
|
|
248919
|
+
none?: InputMaybe<Scalars['Boolean']['input']>;
|
|
248920
|
+
};
|
|
248921
|
+
export type TrelloMultiboardLabelInput = {
|
|
248922
|
+
color?: InputMaybe<Scalars['String']['input']>;
|
|
248923
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
248924
|
+
};
|
|
248364
248925
|
export type TrelloMultiboardMemberFilterInput = {
|
|
248365
248926
|
any?: InputMaybe<Scalars['Boolean']['input']>;
|
|
248366
248927
|
memberIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -248477,6 +249038,9 @@ export type TrelloMutationApi = {
|
|
|
248477
249038
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
248478
249039
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
248479
249040
|
updateApplication?: Maybe<TrelloUpdateApplicationPayload>;
|
|
249041
|
+
updateAttachmentName?: Maybe<TrelloUpdateAttachmentNamePayload>;
|
|
249042
|
+
updateAttachmentPosition?: Maybe<TrelloUpdateAttachmentPositionPayload>;
|
|
249043
|
+
updateAttachmentUrl?: Maybe<TrelloUpdateAttachmentUrlPayload>;
|
|
248480
249044
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
248481
249045
|
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
248482
249046
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
@@ -248828,6 +249392,15 @@ export type TrelloMutationApiUpdateAiRuleArgs = {
|
|
|
248828
249392
|
export type TrelloMutationApiUpdateApplicationArgs = {
|
|
248829
249393
|
input: TrelloUpdateApplicationInput;
|
|
248830
249394
|
};
|
|
249395
|
+
export type TrelloMutationApiUpdateAttachmentNameArgs = {
|
|
249396
|
+
input: TrelloUpdateAttachmentNameInput;
|
|
249397
|
+
};
|
|
249398
|
+
export type TrelloMutationApiUpdateAttachmentPositionArgs = {
|
|
249399
|
+
input: TrelloUpdateAttachmentPositionInput;
|
|
249400
|
+
};
|
|
249401
|
+
export type TrelloMutationApiUpdateAttachmentUrlArgs = {
|
|
249402
|
+
input: TrelloUpdateAttachmentUrlInput;
|
|
249403
|
+
};
|
|
248831
249404
|
export type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
248832
249405
|
input: TrelloUpdateBoardBackgroundInput;
|
|
248833
249406
|
};
|
|
@@ -250480,6 +251053,7 @@ export type TrelloSortListCardsPayload = Payload & {
|
|
|
250480
251053
|
success: Scalars['Boolean']['output'];
|
|
250481
251054
|
};
|
|
250482
251055
|
export type TrelloStatefulSessionUpdated = {
|
|
251056
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
250483
251057
|
sessionId: Scalars['ID']['output'];
|
|
250484
251058
|
};
|
|
250485
251059
|
export type TrelloSticker = {
|
|
@@ -250711,6 +251285,39 @@ export type TrelloUpdateApplicationPayload = Payload & {
|
|
|
250711
251285
|
errors?: Maybe<Array<MutationError>>;
|
|
250712
251286
|
success: Scalars['Boolean']['output'];
|
|
250713
251287
|
};
|
|
251288
|
+
export type TrelloUpdateAttachmentNameInput = {
|
|
251289
|
+
attachmentId: Scalars['ID']['input'];
|
|
251290
|
+
cardId: Scalars['ID']['input'];
|
|
251291
|
+
name: Scalars['String']['input'];
|
|
251292
|
+
};
|
|
251293
|
+
export type TrelloUpdateAttachmentNamePayload = Payload & {
|
|
251294
|
+
__typename?: 'TrelloUpdateAttachmentNamePayload';
|
|
251295
|
+
attachment?: Maybe<TrelloAttachment>;
|
|
251296
|
+
errors?: Maybe<Array<MutationError>>;
|
|
251297
|
+
success: Scalars['Boolean']['output'];
|
|
251298
|
+
};
|
|
251299
|
+
export type TrelloUpdateAttachmentPositionInput = {
|
|
251300
|
+
attachmentId: Scalars['ID']['input'];
|
|
251301
|
+
cardId: Scalars['ID']['input'];
|
|
251302
|
+
position: Scalars['Float']['input'];
|
|
251303
|
+
};
|
|
251304
|
+
export type TrelloUpdateAttachmentPositionPayload = Payload & {
|
|
251305
|
+
__typename?: 'TrelloUpdateAttachmentPositionPayload';
|
|
251306
|
+
attachment?: Maybe<TrelloAttachment>;
|
|
251307
|
+
errors?: Maybe<Array<MutationError>>;
|
|
251308
|
+
success: Scalars['Boolean']['output'];
|
|
251309
|
+
};
|
|
251310
|
+
export type TrelloUpdateAttachmentUrlInput = {
|
|
251311
|
+
attachmentId: Scalars['ID']['input'];
|
|
251312
|
+
cardId: Scalars['ID']['input'];
|
|
251313
|
+
url: Scalars['URL']['input'];
|
|
251314
|
+
};
|
|
251315
|
+
export type TrelloUpdateAttachmentUrlPayload = Payload & {
|
|
251316
|
+
__typename?: 'TrelloUpdateAttachmentUrlPayload';
|
|
251317
|
+
attachment?: Maybe<TrelloAttachment>;
|
|
251318
|
+
errors?: Maybe<Array<MutationError>>;
|
|
251319
|
+
success: Scalars['Boolean']['output'];
|
|
251320
|
+
};
|
|
250714
251321
|
export type TrelloUpdateBoardBackgroundInput = {
|
|
250715
251322
|
background?: InputMaybe<TrelloBoardBackgroundInput>;
|
|
250716
251323
|
id: Scalars['ID']['input'];
|
|
@@ -251339,6 +251946,7 @@ export type TrelloVoiceCaptureSessionCardEdgeUpdated = {
|
|
|
251339
251946
|
};
|
|
251340
251947
|
export type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
251341
251948
|
__typename?: 'TrelloVoiceCaptureSessionUpdated';
|
|
251949
|
+
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
251342
251950
|
cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
|
|
251343
251951
|
sessionId: Scalars['ID']['output'];
|
|
251344
251952
|
transcript?: Maybe<Scalars['String']['output']>;
|
|
@@ -251509,7 +252117,7 @@ export type TrelloWorkspaceMultiboardCardsArgs = {
|
|
|
251509
252117
|
dateFilter?: InputMaybe<TrelloMultiboardCardDateFilterInput>;
|
|
251510
252118
|
dueComplete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
251511
252119
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
251512
|
-
|
|
252120
|
+
labelFilter?: InputMaybe<TrelloMultiboardLabelFilterInput>;
|
|
251513
252121
|
listIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
251514
252122
|
memberFilter?: InputMaybe<TrelloMultiboardMemberFilterInput>;
|
|
251515
252123
|
sortBy?: InputMaybe<Array<TrelloMultiboardCardSortInput>>;
|