@forge/cli-shared 8.11.1-next.1 → 8.11.1-next.2-experimental-2969aa0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/out/graphql/graphql-types.d.ts +938 -55
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +119 -33
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +7 -0
- package/package.json +2 -2
|
@@ -158,6 +158,7 @@ export declare enum AvpCanvasRowHeight {
|
|
|
158
158
|
Large = "large",
|
|
159
159
|
Medium = "medium",
|
|
160
160
|
Small = "small",
|
|
161
|
+
Xlarge = "xlarge",
|
|
161
162
|
Xsmall = "xsmall"
|
|
162
163
|
}
|
|
163
164
|
export declare type AvpChart = {
|
|
@@ -2732,6 +2733,12 @@ export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
|
2732
2733
|
groups?: Maybe<Array<Maybe<IdentityGroup>>>;
|
|
2733
2734
|
success: Scalars['Boolean']['output'];
|
|
2734
2735
|
};
|
|
2736
|
+
export declare type AgentStudioAdfContent = {
|
|
2737
|
+
__typename?: 'AgentStudioAdfContent';
|
|
2738
|
+
content?: Maybe<Scalars['JSON']['output']>;
|
|
2739
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
2740
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
2741
|
+
};
|
|
2735
2742
|
export declare type AgentStudioAgent = {
|
|
2736
2743
|
authoringTeam?: Maybe<TeamV2>;
|
|
2737
2744
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
@@ -2809,6 +2816,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2809
2816
|
forgeCreator?: Maybe<Scalars['String']['output']>;
|
|
2810
2817
|
icon?: Maybe<Scalars['String']['output']>;
|
|
2811
2818
|
id: Scalars['ID']['output'];
|
|
2819
|
+
identityAccount?: Maybe<User>;
|
|
2812
2820
|
identityAccountId?: Maybe<Scalars['String']['output']>;
|
|
2813
2821
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
2814
2822
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2817,6 +2825,31 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
2817
2825
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
2818
2826
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
2819
2827
|
};
|
|
2828
|
+
export declare type AgentStudioAssistantConversation = {
|
|
2829
|
+
__typename?: 'AgentStudioAssistantConversation';
|
|
2830
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2831
|
+
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
2832
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
2833
|
+
};
|
|
2834
|
+
export declare type AgentStudioAssistantConversationEdge = {
|
|
2835
|
+
__typename?: 'AgentStudioAssistantConversationEdge';
|
|
2836
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2837
|
+
node?: Maybe<AgentStudioAssistantConversation>;
|
|
2838
|
+
};
|
|
2839
|
+
export declare type AgentStudioAssistantMessage = {
|
|
2840
|
+
__typename?: 'AgentStudioAssistantMessage';
|
|
2841
|
+
actions?: Maybe<Array<Maybe<AgentStudioMessageAction>>>;
|
|
2842
|
+
content?: Maybe<AgentStudioMessageContent>;
|
|
2843
|
+
contentMimeType?: Maybe<Scalars['String']['output']>;
|
|
2844
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2845
|
+
role?: Maybe<Scalars['String']['output']>;
|
|
2846
|
+
sources?: Maybe<Array<Maybe<AgentStudioMessageSource>>>;
|
|
2847
|
+
};
|
|
2848
|
+
export declare type AgentStudioAssistantMessageEdge = {
|
|
2849
|
+
__typename?: 'AgentStudioAssistantMessageEdge';
|
|
2850
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
2851
|
+
node?: Maybe<AgentStudioAssistantMessage>;
|
|
2852
|
+
};
|
|
2820
2853
|
export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node & {
|
|
2821
2854
|
__typename?: 'AgentStudioAssistantScenario';
|
|
2822
2855
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
@@ -2833,6 +2866,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2833
2866
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2834
2867
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2835
2868
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
2869
|
+
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
2836
2870
|
name: Scalars['String']['output'];
|
|
2837
2871
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
2838
2872
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -2840,6 +2874,9 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2840
2874
|
export declare type AgentStudioAuthoringTeamInput = {
|
|
2841
2875
|
authoringTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
2842
2876
|
};
|
|
2877
|
+
export declare type AgentStudioBatchEvalConversationFilterInput = {
|
|
2878
|
+
jobRunId?: InputMaybe<Scalars['ID']['input']>;
|
|
2879
|
+
};
|
|
2843
2880
|
export declare type AgentStudioBatchEvalRunJobPayload = Payload & {
|
|
2844
2881
|
__typename?: 'AgentStudioBatchEvalRunJobPayload';
|
|
2845
2882
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -2935,6 +2972,18 @@ export declare type AgentStudioConnectedChannels = {
|
|
|
2935
2972
|
__typename?: 'AgentStudioConnectedChannels';
|
|
2936
2973
|
channels?: Maybe<Array<AgentStudioChannel>>;
|
|
2937
2974
|
};
|
|
2975
|
+
export declare type AgentStudioConversationHistoryResult = {
|
|
2976
|
+
__typename?: 'AgentStudioConversationHistoryResult';
|
|
2977
|
+
edges?: Maybe<Array<Maybe<AgentStudioAssistantMessageEdge>>>;
|
|
2978
|
+
errors?: Maybe<Array<Maybe<QueryError>>>;
|
|
2979
|
+
pageInfo: PageInfo;
|
|
2980
|
+
};
|
|
2981
|
+
export declare type AgentStudioConversationListResult = {
|
|
2982
|
+
__typename?: 'AgentStudioConversationListResult';
|
|
2983
|
+
edges?: Maybe<Array<Maybe<AgentStudioAssistantConversationEdge>>>;
|
|
2984
|
+
errors?: Maybe<Array<Maybe<QueryError>>>;
|
|
2985
|
+
pageInfo: PageInfo;
|
|
2986
|
+
};
|
|
2938
2987
|
export declare type AgentStudioConversationReport = {
|
|
2939
2988
|
__typename?: 'AgentStudioConversationReport';
|
|
2940
2989
|
agentId: Scalars['ID']['output'];
|
|
@@ -3191,7 +3240,10 @@ export declare type AgentStudioJobExecutionHistoryNode = {
|
|
|
3191
3240
|
datasetName?: Maybe<Scalars['String']['output']>;
|
|
3192
3241
|
failureCount?: Maybe<Scalars['Int']['output']>;
|
|
3193
3242
|
jobId: Scalars['ID']['output'];
|
|
3243
|
+
judgeFailureCount?: Maybe<Scalars['Int']['output']>;
|
|
3244
|
+
judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
|
|
3194
3245
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
3246
|
+
resolutionRate?: Maybe<Scalars['Float']['output']>;
|
|
3195
3247
|
runId: Scalars['ID']['output'];
|
|
3196
3248
|
runNumber?: Maybe<Scalars['Int']['output']>;
|
|
3197
3249
|
startedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -3247,6 +3299,23 @@ export declare type AgentStudioKnowledgeSourceInput = {
|
|
|
3247
3299
|
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
|
|
3248
3300
|
source: Scalars['String']['input'];
|
|
3249
3301
|
};
|
|
3302
|
+
export declare type AgentStudioMarkdownContent = {
|
|
3303
|
+
__typename?: 'AgentStudioMarkdownContent';
|
|
3304
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3305
|
+
};
|
|
3306
|
+
export declare type AgentStudioMessageAction = {
|
|
3307
|
+
__typename?: 'AgentStudioMessageAction';
|
|
3308
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
3309
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
3310
|
+
};
|
|
3311
|
+
export declare type AgentStudioMessageContent = AgentStudioAdfContent | AgentStudioMarkdownContent;
|
|
3312
|
+
export declare type AgentStudioMessageSource = {
|
|
3313
|
+
__typename?: 'AgentStudioMessageSource';
|
|
3314
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
3315
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
3316
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3317
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
3318
|
+
};
|
|
3250
3319
|
export declare type AgentStudioPortalChannel = AgentStudioChannel & {
|
|
3251
3320
|
__typename?: 'AgentStudioPortalChannel';
|
|
3252
3321
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3278,6 +3347,7 @@ export declare type AgentStudioScenario = {
|
|
|
3278
3347
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3279
3348
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
3280
3349
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
3350
|
+
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
3281
3351
|
name: Scalars['String']['output'];
|
|
3282
3352
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
3283
3353
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -3829,6 +3899,7 @@ export declare type App = {
|
|
|
3829
3899
|
developerSpaceId?: Maybe<Scalars['ID']['output']>;
|
|
3830
3900
|
distributionStatus: Scalars['String']['output'];
|
|
3831
3901
|
ensureCollaborator: Scalars['Boolean']['output'];
|
|
3902
|
+
environment?: Maybe<AppEnvironment>;
|
|
3832
3903
|
environmentByKey?: Maybe<AppEnvironment>;
|
|
3833
3904
|
environmentByOauthClient?: Maybe<AppEnvironment>;
|
|
3834
3905
|
environments: Array<AppEnvironment>;
|
|
@@ -3850,6 +3921,9 @@ export declare type AppDeploymentsArgs = {
|
|
|
3850
3921
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3851
3922
|
interval: IntervalInput;
|
|
3852
3923
|
};
|
|
3924
|
+
export declare type AppEnvironmentArgs = {
|
|
3925
|
+
id: Scalars['ID']['input'];
|
|
3926
|
+
};
|
|
3853
3927
|
export declare type AppEnvironmentByKeyArgs = {
|
|
3854
3928
|
key: Scalars['String']['input'];
|
|
3855
3929
|
};
|
|
@@ -5428,6 +5502,16 @@ export declare type AssetsDmCleansingStatisticsResponse = {
|
|
|
5428
5502
|
filteredReasons: Scalars['Int']['output'];
|
|
5429
5503
|
objects: Array<AssetsDmCleansingStatisticsObjectData>;
|
|
5430
5504
|
};
|
|
5505
|
+
export declare type AssetsDmCreateDataSourceTypeInput = {
|
|
5506
|
+
defaultGap?: InputMaybe<Scalars['Int']['input']>;
|
|
5507
|
+
name: Scalars['String']['input'];
|
|
5508
|
+
};
|
|
5509
|
+
export declare type AssetsDmCreateDataSourceTypeResponse = {
|
|
5510
|
+
__typename?: 'AssetsDMCreateDataSourceTypeResponse';
|
|
5511
|
+
dataSourceType?: Maybe<AssetsDmDataSourceType>;
|
|
5512
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
5513
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
5514
|
+
};
|
|
5431
5515
|
export declare type AssetsDmDataSource = {
|
|
5432
5516
|
__typename?: 'AssetsDMDataSource';
|
|
5433
5517
|
dataSourceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -5927,6 +6011,25 @@ export declare enum AssetsDmDataSourceTransformSelectFieldType {
|
|
|
5927
6011
|
Intervals = "intervals",
|
|
5928
6012
|
Jobs = "jobs"
|
|
5929
6013
|
}
|
|
6014
|
+
export declare type AssetsDmDataSourceType = {
|
|
6015
|
+
__typename?: 'AssetsDMDataSourceType';
|
|
6016
|
+
dataSourceTypeId: Scalars['ID']['output'];
|
|
6017
|
+
defaultGap?: Maybe<Scalars['Int']['output']>;
|
|
6018
|
+
name: Scalars['String']['output'];
|
|
6019
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
6020
|
+
};
|
|
6021
|
+
export declare type AssetsDmDataSourceTypeConnection = {
|
|
6022
|
+
__typename?: 'AssetsDMDataSourceTypeConnection';
|
|
6023
|
+
edges?: Maybe<Array<AssetsDmDataSourceTypeEdge>>;
|
|
6024
|
+
nodes?: Maybe<Array<AssetsDmDataSourceType>>;
|
|
6025
|
+
pageInfo: PageInfo;
|
|
6026
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
6027
|
+
};
|
|
6028
|
+
export declare type AssetsDmDataSourceTypeEdge = {
|
|
6029
|
+
__typename?: 'AssetsDMDataSourceTypeEdge';
|
|
6030
|
+
cursor: Scalars['String']['output'];
|
|
6031
|
+
node: AssetsDmDataSourceType;
|
|
6032
|
+
};
|
|
5930
6033
|
export declare type AssetsDmDataSourceTypes = {
|
|
5931
6034
|
__typename?: 'AssetsDMDataSourceTypes';
|
|
5932
6035
|
dataSourceTypeId: Scalars['ID']['output'];
|
|
@@ -6016,6 +6119,11 @@ export declare type AssetsDmDeleteCleansingReasonResponse = {
|
|
|
6016
6119
|
isSuccessful: Scalars['Boolean']['output'];
|
|
6017
6120
|
message: Scalars['String']['output'];
|
|
6018
6121
|
};
|
|
6122
|
+
export declare type AssetsDmDeleteDataSourceTypeResponse = {
|
|
6123
|
+
__typename?: 'AssetsDMDeleteDataSourceTypeResponse';
|
|
6124
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
6125
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
6126
|
+
};
|
|
6019
6127
|
export declare type AssetsDmDeleteDefaultAttributeMappingResponse = {
|
|
6020
6128
|
__typename?: 'AssetsDMDeleteDefaultAttributeMappingResponse';
|
|
6021
6129
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -6086,13 +6194,16 @@ export declare type AssetsDmJobDataColumn = {
|
|
|
6086
6194
|
isPrimary: Scalars['Boolean']['output'];
|
|
6087
6195
|
};
|
|
6088
6196
|
export declare enum AssetsDmJobDataColumnType {
|
|
6197
|
+
Boolean = "BOOLEAN",
|
|
6089
6198
|
Datetime = "DATETIME",
|
|
6199
|
+
Number = "NUMBER",
|
|
6090
6200
|
String = "STRING"
|
|
6091
6201
|
}
|
|
6092
6202
|
export declare type AssetsDmJobDataFilterInput = {
|
|
6093
6203
|
columnName: Scalars['String']['input'];
|
|
6094
6204
|
columnType: AssetsDmJobDataColumnType;
|
|
6095
6205
|
filterValue: Scalars['String']['input'];
|
|
6206
|
+
filterValueTo?: InputMaybe<Scalars['String']['input']>;
|
|
6096
6207
|
};
|
|
6097
6208
|
export declare type AssetsDmJobDataResponse = {
|
|
6098
6209
|
__typename?: 'AssetsDMJobDataResponse';
|
|
@@ -6587,6 +6698,18 @@ export declare type AssetsDmUpdateCleansingReasonResponse = {
|
|
|
6587
6698
|
isSuccessful: Scalars['Boolean']['output'];
|
|
6588
6699
|
message: Scalars['String']['output'];
|
|
6589
6700
|
};
|
|
6701
|
+
export declare type AssetsDmUpdateDataSourceTypeInput = {
|
|
6702
|
+
dataSourceTypeId: Scalars['ID']['input'];
|
|
6703
|
+
defaultGap?: InputMaybe<Scalars['Int']['input']>;
|
|
6704
|
+
name: Scalars['String']['input'];
|
|
6705
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
6706
|
+
};
|
|
6707
|
+
export declare type AssetsDmUpdateDataSourceTypeResponse = {
|
|
6708
|
+
__typename?: 'AssetsDMUpdateDataSourceTypeResponse';
|
|
6709
|
+
dataSourceType?: Maybe<AssetsDmDataSourceType>;
|
|
6710
|
+
isSuccessful?: Maybe<Scalars['Boolean']['output']>;
|
|
6711
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
6712
|
+
};
|
|
6590
6713
|
export declare type AssetsIcon = {
|
|
6591
6714
|
__typename?: 'AssetsIcon';
|
|
6592
6715
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -6992,6 +7115,75 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
6992
7115
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6993
7116
|
permissionFilter?: InputMaybe<BitbucketPermission>;
|
|
6994
7117
|
};
|
|
7118
|
+
export declare type BlockServiceEvent = {
|
|
7119
|
+
__typename?: 'BlockServiceEvent';
|
|
7120
|
+
event: BlockServiceEventType;
|
|
7121
|
+
hydration: BlockServiceHydration;
|
|
7122
|
+
id: BlockServiceTargetIdentifier;
|
|
7123
|
+
imageData?: Maybe<BlockServiceImageData>;
|
|
7124
|
+
service: BlockServiceTdpService;
|
|
7125
|
+
shardingContext?: Maybe<BlockServiceShardingContext>;
|
|
7126
|
+
systemData?: Maybe<BlockServiceSystemData>;
|
|
7127
|
+
};
|
|
7128
|
+
export declare enum BlockServiceEventType {
|
|
7129
|
+
Create = "CREATE",
|
|
7130
|
+
Delete = "DELETE",
|
|
7131
|
+
Update = "UPDATE"
|
|
7132
|
+
}
|
|
7133
|
+
export declare enum BlockServiceHydration {
|
|
7134
|
+
Full = "FULL",
|
|
7135
|
+
Metadata = "METADATA",
|
|
7136
|
+
None = "NONE"
|
|
7137
|
+
}
|
|
7138
|
+
export declare type BlockServiceImageData = {
|
|
7139
|
+
__typename?: 'BlockServiceImageData';
|
|
7140
|
+
newImage?: Maybe<Array<BlockServiceItemData>>;
|
|
7141
|
+
oldImage?: Maybe<Array<BlockServiceItemData>>;
|
|
7142
|
+
};
|
|
7143
|
+
export declare type BlockServiceItemData = {
|
|
7144
|
+
__typename?: 'BlockServiceItemData';
|
|
7145
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7146
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
7147
|
+
};
|
|
7148
|
+
export declare type BlockServiceItemIdentifier = {
|
|
7149
|
+
__typename?: 'BlockServiceItemIdentifier';
|
|
7150
|
+
id: Scalars['String']['output'];
|
|
7151
|
+
itemType?: Maybe<Scalars['String']['output']>;
|
|
7152
|
+
itemTypeVersion?: Maybe<Scalars['String']['output']>;
|
|
7153
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
7154
|
+
};
|
|
7155
|
+
export declare enum BlockServicePlatformType {
|
|
7156
|
+
Bucket = "BUCKET",
|
|
7157
|
+
Node = "NODE",
|
|
7158
|
+
Object = "OBJECT",
|
|
7159
|
+
Partition = "PARTITION",
|
|
7160
|
+
Schema = "SCHEMA"
|
|
7161
|
+
}
|
|
7162
|
+
export declare type BlockServiceShardingContext = {
|
|
7163
|
+
__typename?: 'BlockServiceShardingContext';
|
|
7164
|
+
ownerEntity?: Maybe<Scalars['String']['output']>;
|
|
7165
|
+
partitionId: Scalars['String']['output'];
|
|
7166
|
+
productHost?: Maybe<Scalars['String']['output']>;
|
|
7167
|
+
providerHost?: Maybe<Scalars['String']['output']>;
|
|
7168
|
+
};
|
|
7169
|
+
export declare type BlockServiceSystemData = {
|
|
7170
|
+
__typename?: 'BlockServiceSystemData';
|
|
7171
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7172
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
7173
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7174
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
7175
|
+
};
|
|
7176
|
+
export declare type BlockServiceTargetIdentifier = {
|
|
7177
|
+
__typename?: 'BlockServiceTargetIdentifier';
|
|
7178
|
+
itemIdentifier?: Maybe<BlockServiceItemIdentifier>;
|
|
7179
|
+
platformType?: Maybe<BlockServicePlatformType>;
|
|
7180
|
+
};
|
|
7181
|
+
export declare enum BlockServiceTdpService {
|
|
7182
|
+
Control = "CONTROL",
|
|
7183
|
+
Ers = "ERS",
|
|
7184
|
+
Os = "OS",
|
|
7185
|
+
Sql = "SQL"
|
|
7186
|
+
}
|
|
6995
7187
|
export declare type BlockSmartLink = SmartLink & {
|
|
6996
7188
|
__typename?: 'BlockSmartLink';
|
|
6997
7189
|
url: Scalars['String']['output'];
|
|
@@ -10404,6 +10596,18 @@ export declare type CommerceEntitlementRelationship = {
|
|
|
10404
10596
|
relationshipId?: Maybe<Scalars['ID']['output']>;
|
|
10405
10597
|
relationshipType?: Maybe<Scalars['String']['output']>;
|
|
10406
10598
|
};
|
|
10599
|
+
export declare type CommerceExpCcpQuery = {
|
|
10600
|
+
__typename?: 'CommerceExpCcpQuery';
|
|
10601
|
+
commerceExp_testField?: Maybe<CommerceExpTestField>;
|
|
10602
|
+
};
|
|
10603
|
+
export declare type CommerceExpCcpQueryCommerceExp_TestFieldArgs = {
|
|
10604
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
10605
|
+
};
|
|
10606
|
+
export declare type CommerceExpTestField = {
|
|
10607
|
+
__typename?: 'CommerceExpTestField';
|
|
10608
|
+
age?: Maybe<Scalars['Int']['output']>;
|
|
10609
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
10610
|
+
};
|
|
10407
10611
|
export declare type CommerceExperienceCapability = {
|
|
10408
10612
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
10409
10613
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18685,6 +18889,7 @@ export declare type ConfluenceNbmVerificationEntry = {
|
|
|
18685
18889
|
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
18686
18890
|
screenshotId?: Maybe<Scalars['ID']['output']>;
|
|
18687
18891
|
screenshotPageId?: Maybe<Scalars['ID']['output']>;
|
|
18892
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
18688
18893
|
};
|
|
18689
18894
|
export declare type ConfluenceNbmVerificationEntryInput = {
|
|
18690
18895
|
id: Scalars['ID']['input'];
|
|
@@ -19182,7 +19387,6 @@ export declare type ConfluencePersonWithPermissionsConnection = {
|
|
|
19182
19387
|
export declare type ConfluencePlaylist = {
|
|
19183
19388
|
__typename?: 'ConfluencePlaylist';
|
|
19184
19389
|
accountId: Scalars['ID']['output'];
|
|
19185
|
-
preference: ConfluencePlaylistPreference;
|
|
19186
19390
|
tracks: ConfluencePaginatedTracks;
|
|
19187
19391
|
user?: Maybe<Person>;
|
|
19188
19392
|
};
|
|
@@ -19199,11 +19403,6 @@ export declare type ConfluencePlaylistPageInfo = {
|
|
|
19199
19403
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
19200
19404
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
19201
19405
|
};
|
|
19202
|
-
export declare type ConfluencePlaylistPreference = {
|
|
19203
|
-
__typename?: 'ConfluencePlaylistPreference';
|
|
19204
|
-
length: ConfluenceLength;
|
|
19205
|
-
tone: ConfluenceTone;
|
|
19206
|
-
};
|
|
19207
19406
|
export declare enum ConfluencePolicyEnabledStatus {
|
|
19208
19407
|
Disabled = "DISABLED",
|
|
19209
19408
|
Enabled = "ENABLED",
|
|
@@ -23449,7 +23648,7 @@ export declare type ConvoAiHomeThreadsFirstPartySource = {
|
|
|
23449
23648
|
data?: Maybe<ConvoAiHomeThreadsFirstPartySourceType>;
|
|
23450
23649
|
url: Scalars['String']['output'];
|
|
23451
23650
|
};
|
|
23452
|
-
export declare type ConvoAiHomeThreadsFirstPartySourceType = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
23651
|
+
export declare type ConvoAiHomeThreadsFirstPartySourceType = BitbucketPullRequest | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
23453
23652
|
export declare type ConvoAiHomeThreadsInput = {
|
|
23454
23653
|
userId: Scalars['ID']['input'];
|
|
23455
23654
|
};
|
|
@@ -23669,6 +23868,7 @@ export declare type CplsCapacityPlanningPeopleView = {
|
|
|
23669
23868
|
contributor?: Maybe<CplsContributor>;
|
|
23670
23869
|
contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
|
|
23671
23870
|
contributors?: Maybe<CplsContributorConnection>;
|
|
23871
|
+
filters?: Maybe<CplsFilters>;
|
|
23672
23872
|
id: Scalars['ID']['output'];
|
|
23673
23873
|
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
23674
23874
|
viewSettings?: Maybe<CplsViewSettings>;
|
|
@@ -23693,16 +23893,20 @@ export declare type CplsContribution = {
|
|
|
23693
23893
|
endDate: Scalars['Date']['output'];
|
|
23694
23894
|
startDate: Scalars['Date']['output'];
|
|
23695
23895
|
value?: Maybe<Scalars['Float']['output']>;
|
|
23896
|
+
valueFormats?: Maybe<CplsValueFormats>;
|
|
23696
23897
|
valueType: CplsContributionValueType;
|
|
23697
23898
|
};
|
|
23698
23899
|
export declare type CplsContributionAggregation = {
|
|
23699
23900
|
__typename?: 'CplsContributionAggregation';
|
|
23700
23901
|
availability: Scalars['Float']['output'];
|
|
23902
|
+
availabilityFormats?: Maybe<CplsValueFormats>;
|
|
23701
23903
|
endDate: Scalars['Date']['output'];
|
|
23702
23904
|
startDate: Scalars['Date']['output'];
|
|
23905
|
+
totalContributionFormats?: Maybe<CplsValueFormats>;
|
|
23703
23906
|
totalContributionHours: Scalars['Float']['output'];
|
|
23704
23907
|
};
|
|
23705
23908
|
export declare enum CplsContributionValueType {
|
|
23909
|
+
Days = "DAYS",
|
|
23706
23910
|
Hours = "HOURS",
|
|
23707
23911
|
Percentage = "PERCENTAGE"
|
|
23708
23912
|
}
|
|
@@ -23847,7 +24051,15 @@ export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
|
|
|
23847
24051
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
23848
24052
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
23849
24053
|
};
|
|
23850
|
-
export declare type
|
|
24054
|
+
export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
|
|
24055
|
+
export declare type CplsFilters = {
|
|
24056
|
+
__typename?: 'CplsFilters';
|
|
24057
|
+
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24058
|
+
};
|
|
24059
|
+
export declare type CplsFiltersInput = {
|
|
24060
|
+
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24061
|
+
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
24062
|
+
};
|
|
23851
24063
|
export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
23852
24064
|
__typename?: 'CplsMutationErrorExtension';
|
|
23853
24065
|
errorId?: Maybe<Scalars['String']['output']>;
|
|
@@ -23887,8 +24099,21 @@ export declare type CplsUpdateCustomContributionTargetPayload = Payload & {
|
|
|
23887
24099
|
errors?: Maybe<Array<MutationError>>;
|
|
23888
24100
|
success: Scalars['Boolean']['output'];
|
|
23889
24101
|
};
|
|
23890
|
-
export declare type
|
|
23891
|
-
|
|
24102
|
+
export declare type CplsUpdateFiltersInput = {
|
|
24103
|
+
filters: CplsFiltersInput;
|
|
24104
|
+
scopeId: Scalars['ID']['input'];
|
|
24105
|
+
};
|
|
24106
|
+
export declare type CplsUpdateFiltersPayload = Payload & {
|
|
24107
|
+
__typename?: 'CplsUpdateFiltersPayload';
|
|
24108
|
+
errors?: Maybe<Array<MutationError>>;
|
|
24109
|
+
filters?: Maybe<CplsFilters>;
|
|
24110
|
+
success: Scalars['Boolean']['output'];
|
|
24111
|
+
};
|
|
24112
|
+
export declare type CplsValueFormats = {
|
|
24113
|
+
__typename?: 'CplsValueFormats';
|
|
24114
|
+
days?: Maybe<Scalars['Float']['output']>;
|
|
24115
|
+
hours?: Maybe<Scalars['Float']['output']>;
|
|
24116
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
23892
24117
|
};
|
|
23893
24118
|
export declare type CplsViewSettings = {
|
|
23894
24119
|
__typename?: 'CplsViewSettings';
|
|
@@ -26475,6 +26700,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
26475
26700
|
__typename?: 'CustomerServiceTemplateForm';
|
|
26476
26701
|
defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
|
|
26477
26702
|
description?: Maybe<Scalars['String']['output']>;
|
|
26703
|
+
enabledChannels?: Maybe<Array<CustomerServiceTemplateFormEnabledChannels>>;
|
|
26478
26704
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
26479
26705
|
helpCenterId: Scalars['ID']['output'];
|
|
26480
26706
|
id: Scalars['ID']['output'];
|
|
@@ -26482,6 +26708,11 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
26482
26708
|
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26483
26709
|
name?: Maybe<Scalars['String']['output']>;
|
|
26484
26710
|
};
|
|
26711
|
+
export declare enum CustomerServiceTemplateFormChannelType {
|
|
26712
|
+
Email = "EMAIL",
|
|
26713
|
+
Embed = "EMBED",
|
|
26714
|
+
SupportSite = "SUPPORT_SITE"
|
|
26715
|
+
}
|
|
26485
26716
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
26486
26717
|
__typename?: 'CustomerServiceTemplateFormConnection';
|
|
26487
26718
|
edges: Array<CustomerServiceTemplateFormEdge>;
|
|
@@ -26512,6 +26743,15 @@ export declare type CustomerServiceTemplateFormEdge = {
|
|
|
26512
26743
|
cursor: Scalars['String']['output'];
|
|
26513
26744
|
node?: Maybe<CustomerServiceTemplateForm>;
|
|
26514
26745
|
};
|
|
26746
|
+
export declare type CustomerServiceTemplateFormEnabledChannels = {
|
|
26747
|
+
__typename?: 'CustomerServiceTemplateFormEnabledChannels';
|
|
26748
|
+
channelType: CustomerServiceTemplateFormChannelType;
|
|
26749
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26750
|
+
};
|
|
26751
|
+
export declare type CustomerServiceTemplateFormEnabledChannelsInput = {
|
|
26752
|
+
channelType: CustomerServiceTemplateFormChannelType;
|
|
26753
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26754
|
+
};
|
|
26515
26755
|
export declare type CustomerServiceTemplateFormFilterInput = {
|
|
26516
26756
|
isAiFillable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26517
26757
|
};
|
|
@@ -26519,6 +26759,7 @@ export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemp
|
|
|
26519
26759
|
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
26520
26760
|
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
26521
26761
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
26762
|
+
enabledChannels?: InputMaybe<Array<CustomerServiceTemplateFormEnabledChannelsInput>>;
|
|
26522
26763
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26523
26764
|
};
|
|
26524
26765
|
export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
|
|
@@ -30685,6 +30926,9 @@ export declare type ExperimentApiCollaborationGraphUser = {
|
|
|
30685
30926
|
score?: Maybe<Scalars['Float']['output']>;
|
|
30686
30927
|
userProfile?: Maybe<User>;
|
|
30687
30928
|
};
|
|
30929
|
+
export declare type ExperimentApiGetCjnCollaboratorsInput = {
|
|
30930
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
30931
|
+
};
|
|
30688
30932
|
export declare type Extension = {
|
|
30689
30933
|
__typename?: 'Extension';
|
|
30690
30934
|
appId: Scalars['ID']['output'];
|
|
@@ -31798,6 +32042,7 @@ export declare enum ExternalSpaceSubtype {
|
|
|
31798
32042
|
Business = "BUSINESS",
|
|
31799
32043
|
Project = "PROJECT",
|
|
31800
32044
|
ServiceDesk = "SERVICE_DESK",
|
|
32045
|
+
Site = "SITE",
|
|
31801
32046
|
Software = "SOFTWARE",
|
|
31802
32047
|
Space = "SPACE"
|
|
31803
32048
|
}
|
|
@@ -33055,6 +33300,20 @@ export declare type ForgeMetricsInvocationLatencySummaryDataPoint = {
|
|
|
33055
33300
|
timestamp: Scalars['DateTime']['output'];
|
|
33056
33301
|
value: Scalars['String']['output'];
|
|
33057
33302
|
};
|
|
33303
|
+
export declare type ForgeMetricsInvocationLatencySummaryDrilldownData = ForgeMetricsData & {
|
|
33304
|
+
__typename?: 'ForgeMetricsInvocationLatencySummaryDrilldownData';
|
|
33305
|
+
interval: ForgeMetricsIntervalRange;
|
|
33306
|
+
name: Scalars['String']['output'];
|
|
33307
|
+
resolution: ForgeMetricsResolution;
|
|
33308
|
+
series: Array<ForgeMetricsInvocationLatencySummaryDrilldownSeries>;
|
|
33309
|
+
type: ForgeMetricsDataType;
|
|
33310
|
+
};
|
|
33311
|
+
export declare type ForgeMetricsInvocationLatencySummaryDrilldownResult = ForgeMetricsInvocationLatencySummaryDrilldownData | QueryError;
|
|
33312
|
+
export declare type ForgeMetricsInvocationLatencySummaryDrilldownSeries = ForgeMetricsSeries & {
|
|
33313
|
+
__typename?: 'ForgeMetricsInvocationLatencySummaryDrilldownSeries';
|
|
33314
|
+
groups: Array<ForgeMetricsLabelGroup>;
|
|
33315
|
+
percentiles: Array<ForgeMetricsLatenciesPercentile>;
|
|
33316
|
+
};
|
|
33058
33317
|
export declare type ForgeMetricsInvocationLatencySummaryQueryFilters = {
|
|
33059
33318
|
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
33060
33319
|
contexts?: InputMaybe<Array<ForgeMetricsContexts>>;
|
|
@@ -33195,6 +33454,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
33195
33454
|
customMetricsMetaData: ForgeMetricsCustomResult;
|
|
33196
33455
|
errors: ForgeMetricsErrorsResult;
|
|
33197
33456
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
33457
|
+
invocationLatencySummaryDrilldown: ForgeMetricsInvocationLatencySummaryDrilldownResult;
|
|
33198
33458
|
invocationLatencySummaryRange: ForgeMetricsInvocationLatencySummaryRangeResult;
|
|
33199
33459
|
invocationLatencySummaryValue: ForgeMetricsInvocationLatencySummaryValueResult;
|
|
33200
33460
|
invocations: ForgeMetricsInvocationsResult;
|
|
@@ -33236,6 +33496,9 @@ export declare type ForgeMetricsQueryErrorsArgs = {
|
|
|
33236
33496
|
export declare type ForgeMetricsQueryErrorsValueArgs = {
|
|
33237
33497
|
query: ForgeMetricsQueryInput;
|
|
33238
33498
|
};
|
|
33499
|
+
export declare type ForgeMetricsQueryInvocationLatencySummaryDrilldownArgs = {
|
|
33500
|
+
query: ForgeMetricsInvocationLatencySummaryQueryInput;
|
|
33501
|
+
};
|
|
33239
33502
|
export declare type ForgeMetricsQueryInvocationLatencySummaryRangeArgs = {
|
|
33240
33503
|
query: ForgeMetricsInvocationLatencySummaryQueryInput;
|
|
33241
33504
|
};
|
|
@@ -64115,20 +64378,13 @@ export declare type HelpCenterHomePageTitleInput = {
|
|
|
64115
64378
|
default: Scalars['String']['input'];
|
|
64116
64379
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
64117
64380
|
};
|
|
64118
|
-
export declare type HelpCenterHubProductEntityData = HelpCenterJsmRequestTypesData | QueryError;
|
|
64119
64381
|
export declare type HelpCenterHubProductEntityResult = {
|
|
64120
64382
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
64121
64383
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
64122
64384
|
entityType: Scalars['String']['output'];
|
|
64123
64385
|
filterCriteria: HelpCenterProductEntityFilterCriteria;
|
|
64124
|
-
|
|
64125
|
-
|
|
64126
|
-
__typename?: 'HelpCenterJSMRequestTypesData';
|
|
64127
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
64128
|
-
displayLink?: Maybe<Scalars['String']['output']>;
|
|
64129
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
64130
|
-
id: Scalars['ID']['output'];
|
|
64131
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
64386
|
+
parentFilters?: Maybe<Array<HelpCenterProductEntityFilterOutput>>;
|
|
64387
|
+
sortConfig?: Maybe<HelpCenterProductEntitySortConfigOutput>;
|
|
64132
64388
|
};
|
|
64133
64389
|
export declare type HelpCenterLayoutAdf = {
|
|
64134
64390
|
__typename?: 'HelpCenterLayoutAdf';
|
|
@@ -64405,12 +64661,20 @@ export declare enum HelpCenterPortalsType {
|
|
|
64405
64661
|
Visible = "VISIBLE"
|
|
64406
64662
|
}
|
|
64407
64663
|
export declare type HelpCenterProductEntityConnection = HelpObjectStoreProductEntityConnection | QueryError;
|
|
64664
|
+
export declare type HelpCenterProductEntityFilter = {
|
|
64665
|
+
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
64666
|
+
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64667
|
+
};
|
|
64408
64668
|
export declare type HelpCenterProductEntityFilterCriteria = {
|
|
64409
64669
|
__typename?: 'HelpCenterProductEntityFilterCriteria';
|
|
64410
64670
|
after?: Maybe<Scalars['String']['output']>;
|
|
64411
64671
|
cloudId: Scalars['ID']['output'];
|
|
64412
64672
|
first?: Maybe<Scalars['Int']['output']>;
|
|
64413
|
-
|
|
64673
|
+
};
|
|
64674
|
+
export declare type HelpCenterProductEntityFilterOutput = {
|
|
64675
|
+
__typename?: 'HelpCenterProductEntityFilterOutput';
|
|
64676
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
64677
|
+
subEntityTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
64414
64678
|
};
|
|
64415
64679
|
export declare type HelpCenterProductEntityImageInput = {
|
|
64416
64680
|
entityId: Scalars['String']['input'];
|
|
@@ -64427,13 +64691,21 @@ export declare type HelpCenterProductEntityImages = {
|
|
|
64427
64691
|
export declare type HelpCenterProductEntityRequestInput = {
|
|
64428
64692
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64429
64693
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64430
|
-
|
|
64694
|
+
parentFilters?: InputMaybe<Array<HelpCenterProductEntityFilter>>;
|
|
64695
|
+
sortConfig?: InputMaybe<HelpCenterProductEntitySortConfig>;
|
|
64431
64696
|
type: HelpCenterProductEntityType;
|
|
64432
64697
|
};
|
|
64698
|
+
export declare type HelpCenterProductEntitySortConfig = {
|
|
64699
|
+
additionalConfig?: InputMaybe<Scalars['JSON']['input']>;
|
|
64700
|
+
sortMode?: InputMaybe<HelpCenterSortMode>;
|
|
64701
|
+
};
|
|
64702
|
+
export declare type HelpCenterProductEntitySortConfigOutput = {
|
|
64703
|
+
__typename?: 'HelpCenterProductEntitySortConfigOutput';
|
|
64704
|
+
additionalConfig?: Maybe<Scalars['JSON']['output']>;
|
|
64705
|
+
sortMode?: Maybe<Scalars['String']['output']>;
|
|
64706
|
+
};
|
|
64433
64707
|
export declare enum HelpCenterProductEntityType {
|
|
64434
|
-
|
|
64435
|
-
JsmKbArticles = "JSM_KB_ARTICLES",
|
|
64436
|
-
JsmRequestTypes = "JSM_REQUEST_TYPES",
|
|
64708
|
+
JsmHelpObjects = "JSM_HELP_OBJECTS",
|
|
64437
64709
|
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
64438
64710
|
}
|
|
64439
64711
|
export declare type HelpCenterProjectMappingData = {
|
|
@@ -64586,6 +64858,11 @@ export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
|
|
|
64586
64858
|
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
64587
64859
|
};
|
|
64588
64860
|
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
64861
|
+
export declare enum HelpCenterSortMode {
|
|
64862
|
+
Manual = "MANUAL",
|
|
64863
|
+
Parent = "PARENT",
|
|
64864
|
+
SubEntityType = "SUB_ENTITY_TYPE"
|
|
64865
|
+
}
|
|
64589
64866
|
export declare enum HelpCenterSortOrder {
|
|
64590
64867
|
CreatedDateAscending = "CREATED_DATE_ASCENDING",
|
|
64591
64868
|
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
@@ -65565,6 +65842,10 @@ export declare type HelpObjectStoreEntityData = {
|
|
|
65565
65842
|
name?: Maybe<Scalars['String']['output']>;
|
|
65566
65843
|
};
|
|
65567
65844
|
export declare type HelpObjectStoreEntityDataGeneric = HelpObjectStoreEntityData;
|
|
65845
|
+
export declare type HelpObjectStoreFilter = {
|
|
65846
|
+
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
65847
|
+
subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65848
|
+
};
|
|
65568
65849
|
export declare type HelpObjectStoreHelpCenterSearchResult = HelpObjectStoreQueryError | HelpObjectStoreSearchResult;
|
|
65569
65850
|
export declare type HelpObjectStoreHelpObject = {
|
|
65570
65851
|
ari: Scalars['ID']['output'];
|
|
@@ -65651,17 +65932,14 @@ export declare type HelpObjectStoreProductEntityInput = {
|
|
|
65651
65932
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65652
65933
|
cloudId: Scalars['ID']['input'];
|
|
65653
65934
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65654
|
-
parentId: Scalars['ID']['input'];
|
|
65655
65935
|
};
|
|
65656
65936
|
export declare type HelpObjectStoreProductEntityResult = HelpObjectStoreProductEntityConnection | QueryError;
|
|
65657
65937
|
export declare type HelpObjectStoreQueryApi = {
|
|
65658
65938
|
__typename?: 'HelpObjectStoreQueryApi';
|
|
65659
65939
|
articles?: Maybe<Array<Maybe<HelpObjectStoreArticleResult>>>;
|
|
65660
65940
|
channels?: Maybe<Array<Maybe<HelpObjectStoreChannelResult>>>;
|
|
65661
|
-
|
|
65662
|
-
kbArticles?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
65941
|
+
helpObjects?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
65663
65942
|
requestForms?: Maybe<Array<Maybe<HelpObjectStoreRequestFormResult>>>;
|
|
65664
|
-
requestTypes?: Maybe<HelpObjectStoreProductEntityResult>;
|
|
65665
65943
|
searchHelpObjects?: Maybe<Array<Maybe<HelpObjectStoreHelpCenterSearchResult>>>;
|
|
65666
65944
|
};
|
|
65667
65945
|
export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
@@ -65670,18 +65948,14 @@ export declare type HelpObjectStoreQueryApiArticlesArgs = {
|
|
|
65670
65948
|
export declare type HelpObjectStoreQueryApiChannelsArgs = {
|
|
65671
65949
|
ids: Array<Scalars['ID']['input']>;
|
|
65672
65950
|
};
|
|
65673
|
-
export declare type
|
|
65674
|
-
|
|
65675
|
-
};
|
|
65676
|
-
export declare type HelpObjectStoreQueryApiKbArticlesArgs = {
|
|
65951
|
+
export declare type HelpObjectStoreQueryApiHelpObjectsArgs = {
|
|
65952
|
+
filters?: InputMaybe<Array<HelpObjectStoreFilter>>;
|
|
65677
65953
|
input: HelpObjectStoreProductEntityInput;
|
|
65954
|
+
sortConfig?: InputMaybe<HelpObjectStoreSortConfig>;
|
|
65678
65955
|
};
|
|
65679
65956
|
export declare type HelpObjectStoreQueryApiRequestFormsArgs = {
|
|
65680
65957
|
ids: Array<Scalars['ID']['input']>;
|
|
65681
65958
|
};
|
|
65682
|
-
export declare type HelpObjectStoreQueryApiRequestTypesArgs = {
|
|
65683
|
-
input: HelpObjectStoreProductEntityInput;
|
|
65684
|
-
};
|
|
65685
65959
|
export declare type HelpObjectStoreQueryApiSearchHelpObjectsArgs = {
|
|
65686
65960
|
searchInput: HelpObjectStoreSearchInput;
|
|
65687
65961
|
};
|
|
@@ -65791,6 +66065,10 @@ export declare enum HelpObjectStoreSearchableEntityType {
|
|
|
65791
66065
|
Article = "ARTICLE",
|
|
65792
66066
|
RequestForm = "REQUEST_FORM"
|
|
65793
66067
|
}
|
|
66068
|
+
export declare type HelpObjectStoreSortConfig = {
|
|
66069
|
+
additionalConfig?: InputMaybe<Scalars['JSON']['input']>;
|
|
66070
|
+
sortMode?: InputMaybe<Scalars['String']['input']>;
|
|
66071
|
+
};
|
|
65794
66072
|
export declare type HelpObjectStoreSuccessfullyCreatedEntityMappingDetail = {
|
|
65795
66073
|
__typename?: 'HelpObjectStoreSuccessfullyCreatedEntityMappingDetail';
|
|
65796
66074
|
ari: Scalars['ID']['output'];
|
|
@@ -76829,6 +77107,7 @@ export declare type JiraJqlEmptyFieldValue = JiraJqlFieldValue & {
|
|
|
76829
77107
|
};
|
|
76830
77108
|
export declare type JiraJqlField = {
|
|
76831
77109
|
__typename?: 'JiraJqlField';
|
|
77110
|
+
aliases?: Maybe<Array<Scalars['String']['output']>>;
|
|
76832
77111
|
allowedClauseTypes: Array<JiraJqlClauseType>;
|
|
76833
77112
|
autoCompleteTemplate?: Maybe<JiraJqlAutocompleteType>;
|
|
76834
77113
|
dataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -78085,6 +78364,7 @@ export declare type JiraMutation = {
|
|
|
78085
78364
|
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
78086
78365
|
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
78087
78366
|
setPlanReleaseEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
78367
|
+
setProjectAccessRequestAllowed?: Maybe<JiraProjectAccessRequestMutationPayload>;
|
|
78088
78368
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
78089
78369
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
78090
78370
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -78615,6 +78895,9 @@ export declare type JiraMutationSetPlanMultiScenarioEnabledArgs = {
|
|
|
78615
78895
|
export declare type JiraMutationSetPlanReleaseEnabledArgs = {
|
|
78616
78896
|
input?: InputMaybe<JiraPlanReleaseFeatureMutationInput>;
|
|
78617
78897
|
};
|
|
78898
|
+
export declare type JiraMutationSetProjectAccessRequestAllowedArgs = {
|
|
78899
|
+
input: JiraSetProjectAccessRequestAllowedPropertyInput;
|
|
78900
|
+
};
|
|
78618
78901
|
export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
78619
78902
|
cloudId: Scalars['ID']['input'];
|
|
78620
78903
|
id: Scalars['ID']['input'];
|
|
@@ -79070,6 +79353,7 @@ export declare enum JiraNotificationCategoryType {
|
|
|
79070
79353
|
IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
|
|
79071
79354
|
IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
|
|
79072
79355
|
Recurring = "RECURRING",
|
|
79356
|
+
SpaceAccessRequest = "SPACE_ACCESS_REQUEST",
|
|
79073
79357
|
UserJoin = "USER_JOIN"
|
|
79074
79358
|
}
|
|
79075
79359
|
export declare type JiraNotificationChannel = {
|
|
@@ -79133,6 +79417,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
79133
79417
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
79134
79418
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
79135
79419
|
projectRecapNotification?: Maybe<JiraNotificationPreference>;
|
|
79420
|
+
spaceAccessRequestNotification?: Maybe<JiraNotificationPreference>;
|
|
79136
79421
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
79137
79422
|
};
|
|
79138
79423
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -79161,6 +79446,7 @@ export declare enum JiraNotificationType {
|
|
|
79161
79446
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
79162
79447
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
79163
79448
|
ProjectRecapNotification = "PROJECT_RECAP_NOTIFICATION",
|
|
79449
|
+
SpaceAccessRequestNotification = "SPACE_ACCESS_REQUEST_NOTIFICATION",
|
|
79164
79450
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
79165
79451
|
}
|
|
79166
79452
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -80570,6 +80856,7 @@ export declare type JiraProject = Node & {
|
|
|
80570
80856
|
id: Scalars['ID']['output'];
|
|
80571
80857
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
80572
80858
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80859
|
+
isAccessRequestsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80573
80860
|
isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80574
80861
|
isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80575
80862
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -85406,6 +85693,11 @@ export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
|
85406
85693
|
errors?: Maybe<Array<MutationError>>;
|
|
85407
85694
|
success: Scalars['Boolean']['output'];
|
|
85408
85695
|
};
|
|
85696
|
+
export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
|
|
85697
|
+
allowAccessRequests: Scalars['Boolean']['input'];
|
|
85698
|
+
cloudId: Scalars['ID']['input'];
|
|
85699
|
+
projectId: Scalars['ID']['input'];
|
|
85700
|
+
};
|
|
85409
85701
|
export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
|
|
85410
85702
|
deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
|
|
85411
85703
|
projectId: Scalars['ID']['input'];
|
|
@@ -89480,6 +89772,12 @@ export declare type JsmChannelsResolutionPlanGraph = {
|
|
|
89480
89772
|
planId: Scalars['ID']['output'];
|
|
89481
89773
|
};
|
|
89482
89774
|
export declare type JsmChannelsResolutionPlanGraphResult = JsmChannelsResolutionPlanGraph | QueryError;
|
|
89775
|
+
export declare enum JsmChannelsResolutionPlanStatus {
|
|
89776
|
+
Approved = "APPROVED",
|
|
89777
|
+
Paused = "PAUSED",
|
|
89778
|
+
Pending = "PENDING",
|
|
89779
|
+
Rejected = "REJECTED"
|
|
89780
|
+
}
|
|
89483
89781
|
export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
89484
89782
|
Cancelled = "CANCELLED",
|
|
89485
89783
|
Completed = "COMPLETED",
|
|
@@ -89491,12 +89789,13 @@ export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
|
89491
89789
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
89492
89790
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
89493
89791
|
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
89792
|
+
status?: Maybe<JsmChannelsResolutionPlanStatus>;
|
|
89494
89793
|
steps?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionPlanStep>>>;
|
|
89495
89794
|
};
|
|
89496
89795
|
export declare type JsmChannelsServiceAgentResolutionPlanStep = {
|
|
89497
89796
|
__typename?: 'JsmChannelsServiceAgentResolutionPlanStep';
|
|
89498
89797
|
description?: Maybe<Scalars['String']['output']>;
|
|
89499
|
-
status?: Maybe<
|
|
89798
|
+
status?: Maybe<JsmChannelsResolutionPlanStepStatus>;
|
|
89500
89799
|
title: Scalars['String']['output'];
|
|
89501
89800
|
};
|
|
89502
89801
|
export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
@@ -90190,7 +90489,9 @@ export declare enum JsmConversationMessageSource {
|
|
|
90190
90489
|
System = "SYSTEM"
|
|
90191
90490
|
}
|
|
90192
90491
|
export declare enum JsmConversationStatus {
|
|
90193
|
-
Closed = "CLOSED"
|
|
90492
|
+
Closed = "CLOSED",
|
|
90493
|
+
Requested = "REQUESTED",
|
|
90494
|
+
Unassigned = "UNASSIGNED"
|
|
90194
90495
|
}
|
|
90195
90496
|
export declare type JsonContentProperty = {
|
|
90196
90497
|
__typename?: 'JsonContentProperty';
|
|
@@ -99526,10 +99827,14 @@ export declare type Mutation = {
|
|
|
99526
99827
|
agentStudio_deleteDatasetItem: AgentStudioDeleteDatasetItemPayload;
|
|
99527
99828
|
agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
|
|
99528
99829
|
agentStudio_deleteWidget?: Maybe<AgentStudioDeleteWidgetPayload>;
|
|
99830
|
+
agentStudio_modifyDatasetItem?: Maybe<AgentStudioUpdateDatasetItemPayload>;
|
|
99529
99831
|
agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
99832
|
+
agentStudio_removeDataset?: Maybe<AgentStudioDeleteDatasetPayload>;
|
|
99833
|
+
agentStudio_removeDatasetItem?: Maybe<AgentStudioDeleteDatasetItemPayload>;
|
|
99530
99834
|
agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
|
|
99531
99835
|
agentStudio_runBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
99532
99836
|
agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
|
|
99837
|
+
agentStudio_submitBatchEvaluationJob?: Maybe<AgentStudioCreateBatchEvaluationJobPayload>;
|
|
99533
99838
|
agentStudio_updateActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
|
|
99534
99839
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
99535
99840
|
agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
|
|
@@ -99554,6 +99859,7 @@ export declare type Mutation = {
|
|
|
99554
99859
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
99555
99860
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
99556
99861
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
99862
|
+
assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
|
|
99557
99863
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
99558
99864
|
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
99559
99865
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
@@ -99563,6 +99869,7 @@ export declare type Mutation = {
|
|
|
99563
99869
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
99564
99870
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
99565
99871
|
assetsDM_deleteCleansingReason?: Maybe<AssetsDmDeleteCleansingReasonResponse>;
|
|
99872
|
+
assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
|
|
99566
99873
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
99567
99874
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
99568
99875
|
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
@@ -99571,6 +99878,7 @@ export declare type Mutation = {
|
|
|
99571
99878
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
99572
99879
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
99573
99880
|
assetsDM_updateCleansingReason?: Maybe<AssetsDmUpdateCleansingReasonResponse>;
|
|
99881
|
+
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
99574
99882
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
99575
99883
|
attachDanglingComment?: Maybe<Comment>;
|
|
99576
99884
|
avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
|
|
@@ -99732,6 +100040,7 @@ export declare type Mutation = {
|
|
|
99732
100040
|
cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
|
|
99733
100041
|
cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
|
|
99734
100042
|
cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
|
|
100043
|
+
cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
|
|
99735
100044
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
99736
100045
|
createApp?: Maybe<CreateAppResponse>;
|
|
99737
100046
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -99907,8 +100216,12 @@ export declare type Mutation = {
|
|
|
99907
100216
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
99908
100217
|
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
99909
100218
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
100219
|
+
goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
|
|
99910
100220
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
99911
100221
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
100222
|
+
goals_removeNumericCustomFieldValue?: Maybe<TownsquareGoalsRemoveNumericCustomFieldValuePayload>;
|
|
100223
|
+
goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
|
|
100224
|
+
goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
|
|
99912
100225
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
99913
100226
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
99914
100227
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
@@ -100128,13 +100441,18 @@ export declare type Mutation = {
|
|
|
100128
100441
|
projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
|
|
100129
100442
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
100130
100443
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
100444
|
+
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
100131
100445
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
100132
100446
|
projects_removeJiraWorkItemLink?: Maybe<TownsquareProjectsRemoveJiraWorkItemLinkPayload>;
|
|
100133
100447
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
100448
|
+
projects_removeNumericCustomFieldValue?: Maybe<TownsquareProjectsRemoveNumericCustomFieldValuePayload>;
|
|
100134
100449
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
100450
|
+
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
100451
|
+
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
100135
100452
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
100136
100453
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
100137
100454
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
100455
|
+
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
100138
100456
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
100139
100457
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
100140
100458
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
@@ -100144,6 +100462,7 @@ export declare type Mutation = {
|
|
|
100144
100462
|
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
100145
100463
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
100146
100464
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
100465
|
+
radar_deleteLaborCostEstimateData?: Maybe<RadarDeleteLaborCostEstimateDataResponse>;
|
|
100147
100466
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
100148
100467
|
radar_deleteView?: Maybe<RadarView>;
|
|
100149
100468
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
@@ -100489,10 +100808,28 @@ export declare type MutationAgentStudio_DeleteWidgetArgs = {
|
|
|
100489
100808
|
cloudId: Scalars['String']['input'];
|
|
100490
100809
|
widgetId: Scalars['ID']['input'];
|
|
100491
100810
|
};
|
|
100811
|
+
export declare type MutationAgentStudio_ModifyDatasetItemArgs = {
|
|
100812
|
+
cloudId: Scalars['String']['input'];
|
|
100813
|
+
input: AgentStudioUpdateDatasetItemInput;
|
|
100814
|
+
productType: AgentStudioProductType;
|
|
100815
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
100816
|
+
};
|
|
100492
100817
|
export declare type MutationAgentStudio_RemoveActorRolesArgs = {
|
|
100493
100818
|
id: Scalars['ID']['input'];
|
|
100494
100819
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
100495
100820
|
};
|
|
100821
|
+
export declare type MutationAgentStudio_RemoveDatasetArgs = {
|
|
100822
|
+
cloudId: Scalars['String']['input'];
|
|
100823
|
+
id: Scalars['ID']['input'];
|
|
100824
|
+
productType: AgentStudioProductType;
|
|
100825
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
100826
|
+
};
|
|
100827
|
+
export declare type MutationAgentStudio_RemoveDatasetItemArgs = {
|
|
100828
|
+
cloudId: Scalars['String']['input'];
|
|
100829
|
+
id: Scalars['ID']['input'];
|
|
100830
|
+
productType: AgentStudioProductType;
|
|
100831
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
100832
|
+
};
|
|
100496
100833
|
export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
|
|
100497
100834
|
cloudId: Scalars['ID']['input'];
|
|
100498
100835
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
@@ -100508,6 +100845,12 @@ export declare type MutationAgentStudio_SetWidgetByContainerAriArgs = {
|
|
|
100508
100845
|
containerAri: Scalars['ID']['input'];
|
|
100509
100846
|
input: AgentStudioSetWidgetByContainerAriInput;
|
|
100510
100847
|
};
|
|
100848
|
+
export declare type MutationAgentStudio_SubmitBatchEvaluationJobArgs = {
|
|
100849
|
+
cloudId: Scalars['String']['input'];
|
|
100850
|
+
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
100851
|
+
productType: AgentStudioProductType;
|
|
100852
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
100853
|
+
};
|
|
100511
100854
|
export declare type MutationAgentStudio_UpdateActorRolesArgs = {
|
|
100512
100855
|
id: Scalars['ID']['input'];
|
|
100513
100856
|
input: AgentStudioUpdateAgentPermissionInput;
|
|
@@ -100596,6 +100939,11 @@ export declare type MutationAssetsDm_ConfigureDefaultDataSourceMappingArgs = {
|
|
|
100596
100939
|
objectClassName: Scalars['String']['input'];
|
|
100597
100940
|
workspaceId: Scalars['ID']['input'];
|
|
100598
100941
|
};
|
|
100942
|
+
export declare type MutationAssetsDm_CreateDataSourceTypeArgs = {
|
|
100943
|
+
cloudId: Scalars['String']['input'];
|
|
100944
|
+
input: AssetsDmCreateDataSourceTypeInput;
|
|
100945
|
+
workspaceId: Scalars['String']['input'];
|
|
100946
|
+
};
|
|
100599
100947
|
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
100600
100948
|
cloudId: Scalars['ID']['input'];
|
|
100601
100949
|
input: AssetsDmObjectTagCreateInput;
|
|
@@ -100651,6 +100999,11 @@ export declare type MutationAssetsDm_DeleteCleansingReasonArgs = {
|
|
|
100651
100999
|
reasonId: Scalars['ID']['input'];
|
|
100652
101000
|
workspaceId: Scalars['ID']['input'];
|
|
100653
101001
|
};
|
|
101002
|
+
export declare type MutationAssetsDm_DeleteDataSourceTypeArgs = {
|
|
101003
|
+
cloudId: Scalars['String']['input'];
|
|
101004
|
+
dataSourceTypeId: Scalars['ID']['input'];
|
|
101005
|
+
workspaceId: Scalars['String']['input'];
|
|
101006
|
+
};
|
|
100654
101007
|
export declare type MutationAssetsDm_DeleteDefaultAttributeMappingArgs = {
|
|
100655
101008
|
cloudId: Scalars['ID']['input'];
|
|
100656
101009
|
defaultObjectAttributeMappingId: Scalars['ID']['input'];
|
|
@@ -100691,6 +101044,11 @@ export declare type MutationAssetsDm_UpdateCleansingReasonArgs = {
|
|
|
100691
101044
|
input: AssetsDmUpdateCleansingReasonInput;
|
|
100692
101045
|
workspaceId: Scalars['ID']['input'];
|
|
100693
101046
|
};
|
|
101047
|
+
export declare type MutationAssetsDm_UpdateDataSourceTypeArgs = {
|
|
101048
|
+
cloudId: Scalars['String']['input'];
|
|
101049
|
+
input: AssetsDmUpdateDataSourceTypeInput;
|
|
101050
|
+
workspaceId: Scalars['String']['input'];
|
|
101051
|
+
};
|
|
100694
101052
|
export declare type MutationAssignIssueParentArgs = {
|
|
100695
101053
|
input?: InputMaybe<AssignIssueParentInput>;
|
|
100696
101054
|
};
|
|
@@ -101273,6 +101631,9 @@ export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
|
|
|
101273
101631
|
export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
|
|
101274
101632
|
input: CplsUpdateCustomContributionTargetInput;
|
|
101275
101633
|
};
|
|
101634
|
+
export declare type MutationCpls_UpdateFiltersArgs = {
|
|
101635
|
+
input: CplsUpdateFiltersInput;
|
|
101636
|
+
};
|
|
101276
101637
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
101277
101638
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
101278
101639
|
};
|
|
@@ -101876,12 +102237,24 @@ export declare type MutationGoals_GrantAccessArgs = {
|
|
|
101876
102237
|
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
101877
102238
|
input: TownsquareGoalsLinkWorkItemInput;
|
|
101878
102239
|
};
|
|
102240
|
+
export declare type MutationGoals_RemoveDropdownCustomFieldValueArgs = {
|
|
102241
|
+
input: TownsquareGoalsRemoveDropdownCustomFieldValueInput;
|
|
102242
|
+
};
|
|
101879
102243
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
101880
102244
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
101881
102245
|
};
|
|
101882
102246
|
export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
101883
102247
|
input: TownsquareGoalsRemoveMetricTargetInput;
|
|
101884
102248
|
};
|
|
102249
|
+
export declare type MutationGoals_RemoveNumericCustomFieldValueArgs = {
|
|
102250
|
+
input: TownsquareGoalsRemoveNumericCustomFieldValueInput;
|
|
102251
|
+
};
|
|
102252
|
+
export declare type MutationGoals_RemoveTextCustomFieldValueArgs = {
|
|
102253
|
+
input: TownsquareGoalsRemoveTextCustomFieldValueInput;
|
|
102254
|
+
};
|
|
102255
|
+
export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
|
|
102256
|
+
input: TownsquareGoalsRemoveUserCustomFieldValueInput;
|
|
102257
|
+
};
|
|
101885
102258
|
export declare type MutationGoals_RevokeAccessArgs = {
|
|
101886
102259
|
input: TownsquareGoalRevokeAccessInput;
|
|
101887
102260
|
};
|
|
@@ -102537,6 +102910,9 @@ export declare type MutationProjects_EditUpdateArgs = {
|
|
|
102537
102910
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
102538
102911
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
102539
102912
|
};
|
|
102913
|
+
export declare type MutationProjects_RemoveDropdownCustomFieldValueArgs = {
|
|
102914
|
+
input: TownsquareProjectsRemoveDropdownCustomFieldValueInput;
|
|
102915
|
+
};
|
|
102540
102916
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
102541
102917
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
102542
102918
|
};
|
|
@@ -102546,9 +102922,18 @@ export declare type MutationProjects_RemoveJiraWorkItemLinkArgs = {
|
|
|
102546
102922
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
102547
102923
|
input: TownsquareProjectsRemoveMemberInput;
|
|
102548
102924
|
};
|
|
102925
|
+
export declare type MutationProjects_RemoveNumericCustomFieldValueArgs = {
|
|
102926
|
+
input: TownsquareProjectsRemoveNumericCustomFieldValueInput;
|
|
102927
|
+
};
|
|
102549
102928
|
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
102550
102929
|
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
102551
102930
|
};
|
|
102931
|
+
export declare type MutationProjects_RemoveTextCustomFieldValueArgs = {
|
|
102932
|
+
input: TownsquareProjectsRemoveTextCustomFieldValueInput;
|
|
102933
|
+
};
|
|
102934
|
+
export declare type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
102935
|
+
input: TownsquareProjectsRemoveUserCustomFieldValueInput;
|
|
102936
|
+
};
|
|
102552
102937
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
102553
102938
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
102554
102939
|
};
|
|
@@ -102558,6 +102943,9 @@ export declare type MutationProjects_SetWatchingProjectArgs = {
|
|
|
102558
102943
|
export declare type MutationProjects_ShareProjectArgs = {
|
|
102559
102944
|
input?: InputMaybe<TownsquareProjectsShareProjectInput>;
|
|
102560
102945
|
};
|
|
102946
|
+
export declare type MutationProjects_ShareUpdateArgs = {
|
|
102947
|
+
input: TownsquareProjectsShareUpdateInput;
|
|
102948
|
+
};
|
|
102561
102949
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
102562
102950
|
action: PublicLinkAdminAction;
|
|
102563
102951
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -102593,6 +102981,10 @@ export declare type MutationRadar_DeleteFocusAreaProposalChangesArgs = {
|
|
|
102593
102981
|
cloudId: Scalars['ID']['input'];
|
|
102594
102982
|
input: Array<RadarDeleteFocusAreaProposalChangesInput>;
|
|
102595
102983
|
};
|
|
102984
|
+
export declare type MutationRadar_DeleteLaborCostEstimateDataArgs = {
|
|
102985
|
+
cloudId: Scalars['ID']['input'];
|
|
102986
|
+
input: RadarDeleteLaborCostEstimateDataInput;
|
|
102987
|
+
};
|
|
102596
102988
|
export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
102597
102989
|
cloudId: Scalars['ID']['input'];
|
|
102598
102990
|
input: RadarRoleAssignmentRequest;
|
|
@@ -105085,9 +105477,14 @@ export declare type PokemonEntity = {
|
|
|
105085
105477
|
export declare type PokemonQuery = {
|
|
105086
105478
|
__typename?: 'PokemonQuery';
|
|
105087
105479
|
getById?: Maybe<PokemonEntity>;
|
|
105480
|
+
getByIds?: Maybe<Array<Maybe<PokemonEntity>>>;
|
|
105088
105481
|
};
|
|
105089
105482
|
export declare type PokemonQueryGetByIdArgs = {
|
|
105090
|
-
id
|
|
105483
|
+
id: Scalars['ID']['input'];
|
|
105484
|
+
shardingContext: Scalars['String']['input'];
|
|
105485
|
+
};
|
|
105486
|
+
export declare type PokemonQueryGetByIdsArgs = {
|
|
105487
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
105091
105488
|
};
|
|
105092
105489
|
export declare type PokemonTrainersEntity = {
|
|
105093
105490
|
__typename?: 'PokemonTrainersEntity';
|
|
@@ -105097,9 +105494,14 @@ export declare type PokemonTrainersEntity = {
|
|
|
105097
105494
|
export declare type PokemonTrainersQuery = {
|
|
105098
105495
|
__typename?: 'PokemonTrainersQuery';
|
|
105099
105496
|
getById?: Maybe<PokemonTrainersEntity>;
|
|
105497
|
+
getByIds?: Maybe<Array<Maybe<PokemonTrainersEntity>>>;
|
|
105100
105498
|
};
|
|
105101
105499
|
export declare type PokemonTrainersQueryGetByIdArgs = {
|
|
105102
|
-
id
|
|
105500
|
+
id: Scalars['ID']['input'];
|
|
105501
|
+
shardingContext: Scalars['String']['input'];
|
|
105502
|
+
};
|
|
105503
|
+
export declare type PokemonTrainersQueryGetByIdsArgs = {
|
|
105504
|
+
ids?: InputMaybe<Array<InputMaybe<SkyBridgeIdInput>>>;
|
|
105103
105505
|
};
|
|
105104
105506
|
export declare type PolarisAddReactionInput = {
|
|
105105
105507
|
ari: Scalars['String']['input'];
|
|
@@ -106142,15 +106544,21 @@ export declare type Query = {
|
|
|
106142
106544
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
106143
106545
|
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
106144
106546
|
agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
106547
|
+
agentStudio_batchEvalConversationHistoryById?: Maybe<AgentStudioConversationHistoryResult>;
|
|
106548
|
+
agentStudio_batchEvalConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
106145
106549
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
106550
|
+
agentStudio_batchEvaluationJobList?: Maybe<AgentStudioBatchEvaluationJobsResult>;
|
|
106146
106551
|
agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
|
|
106147
106552
|
agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
|
|
106148
106553
|
agentStudio_batchEvaluationSummary?: Maybe<AgentStudioEvaluationSummary>;
|
|
106149
106554
|
agentStudio_conversationReportByAgentId?: Maybe<AgentStudioConversationReportByAgentIdResult>;
|
|
106150
106555
|
agentStudio_dataset?: Maybe<AgentStudioDataset>;
|
|
106556
|
+
agentStudio_datasetItemList?: Maybe<AgentStudioDatasetItemsResult>;
|
|
106151
106557
|
agentStudio_datasetItems: AgentStudioDatasetItemsResult;
|
|
106558
|
+
agentStudio_datasetList?: Maybe<AgentStudioDatasetsResult>;
|
|
106152
106559
|
agentStudio_datasets: AgentStudioDatasetsResult;
|
|
106153
106560
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
106561
|
+
agentStudio_evaluationResultList?: Maybe<AgentStudioEvaluationResultsResult>;
|
|
106154
106562
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
106155
106563
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
106156
106564
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
@@ -106160,7 +106568,9 @@ export declare type Query = {
|
|
|
106160
106568
|
agentStudio_getWidgetsByAgentIdAndContainerType?: Maybe<AgentStudioWidgetsByAgentIdAndContainerTypeResult>;
|
|
106161
106569
|
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
106162
106570
|
agentStudio_jobExecutionHistory: AgentStudioJobExecutionHistory;
|
|
106571
|
+
agentStudio_jobExecutionHistoryList?: Maybe<AgentStudioJobExecutionHistory>;
|
|
106163
106572
|
agentStudio_jobRun?: Maybe<AgentStudioBatchEvaluationJobRun>;
|
|
106573
|
+
agentStudio_jobRunList?: Maybe<AgentStudioBatchEvaluationJobRunResult>;
|
|
106164
106574
|
agentStudio_jobRuns: AgentStudioBatchEvaluationJobRunResult;
|
|
106165
106575
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
106166
106576
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
@@ -106216,6 +106626,7 @@ export declare type Query = {
|
|
|
106216
106626
|
assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
|
|
106217
106627
|
assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
|
|
106218
106628
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
106629
|
+
assetsDM_dataSourceTypes?: Maybe<AssetsDmDataSourceTypeConnection>;
|
|
106219
106630
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
106220
106631
|
assetsDM_defaultAttributeMapping?: Maybe<AssetsDmDefaultAttributeMappingResponse>;
|
|
106221
106632
|
assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
|
|
@@ -106254,6 +106665,7 @@ export declare type Query = {
|
|
|
106254
106665
|
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
106255
106666
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
106256
106667
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
106668
|
+
blockService_health?: Maybe<Scalars['String']['output']>;
|
|
106257
106669
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
106258
106670
|
boardScope?: Maybe<BoardScope>;
|
|
106259
106671
|
buildsByApp?: Maybe<BuildConnection>;
|
|
@@ -106309,6 +106721,7 @@ export declare type Query = {
|
|
|
106309
106721
|
collabToken?: Maybe<CollabTokenResponse>;
|
|
106310
106722
|
collaboratorsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
106311
106723
|
comments?: Maybe<PaginatedCommentList>;
|
|
106724
|
+
commerceExp_ccp?: Maybe<CommerceExpCcpQuery>;
|
|
106312
106725
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
106313
106726
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
106314
106727
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
@@ -106460,7 +106873,7 @@ export declare type Query = {
|
|
|
106460
106873
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
106461
106874
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
106462
106875
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
106463
|
-
cpls_filters?: Maybe<
|
|
106876
|
+
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
106464
106877
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
106465
106878
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
106466
106879
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -106477,6 +106890,7 @@ export declare type Query = {
|
|
|
106477
106890
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
106478
106891
|
csmAi_getAvailableByod?: Maybe<CsmAiByodContentsResult>;
|
|
106479
106892
|
csmAi_getSupportWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
106893
|
+
csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
106480
106894
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
106481
106895
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
106482
106896
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -106937,6 +107351,10 @@ export declare type Query = {
|
|
|
106937
107351
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
106938
107352
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
106939
107353
|
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
107354
|
+
spf_plan?: Maybe<SpfPlanResult>;
|
|
107355
|
+
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
107356
|
+
spf_plans?: Maybe<SpfPlanConnection>;
|
|
107357
|
+
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
106940
107358
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
106941
107359
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
106942
107360
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
@@ -107256,6 +107674,7 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
107256
107674
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
107257
107675
|
id: Scalars['ID']['input'];
|
|
107258
107676
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
107677
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
107259
107678
|
};
|
|
107260
107679
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
107261
107680
|
cloudId: Scalars['String']['input'];
|
|
@@ -107264,12 +107683,35 @@ export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
|
107264
107683
|
export declare type QueryAgentStudio_AgentsByIdsArgs = {
|
|
107265
107684
|
ids: Array<Scalars['ID']['input']>;
|
|
107266
107685
|
};
|
|
107686
|
+
export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
|
|
107687
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107688
|
+
cloudId: Scalars['String']['input'];
|
|
107689
|
+
conversationId: Scalars['ID']['input'];
|
|
107690
|
+
experienceId: Scalars['String']['input'];
|
|
107691
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107692
|
+
};
|
|
107693
|
+
export declare type QueryAgentStudio_BatchEvalConversationListByContainerIdArgs = {
|
|
107694
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107695
|
+
cloudId: Scalars['String']['input'];
|
|
107696
|
+
containerAri: Scalars['ID']['input'];
|
|
107697
|
+
experienceId: Scalars['String']['input'];
|
|
107698
|
+
filter?: InputMaybe<AgentStudioBatchEvalConversationFilterInput>;
|
|
107699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107700
|
+
};
|
|
107267
107701
|
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
107268
107702
|
cloudId: Scalars['String']['input'];
|
|
107269
107703
|
jobId: Scalars['ID']['input'];
|
|
107270
107704
|
productType: AgentStudioProductType;
|
|
107271
107705
|
projectContainerAri: Scalars['ID']['input'];
|
|
107272
107706
|
};
|
|
107707
|
+
export declare type QueryAgentStudio_BatchEvaluationJobListArgs = {
|
|
107708
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107709
|
+
agentId: Scalars['String']['input'];
|
|
107710
|
+
cloudId: Scalars['String']['input'];
|
|
107711
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107712
|
+
productType: AgentStudioProductType;
|
|
107713
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
107714
|
+
};
|
|
107273
107715
|
export declare type QueryAgentStudio_BatchEvaluationJobsResultArgs = {
|
|
107274
107716
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107275
107717
|
agentId: Scalars['String']['input'];
|
|
@@ -107305,6 +107747,14 @@ export declare type QueryAgentStudio_DatasetArgs = {
|
|
|
107305
107747
|
productType: AgentStudioProductType;
|
|
107306
107748
|
projectContainerAri: Scalars['ID']['input'];
|
|
107307
107749
|
};
|
|
107750
|
+
export declare type QueryAgentStudio_DatasetItemListArgs = {
|
|
107751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107752
|
+
cloudId: Scalars['String']['input'];
|
|
107753
|
+
datasetId: Scalars['ID']['input'];
|
|
107754
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107755
|
+
productType: AgentStudioProductType;
|
|
107756
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
107757
|
+
};
|
|
107308
107758
|
export declare type QueryAgentStudio_DatasetItemsArgs = {
|
|
107309
107759
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107310
107760
|
cloudId: Scalars['String']['input'];
|
|
@@ -107313,6 +107763,14 @@ export declare type QueryAgentStudio_DatasetItemsArgs = {
|
|
|
107313
107763
|
productType: AgentStudioProductType;
|
|
107314
107764
|
projectContainerAri: Scalars['ID']['input'];
|
|
107315
107765
|
};
|
|
107766
|
+
export declare type QueryAgentStudio_DatasetListArgs = {
|
|
107767
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107768
|
+
cloudId: Scalars['String']['input'];
|
|
107769
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107770
|
+
productType: AgentStudioProductType;
|
|
107771
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
107772
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
107773
|
+
};
|
|
107316
107774
|
export declare type QueryAgentStudio_DatasetsArgs = {
|
|
107317
107775
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107318
107776
|
cloudId: Scalars['String']['input'];
|
|
@@ -107326,6 +107784,14 @@ export declare type QueryAgentStudio_EvaluationProjectArgs = {
|
|
|
107326
107784
|
productType: AgentStudioProductType;
|
|
107327
107785
|
projectContainerAri: Scalars['ID']['input'];
|
|
107328
107786
|
};
|
|
107787
|
+
export declare type QueryAgentStudio_EvaluationResultListArgs = {
|
|
107788
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107789
|
+
cloudId: Scalars['String']['input'];
|
|
107790
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107791
|
+
productType: AgentStudioProductType;
|
|
107792
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
107793
|
+
runId: Scalars['ID']['input'];
|
|
107794
|
+
};
|
|
107329
107795
|
export declare type QueryAgentStudio_GetAgentActorRolesArgs = {
|
|
107330
107796
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107331
107797
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -107337,6 +107803,7 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
107337
107803
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107338
107804
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
107339
107805
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
107806
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
107340
107807
|
};
|
|
107341
107808
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
107342
107809
|
cloudId: Scalars['String']['input'];
|
|
@@ -107370,12 +107837,28 @@ export declare type QueryAgentStudio_JobExecutionHistoryArgs = {
|
|
|
107370
107837
|
productType: AgentStudioProductType;
|
|
107371
107838
|
projectContainerAri: Scalars['ID']['input'];
|
|
107372
107839
|
};
|
|
107840
|
+
export declare type QueryAgentStudio_JobExecutionHistoryListArgs = {
|
|
107841
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107842
|
+
cloudId: Scalars['String']['input'];
|
|
107843
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107844
|
+
productType: AgentStudioProductType;
|
|
107845
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
107846
|
+
};
|
|
107373
107847
|
export declare type QueryAgentStudio_JobRunArgs = {
|
|
107374
107848
|
cloudId: Scalars['String']['input'];
|
|
107375
107849
|
productType: AgentStudioProductType;
|
|
107376
107850
|
projectContainerAri: Scalars['ID']['input'];
|
|
107377
107851
|
runId: Scalars['ID']['input'];
|
|
107378
107852
|
};
|
|
107853
|
+
export declare type QueryAgentStudio_JobRunListArgs = {
|
|
107854
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
107855
|
+
cloudId: Scalars['String']['input'];
|
|
107856
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
107857
|
+
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
107858
|
+
productType: AgentStudioProductType;
|
|
107859
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
107860
|
+
status?: InputMaybe<AgentStudioJobRunStatus>;
|
|
107861
|
+
};
|
|
107379
107862
|
export declare type QueryAgentStudio_JobRunsArgs = {
|
|
107380
107863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
107381
107864
|
cloudId: Scalars['String']['input'];
|
|
@@ -107650,6 +108133,14 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
107650
108133
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
107651
108134
|
workspaceId: Scalars['ID']['input'];
|
|
107652
108135
|
};
|
|
108136
|
+
export declare type QueryAssetsDm_DataSourceTypesArgs = {
|
|
108137
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
108138
|
+
cloudId: Scalars['String']['input'];
|
|
108139
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108140
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
108141
|
+
sortBy?: InputMaybe<AssetsDmSortByInput>;
|
|
108142
|
+
workspaceId: Scalars['String']['input'];
|
|
108143
|
+
};
|
|
107653
108144
|
export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
107654
108145
|
cloudId: Scalars['ID']['input'];
|
|
107655
108146
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -107999,6 +108490,7 @@ export declare type QueryClassificationLevelArgs = {
|
|
|
107999
108490
|
};
|
|
108000
108491
|
export declare type QueryClassificationLevelsArgs = {
|
|
108001
108492
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
108493
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
108002
108494
|
};
|
|
108003
108495
|
export declare type QueryCodeInJiraArgs = {
|
|
108004
108496
|
cloudId: Scalars['ID']['input'];
|
|
@@ -108039,6 +108531,9 @@ export declare type QueryCommentsArgs = {
|
|
|
108039
108531
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
108040
108532
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
108041
108533
|
};
|
|
108534
|
+
export declare type QueryCommerceExp_CcpArgs = {
|
|
108535
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
108536
|
+
};
|
|
108042
108537
|
export declare type QueryConfluenceArgs = {
|
|
108043
108538
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
108044
108539
|
};
|
|
@@ -108838,7 +109333,7 @@ export declare type QueryCpls_FiltersArgs = {
|
|
|
108838
109333
|
scopeId: Scalars['ID']['input'];
|
|
108839
109334
|
};
|
|
108840
109335
|
export declare type QueryCpls_PeopleViewArgs = {
|
|
108841
|
-
filters?: InputMaybe<
|
|
109336
|
+
filters?: InputMaybe<CplsFiltersInput>;
|
|
108842
109337
|
id: Scalars['ID']['input'];
|
|
108843
109338
|
};
|
|
108844
109339
|
export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
|
|
@@ -108905,6 +109400,10 @@ export declare type QueryCsmAi_GetAvailableByodArgs = {
|
|
|
108905
109400
|
export declare type QueryCsmAi_GetSupportWidgetArgs = {
|
|
108906
109401
|
helpCenterAri: Scalars['ID']['input'];
|
|
108907
109402
|
};
|
|
109403
|
+
export declare type QueryCsmAi_GetWidgetArgs = {
|
|
109404
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
109405
|
+
widgetId: Scalars['ID']['input'];
|
|
109406
|
+
};
|
|
108908
109407
|
export declare type QueryCustomer360_CustomerArgs = {
|
|
108909
109408
|
domain: Scalars['String']['input'];
|
|
108910
109409
|
};
|
|
@@ -109228,7 +109727,7 @@ export declare type QueryEventTimeseriesCtrArgs = {
|
|
|
109228
109727
|
timezone: Scalars['String']['input'];
|
|
109229
109728
|
};
|
|
109230
109729
|
export declare type QueryExperimentApi_CollaboratorsAlreadyInConfluenceArgs = {
|
|
109231
|
-
|
|
109730
|
+
input?: InputMaybe<ExperimentApiGetCjnCollaboratorsInput>;
|
|
109232
109731
|
};
|
|
109233
109732
|
export declare type QueryExtensionByKeyArgs = {
|
|
109234
109733
|
contextId: Scalars['ID']['input'];
|
|
@@ -110594,6 +111093,21 @@ export declare type QuerySpf_GetMediaTokenArgs = {
|
|
|
110594
111093
|
id: Scalars['ID']['input'];
|
|
110595
111094
|
usageType: SpfMediaTokenUsageType;
|
|
110596
111095
|
};
|
|
111096
|
+
export declare type QuerySpf_PlanArgs = {
|
|
111097
|
+
id: Scalars['ID']['input'];
|
|
111098
|
+
};
|
|
111099
|
+
export declare type QuerySpf_PlanScenariosByIdsArgs = {
|
|
111100
|
+
ids: Array<Scalars['ID']['input']>;
|
|
111101
|
+
};
|
|
111102
|
+
export declare type QuerySpf_PlansArgs = {
|
|
111103
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
111104
|
+
cloudId: Scalars['ID']['input'];
|
|
111105
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111106
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
111107
|
+
};
|
|
111108
|
+
export declare type QuerySpf_PlansByIdsArgs = {
|
|
111109
|
+
ids: Array<Scalars['ID']['input']>;
|
|
111110
|
+
};
|
|
110597
111111
|
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
110598
111112
|
cloudId: Scalars['ID']['input'];
|
|
110599
111113
|
url: Scalars['String']['input'];
|
|
@@ -111225,6 +111739,15 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
|
|
|
111225
111739
|
changeAri: Scalars['ID']['input'];
|
|
111226
111740
|
positionAri: Scalars['ID']['input'];
|
|
111227
111741
|
};
|
|
111742
|
+
export declare type RadarDeleteLaborCostEstimateDataInput = {
|
|
111743
|
+
defaultAmount: Scalars['Boolean']['input'];
|
|
111744
|
+
importedData: Scalars['Boolean']['input'];
|
|
111745
|
+
};
|
|
111746
|
+
export declare type RadarDeleteLaborCostEstimateDataResponse = {
|
|
111747
|
+
__typename?: 'RadarDeleteLaborCostEstimateDataResponse';
|
|
111748
|
+
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
111749
|
+
success: Scalars['Boolean']['output'];
|
|
111750
|
+
};
|
|
111228
111751
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
111229
111752
|
__typename?: 'RadarDynamicFilterOptions';
|
|
111230
111753
|
functionOptions: Array<RadarFunction>;
|
|
@@ -111240,13 +111763,14 @@ export declare type RadarEntity = {
|
|
|
111240
111763
|
entityId: Scalars['ID']['output'];
|
|
111241
111764
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
111242
111765
|
id: Scalars['ID']['output'];
|
|
111243
|
-
type
|
|
111766
|
+
type: RadarEntityType;
|
|
111244
111767
|
};
|
|
111245
111768
|
export declare type RadarEntityFieldValuesArgs = {
|
|
111246
111769
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
111247
111770
|
};
|
|
111248
111771
|
export declare enum RadarEntityType {
|
|
111249
111772
|
FocusArea = "focusArea",
|
|
111773
|
+
FocusAreaType = "focusAreaType",
|
|
111250
111774
|
Position = "position",
|
|
111251
111775
|
Proposal = "proposal",
|
|
111252
111776
|
ProposedMovement = "proposedMovement",
|
|
@@ -111281,6 +111805,7 @@ export declare type RadarFieldSettingsInput = {
|
|
|
111281
111805
|
permissionUpdates?: InputMaybe<RadarFieldSettingsPermissionsInput>;
|
|
111282
111806
|
relativeId: Scalars['String']['input'];
|
|
111283
111807
|
sensitivityLevel?: InputMaybe<RadarSensitivityLevel>;
|
|
111808
|
+
sourceField?: InputMaybe<Scalars['String']['input']>;
|
|
111284
111809
|
};
|
|
111285
111810
|
export declare type RadarFieldSettingsPermissionsInput = {
|
|
111286
111811
|
addedViewSensitiveFieldGroups?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -111365,6 +111890,7 @@ export declare type RadarFunction = {
|
|
|
111365
111890
|
operators: Array<RadarFilterOperators>;
|
|
111366
111891
|
};
|
|
111367
111892
|
export declare enum RadarFunctionId {
|
|
111893
|
+
Currentuser = "CURRENTUSER",
|
|
111368
111894
|
Under = "UNDER"
|
|
111369
111895
|
}
|
|
111370
111896
|
export declare type RadarGroupMetrics = {
|
|
@@ -111430,6 +111956,7 @@ export declare type RadarMutationResponse = {
|
|
|
111430
111956
|
__typename?: 'RadarMutationResponse';
|
|
111431
111957
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
111432
111958
|
};
|
|
111959
|
+
export declare type RadarNode = RadarPosition | RadarView | RadarWorker;
|
|
111433
111960
|
export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
|
|
111434
111961
|
__typename?: 'RadarNonNumericFieldDefinition';
|
|
111435
111962
|
defaultOrder?: Maybe<Scalars['Int']['output']>;
|
|
@@ -111487,10 +112014,13 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
111487
112014
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
111488
112015
|
id: Scalars['ID']['output'];
|
|
111489
112016
|
manager?: Maybe<RadarPosition>;
|
|
112017
|
+
managerId?: Maybe<Scalars['ID']['output']>;
|
|
111490
112018
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
112019
|
+
reportingLineId: Array<Scalars['ID']['output']>;
|
|
111491
112020
|
role?: Maybe<RadarPositionRole>;
|
|
111492
|
-
type
|
|
112021
|
+
type: RadarEntityType;
|
|
111493
112022
|
worker?: Maybe<RadarWorker>;
|
|
112023
|
+
workerId?: Maybe<Scalars['ID']['output']>;
|
|
111494
112024
|
};
|
|
111495
112025
|
export declare type RadarPositionFieldValuesArgs = {
|
|
111496
112026
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -111589,7 +112119,7 @@ export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
|
111589
112119
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
111590
112120
|
operators: Array<RadarFilterOperators>;
|
|
111591
112121
|
type: RadarFilterInputType;
|
|
111592
|
-
values
|
|
112122
|
+
values: Array<RadarFieldValue>;
|
|
111593
112123
|
};
|
|
111594
112124
|
export declare enum RadarStatusAppearance {
|
|
111595
112125
|
Default = "default",
|
|
@@ -111613,7 +112143,7 @@ export declare type RadarStringFieldValue = {
|
|
|
111613
112143
|
};
|
|
111614
112144
|
export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
111615
112145
|
__typename?: 'RadarUpdateFocusAreaProposalChangesMutationResponse';
|
|
111616
|
-
changes?: Maybe<Array<
|
|
112146
|
+
changes?: Maybe<Array<RadarPositionAllocationChange>>;
|
|
111617
112147
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
111618
112148
|
};
|
|
111619
112149
|
export declare type RadarUpdatePositionLaborCostEstimateSettingsInput = {
|
|
@@ -111704,6 +112234,7 @@ export declare type RadarWorker = Node & RadarEntity & {
|
|
|
111704
112234
|
preferredName?: Maybe<Scalars['String']['output']>;
|
|
111705
112235
|
type: RadarEntityType;
|
|
111706
112236
|
user?: Maybe<User>;
|
|
112237
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
111707
112238
|
};
|
|
111708
112239
|
export declare type RadarWorkerFieldValuesArgs = {
|
|
111709
112240
|
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -111737,7 +112268,7 @@ export declare type RadarWorkspace = {
|
|
|
111737
112268
|
workerFields: Array<RadarFieldDefinition>;
|
|
111738
112269
|
};
|
|
111739
112270
|
export declare type RadarWorkspaceSettingsInput = {
|
|
111740
|
-
permissions
|
|
112271
|
+
permissions?: InputMaybe<RadarPermissionsInput>;
|
|
111741
112272
|
};
|
|
111742
112273
|
export declare type RadarWorktypeAllocation = {
|
|
111743
112274
|
__typename?: 'RadarWorktypeAllocation';
|
|
@@ -113583,6 +114114,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
113583
114114
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
113584
114115
|
latestUserActionTs?: Maybe<Scalars['String']['output']>;
|
|
113585
114116
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114117
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113586
114118
|
pageEntity?: Maybe<ConfluencePage>;
|
|
113587
114119
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113588
114120
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -113626,6 +114158,7 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
113626
114158
|
lastModified?: Maybe<Scalars['String']['output']>;
|
|
113627
114159
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113628
114160
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114161
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113629
114162
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113630
114163
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
113631
114164
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
@@ -113648,6 +114181,7 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
113648
114181
|
id: Scalars['ID']['output'];
|
|
113649
114182
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113650
114183
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114184
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113651
114185
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113652
114186
|
title: Scalars['String']['output'];
|
|
113653
114187
|
type: SearchResultType;
|
|
@@ -113800,11 +114334,13 @@ export declare type SearchLinkedResult = SearchResult & {
|
|
|
113800
114334
|
category: SearchLinkedResultCategory;
|
|
113801
114335
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
113802
114336
|
description: Scalars['String']['output'];
|
|
114337
|
+
entity?: Maybe<SearchLinkedResultEntity>;
|
|
113803
114338
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
113804
114339
|
id: Scalars['ID']['output'];
|
|
113805
114340
|
integrationId?: Maybe<Scalars['String']['output']>;
|
|
113806
114341
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113807
114342
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114343
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113808
114344
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
113809
114345
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113810
114346
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
@@ -113817,6 +114353,7 @@ export declare enum SearchLinkedResultCategory {
|
|
|
113817
114353
|
Mentions = "mentions",
|
|
113818
114354
|
Similar = "similar"
|
|
113819
114355
|
}
|
|
114356
|
+
export declare type SearchLinkedResultEntity = ExternalCalendarEvent;
|
|
113820
114357
|
export declare type SearchMercuryFilter = {
|
|
113821
114358
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
113822
114359
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -113905,6 +114442,7 @@ export declare type SearchResult = {
|
|
|
113905
114442
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
113906
114443
|
id: Scalars['ID']['output'];
|
|
113907
114444
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114445
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113908
114446
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113909
114447
|
title: Scalars['String']['output'];
|
|
113910
114448
|
type: SearchResultType;
|
|
@@ -113917,6 +114455,7 @@ export declare type SearchResultAssetsObject = SearchResult & {
|
|
|
113917
114455
|
id: Scalars['ID']['output'];
|
|
113918
114456
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113919
114457
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114458
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113920
114459
|
objectEntity?: Maybe<AssetsObject>;
|
|
113921
114460
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
113922
114461
|
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
@@ -113934,6 +114473,7 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
|
113934
114473
|
id: Scalars['ID']['output'];
|
|
113935
114474
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113936
114475
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114476
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113937
114477
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
113938
114478
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113939
114479
|
title: Scalars['String']['output'];
|
|
@@ -113947,6 +114487,7 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
|
113947
114487
|
id: Scalars['ID']['output'];
|
|
113948
114488
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113949
114489
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114490
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113950
114491
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
113951
114492
|
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
113952
114493
|
schemaAri: Scalars['ID']['output'];
|
|
@@ -113963,6 +114504,7 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
113963
114504
|
id: Scalars['ID']['output'];
|
|
113964
114505
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113965
114506
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114507
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113966
114508
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113967
114509
|
title: Scalars['String']['output'];
|
|
113968
114510
|
type: SearchResultType;
|
|
@@ -113975,6 +114517,7 @@ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
|
113975
114517
|
id: Scalars['ID']['output'];
|
|
113976
114518
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113977
114519
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114520
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113978
114521
|
score?: Maybe<Scalars['Float']['output']>;
|
|
113979
114522
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113980
114523
|
title: Scalars['String']['output'];
|
|
@@ -113988,6 +114531,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
113988
114531
|
id: Scalars['ID']['output'];
|
|
113989
114532
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
113990
114533
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114534
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
113991
114535
|
project?: Maybe<TownsquareProject>;
|
|
113992
114536
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
113993
114537
|
title: Scalars['String']['output'];
|
|
@@ -114001,6 +114545,7 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
114001
114545
|
id: Scalars['ID']['output'];
|
|
114002
114546
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114003
114547
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114548
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114004
114549
|
score?: Maybe<Scalars['Float']['output']>;
|
|
114005
114550
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114006
114551
|
title: Scalars['String']['output'];
|
|
@@ -114032,6 +114577,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
114032
114577
|
id: Scalars['ID']['output'];
|
|
114033
114578
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114034
114579
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114580
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114035
114581
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114036
114582
|
title: Scalars['String']['output'];
|
|
114037
114583
|
type: SearchResultType;
|
|
@@ -114046,6 +114592,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
114046
114592
|
id: Scalars['ID']['output'];
|
|
114047
114593
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114048
114594
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114595
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114049
114596
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
114050
114597
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114051
114598
|
state: Scalars['String']['output'];
|
|
@@ -114064,6 +114611,7 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
114064
114611
|
id: Scalars['ID']['output'];
|
|
114065
114612
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114066
114613
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114614
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114067
114615
|
score?: Maybe<Scalars['Float']['output']>;
|
|
114068
114616
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114069
114617
|
title: Scalars['String']['output'];
|
|
@@ -114081,6 +114629,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
114081
114629
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114082
114630
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114083
114631
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114632
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114084
114633
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114085
114634
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114086
114635
|
title: Scalars['String']['output'];
|
|
@@ -114098,6 +114647,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
114098
114647
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114099
114648
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114100
114649
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114650
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114101
114651
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114102
114652
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114103
114653
|
title: Scalars['String']['output'];
|
|
@@ -114115,6 +114665,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
114115
114665
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114116
114666
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114117
114667
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114668
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114118
114669
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114119
114670
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114120
114671
|
title: Scalars['String']['output'];
|
|
@@ -114138,6 +114689,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
114138
114689
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114139
114690
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
114140
114691
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114692
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114141
114693
|
owner?: Maybe<ThirdPartyUser>;
|
|
114142
114694
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114143
114695
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -114164,6 +114716,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
114164
114716
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
114165
114717
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114166
114718
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114719
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114167
114720
|
product: SearchBoardProductType;
|
|
114168
114721
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114169
114722
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -114195,6 +114748,7 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
114195
114748
|
id: Scalars['ID']['output'];
|
|
114196
114749
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114197
114750
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114751
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114198
114752
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114199
114753
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
114200
114754
|
title: Scalars['String']['output'];
|
|
@@ -114212,6 +114766,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
114212
114766
|
id: Scalars['ID']['output'];
|
|
114213
114767
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114214
114768
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114769
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114215
114770
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114216
114771
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
114217
114772
|
title: Scalars['String']['output'];
|
|
@@ -114230,6 +114785,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
114230
114785
|
issueTypeId: Scalars['String']['output'];
|
|
114231
114786
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114232
114787
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114788
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114233
114789
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114234
114790
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
114235
114791
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
@@ -114261,6 +114817,7 @@ export declare type SearchResultJiraPlan = SearchResult & {
|
|
|
114261
114817
|
id: Scalars['ID']['output'];
|
|
114262
114818
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114263
114819
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114820
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114264
114821
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114265
114822
|
title: Scalars['String']['output'];
|
|
114266
114823
|
type: SearchResultType;
|
|
@@ -114275,6 +114832,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
114275
114832
|
id: Scalars['ID']['output'];
|
|
114276
114833
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114277
114834
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114835
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114278
114836
|
project?: Maybe<JiraProject>;
|
|
114279
114837
|
projectId: Scalars['String']['output'];
|
|
114280
114838
|
projectKey: Scalars['String']['output'];
|
|
@@ -114298,6 +114856,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
114298
114856
|
id: Scalars['ID']['output'];
|
|
114299
114857
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114300
114858
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114859
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114301
114860
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114302
114861
|
title: Scalars['String']['output'];
|
|
114303
114862
|
type: SearchResultType;
|
|
@@ -114311,6 +114870,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
|
114311
114870
|
id: Scalars['ID']['output'];
|
|
114312
114871
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114313
114872
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114873
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114314
114874
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114315
114875
|
title: Scalars['String']['output'];
|
|
114316
114876
|
type: SearchResultType;
|
|
@@ -114327,6 +114887,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
114327
114887
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
114328
114888
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114329
114889
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114890
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114330
114891
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
114331
114892
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114332
114893
|
title: Scalars['String']['output'];
|
|
@@ -114346,6 +114907,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
114346
114907
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
114347
114908
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114348
114909
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
114910
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114349
114911
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114350
114912
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
114351
114913
|
title: Scalars['String']['output'];
|
|
@@ -114360,6 +114922,7 @@ export declare type SearchResultSpfAsk = SearchResult & {
|
|
|
114360
114922
|
id: Scalars['ID']['output'];
|
|
114361
114923
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114362
114924
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114925
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114363
114926
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114364
114927
|
title: Scalars['String']['output'];
|
|
114365
114928
|
type: SearchResultType;
|
|
@@ -114372,6 +114935,7 @@ export declare type SearchResultTalentPosition = SearchResult & {
|
|
|
114372
114935
|
id: Scalars['ID']['output'];
|
|
114373
114936
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114374
114937
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114938
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114375
114939
|
position?: Maybe<RadarPosition>;
|
|
114376
114940
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114377
114941
|
title: Scalars['String']['output'];
|
|
@@ -114385,6 +114949,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
114385
114949
|
id: Scalars['ID']['output'];
|
|
114386
114950
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114387
114951
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114952
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114388
114953
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114389
114954
|
title: Scalars['String']['output'];
|
|
114390
114955
|
type: SearchResultType;
|
|
@@ -114399,6 +114964,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
114399
114964
|
id: Scalars['ID']['output'];
|
|
114400
114965
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
114401
114966
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
114967
|
+
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
114402
114968
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
114403
114969
|
title: Scalars['String']['output'];
|
|
114404
114970
|
type: SearchResultType;
|
|
@@ -132213,6 +132779,7 @@ export declare type ShepherdAlertQueries = {
|
|
|
132213
132779
|
alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
|
|
132214
132780
|
authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
|
|
132215
132781
|
byAri?: Maybe<ShepherdAlertResult>;
|
|
132782
|
+
byTypeAndStatus?: Maybe<ShepherdAlertsResult>;
|
|
132216
132783
|
byWorkspace?: Maybe<ShepherdAlertsResult>;
|
|
132217
132784
|
};
|
|
132218
132785
|
export declare type ShepherdAlertQueriesAlertExportsArgs = {
|
|
@@ -132228,6 +132795,13 @@ export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
|
|
|
132228
132795
|
export declare type ShepherdAlertQueriesByAriArgs = {
|
|
132229
132796
|
id: Scalars['ID']['input'];
|
|
132230
132797
|
};
|
|
132798
|
+
export declare type ShepherdAlertQueriesByTypeAndStatusArgs = {
|
|
132799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132800
|
+
alertStatuses: Array<Scalars['String']['input']>;
|
|
132801
|
+
alertType: Scalars['String']['input'];
|
|
132802
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132803
|
+
workspaceId: Scalars['ID']['input'];
|
|
132804
|
+
};
|
|
132231
132805
|
export declare type ShepherdAlertQueriesByWorkspaceArgs = {
|
|
132232
132806
|
aaid?: InputMaybe<Scalars['ID']['input']>;
|
|
132233
132807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132461,6 +133035,42 @@ export declare type ShepherdBitbucketWorkspaceInfo = {
|
|
|
132461
133035
|
name: Scalars['String']['output'];
|
|
132462
133036
|
url: Scalars['URL']['output'];
|
|
132463
133037
|
};
|
|
133038
|
+
export declare type ShepherdBulkRedactionInput = {
|
|
133039
|
+
redactions: Array<ShepherdBulkRedactionItemInput>;
|
|
133040
|
+
workspaceId: Scalars['ID']['input'];
|
|
133041
|
+
};
|
|
133042
|
+
export declare type ShepherdBulkRedactionItemInput = {
|
|
133043
|
+
contentHash?: InputMaybe<Scalars['String']['input']>;
|
|
133044
|
+
detection: Scalars['String']['input'];
|
|
133045
|
+
end: ShepherdContentLocationInput;
|
|
133046
|
+
fieldId: Scalars['String']['input'];
|
|
133047
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
133048
|
+
resourceAri: Scalars['ID']['input'];
|
|
133049
|
+
start: ShepherdContentLocationInput;
|
|
133050
|
+
timestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
133051
|
+
};
|
|
133052
|
+
export declare enum ShepherdBulkRedactionItemStatus {
|
|
133053
|
+
Failed = "FAILED",
|
|
133054
|
+
Pending = "PENDING",
|
|
133055
|
+
Succeeded = "SUCCEEDED"
|
|
133056
|
+
}
|
|
133057
|
+
export declare type ShepherdBulkRedactionItemStatusPayload = {
|
|
133058
|
+
__typename?: 'ShepherdBulkRedactionItemStatusPayload';
|
|
133059
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
133060
|
+
id: Scalars['ID']['output'];
|
|
133061
|
+
status?: Maybe<ShepherdBulkRedactionItemStatus>;
|
|
133062
|
+
};
|
|
133063
|
+
export declare type ShepherdBulkRedactionPayload = {
|
|
133064
|
+
__typename?: 'ShepherdBulkRedactionPayload';
|
|
133065
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133066
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
133067
|
+
redactionIds: Array<Scalars['ID']['output']>;
|
|
133068
|
+
success: Scalars['Boolean']['output'];
|
|
133069
|
+
};
|
|
133070
|
+
export declare type ShepherdBulkRedactionStatusPayload = {
|
|
133071
|
+
__typename?: 'ShepherdBulkRedactionStatusPayload';
|
|
133072
|
+
redactionStatuses: Array<ShepherdBulkRedactionItemStatusPayload>;
|
|
133073
|
+
};
|
|
132464
133074
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
132465
133075
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
132466
133076
|
category: Scalars['String']['output'];
|
|
@@ -132509,6 +133119,10 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
|
132509
133119
|
workspaceId: Scalars['ID']['input'];
|
|
132510
133120
|
};
|
|
132511
133121
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
133122
|
+
export declare type ShepherdContentLocationInput = {
|
|
133123
|
+
index: Scalars['Int']['input'];
|
|
133124
|
+
pointer: Scalars['String']['input'];
|
|
133125
|
+
};
|
|
132512
133126
|
export declare type ShepherdCreateAlertInput = {
|
|
132513
133127
|
actor?: InputMaybe<ShepherdActorInput>;
|
|
132514
133128
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -132912,6 +133526,7 @@ export declare type ShepherdQuery = {
|
|
|
132912
133526
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
132913
133527
|
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
132914
133528
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
133529
|
+
redaction?: Maybe<ShepherdRedactionQueries>;
|
|
132915
133530
|
serviceShardAppInfo?: Maybe<ShepherdServiceShardAppInfoResult>;
|
|
132916
133531
|
shepherdActivity?: Maybe<ShepherdActivityResult>;
|
|
132917
133532
|
shepherdActor?: Maybe<ShepherdActorResult>;
|
|
@@ -133006,9 +133621,13 @@ export declare type ShepherdRedactionInput = {
|
|
|
133006
133621
|
};
|
|
133007
133622
|
export declare type ShepherdRedactionMutations = {
|
|
133008
133623
|
__typename?: 'ShepherdRedactionMutations';
|
|
133624
|
+
bulkRedact?: Maybe<ShepherdBulkRedactionPayload>;
|
|
133009
133625
|
redact?: Maybe<ShepherdRedactionPayload>;
|
|
133010
133626
|
restore?: Maybe<ShepherdRestoreRedactionPayload>;
|
|
133011
133627
|
};
|
|
133628
|
+
export declare type ShepherdRedactionMutationsBulkRedactArgs = {
|
|
133629
|
+
input: ShepherdBulkRedactionInput;
|
|
133630
|
+
};
|
|
133012
133631
|
export declare type ShepherdRedactionMutationsRedactArgs = {
|
|
133013
133632
|
input: ShepherdRedactionInput;
|
|
133014
133633
|
};
|
|
@@ -133022,6 +133641,14 @@ export declare type ShepherdRedactionPayload = Payload & {
|
|
|
133022
133641
|
node?: Maybe<ShepherdRedaction>;
|
|
133023
133642
|
success: Scalars['Boolean']['output'];
|
|
133024
133643
|
};
|
|
133644
|
+
export declare type ShepherdRedactionQueries = {
|
|
133645
|
+
__typename?: 'ShepherdRedactionQueries';
|
|
133646
|
+
checkBulkRedactionStatus?: Maybe<ShepherdBulkRedactionStatusPayload>;
|
|
133647
|
+
};
|
|
133648
|
+
export declare type ShepherdRedactionQueriesCheckBulkRedactionStatusArgs = {
|
|
133649
|
+
jobId: Scalars['ID']['input'];
|
|
133650
|
+
workspaceId: Scalars['ID']['input'];
|
|
133651
|
+
};
|
|
133025
133652
|
export declare enum ShepherdRedactionStatus {
|
|
133026
133653
|
Failed = "FAILED",
|
|
133027
133654
|
PartiallyRedacted = "PARTIALLY_REDACTED",
|
|
@@ -133603,6 +134230,15 @@ export declare type SiteSettings = {
|
|
|
133603
134230
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
133604
134231
|
siteTitle: Scalars['String']['output'];
|
|
133605
134232
|
};
|
|
134233
|
+
export declare type SkyBridgeId = {
|
|
134234
|
+
__typename?: 'SkyBridgeId';
|
|
134235
|
+
id: Scalars['ID']['output'];
|
|
134236
|
+
shardingContext: Scalars['String']['output'];
|
|
134237
|
+
};
|
|
134238
|
+
export declare type SkyBridgeIdInput = {
|
|
134239
|
+
id: Scalars['ID']['input'];
|
|
134240
|
+
shardingContext: Scalars['String']['input'];
|
|
134241
|
+
};
|
|
133606
134242
|
export declare type SmartConnectorsFeature = {
|
|
133607
134243
|
__typename?: 'SmartConnectorsFeature';
|
|
133608
134244
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -134967,6 +135603,82 @@ export declare enum SpfMediaTokenUsageType {
|
|
|
134967
135603
|
Read = "READ",
|
|
134968
135604
|
Write = "WRITE"
|
|
134969
135605
|
}
|
|
135606
|
+
export declare type SpfPlan = Node & {
|
|
135607
|
+
__typename?: 'SpfPlan';
|
|
135608
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135609
|
+
createdBy?: Maybe<User>;
|
|
135610
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135611
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
135612
|
+
id: Scalars['ID']['output'];
|
|
135613
|
+
name: Scalars['String']['output'];
|
|
135614
|
+
portfolio?: Maybe<MercuryFocusArea>;
|
|
135615
|
+
portfolioId: Scalars['String']['output'];
|
|
135616
|
+
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
135617
|
+
status: SpfPlanStatus;
|
|
135618
|
+
timeframe: SpfPlanTimeframe;
|
|
135619
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135620
|
+
updatedBy?: Maybe<User>;
|
|
135621
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135622
|
+
};
|
|
135623
|
+
export declare type SpfPlanScenariosArgs = {
|
|
135624
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
135625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
135626
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
135627
|
+
};
|
|
135628
|
+
export declare type SpfPlanConnection = {
|
|
135629
|
+
__typename?: 'SpfPlanConnection';
|
|
135630
|
+
edges?: Maybe<Array<Maybe<SpfPlanEdge>>>;
|
|
135631
|
+
pageInfo: PageInfo;
|
|
135632
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135633
|
+
};
|
|
135634
|
+
export declare type SpfPlanEdge = {
|
|
135635
|
+
__typename?: 'SpfPlanEdge';
|
|
135636
|
+
cursor: Scalars['String']['output'];
|
|
135637
|
+
node?: Maybe<SpfPlanResult>;
|
|
135638
|
+
};
|
|
135639
|
+
export declare type SpfPlanResult = QueryError | SpfPlan;
|
|
135640
|
+
export declare type SpfPlanScenario = Node & {
|
|
135641
|
+
__typename?: 'SpfPlanScenario';
|
|
135642
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135643
|
+
createdBy?: Maybe<User>;
|
|
135644
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
135645
|
+
id: Scalars['ID']['output'];
|
|
135646
|
+
name: Scalars['String']['output'];
|
|
135647
|
+
planId: Scalars['String']['output'];
|
|
135648
|
+
status: SpfPlanScenarioStatus;
|
|
135649
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
135650
|
+
updatedBy?: Maybe<User>;
|
|
135651
|
+
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
135652
|
+
};
|
|
135653
|
+
export declare type SpfPlanScenarioConnection = {
|
|
135654
|
+
__typename?: 'SpfPlanScenarioConnection';
|
|
135655
|
+
edges?: Maybe<Array<Maybe<SpfPlanScenarioEdge>>>;
|
|
135656
|
+
pageInfo: PageInfo;
|
|
135657
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
135658
|
+
};
|
|
135659
|
+
export declare type SpfPlanScenarioEdge = {
|
|
135660
|
+
__typename?: 'SpfPlanScenarioEdge';
|
|
135661
|
+
cursor: Scalars['String']['output'];
|
|
135662
|
+
node?: Maybe<SpfPlanScenarioResult>;
|
|
135663
|
+
};
|
|
135664
|
+
export declare type SpfPlanScenarioResult = QueryError | SpfPlanScenario;
|
|
135665
|
+
export declare enum SpfPlanScenarioStatus {
|
|
135666
|
+
Draft = "DRAFT"
|
|
135667
|
+
}
|
|
135668
|
+
export declare enum SpfPlanStatus {
|
|
135669
|
+
Draft = "DRAFT"
|
|
135670
|
+
}
|
|
135671
|
+
export declare type SpfPlanTimeframe = {
|
|
135672
|
+
__typename?: 'SpfPlanTimeframe';
|
|
135673
|
+
endDate: Scalars['String']['output'];
|
|
135674
|
+
startDate: Scalars['String']['output'];
|
|
135675
|
+
timeframeGranularity: SpfPlanTimeframeGranularity;
|
|
135676
|
+
};
|
|
135677
|
+
export declare enum SpfPlanTimeframeGranularity {
|
|
135678
|
+
Month = "MONTH",
|
|
135679
|
+
Quarter = "QUARTER",
|
|
135680
|
+
Week = "WEEK"
|
|
135681
|
+
}
|
|
134970
135682
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
134971
135683
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
134972
135684
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135758,7 +136470,9 @@ export declare type StakeholderCommsOpsgenieRiskAssessmentResult = {
|
|
|
135758
136470
|
export declare type StakeholderCommsOpsgenieRiskCategory = {
|
|
135759
136471
|
__typename?: 'StakeholderCommsOpsgenieRiskCategory';
|
|
135760
136472
|
count: Scalars['Int']['output'];
|
|
136473
|
+
description: Scalars['String']['output'];
|
|
135761
136474
|
items: Array<StakeholderCommsOpsgenieRiskItem>;
|
|
136475
|
+
severity: StakeholderCommsOpsgenieRiskScore;
|
|
135762
136476
|
type: StakeholderCommsOpsgenieRiskCategoryType;
|
|
135763
136477
|
};
|
|
135764
136478
|
export declare enum StakeholderCommsOpsgenieRiskCategoryType {
|
|
@@ -136445,6 +137159,7 @@ export declare type Subscription = {
|
|
|
136445
137159
|
__typename?: 'Subscription';
|
|
136446
137160
|
aqua?: Maybe<AquaLiveChatSubscription>;
|
|
136447
137161
|
bitbucket?: Maybe<BitbucketSubscription>;
|
|
137162
|
+
blockService_onBlockUpdated: BlockServiceEvent;
|
|
136448
137163
|
confluence_onContentModified?: Maybe<ConfluenceContentModified>;
|
|
136449
137164
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
136450
137165
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
@@ -136473,6 +137188,9 @@ export declare type Subscription = {
|
|
|
136473
137188
|
testing?: Maybe<TestingSubscription>;
|
|
136474
137189
|
trello: TrelloSubscriptionApi;
|
|
136475
137190
|
};
|
|
137191
|
+
export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
|
|
137192
|
+
resourceId: Scalars['ID']['input'];
|
|
137193
|
+
};
|
|
136476
137194
|
export declare type SubscriptionConfluence_OnContentModifiedArgs = {
|
|
136477
137195
|
id: Scalars['ID']['input'];
|
|
136478
137196
|
};
|
|
@@ -138273,6 +138991,21 @@ export declare type TownsquareCustomFieldNode = {
|
|
|
138273
138991
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
138274
138992
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
138275
138993
|
};
|
|
138994
|
+
export declare type TownsquareCustomFieldTextSavedValueConnection = {
|
|
138995
|
+
__typename?: 'TownsquareCustomFieldTextSavedValueConnection';
|
|
138996
|
+
edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextSavedValueEdge>>>;
|
|
138997
|
+
pageInfo: PageInfo;
|
|
138998
|
+
};
|
|
138999
|
+
export declare type TownsquareCustomFieldTextSavedValueEdge = {
|
|
139000
|
+
__typename?: 'TownsquareCustomFieldTextSavedValueEdge';
|
|
139001
|
+
cursor: Scalars['String']['output'];
|
|
139002
|
+
node?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
139003
|
+
};
|
|
139004
|
+
export declare type TownsquareCustomFieldTextSavedValueNode = Node & {
|
|
139005
|
+
__typename?: 'TownsquareCustomFieldTextSavedValueNode';
|
|
139006
|
+
id: Scalars['ID']['output'];
|
|
139007
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
139008
|
+
};
|
|
138276
139009
|
export declare enum TownsquareCustomFieldType {
|
|
138277
139010
|
Number = "NUMBER",
|
|
138278
139011
|
Text = "TEXT",
|
|
@@ -138597,6 +139330,7 @@ export declare type TownsquareGoalGrantAccessInput = {
|
|
|
138597
139330
|
};
|
|
138598
139331
|
export declare type TownsquareGoalGrantAccessPayload = {
|
|
138599
139332
|
__typename?: 'TownsquareGoalGrantAccessPayload';
|
|
139333
|
+
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
138600
139334
|
errors?: Maybe<Array<MutationError>>;
|
|
138601
139335
|
goal?: Maybe<TownsquareGoal>;
|
|
138602
139336
|
success: Scalars['Boolean']['output'];
|
|
@@ -138656,6 +139390,7 @@ export declare type TownsquareGoalRevokeAccessPayload = {
|
|
|
138656
139390
|
__typename?: 'TownsquareGoalRevokeAccessPayload';
|
|
138657
139391
|
errors?: Maybe<Array<MutationError>>;
|
|
138658
139392
|
goal?: Maybe<TownsquareGoal>;
|
|
139393
|
+
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
138659
139394
|
success: Scalars['Boolean']['output'];
|
|
138660
139395
|
};
|
|
138661
139396
|
export declare enum TownsquareGoalScoringMode {
|
|
@@ -139097,6 +139832,17 @@ export declare type TownsquareGoalsLinkWorkItemPayload = {
|
|
|
139097
139832
|
success: Scalars['Boolean']['output'];
|
|
139098
139833
|
workItem?: Maybe<JiraIssue>;
|
|
139099
139834
|
};
|
|
139835
|
+
export declare type TownsquareGoalsRemoveDropdownCustomFieldValueInput = {
|
|
139836
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139837
|
+
goalId: Scalars['ID']['input'];
|
|
139838
|
+
valueId: Scalars['ID']['input'];
|
|
139839
|
+
};
|
|
139840
|
+
export declare type TownsquareGoalsRemoveDropdownCustomFieldValuePayload = {
|
|
139841
|
+
__typename?: 'TownsquareGoalsRemoveDropdownCustomFieldValuePayload';
|
|
139842
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139843
|
+
success: Scalars['Boolean']['output'];
|
|
139844
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
139845
|
+
};
|
|
139100
139846
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
139101
139847
|
goalId: Scalars['ID']['input'];
|
|
139102
139848
|
teamId: Scalars['ID']['input'];
|
|
@@ -139119,6 +139865,39 @@ export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
|
139119
139865
|
goal?: Maybe<TownsquareGoal>;
|
|
139120
139866
|
success: Scalars['Boolean']['output'];
|
|
139121
139867
|
};
|
|
139868
|
+
export declare type TownsquareGoalsRemoveNumericCustomFieldValueInput = {
|
|
139869
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139870
|
+
goalId: Scalars['ID']['input'];
|
|
139871
|
+
valueId: Scalars['ID']['input'];
|
|
139872
|
+
};
|
|
139873
|
+
export declare type TownsquareGoalsRemoveNumericCustomFieldValuePayload = {
|
|
139874
|
+
__typename?: 'TownsquareGoalsRemoveNumericCustomFieldValuePayload';
|
|
139875
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139876
|
+
success: Scalars['Boolean']['output'];
|
|
139877
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
139878
|
+
};
|
|
139879
|
+
export declare type TownsquareGoalsRemoveTextCustomFieldValueInput = {
|
|
139880
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139881
|
+
goalId: Scalars['ID']['input'];
|
|
139882
|
+
valueId: Scalars['ID']['input'];
|
|
139883
|
+
};
|
|
139884
|
+
export declare type TownsquareGoalsRemoveTextCustomFieldValuePayload = {
|
|
139885
|
+
__typename?: 'TownsquareGoalsRemoveTextCustomFieldValuePayload';
|
|
139886
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139887
|
+
success: Scalars['Boolean']['output'];
|
|
139888
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
139889
|
+
};
|
|
139890
|
+
export declare type TownsquareGoalsRemoveUserCustomFieldValueInput = {
|
|
139891
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
139892
|
+
goalId: Scalars['ID']['input'];
|
|
139893
|
+
userId: Scalars['ID']['input'];
|
|
139894
|
+
};
|
|
139895
|
+
export declare type TownsquareGoalsRemoveUserCustomFieldValuePayload = {
|
|
139896
|
+
__typename?: 'TownsquareGoalsRemoveUserCustomFieldValuePayload';
|
|
139897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
139898
|
+
success: Scalars['Boolean']['output'];
|
|
139899
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
139900
|
+
};
|
|
139122
139901
|
export declare type TownsquareGoalsSetRollupProgressInput = {
|
|
139123
139902
|
enableRollupProgress: Scalars['Boolean']['input'];
|
|
139124
139903
|
goalId: Scalars['ID']['input'];
|
|
@@ -140125,6 +140904,17 @@ export declare type TownsquareProjectsRemoveDependencyPayload = {
|
|
|
140125
140904
|
outgoingProject?: Maybe<TownsquareProject>;
|
|
140126
140905
|
success: Scalars['Boolean']['output'];
|
|
140127
140906
|
};
|
|
140907
|
+
export declare type TownsquareProjectsRemoveDropdownCustomFieldValueInput = {
|
|
140908
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140909
|
+
projectId: Scalars['ID']['input'];
|
|
140910
|
+
valueId: Scalars['ID']['input'];
|
|
140911
|
+
};
|
|
140912
|
+
export declare type TownsquareProjectsRemoveDropdownCustomFieldValuePayload = {
|
|
140913
|
+
__typename?: 'TownsquareProjectsRemoveDropdownCustomFieldValuePayload';
|
|
140914
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140915
|
+
success: Scalars['Boolean']['output'];
|
|
140916
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
140917
|
+
};
|
|
140128
140918
|
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
140129
140919
|
goalId: Scalars['ID']['input'];
|
|
140130
140920
|
projectId: Scalars['ID']['input'];
|
|
@@ -140157,6 +140947,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
140157
140947
|
success: Scalars['Boolean']['output'];
|
|
140158
140948
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
140159
140949
|
};
|
|
140950
|
+
export declare type TownsquareProjectsRemoveNumericCustomFieldValueInput = {
|
|
140951
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140952
|
+
projectId: Scalars['ID']['input'];
|
|
140953
|
+
valueId: Scalars['ID']['input'];
|
|
140954
|
+
};
|
|
140955
|
+
export declare type TownsquareProjectsRemoveNumericCustomFieldValuePayload = {
|
|
140956
|
+
__typename?: 'TownsquareProjectsRemoveNumericCustomFieldValuePayload';
|
|
140957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140958
|
+
success: Scalars['Boolean']['output'];
|
|
140959
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
140960
|
+
};
|
|
140160
140961
|
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
140161
140962
|
projectId: Scalars['ID']['input'];
|
|
140162
140963
|
teamId: Scalars['ID']['input'];
|
|
@@ -140168,6 +140969,28 @@ export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
|
140168
140969
|
success: Scalars['Boolean']['output'];
|
|
140169
140970
|
team?: Maybe<TeamV2>;
|
|
140170
140971
|
};
|
|
140972
|
+
export declare type TownsquareProjectsRemoveTextCustomFieldValueInput = {
|
|
140973
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140974
|
+
projectId: Scalars['ID']['input'];
|
|
140975
|
+
valueId: Scalars['ID']['input'];
|
|
140976
|
+
};
|
|
140977
|
+
export declare type TownsquareProjectsRemoveTextCustomFieldValuePayload = {
|
|
140978
|
+
__typename?: 'TownsquareProjectsRemoveTextCustomFieldValuePayload';
|
|
140979
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140980
|
+
success: Scalars['Boolean']['output'];
|
|
140981
|
+
valueId?: Maybe<Scalars['ID']['output']>;
|
|
140982
|
+
};
|
|
140983
|
+
export declare type TownsquareProjectsRemoveUserCustomFieldValueInput = {
|
|
140984
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
140985
|
+
projectId: Scalars['ID']['input'];
|
|
140986
|
+
userId: Scalars['ID']['input'];
|
|
140987
|
+
};
|
|
140988
|
+
export declare type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
140989
|
+
__typename?: 'TownsquareProjectsRemoveUserCustomFieldValuePayload';
|
|
140990
|
+
errors?: Maybe<Array<MutationError>>;
|
|
140991
|
+
success: Scalars['Boolean']['output'];
|
|
140992
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
140993
|
+
};
|
|
140171
140994
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
140172
140995
|
incomingProjectId: Scalars['ID']['input'];
|
|
140173
140996
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -140202,6 +141025,17 @@ export declare type TownsquareProjectsShareProjectPayload = {
|
|
|
140202
141025
|
success: Scalars['Boolean']['output'];
|
|
140203
141026
|
usersAdded?: Maybe<Array<User>>;
|
|
140204
141027
|
};
|
|
141028
|
+
export declare type TownsquareProjectsShareUpdateInput = {
|
|
141029
|
+
recipientAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
141030
|
+
recipientEmailAddress?: InputMaybe<Scalars['String']['input']>;
|
|
141031
|
+
updateId: Scalars['ID']['input'];
|
|
141032
|
+
};
|
|
141033
|
+
export declare type TownsquareProjectsShareUpdatePayload = {
|
|
141034
|
+
__typename?: 'TownsquareProjectsShareUpdatePayload';
|
|
141035
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141036
|
+
isShared: Scalars['Boolean']['output'];
|
|
141037
|
+
success: Scalars['Boolean']['output'];
|
|
141038
|
+
};
|
|
140205
141039
|
export declare type TownsquareProjectsWorkItemAlreadyLinkedMutationErrorExtension = MutationErrorExtension & {
|
|
140206
141040
|
__typename?: 'TownsquareProjectsWorkItemAlreadyLinkedMutationErrorExtension';
|
|
140207
141041
|
canReplace?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -140480,6 +141314,7 @@ export declare type TownsquareTextCustomField = TownsquareCustomFieldNode & {
|
|
|
140480
141314
|
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
140481
141315
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
140482
141316
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
141317
|
+
value?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
|
|
140483
141318
|
};
|
|
140484
141319
|
export declare type TownsquareTextCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
140485
141320
|
__typename?: 'TownsquareTextCustomFieldDefinition';
|
|
@@ -140500,6 +141335,11 @@ export declare type TownsquareTextSelectCustomField = TownsquareCustomFieldNode
|
|
|
140500
141335
|
definition?: Maybe<TownsquareCustomFieldDefinition>;
|
|
140501
141336
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
140502
141337
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
141338
|
+
values?: Maybe<TownsquareCustomFieldTextSavedValueConnection>;
|
|
141339
|
+
};
|
|
141340
|
+
export declare type TownsquareTextSelectCustomFieldValuesArgs = {
|
|
141341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
141342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
140503
141343
|
};
|
|
140504
141344
|
export declare type TownsquareTextSelectCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
|
|
140505
141345
|
__typename?: 'TownsquareTextSelectCustomFieldDefinition';
|
|
@@ -141230,7 +142070,7 @@ export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
|
141230
142070
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
141231
142071
|
name: Scalars['String']['output'];
|
|
141232
142072
|
objectId: Scalars['ID']['output'];
|
|
141233
|
-
plannerEventCards?: Maybe<
|
|
142073
|
+
plannerEventCards?: Maybe<TrelloPlannerEventCardConnection>;
|
|
141234
142074
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
141235
142075
|
powerUps?: Maybe<TrelloBoardPowerUpConnection>;
|
|
141236
142076
|
powerUpsDisableAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -141591,7 +142431,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
141591
142431
|
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
141592
142432
|
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
141593
142433
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
141594
|
-
|
|
142434
|
+
plannerEvents?: Maybe<TrelloPlannerEventConnection>;
|
|
141595
142435
|
position?: Maybe<Scalars['Float']['output']>;
|
|
141596
142436
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
141597
142437
|
role?: Maybe<TrelloCardRole>;
|
|
@@ -141635,6 +142475,11 @@ export declare type TrelloCardMembersVotedArgs = {
|
|
|
141635
142475
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141636
142476
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141637
142477
|
};
|
|
142478
|
+
export declare type TrelloCardPlannerEventsArgs = {
|
|
142479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142480
|
+
filter?: InputMaybe<TrelloPlannerEventTimeFilter>;
|
|
142481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142482
|
+
};
|
|
141638
142483
|
export declare type TrelloCardPowerUpDataArgs = {
|
|
141639
142484
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141640
142485
|
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
@@ -142193,6 +143038,7 @@ export declare type TrelloCreateApplicationPayload = Payload & {
|
|
|
142193
143038
|
};
|
|
142194
143039
|
export declare type TrelloCreateBoardWithAiInput = {
|
|
142195
143040
|
userInput: TrelloAiBoardUserInput;
|
|
143041
|
+
workspaceId: Scalars['ID']['input'];
|
|
142196
143042
|
};
|
|
142197
143043
|
export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
142198
143044
|
__typename?: 'TrelloCreateBoardWithAiPayload';
|
|
@@ -143230,6 +144076,7 @@ export declare type TrelloMutationApi = {
|
|
|
143230
144076
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
143231
144077
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
143232
144078
|
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
144079
|
+
updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
|
|
143233
144080
|
updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
|
|
143234
144081
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
143235
144082
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
@@ -143420,6 +144267,9 @@ export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
|
143420
144267
|
export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
|
|
143421
144268
|
input: TrelloUpdatePrimaryPlannerAccountInput;
|
|
143422
144269
|
};
|
|
144270
|
+
export declare type TrelloMutationApiUpdateProactiveSmartScheduleStatusArgs = {
|
|
144271
|
+
input: TrelloUpdateProactiveSmartScheduleStatusInput;
|
|
144272
|
+
};
|
|
143423
144273
|
export declare type TrelloMutationApiUpdateProposedEventArgs = {
|
|
143424
144274
|
input: TrelloUpdateProposedEventInput;
|
|
143425
144275
|
};
|
|
@@ -143438,7 +144288,6 @@ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
|
|
|
143438
144288
|
};
|
|
143439
144289
|
export declare type TrelloNewYearsResolutionAiBoardInput = {
|
|
143440
144290
|
resolution: Scalars['String']['input'];
|
|
143441
|
-
workspaceId: Scalars['ID']['input'];
|
|
143442
144291
|
};
|
|
143443
144292
|
export declare type TrelloNotification = TrelloQuickCaptureNotification;
|
|
143444
144293
|
export declare type TrelloNotificationConnection = {
|
|
@@ -143809,10 +144658,30 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
143809
144658
|
list?: Maybe<TrelloPlannerCardListUpdated>;
|
|
143810
144659
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
143811
144660
|
};
|
|
143812
|
-
export declare type
|
|
143813
|
-
__typename?: '
|
|
143814
|
-
|
|
144661
|
+
export declare type TrelloPlannerEventCardConnection = {
|
|
144662
|
+
__typename?: 'TrelloPlannerEventCardConnection';
|
|
144663
|
+
edges: Array<TrelloPlannerEventCardEdge>;
|
|
144664
|
+
pageInfo: PageInfo;
|
|
144665
|
+
};
|
|
144666
|
+
export declare type TrelloPlannerEventCardEdge = {
|
|
144667
|
+
__typename?: 'TrelloPlannerEventCardEdge';
|
|
144668
|
+
cursor: Scalars['String']['output'];
|
|
144669
|
+
node: TrelloCard;
|
|
144670
|
+
};
|
|
144671
|
+
export declare type TrelloPlannerEventConnection = {
|
|
144672
|
+
__typename?: 'TrelloPlannerEventConnection';
|
|
144673
|
+
edges: Array<TrelloPlannerEventEdge>;
|
|
144674
|
+
pageInfo: PageInfo;
|
|
143815
144675
|
};
|
|
144676
|
+
export declare type TrelloPlannerEventEdge = {
|
|
144677
|
+
__typename?: 'TrelloPlannerEventEdge';
|
|
144678
|
+
cursor: Scalars['String']['output'];
|
|
144679
|
+
node: TrelloPlannerCalendarEvent;
|
|
144680
|
+
};
|
|
144681
|
+
export declare enum TrelloPlannerEventTimeFilter {
|
|
144682
|
+
All = "ALL",
|
|
144683
|
+
Future = "FUTURE"
|
|
144684
|
+
}
|
|
143816
144685
|
export declare type TrelloPlannerProposedEventConnection = {
|
|
143817
144686
|
__typename?: 'TrelloPlannerProposedEventConnection';
|
|
143818
144687
|
edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
|
|
@@ -143937,8 +144806,8 @@ export declare type TrelloPowerUpUpdated = {
|
|
|
143937
144806
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
143938
144807
|
};
|
|
143939
144808
|
export declare type TrelloProposePlannerEventsInput = {
|
|
143940
|
-
cardIds
|
|
143941
|
-
timezoneOffsetHours
|
|
144809
|
+
cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
144810
|
+
timezoneOffsetHours: Scalars['Float']['input'];
|
|
143942
144811
|
};
|
|
143943
144812
|
export declare type TrelloProposePlannerEventsPayload = Payload & {
|
|
143944
144813
|
__typename?: 'TrelloProposePlannerEventsPayload';
|
|
@@ -144336,6 +145205,11 @@ export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
|
|
|
144336
145205
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144337
145206
|
timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
|
|
144338
145207
|
};
|
|
145208
|
+
export declare enum TrelloSmartScheduleStatus {
|
|
145209
|
+
Active = "ACTIVE",
|
|
145210
|
+
Dormant = "DORMANT",
|
|
145211
|
+
Inactive = "INACTIVE"
|
|
145212
|
+
}
|
|
144339
145213
|
export declare type TrelloSortInboxCardsInput = {
|
|
144340
145214
|
sortBy: TrelloListCardSortBy;
|
|
144341
145215
|
};
|
|
@@ -144810,6 +145684,15 @@ export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {
|
|
|
144810
145684
|
planner?: Maybe<TrelloPlanner>;
|
|
144811
145685
|
success: Scalars['Boolean']['output'];
|
|
144812
145686
|
};
|
|
145687
|
+
export declare type TrelloUpdateProactiveSmartScheduleStatusInput = {
|
|
145688
|
+
status: TrelloSmartScheduleStatus;
|
|
145689
|
+
userId: Scalars['ID']['input'];
|
|
145690
|
+
};
|
|
145691
|
+
export declare type TrelloUpdateProactiveSmartScheduleStatusPayload = Payload & {
|
|
145692
|
+
__typename?: 'TrelloUpdateProactiveSmartScheduleStatusPayload';
|
|
145693
|
+
errors?: Maybe<Array<MutationError>>;
|
|
145694
|
+
success: Scalars['Boolean']['output'];
|
|
145695
|
+
};
|
|
144813
145696
|
export declare type TrelloUpdateProposedEventInput = {
|
|
144814
145697
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144815
145698
|
proposedEventId: Scalars['ID']['input'];
|