@forge/cli-shared 8.15.0-next.3-experimental-3c69930 → 8.15.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -10
- package/out/graphql/graphql-types.d.ts +562 -14
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +123 -34
- package/package.json +2 -2
|
@@ -3168,6 +3168,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
3168
3168
|
isDefault: Scalars['Boolean']['output'];
|
|
3169
3169
|
isValid: AgentStudioScenarioValidation;
|
|
3170
3170
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3171
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3171
3172
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3172
3173
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3173
3174
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
@@ -3677,6 +3678,7 @@ export declare type AgentStudioScenario = {
|
|
|
3677
3678
|
isDefault: Scalars['Boolean']['output'];
|
|
3678
3679
|
isValid: AgentStudioScenarioValidation;
|
|
3679
3680
|
isWebSearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3681
|
+
isWebSearchEnabledForOrganization?: Maybe<Scalars['Boolean']['output']>;
|
|
3680
3682
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
3681
3683
|
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
3682
3684
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
@@ -4030,10 +4032,200 @@ export declare type AgentStudioWidgets = {
|
|
|
4030
4032
|
widgets?: Maybe<Array<AgentStudioWidget>>;
|
|
4031
4033
|
};
|
|
4032
4034
|
export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
|
|
4035
|
+
export declare type AgentWorkspaceAgent = {
|
|
4036
|
+
__typename?: 'AgentWorkspaceAgent';
|
|
4037
|
+
displayName: Scalars['String']['output'];
|
|
4038
|
+
id: Scalars['ID']['output'];
|
|
4039
|
+
teamNames: Array<Scalars['String']['output']>;
|
|
4040
|
+
};
|
|
4041
|
+
export declare type AgentWorkspaceAgentShifts = {
|
|
4042
|
+
__typename?: 'AgentWorkspaceAgentShifts';
|
|
4043
|
+
agent: AgentWorkspaceAgent;
|
|
4044
|
+
hasShifts: Scalars['Boolean']['output'];
|
|
4045
|
+
shifts: Array<AgentWorkspaceShift>;
|
|
4046
|
+
totalHours: Scalars['Float']['output'];
|
|
4047
|
+
};
|
|
4048
|
+
export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
4049
|
+
__typename?: 'AgentWorkspaceAgentShiftsEdge';
|
|
4050
|
+
cursor: Scalars['String']['output'];
|
|
4051
|
+
node: AgentWorkspaceAgentShifts;
|
|
4052
|
+
};
|
|
4053
|
+
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4054
|
+
agentIds: Array<Scalars['ID']['input']>;
|
|
4055
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4056
|
+
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4057
|
+
endTime: Scalars['DateTime']['input'];
|
|
4058
|
+
name: Scalars['String']['input'];
|
|
4059
|
+
projectId: Scalars['ID']['input'];
|
|
4060
|
+
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4061
|
+
startTime: Scalars['DateTime']['input'];
|
|
4062
|
+
teamId: Scalars['ID']['input'];
|
|
4063
|
+
};
|
|
4064
|
+
export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
4065
|
+
__typename?: 'AgentWorkspaceCreateSchedulePayload';
|
|
4066
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4067
|
+
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4068
|
+
success: Scalars['Boolean']['output'];
|
|
4069
|
+
};
|
|
4070
|
+
export declare enum AgentWorkspaceDayOfWeek {
|
|
4071
|
+
Friday = "FRIDAY",
|
|
4072
|
+
Monday = "MONDAY",
|
|
4073
|
+
Saturday = "SATURDAY",
|
|
4074
|
+
Sunday = "SUNDAY",
|
|
4075
|
+
Thursday = "THURSDAY",
|
|
4076
|
+
Tuesday = "TUESDAY",
|
|
4077
|
+
Wednesday = "WEDNESDAY"
|
|
4078
|
+
}
|
|
4079
|
+
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
4080
|
+
projectId: Scalars['ID']['input'];
|
|
4081
|
+
scheduleId: Scalars['ID']['input'];
|
|
4082
|
+
};
|
|
4083
|
+
export declare type AgentWorkspaceDeleteSchedulePayload = {
|
|
4084
|
+
__typename?: 'AgentWorkspaceDeleteSchedulePayload';
|
|
4085
|
+
deletedScheduleId?: Maybe<Scalars['ID']['output']>;
|
|
4086
|
+
deletedScheduleName?: Maybe<Scalars['String']['output']>;
|
|
4087
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4088
|
+
success: Scalars['Boolean']['output'];
|
|
4089
|
+
};
|
|
4033
4090
|
export declare type AgentWorkspaceHelloWorld = {
|
|
4034
4091
|
__typename?: 'AgentWorkspaceHelloWorld';
|
|
4035
4092
|
value: Scalars['String']['output'];
|
|
4036
4093
|
};
|
|
4094
|
+
export declare type AgentWorkspacePageInfo = {
|
|
4095
|
+
__typename?: 'AgentWorkspacePageInfo';
|
|
4096
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4097
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4098
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4099
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4100
|
+
totalAgents: Scalars['Int']['output'];
|
|
4101
|
+
};
|
|
4102
|
+
export declare enum AgentWorkspaceRecurrenceFrequency {
|
|
4103
|
+
Daily = "DAILY",
|
|
4104
|
+
Monthly = "MONTHLY",
|
|
4105
|
+
Weekly = "WEEKLY"
|
|
4106
|
+
}
|
|
4107
|
+
export declare type AgentWorkspaceRecurrenceRule = {
|
|
4108
|
+
__typename?: 'AgentWorkspaceRecurrenceRule';
|
|
4109
|
+
dayOfMonth?: Maybe<Scalars['Int']['output']>;
|
|
4110
|
+
dayOfWeekInMonth?: Maybe<AgentWorkspaceDayOfWeek>;
|
|
4111
|
+
daysOfWeek?: Maybe<Array<AgentWorkspaceDayOfWeek>>;
|
|
4112
|
+
frequency: AgentWorkspaceRecurrenceFrequency;
|
|
4113
|
+
humanReadable: Scalars['String']['output'];
|
|
4114
|
+
interval: Scalars['Int']['output'];
|
|
4115
|
+
weekOfMonth?: Maybe<Scalars['Int']['output']>;
|
|
4116
|
+
};
|
|
4117
|
+
export declare type AgentWorkspaceRecurrenceRuleInput = {
|
|
4118
|
+
dayOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
|
4119
|
+
dayOfWeekInMonth?: InputMaybe<AgentWorkspaceDayOfWeek>;
|
|
4120
|
+
daysOfWeek?: InputMaybe<Array<AgentWorkspaceDayOfWeek>>;
|
|
4121
|
+
frequency: AgentWorkspaceRecurrenceFrequency;
|
|
4122
|
+
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
4123
|
+
weekOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
|
4124
|
+
};
|
|
4125
|
+
export declare type AgentWorkspaceSchedule = {
|
|
4126
|
+
__typename?: 'AgentWorkspaceSchedule';
|
|
4127
|
+
agents: Array<AgentWorkspaceAgent>;
|
|
4128
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4129
|
+
createdBy: Scalars['String']['output'];
|
|
4130
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4131
|
+
effectiveUntil?: Maybe<Scalars['DateTime']['output']>;
|
|
4132
|
+
enabled: Scalars['Boolean']['output'];
|
|
4133
|
+
endTime: Scalars['DateTime']['output'];
|
|
4134
|
+
id: Scalars['ID']['output'];
|
|
4135
|
+
name: Scalars['String']['output'];
|
|
4136
|
+
projectId: Scalars['ID']['output'];
|
|
4137
|
+
recurrence?: Maybe<AgentWorkspaceRecurrenceRule>;
|
|
4138
|
+
recurring: Scalars['Boolean']['output'];
|
|
4139
|
+
startTime: Scalars['DateTime']['output'];
|
|
4140
|
+
teamId: Scalars['ID']['output'];
|
|
4141
|
+
teamName: Scalars['String']['output'];
|
|
4142
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4143
|
+
};
|
|
4144
|
+
export declare type AgentWorkspaceScheduleError = {
|
|
4145
|
+
__typename?: 'AgentWorkspaceScheduleError';
|
|
4146
|
+
code: AgentWorkspaceScheduleErrorCode;
|
|
4147
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
4148
|
+
message: Scalars['String']['output'];
|
|
4149
|
+
};
|
|
4150
|
+
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
4151
|
+
AgentNotFound = "AGENT_NOT_FOUND",
|
|
4152
|
+
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
4153
|
+
Forbidden = "FORBIDDEN",
|
|
4154
|
+
InternalError = "INTERNAL_ERROR",
|
|
4155
|
+
InvalidRecurrence = "INVALID_RECURRENCE",
|
|
4156
|
+
InvalidTimeRange = "INVALID_TIME_RANGE",
|
|
4157
|
+
ProjectNotFound = "PROJECT_NOT_FOUND",
|
|
4158
|
+
ScheduleNotFound = "SCHEDULE_NOT_FOUND",
|
|
4159
|
+
TeamNotFound = "TEAM_NOT_FOUND",
|
|
4160
|
+
ValidationError = "VALIDATION_ERROR"
|
|
4161
|
+
}
|
|
4162
|
+
export declare type AgentWorkspaceScheduleVersion = {
|
|
4163
|
+
__typename?: 'AgentWorkspaceScheduleVersion';
|
|
4164
|
+
agentIds: Array<Scalars['ID']['output']>;
|
|
4165
|
+
name: Scalars['String']['output'];
|
|
4166
|
+
versionEndTime: Scalars['DateTime']['output'];
|
|
4167
|
+
versionStartTime: Scalars['DateTime']['output'];
|
|
4168
|
+
};
|
|
4169
|
+
export declare type AgentWorkspaceShift = {
|
|
4170
|
+
__typename?: 'AgentWorkspaceShift';
|
|
4171
|
+
agentId: Scalars['ID']['output'];
|
|
4172
|
+
durationMinutes: Scalars['Int']['output'];
|
|
4173
|
+
endTime: Scalars['DateTime']['output'];
|
|
4174
|
+
id: Scalars['ID']['output'];
|
|
4175
|
+
scheduleId: Scalars['ID']['output'];
|
|
4176
|
+
scheduleName: Scalars['String']['output'];
|
|
4177
|
+
startTime: Scalars['DateTime']['output'];
|
|
4178
|
+
};
|
|
4179
|
+
export declare type AgentWorkspaceShiftsConnection = {
|
|
4180
|
+
__typename?: 'AgentWorkspaceShiftsConnection';
|
|
4181
|
+
edges: Array<AgentWorkspaceAgentShiftsEdge>;
|
|
4182
|
+
metadata: AgentWorkspaceShiftsMetadata;
|
|
4183
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
4184
|
+
summary: AgentWorkspaceShiftsSummary;
|
|
4185
|
+
};
|
|
4186
|
+
export declare type AgentWorkspaceShiftsMetadata = {
|
|
4187
|
+
__typename?: 'AgentWorkspaceShiftsMetadata';
|
|
4188
|
+
endTime: Scalars['DateTime']['output'];
|
|
4189
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
4190
|
+
projectId: Scalars['ID']['output'];
|
|
4191
|
+
startTime: Scalars['DateTime']['output'];
|
|
4192
|
+
};
|
|
4193
|
+
export declare type AgentWorkspaceShiftsQueryInput = {
|
|
4194
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4195
|
+
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4196
|
+
endTime: Scalars['DateTime']['input'];
|
|
4197
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4198
|
+
projectId: Scalars['ID']['input'];
|
|
4199
|
+
startTime: Scalars['DateTime']['input'];
|
|
4200
|
+
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4201
|
+
};
|
|
4202
|
+
export declare type AgentWorkspaceShiftsSummary = {
|
|
4203
|
+
__typename?: 'AgentWorkspaceShiftsSummary';
|
|
4204
|
+
avgAgentsPerHour: Scalars['Float']['output'];
|
|
4205
|
+
completedShiftsPercentage: Scalars['Float']['output'];
|
|
4206
|
+
scheduledAgents: Scalars['Int']['output'];
|
|
4207
|
+
totalShifts: Scalars['Int']['output'];
|
|
4208
|
+
};
|
|
4209
|
+
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
4210
|
+
agentIds: Array<Scalars['ID']['input']>;
|
|
4211
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4212
|
+
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4213
|
+
enabled: Scalars['Boolean']['input'];
|
|
4214
|
+
endTime: Scalars['DateTime']['input'];
|
|
4215
|
+
name: Scalars['String']['input'];
|
|
4216
|
+
projectId: Scalars['ID']['input'];
|
|
4217
|
+
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4218
|
+
scheduleId: Scalars['ID']['input'];
|
|
4219
|
+
startTime: Scalars['DateTime']['input'];
|
|
4220
|
+
teamId: Scalars['ID']['input'];
|
|
4221
|
+
};
|
|
4222
|
+
export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
4223
|
+
__typename?: 'AgentWorkspaceUpdateSchedulePayload';
|
|
4224
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4225
|
+
previousVersion?: Maybe<AgentWorkspaceScheduleVersion>;
|
|
4226
|
+
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4227
|
+
success: Scalars['Boolean']['output'];
|
|
4228
|
+
};
|
|
4037
4229
|
export declare enum AiCoreApiQuestionType {
|
|
4038
4230
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
4039
4231
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -4327,6 +4519,7 @@ export declare type AppContainer = {
|
|
|
4327
4519
|
export declare type AppContainerImagesArgs = {
|
|
4328
4520
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4329
4521
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4522
|
+
imageTag?: InputMaybe<Scalars['String']['input']>;
|
|
4330
4523
|
};
|
|
4331
4524
|
export declare type AppContainerImage = {
|
|
4332
4525
|
__typename?: 'AppContainerImage';
|
|
@@ -4698,7 +4891,7 @@ export declare type AppInstallation = {
|
|
|
4698
4891
|
app?: Maybe<App>;
|
|
4699
4892
|
appEnvironment?: Maybe<AppEnvironment>;
|
|
4700
4893
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
4701
|
-
|
|
4894
|
+
computeVersion?: Maybe<AppEnvironmentVersion>;
|
|
4702
4895
|
config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
4703
4896
|
createdAt: Scalars['DateTime']['output'];
|
|
4704
4897
|
createdBy?: Maybe<User>;
|
|
@@ -4933,6 +5126,12 @@ export declare type AppLogLines = {
|
|
|
4933
5126
|
nodes?: Maybe<Array<Maybe<AppLogLine>>>;
|
|
4934
5127
|
pageInfo: PageInfo;
|
|
4935
5128
|
};
|
|
5129
|
+
export declare type AppLogsFilterBuckets = {
|
|
5130
|
+
__typename?: 'AppLogsFilterBuckets';
|
|
5131
|
+
containers: Array<BucketField>;
|
|
5132
|
+
functionKeys: Array<BucketField>;
|
|
5133
|
+
services: Array<BucketField>;
|
|
5134
|
+
};
|
|
4936
5135
|
export declare type AppLogsWithMetaData = {
|
|
4937
5136
|
__typename?: 'AppLogsWithMetaData';
|
|
4938
5137
|
appId: Scalars['String']['output'];
|
|
@@ -4962,6 +5161,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
4962
5161
|
export declare type AppLogsWithMetaDataResponse = {
|
|
4963
5162
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
4964
5163
|
appLogs: Array<AppLogsWithMetaData>;
|
|
5164
|
+
appLogsFilterBuckets?: Maybe<AppLogsFilterBuckets>;
|
|
4965
5165
|
hasNextPage: Scalars['Boolean']['output'];
|
|
4966
5166
|
offset?: Maybe<Scalars['Int']['output']>;
|
|
4967
5167
|
totalLogs: Scalars['Int']['output'];
|
|
@@ -8520,6 +8720,7 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
|
|
|
8520
8720
|
};
|
|
8521
8721
|
export declare type BlockServiceBatchRetrieveBlocksInput = {
|
|
8522
8722
|
blockAris: Array<Scalars['String']['input']>;
|
|
8723
|
+
blockIdentifiers?: InputMaybe<Array<BlockServiceBlockIdentifierInput>>;
|
|
8523
8724
|
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
8524
8725
|
};
|
|
8525
8726
|
export declare type BlockServiceBatchRetrieveBlocksPayload = {
|
|
@@ -8533,6 +8734,10 @@ export declare type BlockServiceBlockErrorPayload = {
|
|
|
8533
8734
|
code: Scalars['String']['output'];
|
|
8534
8735
|
reason: Scalars['String']['output'];
|
|
8535
8736
|
};
|
|
8737
|
+
export declare type BlockServiceBlockIdentifierInput = {
|
|
8738
|
+
blockAri: Scalars['String']['input'];
|
|
8739
|
+
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
8740
|
+
};
|
|
8536
8741
|
export declare type BlockServiceBlockPayload = {
|
|
8537
8742
|
__typename?: 'BlockServiceBlockPayload';
|
|
8538
8743
|
blockAri: Scalars['String']['output'];
|
|
@@ -8582,6 +8787,7 @@ export declare type BlockServiceUpdateBlockInput = {
|
|
|
8582
8787
|
};
|
|
8583
8788
|
export declare type BlockSmartLink = SmartLink & {
|
|
8584
8789
|
__typename?: 'BlockSmartLink';
|
|
8790
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
8585
8791
|
url: Scalars['String']['output'];
|
|
8586
8792
|
};
|
|
8587
8793
|
export declare type BlockedAccessEmpowerment = {
|
|
@@ -8793,6 +8999,11 @@ export declare type Breadcrumb = {
|
|
|
8793
8999
|
separator?: Maybe<Scalars['String']['output']>;
|
|
8794
9000
|
url?: Maybe<Scalars['String']['output']>;
|
|
8795
9001
|
};
|
|
9002
|
+
export declare type BucketField = {
|
|
9003
|
+
__typename?: 'BucketField';
|
|
9004
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9005
|
+
key: Scalars['String']['output'];
|
|
9006
|
+
};
|
|
8796
9007
|
export declare type Build = {
|
|
8797
9008
|
__typename?: 'Build';
|
|
8798
9009
|
appId: Scalars['ID']['output'];
|
|
@@ -25348,7 +25559,7 @@ export declare type ConvoAiAgentSession = ConvoAiAgentSessionNode & {
|
|
|
25348
25559
|
};
|
|
25349
25560
|
export declare type ConvoAiAgentSessionCreate = {
|
|
25350
25561
|
__typename?: 'ConvoAiAgentSessionCreate';
|
|
25351
|
-
agent?: Maybe<
|
|
25562
|
+
agent?: Maybe<ConvoAiUser>;
|
|
25352
25563
|
agentIdentityAccountId?: Maybe<Scalars['String']['output']>;
|
|
25353
25564
|
conversationId: Scalars['String']['output'];
|
|
25354
25565
|
};
|
|
@@ -25547,6 +25758,12 @@ export declare type ConvoAiUpdateConversationStatePayload = Payload & {
|
|
|
25547
25758
|
errors?: Maybe<Array<MutationError>>;
|
|
25548
25759
|
success: Scalars['Boolean']['output'];
|
|
25549
25760
|
};
|
|
25761
|
+
export declare type ConvoAiUser = {
|
|
25762
|
+
__typename?: 'ConvoAiUser';
|
|
25763
|
+
accountId?: Maybe<Scalars['ID']['output']>;
|
|
25764
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
25765
|
+
picture?: Maybe<Scalars['String']['output']>;
|
|
25766
|
+
};
|
|
25550
25767
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
25551
25768
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
25552
25769
|
project: Scalars['ID']['input'];
|
|
@@ -28084,6 +28301,7 @@ export declare type CustomerServiceIndividualNotesArgs = {
|
|
|
28084
28301
|
};
|
|
28085
28302
|
export declare type CustomerServiceIndividualRequestsArgs = {
|
|
28086
28303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28304
|
+
filter?: InputMaybe<CustomerServiceRequestFilterInput>;
|
|
28087
28305
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28088
28306
|
helpCenterId?: InputMaybe<Scalars['ID']['input']>;
|
|
28089
28307
|
};
|
|
@@ -28583,6 +28801,10 @@ export declare type CustomerServiceRequestEdge = {
|
|
|
28583
28801
|
cursor: Scalars['String']['output'];
|
|
28584
28802
|
node?: Maybe<CustomerServiceRequest>;
|
|
28585
28803
|
};
|
|
28804
|
+
export declare type CustomerServiceRequestFilterInput = {
|
|
28805
|
+
status?: InputMaybe<CustomerServiceStatusKey>;
|
|
28806
|
+
summaryContains?: InputMaybe<Scalars['String']['input']>;
|
|
28807
|
+
};
|
|
28586
28808
|
export declare type CustomerServiceRequestFormDataConnection = {
|
|
28587
28809
|
__typename?: 'CustomerServiceRequestFormDataConnection';
|
|
28588
28810
|
edges: Array<CustomerServiceRequestFormDataEdge>;
|
|
@@ -30026,6 +30248,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
|
|
|
30026
30248
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
30027
30249
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
30028
30250
|
repository: DevAiRovoDevRepositoryInput;
|
|
30251
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
30029
30252
|
workspaceAri: Scalars['ID']['input'];
|
|
30030
30253
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
30031
30254
|
};
|
|
@@ -30067,6 +30290,7 @@ export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
|
30067
30290
|
}
|
|
30068
30291
|
export declare type DevAiRovoDevRepository = {
|
|
30069
30292
|
__typename?: 'DevAiRovoDevRepository';
|
|
30293
|
+
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
30070
30294
|
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
30071
30295
|
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
30072
30296
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -32741,6 +32965,7 @@ export declare type EmbeddedMediaTokenV2 = {
|
|
|
32741
32965
|
export declare type EmbeddedSmartLink = SmartLink & {
|
|
32742
32966
|
__typename?: 'EmbeddedSmartLink';
|
|
32743
32967
|
layout: Scalars['String']['output'];
|
|
32968
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
32744
32969
|
url: Scalars['String']['output'];
|
|
32745
32970
|
width: Scalars['Float']['output'];
|
|
32746
32971
|
};
|
|
@@ -37302,8 +37527,21 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
|
|
|
37302
37527
|
errors?: Maybe<Array<MutationError>>;
|
|
37303
37528
|
success: Scalars['Boolean']['output'];
|
|
37304
37529
|
};
|
|
37530
|
+
export declare enum GraphIntegrationSkillColor {
|
|
37531
|
+
Blue = "BLUE",
|
|
37532
|
+
Default = "DEFAULT",
|
|
37533
|
+
Gray = "GRAY",
|
|
37534
|
+
Green = "GREEN",
|
|
37535
|
+
Lime = "LIME",
|
|
37536
|
+
Magenta = "MAGENTA",
|
|
37537
|
+
Purple = "PURPLE",
|
|
37538
|
+
Red = "RED",
|
|
37539
|
+
Teal = "TEAL",
|
|
37540
|
+
Yellow = "YELLOW"
|
|
37541
|
+
}
|
|
37305
37542
|
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
37306
37543
|
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
37544
|
+
color?: Maybe<GraphIntegrationSkillColor>;
|
|
37307
37545
|
description?: Maybe<Scalars['String']['output']>;
|
|
37308
37546
|
displayName: Scalars['String']['output'];
|
|
37309
37547
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -53298,7 +53536,7 @@ export declare type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
|
53298
53536
|
data?: Maybe<GraphStoreFullProjectDocumentationEntityEndUnion>;
|
|
53299
53537
|
id: Scalars['ID']['output'];
|
|
53300
53538
|
};
|
|
53301
|
-
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
53539
|
+
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
53302
53540
|
export declare type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
53303
53541
|
__typename?: 'GraphStoreFullProjectDocumentationEntityNode';
|
|
53304
53542
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -60957,7 +61195,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
60957
61195
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
60958
61196
|
};
|
|
60959
61197
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseUnion = JiraProject;
|
|
60960
|
-
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
61198
|
+
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
60961
61199
|
export declare type GraphStoreSimplifiedProjectDocumentationPageConnection = HasPageInfo & HasTotal & {
|
|
60962
61200
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageConnection';
|
|
60963
61201
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationPageEdge>>>;
|
|
@@ -82031,7 +82269,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseEdg
|
|
|
82031
82269
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseUnion>;
|
|
82032
82270
|
};
|
|
82033
82271
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseUnion = JiraProject;
|
|
82034
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
82272
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
82035
82273
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityConnection = HasPageInfo & {
|
|
82036
82274
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksEntityConnection';
|
|
82037
82275
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityEdge>>>;
|
|
@@ -84937,6 +85175,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
84937
85175
|
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
84938
85176
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
84939
85177
|
template?: Maybe<Scalars['String']['output']>;
|
|
85178
|
+
thirdPartyTools?: Maybe<Array<Maybe<GrowthUnifiedProfileThirdPartyTools>>>;
|
|
84940
85179
|
};
|
|
84941
85180
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
84942
85181
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84949,6 +85188,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
84949
85188
|
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
84950
85189
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
84951
85190
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
85191
|
+
thirdPartyTools?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileThirdPartyTools>>>;
|
|
84952
85192
|
};
|
|
84953
85193
|
export declare type GrowthUnifiedProfileLinkEngagement = {
|
|
84954
85194
|
__typename?: 'GrowthUnifiedProfileLinkEngagement';
|
|
@@ -85239,6 +85479,22 @@ export declare enum GrowthUnifiedProfileTenantType {
|
|
|
85239
85479
|
CloudId = "CLOUD_ID",
|
|
85240
85480
|
OrgId = "ORG_ID"
|
|
85241
85481
|
}
|
|
85482
|
+
export declare enum GrowthUnifiedProfileThirdPartyTools {
|
|
85483
|
+
Asana = "ASANA",
|
|
85484
|
+
Bitbucket = "BITBUCKET",
|
|
85485
|
+
Canva = "CANVA",
|
|
85486
|
+
Confluence = "CONFLUENCE",
|
|
85487
|
+
Dropbox = "DROPBOX",
|
|
85488
|
+
Figma = "FIGMA",
|
|
85489
|
+
Github = "GITHUB",
|
|
85490
|
+
Gitlab = "GITLAB",
|
|
85491
|
+
Google = "GOOGLE",
|
|
85492
|
+
Microsoft = "MICROSOFT",
|
|
85493
|
+
Monday = "MONDAY",
|
|
85494
|
+
Notion = "NOTION",
|
|
85495
|
+
Slack = "SLACK",
|
|
85496
|
+
Trello = "TRELLO"
|
|
85497
|
+
}
|
|
85242
85498
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
85243
85499
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
85244
85500
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -87896,6 +88152,7 @@ export declare type InlineCommentResolveProperties = {
|
|
|
87896
88152
|
};
|
|
87897
88153
|
export declare type InlineSmartLink = SmartLink & {
|
|
87898
88154
|
__typename?: 'InlineSmartLink';
|
|
88155
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
87899
88156
|
url: Scalars['String']['output'];
|
|
87900
88157
|
};
|
|
87901
88158
|
export declare type InlineTask = {
|
|
@@ -90466,7 +90723,8 @@ export declare enum JiraBoardSwimlaneStrategy {
|
|
|
90466
90723
|
None = "NONE",
|
|
90467
90724
|
ParentChild = "PARENT_CHILD",
|
|
90468
90725
|
Project = "PROJECT",
|
|
90469
|
-
RequestType = "REQUEST_TYPE"
|
|
90726
|
+
RequestType = "REQUEST_TYPE",
|
|
90727
|
+
TownsquareProject = "TOWNSQUARE_PROJECT"
|
|
90470
90728
|
}
|
|
90471
90729
|
export declare enum JiraBoardType {
|
|
90472
90730
|
Kanban = "KANBAN",
|
|
@@ -93870,6 +94128,14 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
93870
94128
|
success: Scalars['Boolean']['output'];
|
|
93871
94129
|
view?: Maybe<JiraView>;
|
|
93872
94130
|
};
|
|
94131
|
+
export declare type JiraDiscardUserTimelineViewConfigInput = {
|
|
94132
|
+
viewId: Scalars['ID']['input'];
|
|
94133
|
+
};
|
|
94134
|
+
export declare type JiraDiscardUserTimelineViewConfigPayload = Payload & {
|
|
94135
|
+
__typename?: 'JiraDiscardUserTimelineViewConfigPayload';
|
|
94136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94137
|
+
success: Scalars['Boolean']['output'];
|
|
94138
|
+
};
|
|
93873
94139
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
93874
94140
|
viewId: Scalars['ID']['input'];
|
|
93875
94141
|
};
|
|
@@ -95964,6 +96230,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
95964
96230
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
95965
96231
|
fieldsForView?: Maybe<JiraIssueFieldConnection>;
|
|
95966
96232
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
96233
|
+
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
96234
|
+
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
95967
96235
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
95968
96236
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
95969
96237
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -96033,6 +96301,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
96033
96301
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
96034
96302
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
96035
96303
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
96304
|
+
securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
96036
96305
|
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
96037
96306
|
smartSummary?: Maybe<JiraAdf>;
|
|
96038
96307
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
@@ -96217,6 +96486,12 @@ export declare type JiraIssueFieldsForViewArgs = {
|
|
|
96217
96486
|
export declare type JiraIssueGetConsolidatedResourcesArgs = {
|
|
96218
96487
|
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
96219
96488
|
};
|
|
96489
|
+
export declare type JiraIssueGetConsolidatedResourcesTotalCountArgs = {
|
|
96490
|
+
input?: InputMaybe<JiraResourcesTotalCountInput>;
|
|
96491
|
+
};
|
|
96492
|
+
export declare type JiraIssueGetUnhydratedConsolidatedResourcesArgs = {
|
|
96493
|
+
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
96494
|
+
};
|
|
96220
96495
|
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
96221
96496
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96222
96497
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96313,6 +96588,10 @@ export declare type JiraIssueSearchViewContextArgs = {
|
|
|
96313
96588
|
issueSearchInput: JiraIssueSearchInput;
|
|
96314
96589
|
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
96315
96590
|
};
|
|
96591
|
+
export declare type JiraIssueSecurityVulnerabilityRelationshipsArgs = {
|
|
96592
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96594
|
+
};
|
|
96316
96595
|
export declare type JiraIssueStartDateViewFieldArgs = {
|
|
96317
96596
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
96318
96597
|
};
|
|
@@ -97866,7 +98145,9 @@ export declare type JiraIssueSearchStatus = {
|
|
|
97866
98145
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
97867
98146
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
97868
98147
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
98148
|
+
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
97869
98149
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
98150
|
+
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
97870
98151
|
};
|
|
97871
98152
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
97872
98153
|
__typename?: 'JiraIssueSearchView';
|
|
@@ -102649,6 +102930,7 @@ export declare type JiraProject = Node & {
|
|
|
102649
102930
|
goals?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
102650
102931
|
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
102651
102932
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
102933
|
+
hasSecurityVulnerabilityRelationship?: Maybe<Scalars['Boolean']['output']>;
|
|
102652
102934
|
id: Scalars['ID']['output'];
|
|
102653
102935
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
102654
102936
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105762,6 +106044,9 @@ export declare enum JiraResourcesSortDirection {
|
|
|
105762
106044
|
Asc = "ASC",
|
|
105763
106045
|
Desc = "DESC"
|
|
105764
106046
|
}
|
|
106047
|
+
export declare type JiraResourcesTotalCountInput = {
|
|
106048
|
+
integration?: InputMaybe<Array<InputMaybe<JiraResourceIntegration>>>;
|
|
106049
|
+
};
|
|
105765
106050
|
export declare type JiraRestoreCustomFieldsInput = {
|
|
105766
106051
|
fieldIds: Array<Scalars['String']['input']>;
|
|
105767
106052
|
};
|
|
@@ -107613,6 +107898,15 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
107613
107898
|
errors?: Maybe<Array<MutationError>>;
|
|
107614
107899
|
success: Scalars['Boolean']['output'];
|
|
107615
107900
|
};
|
|
107901
|
+
export declare type JiraSetTimelineHighlightedReleasesInput = {
|
|
107902
|
+
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
107903
|
+
viewId: Scalars['ID']['input'];
|
|
107904
|
+
};
|
|
107905
|
+
export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
107906
|
+
__typename?: 'JiraSetTimelineHighlightedReleasesPayload';
|
|
107907
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107908
|
+
success: Scalars['Boolean']['output'];
|
|
107909
|
+
};
|
|
107616
107910
|
export declare type JiraSetTimelineViewRangeModeInput = {
|
|
107617
107911
|
rangeMode: JiraTimelineViewRangeMode;
|
|
107618
107912
|
viewId: Scalars['ID']['input'];
|
|
@@ -111438,6 +111732,28 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
111438
111732
|
export declare type JiraWorklogSortInput = {
|
|
111439
111733
|
order: SortDirection;
|
|
111440
111734
|
};
|
|
111735
|
+
export declare type JpdImportIdeasInput = {
|
|
111736
|
+
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
111737
|
+
jpdProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
111738
|
+
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
111739
|
+
sourceType: JpdImportSourceType;
|
|
111740
|
+
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
111741
|
+
};
|
|
111742
|
+
export declare type JpdImportIdeasPayload = {
|
|
111743
|
+
__typename?: 'JpdImportIdeasPayload';
|
|
111744
|
+
metadata: JpdImportMetadata;
|
|
111745
|
+
suggestedIdeas: Array<SuggestedIdea>;
|
|
111746
|
+
};
|
|
111747
|
+
export declare type JpdImportMetadata = {
|
|
111748
|
+
__typename?: 'JpdImportMetadata';
|
|
111749
|
+
aiGatewayTimeTakenInMs: Scalars['Int']['output'];
|
|
111750
|
+
itemsProcessed: Scalars['Int']['output'];
|
|
111751
|
+
sourceType: Scalars['String']['output'];
|
|
111752
|
+
};
|
|
111753
|
+
export declare enum JpdImportSourceType {
|
|
111754
|
+
Csv = "CSV",
|
|
111755
|
+
Text = "TEXT"
|
|
111756
|
+
}
|
|
111441
111757
|
export declare type JpdInsightDeletedEvent = {
|
|
111442
111758
|
__typename?: 'JpdInsightDeletedEvent';
|
|
111443
111759
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -113711,6 +114027,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
113711
114027
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
113712
114028
|
dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
|
|
113713
114029
|
markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
114030
|
+
markZeroQueryInteractedV1?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
|
|
113714
114031
|
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
113715
114032
|
updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
|
|
113716
114033
|
updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
|
|
@@ -113736,6 +114053,9 @@ export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs =
|
|
|
113736
114053
|
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
|
|
113737
114054
|
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
113738
114055
|
};
|
|
114056
|
+
export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedV1Args = {
|
|
114057
|
+
input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
|
|
114058
|
+
};
|
|
113739
114059
|
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
113740
114060
|
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
113741
114061
|
};
|
|
@@ -113845,6 +114165,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
113845
114165
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
113846
114166
|
topicsByAris?: Maybe<Array<Maybe<KnowledgeDiscoveryTopicByAri>>>;
|
|
113847
114167
|
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
114168
|
+
zeroQueriesV1?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
113848
114169
|
};
|
|
113849
114170
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
113850
114171
|
cloudId: Scalars['ID']['input'];
|
|
@@ -113963,6 +114284,10 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
|
113963
114284
|
cloudId: Scalars['String']['input'];
|
|
113964
114285
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
113965
114286
|
};
|
|
114287
|
+
export declare type KnowledgeDiscoveryQueryApiZeroQueriesV1Args = {
|
|
114288
|
+
cloudId: Scalars['String']['input'];
|
|
114289
|
+
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
114290
|
+
};
|
|
113966
114291
|
export declare enum KnowledgeDiscoveryQueryClassification {
|
|
113967
114292
|
Bookmark = "BOOKMARK",
|
|
113968
114293
|
JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
|
|
@@ -116312,6 +116637,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
116312
116637
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116313
116638
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
116314
116639
|
updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
|
|
116640
|
+
updateProductListingReleaseStatus: MarketplaceConsoleUpdateProductListingReleaseStatusResponse;
|
|
116315
116641
|
updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
|
|
116316
116642
|
upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
116317
116643
|
upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
@@ -116390,6 +116716,9 @@ export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
|
|
|
116390
116716
|
export declare type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
|
|
116391
116717
|
input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
|
|
116392
116718
|
};
|
|
116719
|
+
export declare type MarketplaceConsoleMutationApiUpdateProductListingReleaseStatusArgs = {
|
|
116720
|
+
productId: Scalars['ID']['input'];
|
|
116721
|
+
};
|
|
116393
116722
|
export declare type MarketplaceConsoleMutationApiUpdateVersionListingApprovalStatusArgs = {
|
|
116394
116723
|
input: MarketplaceConsoleUpdateVersionListingApprovalStatusInput;
|
|
116395
116724
|
};
|
|
@@ -116665,14 +116994,18 @@ export declare type MarketplaceConsoleProductListingAdditionalChecksInput = {
|
|
|
116665
116994
|
serverAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
116666
116995
|
};
|
|
116667
116996
|
export declare enum MarketplaceConsoleProductListingApprovalStatus {
|
|
116997
|
+
Archived = "ARCHIVED",
|
|
116998
|
+
Notassigned = "NOTASSIGNED",
|
|
116668
116999
|
Private = "PRIVATE",
|
|
116669
117000
|
Public = "PUBLIC",
|
|
117001
|
+
Readytolaunch = "READYTOLAUNCH",
|
|
116670
117002
|
Rejected = "REJECTED",
|
|
116671
117003
|
Submitted = "SUBMITTED"
|
|
116672
117004
|
}
|
|
116673
117005
|
export declare type MarketplaceConsoleProductListingApprovalStatusDetail = {
|
|
116674
117006
|
__typename?: 'MarketplaceConsoleProductListingApprovalStatusDetail';
|
|
116675
117007
|
approvalStatus: MarketplaceConsoleProductListingApprovalStatus;
|
|
117008
|
+
approvalStatusInProcessing?: Maybe<MarketplaceConsoleProductListingApprovalStatus>;
|
|
116676
117009
|
reason?: Maybe<Scalars['String']['output']>;
|
|
116677
117010
|
};
|
|
116678
117011
|
export declare type MarketplaceConsoleProductListingApprovalStatusError = MarketplaceConsoleError & {
|
|
@@ -116698,6 +117031,33 @@ export declare enum MarketplaceConsoleProductListingCurrentTaskStatus {
|
|
|
116698
117031
|
Processing = "PROCESSING",
|
|
116699
117032
|
Success = "SUCCESS"
|
|
116700
117033
|
}
|
|
117034
|
+
export declare enum MarketplaceConsoleProductListingReleaseAppListingStatus {
|
|
117035
|
+
Private = "PRIVATE",
|
|
117036
|
+
Public = "PUBLIC",
|
|
117037
|
+
Rejected = "REJECTED",
|
|
117038
|
+
Submitted = "SUBMITTED"
|
|
117039
|
+
}
|
|
117040
|
+
export declare enum MarketplaceConsoleProductListingReleaseCurrentStatus {
|
|
117041
|
+
Approved = "APPROVED",
|
|
117042
|
+
Failed = "FAILED",
|
|
117043
|
+
Pending = "PENDING",
|
|
117044
|
+
Processing = "PROCESSING",
|
|
117045
|
+
Rejected = "REJECTED"
|
|
117046
|
+
}
|
|
117047
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusError = MarketplaceConsoleError & {
|
|
117048
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusError';
|
|
117049
|
+
code: Scalars['String']['output'];
|
|
117050
|
+
message: Scalars['String']['output'];
|
|
117051
|
+
statusCode: Scalars['Int']['output'];
|
|
117052
|
+
};
|
|
117053
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleProductListingReleaseStatusSuccess;
|
|
117054
|
+
export declare type MarketplaceConsoleProductListingReleaseStatusSuccess = {
|
|
117055
|
+
__typename?: 'MarketplaceConsoleProductListingReleaseStatusSuccess';
|
|
117056
|
+
appListingStatusInProcess?: Maybe<MarketplaceConsoleProductListingReleaseAppListingStatus>;
|
|
117057
|
+
currentAppListingStatus: MarketplaceConsoleProductListingReleaseAppListingStatus;
|
|
117058
|
+
currentStatus: MarketplaceConsoleProductListingReleaseCurrentStatus;
|
|
117059
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
117060
|
+
};
|
|
116701
117061
|
export declare type MarketplaceConsoleProductListingTags = {
|
|
116702
117062
|
__typename?: 'MarketplaceConsoleProductListingTags';
|
|
116703
117063
|
category?: Maybe<Array<Maybe<MarketplaceConsoleTagsContent>>>;
|
|
@@ -116785,6 +117145,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
116785
117145
|
productListingAdditionalChecks?: Maybe<MarketplaceConsoleProductListingAdditionalChecks>;
|
|
116786
117146
|
productListingApprovalStatus: MarketplaceConsoleProductListingApprovalStatusResponse;
|
|
116787
117147
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
117148
|
+
productListingReleaseStatus: MarketplaceConsoleProductListingReleaseStatusResponse;
|
|
116788
117149
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
116789
117150
|
productTags?: Maybe<MarketplaceConsoleProductTags>;
|
|
116790
117151
|
validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
|
|
@@ -116875,6 +117236,9 @@ export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
|
116875
117236
|
appId: Scalars['ID']['input'];
|
|
116876
117237
|
productId?: InputMaybe<Scalars['ID']['input']>;
|
|
116877
117238
|
};
|
|
117239
|
+
export declare type MarketplaceConsoleQueryApiProductListingReleaseStatusArgs = {
|
|
117240
|
+
productId: Scalars['ID']['input'];
|
|
117241
|
+
};
|
|
116878
117242
|
export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
|
|
116879
117243
|
appId: Scalars['ID']['input'];
|
|
116880
117244
|
};
|
|
@@ -117004,6 +117368,11 @@ export declare type MarketplaceConsoleUpdateProductListingApprovalStatusSuccess
|
|
|
117004
117368
|
__typename?: 'MarketplaceConsoleUpdateProductListingApprovalStatusSuccess';
|
|
117005
117369
|
success: Scalars['Boolean']['output'];
|
|
117006
117370
|
};
|
|
117371
|
+
export declare type MarketplaceConsoleUpdateProductListingReleaseStatusResponse = MarketplaceConsoleProductListingReleaseStatusError | MarketplaceConsoleUpdateProductListingReleaseStatusSuccess;
|
|
117372
|
+
export declare type MarketplaceConsoleUpdateProductListingReleaseStatusSuccess = {
|
|
117373
|
+
__typename?: 'MarketplaceConsoleUpdateProductListingReleaseStatusSuccess';
|
|
117374
|
+
success: Scalars['Boolean']['output'];
|
|
117375
|
+
};
|
|
117007
117376
|
export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusInput = {
|
|
117008
117377
|
appSoftwareId: Scalars['ID']['input'];
|
|
117009
117378
|
buildNumber: Scalars['String']['input'];
|
|
@@ -117054,6 +117423,7 @@ export declare enum MarketplaceConsoleVersionListingApprovalStatus {
|
|
|
117054
117423
|
export declare type MarketplaceConsoleVersionListingApprovalStatusDetail = {
|
|
117055
117424
|
__typename?: 'MarketplaceConsoleVersionListingApprovalStatusDetail';
|
|
117056
117425
|
approvalStatus: MarketplaceConsoleVersionListingApprovalStatus;
|
|
117426
|
+
approvalStatusInProcessing?: Maybe<MarketplaceConsoleVersionListingApprovalStatus>;
|
|
117057
117427
|
reason?: Maybe<Scalars['String']['output']>;
|
|
117058
117428
|
};
|
|
117059
117429
|
export declare type MarketplaceConsoleVersionListingApprovalStatusError = MarketplaceConsoleError & {
|
|
@@ -122557,6 +122927,9 @@ export declare type Mutation = {
|
|
|
122557
122927
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
122558
122928
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
122559
122929
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
122930
|
+
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
122931
|
+
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
122932
|
+
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
122560
122933
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
122561
122934
|
appStorage?: Maybe<AppStorageMutation>;
|
|
122562
122935
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -123062,6 +123435,7 @@ export declare type Mutation = {
|
|
|
123062
123435
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
123063
123436
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
123064
123437
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
123438
|
+
jira_discardUserTimelineViewConfig?: Maybe<JiraDiscardUserTimelineViewConfigPayload>;
|
|
123065
123439
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
123066
123440
|
jira_dismissSuggestion?: Maybe<JiraDismissSuggestionPayload>;
|
|
123067
123441
|
jira_dismissSuggestionGroup?: Maybe<JiraDismissSuggestionGroupPayload>;
|
|
@@ -123121,6 +123495,7 @@ export declare type Mutation = {
|
|
|
123121
123495
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
123122
123496
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
123123
123497
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
123498
|
+
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
123124
123499
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
123125
123500
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
123126
123501
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -123339,6 +123714,7 @@ export declare type Mutation = {
|
|
|
123339
123714
|
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
123340
123715
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
123341
123716
|
spf_acceptProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
123717
|
+
spf_addPlanApprover?: Maybe<SpfUpsertPlanApproverPayload>;
|
|
123342
123718
|
spf_addPlanOwner?: Maybe<SpfUpsertPlanOwnerPayload>;
|
|
123343
123719
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
123344
123720
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -123355,6 +123731,7 @@ export declare type Mutation = {
|
|
|
123355
123731
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
123356
123732
|
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
123357
123733
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
123734
|
+
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
123358
123735
|
spf_removePlanOwner?: Maybe<SpfRemovePlanOwnerPayload>;
|
|
123359
123736
|
spf_updateAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
123360
123737
|
spf_updateAskDescription?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -123399,6 +123776,7 @@ export declare type Mutation = {
|
|
|
123399
123776
|
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
123400
123777
|
stakeholderComms_permanentlyDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123401
123778
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123779
|
+
stakeholderComms_recoverDeletedPage?: Maybe<StakeholderCommsPageRecoverResponse>;
|
|
123402
123780
|
stakeholderComms_recoverPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123403
123781
|
stakeholderComms_removeCustomDomain?: Maybe<StakeholderCommsRemoveCustomDomainResponse>;
|
|
123404
123782
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -123719,6 +124097,15 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
|
123719
124097
|
productType: AgentStudioProductType;
|
|
123720
124098
|
projectContainerAri: Scalars['ID']['input'];
|
|
123721
124099
|
};
|
|
124100
|
+
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
124101
|
+
input: AgentWorkspaceCreateScheduleInput;
|
|
124102
|
+
};
|
|
124103
|
+
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
124104
|
+
input: AgentWorkspaceDeleteScheduleInput;
|
|
124105
|
+
};
|
|
124106
|
+
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
124107
|
+
input: AgentWorkspaceUpdateScheduleInput;
|
|
124108
|
+
};
|
|
123722
124109
|
export declare type MutationAppStorage_AdminArgs = {
|
|
123723
124110
|
appId: Scalars['ID']['input'];
|
|
123724
124111
|
};
|
|
@@ -125518,6 +125905,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
125518
125905
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
125519
125906
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
125520
125907
|
};
|
|
125908
|
+
export declare type MutationJira_DiscardUserTimelineViewConfigArgs = {
|
|
125909
|
+
input: JiraDiscardUserTimelineViewConfigInput;
|
|
125910
|
+
};
|
|
125521
125911
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
125522
125912
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
125523
125913
|
};
|
|
@@ -125704,6 +126094,10 @@ export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
125704
126094
|
cloudId: Scalars['ID']['input'];
|
|
125705
126095
|
show: Scalars['Boolean']['input'];
|
|
125706
126096
|
};
|
|
126097
|
+
export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
126098
|
+
cloudId: Scalars['ID']['input'];
|
|
126099
|
+
input: JiraSetTimelineHighlightedReleasesInput;
|
|
126100
|
+
};
|
|
125707
126101
|
export declare type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
125708
126102
|
input: JiraSetTimelineViewRangeModeInput;
|
|
125709
126103
|
};
|
|
@@ -126384,6 +126778,9 @@ export declare type MutationSoftDeleteSpaceArgs = {
|
|
|
126384
126778
|
export declare type MutationSpf_AcceptProposedDateArgs = {
|
|
126385
126779
|
input: SpfResolveProposedDateInput;
|
|
126386
126780
|
};
|
|
126781
|
+
export declare type MutationSpf_AddPlanApproverArgs = {
|
|
126782
|
+
input: SpfAddPlanApproverInput;
|
|
126783
|
+
};
|
|
126387
126784
|
export declare type MutationSpf_AddPlanOwnerArgs = {
|
|
126388
126785
|
input: SpfAddPlanOwnerInput;
|
|
126389
126786
|
};
|
|
@@ -126432,6 +126829,9 @@ export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
|
126432
126829
|
export declare type MutationSpf_RejectProposedDateArgs = {
|
|
126433
126830
|
input: SpfResolveProposedDateInput;
|
|
126434
126831
|
};
|
|
126832
|
+
export declare type MutationSpf_RemovePlanApproverArgs = {
|
|
126833
|
+
input: SpfRemovePlanApproverInput;
|
|
126834
|
+
};
|
|
126435
126835
|
export declare type MutationSpf_RemovePlanOwnerArgs = {
|
|
126436
126836
|
input: SpfRemovePlanOwnerInput;
|
|
126437
126837
|
};
|
|
@@ -126569,6 +126969,9 @@ export declare type MutationStakeholderComms_PermanentlyDeletePageArgs = {
|
|
|
126569
126969
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
126570
126970
|
draftPageId: Scalars['String']['input'];
|
|
126571
126971
|
};
|
|
126972
|
+
export declare type MutationStakeholderComms_RecoverDeletedPageArgs = {
|
|
126973
|
+
pageId: Scalars['String']['input'];
|
|
126974
|
+
};
|
|
126572
126975
|
export declare type MutationStakeholderComms_RecoverPageArgs = {
|
|
126573
126976
|
pageId: Scalars['String']['input'];
|
|
126574
126977
|
};
|
|
@@ -129830,6 +130233,9 @@ export declare type Query = {
|
|
|
129830
130233
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
129831
130234
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
129832
130235
|
agentWorkspace_helloWorld?: Maybe<AgentWorkspaceHelloWorld>;
|
|
130236
|
+
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
130237
|
+
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
130238
|
+
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
129833
130239
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
129834
130240
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
129835
130241
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -130229,6 +130635,7 @@ export declare type Query = {
|
|
|
130229
130635
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
130230
130636
|
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
130231
130637
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
130638
|
+
devai_getSessionCommitMsg: Scalars['String']['output'];
|
|
130232
130639
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
130233
130640
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
130234
130641
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
@@ -130323,6 +130730,7 @@ export declare type Query = {
|
|
|
130323
130730
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
130324
130731
|
graphStore?: Maybe<GraphStore>;
|
|
130325
130732
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
130733
|
+
gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
|
|
130326
130734
|
group?: Maybe<Group>;
|
|
130327
130735
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
130328
130736
|
groupMembers?: Maybe<PaginatedPersonList>;
|
|
@@ -131235,6 +131643,16 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
131235
131643
|
export declare type QueryAgentWorkspace_HelloWorldArgs = {
|
|
131236
131644
|
userName: Scalars['String']['input'];
|
|
131237
131645
|
};
|
|
131646
|
+
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
131647
|
+
projectId: Scalars['ID']['input'];
|
|
131648
|
+
scheduleId: Scalars['ID']['input'];
|
|
131649
|
+
};
|
|
131650
|
+
export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
131651
|
+
projectId: Scalars['ID']['input'];
|
|
131652
|
+
};
|
|
131653
|
+
export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
131654
|
+
input: AgentWorkspaceShiftsQueryInput;
|
|
131655
|
+
};
|
|
131238
131656
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
131239
131657
|
projectAri: Scalars['ID']['input'];
|
|
131240
131658
|
};
|
|
@@ -131766,6 +132184,7 @@ export declare type QueryBlockService_BatchRetrieveBlocksArgs = {
|
|
|
131766
132184
|
};
|
|
131767
132185
|
export declare type QueryBlockService_GetBlockArgs = {
|
|
131768
132186
|
blockAri: Scalars['String']['input'];
|
|
132187
|
+
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
131769
132188
|
documentAri?: InputMaybe<Scalars['String']['input']>;
|
|
131770
132189
|
};
|
|
131771
132190
|
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
@@ -133130,6 +133549,10 @@ export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
|
133130
133549
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
133131
133550
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
133132
133551
|
};
|
|
133552
|
+
export declare type QueryDevai_GetSessionCommitMsgArgs = {
|
|
133553
|
+
codeChanges?: InputMaybe<Scalars['String']['input']>;
|
|
133554
|
+
sessionAri: Scalars['ID']['input'];
|
|
133555
|
+
};
|
|
133133
133556
|
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
133134
133557
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133135
133558
|
repoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133485,6 +133908,9 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
|
|
|
133485
133908
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133486
133909
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
133487
133910
|
};
|
|
133911
|
+
export declare type QueryGravity_JpdImportIdeasArgs = {
|
|
133912
|
+
input: JpdImportIdeasInput;
|
|
133913
|
+
};
|
|
133488
133914
|
export declare type QueryGroupArgs = {
|
|
133489
133915
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
133490
133916
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135343,7 +135769,7 @@ export declare type RadarCustomFieldInput = {
|
|
|
135343
135769
|
relativeId?: InputMaybe<Scalars['String']['input']>;
|
|
135344
135770
|
sensitivityLevel: RadarSensitivityLevel;
|
|
135345
135771
|
sourceField: Scalars['String']['input'];
|
|
135346
|
-
type:
|
|
135772
|
+
type: RadarCustomFieldType;
|
|
135347
135773
|
viewPrincipalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
135348
135774
|
};
|
|
135349
135775
|
export declare enum RadarCustomFieldSyncStatus {
|
|
@@ -135351,6 +135777,10 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
135351
135777
|
NotFound = "NOT_FOUND",
|
|
135352
135778
|
Pending = "PENDING"
|
|
135353
135779
|
}
|
|
135780
|
+
export declare enum RadarCustomFieldType {
|
|
135781
|
+
Date = "DATE",
|
|
135782
|
+
String = "STRING"
|
|
135783
|
+
}
|
|
135354
135784
|
export declare type RadarDateFieldValue = {
|
|
135355
135785
|
__typename?: 'RadarDateFieldValue';
|
|
135356
135786
|
dateValue?: Maybe<Scalars['Date']['output']>;
|
|
@@ -135452,9 +135882,10 @@ export declare enum RadarFieldType {
|
|
|
135452
135882
|
Number = "NUMBER",
|
|
135453
135883
|
Status = "STATUS",
|
|
135454
135884
|
String = "STRING",
|
|
135455
|
-
Url = "URL"
|
|
135885
|
+
Url = "URL",
|
|
135886
|
+
User = "USER"
|
|
135456
135887
|
}
|
|
135457
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
135888
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
|
|
135458
135889
|
export declare type RadarFieldValueIdPair = {
|
|
135459
135890
|
__typename?: 'RadarFieldValueIdPair';
|
|
135460
135891
|
fieldId: Scalars['ID']['output'];
|
|
@@ -135828,6 +136259,12 @@ export declare enum RadarUserFieldPermission {
|
|
|
135828
136259
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
135829
136260
|
PartialOnlySelf = "PartialOnlySelf"
|
|
135830
136261
|
}
|
|
136262
|
+
export declare type RadarUserFieldValue = {
|
|
136263
|
+
__typename?: 'RadarUserFieldValue';
|
|
136264
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
136265
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
136266
|
+
value?: Maybe<User>;
|
|
136267
|
+
};
|
|
135831
136268
|
export declare type RadarView = Node & {
|
|
135832
136269
|
__typename?: 'RadarView';
|
|
135833
136270
|
creator?: Maybe<User>;
|
|
@@ -135856,8 +136293,7 @@ export declare type RadarViewEdge = RadarEdge & {
|
|
|
135856
136293
|
node: RadarView;
|
|
135857
136294
|
};
|
|
135858
136295
|
export declare enum RadarViewPageName {
|
|
135859
|
-
TalentPositionsPage = "TALENT_POSITIONS_PAGE"
|
|
135860
|
-
TalentSubPositionsPage = "TALENT_SUB_POSITIONS_PAGE"
|
|
136296
|
+
TalentPositionsPage = "TALENT_POSITIONS_PAGE"
|
|
135861
136297
|
}
|
|
135862
136298
|
export declare type RadarViewPermissions = {
|
|
135863
136299
|
__typename?: 'RadarViewPermissions';
|
|
@@ -158008,6 +158444,7 @@ export declare type SmartFeaturesUserResultResponse = SmartFeaturesResultRespons
|
|
|
158008
158444
|
result?: Maybe<Array<Maybe<SmartFeaturesUserResult>>>;
|
|
158009
158445
|
};
|
|
158010
158446
|
export declare type SmartLink = {
|
|
158447
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
158011
158448
|
url: Scalars['String']['output'];
|
|
158012
158449
|
};
|
|
158013
158450
|
export declare type SmartLinkEdge = {
|
|
@@ -158908,6 +159345,10 @@ export declare type SpaceWithExemption = {
|
|
|
158908
159345
|
status?: Maybe<Scalars['String']['output']>;
|
|
158909
159346
|
type?: Maybe<Scalars['String']['output']>;
|
|
158910
159347
|
};
|
|
159348
|
+
export declare type SpfAddPlanApproverInput = {
|
|
159349
|
+
approverId: Scalars['String']['input'];
|
|
159350
|
+
planId: Scalars['ID']['input'];
|
|
159351
|
+
};
|
|
158911
159352
|
export declare type SpfAddPlanOwnerInput = {
|
|
158912
159353
|
ownerId: Scalars['String']['input'];
|
|
158913
159354
|
planId: Scalars['ID']['input'];
|
|
@@ -159362,6 +159803,7 @@ export declare enum SpfMediaTokenUsageType {
|
|
|
159362
159803
|
}
|
|
159363
159804
|
export declare type SpfPlan = Node & {
|
|
159364
159805
|
__typename?: 'SpfPlan';
|
|
159806
|
+
approvers?: Maybe<SpfPlanApproverConnection>;
|
|
159365
159807
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159366
159808
|
createdBy?: Maybe<User>;
|
|
159367
159809
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -159376,6 +159818,11 @@ export declare type SpfPlan = Node & {
|
|
|
159376
159818
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
159377
159819
|
updatedBy?: Maybe<User>;
|
|
159378
159820
|
};
|
|
159821
|
+
export declare type SpfPlanApproversArgs = {
|
|
159822
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
159823
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159824
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
159825
|
+
};
|
|
159379
159826
|
export declare type SpfPlanOwnersArgs = {
|
|
159380
159827
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
159381
159828
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -159386,6 +159833,17 @@ export declare type SpfPlanScenariosArgs = {
|
|
|
159386
159833
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
159387
159834
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
159388
159835
|
};
|
|
159836
|
+
export declare type SpfPlanApproverConnection = {
|
|
159837
|
+
__typename?: 'SpfPlanApproverConnection';
|
|
159838
|
+
edges?: Maybe<Array<Maybe<SpfPlanApproverEdge>>>;
|
|
159839
|
+
pageInfo: PageInfo;
|
|
159840
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
159841
|
+
};
|
|
159842
|
+
export declare type SpfPlanApproverEdge = {
|
|
159843
|
+
__typename?: 'SpfPlanApproverEdge';
|
|
159844
|
+
cursor: Scalars['String']['output'];
|
|
159845
|
+
node?: Maybe<User>;
|
|
159846
|
+
};
|
|
159389
159847
|
export declare type SpfPlanConnection = {
|
|
159390
159848
|
__typename?: 'SpfPlanConnection';
|
|
159391
159849
|
edges?: Maybe<Array<Maybe<SpfPlanEdge>>>;
|
|
@@ -159492,6 +159950,17 @@ export declare type SpfPlanTransition = {
|
|
|
159492
159950
|
status?: Maybe<SpfPlanStatus>;
|
|
159493
159951
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
159494
159952
|
};
|
|
159953
|
+
export declare type SpfRemovePlanApproverInput = {
|
|
159954
|
+
approverId: Scalars['String']['input'];
|
|
159955
|
+
planId: Scalars['ID']['input'];
|
|
159956
|
+
};
|
|
159957
|
+
export declare type SpfRemovePlanApproverPayload = Payload & {
|
|
159958
|
+
__typename?: 'SpfRemovePlanApproverPayload';
|
|
159959
|
+
approverId: Scalars['String']['output'];
|
|
159960
|
+
errors?: Maybe<Array<MutationError>>;
|
|
159961
|
+
planId: Scalars['ID']['output'];
|
|
159962
|
+
success: Scalars['Boolean']['output'];
|
|
159963
|
+
};
|
|
159495
159964
|
export declare type SpfRemovePlanOwnerInput = {
|
|
159496
159965
|
ownerId: Scalars['String']['input'];
|
|
159497
159966
|
planId: Scalars['ID']['input'];
|
|
@@ -159609,6 +160078,14 @@ export declare type SpfUpsertAskUpdatePayload = Payload & {
|
|
|
159609
160078
|
errors?: Maybe<Array<MutationError>>;
|
|
159610
160079
|
success: Scalars['Boolean']['output'];
|
|
159611
160080
|
};
|
|
160081
|
+
export declare type SpfUpsertPlanApproverPayload = Payload & {
|
|
160082
|
+
__typename?: 'SpfUpsertPlanApproverPayload';
|
|
160083
|
+
approverId: Scalars['String']['output'];
|
|
160084
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160085
|
+
planApprover?: Maybe<User>;
|
|
160086
|
+
planId: Scalars['ID']['output'];
|
|
160087
|
+
success: Scalars['Boolean']['output'];
|
|
160088
|
+
};
|
|
159612
160089
|
export declare type SpfUpsertPlanOwnerPayload = Payload & {
|
|
159613
160090
|
__typename?: 'SpfUpsertPlanOwnerPayload';
|
|
159614
160091
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -160504,6 +160981,11 @@ export declare type StakeholderCommsPageInfo = {
|
|
|
160504
160981
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
160505
160982
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
160506
160983
|
};
|
|
160984
|
+
export declare type StakeholderCommsPageRecoverResponse = {
|
|
160985
|
+
__typename?: 'StakeholderCommsPageRecoverResponse';
|
|
160986
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
160987
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
160988
|
+
};
|
|
160507
160989
|
export declare type StakeholderCommsPageResponse = {
|
|
160508
160990
|
__typename?: 'StakeholderCommsPageResponse';
|
|
160509
160991
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -161328,6 +161810,12 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
161328
161810
|
export declare type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
161329
161811
|
changeRequestId: Scalars['ID']['input'];
|
|
161330
161812
|
};
|
|
161813
|
+
export declare type SuggestedIdea = {
|
|
161814
|
+
__typename?: 'SuggestedIdea';
|
|
161815
|
+
description: Scalars['String']['output'];
|
|
161816
|
+
sourceReference: Scalars['String']['output'];
|
|
161817
|
+
title: Scalars['String']['output'];
|
|
161818
|
+
};
|
|
161331
161819
|
export declare enum SummaryType {
|
|
161332
161820
|
Blogpost = "BLOGPOST",
|
|
161333
161821
|
Page = "PAGE"
|
|
@@ -161940,9 +162428,13 @@ export declare type TeamCustomFieldInfo = {
|
|
|
161940
162428
|
description?: Maybe<Scalars['String']['output']>;
|
|
161941
162429
|
id: Scalars['ID']['output'];
|
|
161942
162430
|
name: Scalars['String']['output'];
|
|
161943
|
-
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
161944
162431
|
type: TeamCustomFieldType;
|
|
161945
162432
|
};
|
|
162433
|
+
export declare type TeamCustomFieldOption = {
|
|
162434
|
+
__typename?: 'TeamCustomFieldOption';
|
|
162435
|
+
id: Scalars['ID']['output'];
|
|
162436
|
+
value: Scalars['String']['output'];
|
|
162437
|
+
};
|
|
161946
162438
|
export declare enum TeamCustomFieldType {
|
|
161947
162439
|
Number = "NUMBER",
|
|
161948
162440
|
Selector = "SELECTOR",
|
|
@@ -161960,6 +162452,15 @@ export declare type TeamDeleteTeamInput = {
|
|
|
161960
162452
|
scopeId: Scalars['ID']['input'];
|
|
161961
162453
|
teamId: Scalars['ID']['input'];
|
|
161962
162454
|
};
|
|
162455
|
+
export declare type TeamDetailedCustomFieldInfo = {
|
|
162456
|
+
__typename?: 'TeamDetailedCustomFieldInfo';
|
|
162457
|
+
cardinality: TeamCustomFieldCardinality;
|
|
162458
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
162459
|
+
id: Scalars['ID']['output'];
|
|
162460
|
+
name: Scalars['String']['output'];
|
|
162461
|
+
options?: Maybe<Array<TeamCustomFieldOption>>;
|
|
162462
|
+
type: TeamCustomFieldType;
|
|
162463
|
+
};
|
|
161963
162464
|
export declare type TeamHierarchy = {
|
|
161964
162465
|
__typename?: 'TeamHierarchy';
|
|
161965
162466
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -162040,7 +162541,7 @@ export declare type TeamMutation = {
|
|
|
162040
162541
|
addParent?: Maybe<TeamV2>;
|
|
162041
162542
|
assignTeamToType?: Maybe<TeamV2>;
|
|
162042
162543
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
162043
|
-
createCustomField?: Maybe<
|
|
162544
|
+
createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
162044
162545
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
162045
162546
|
createTeamType?: Maybe<TeamType>;
|
|
162046
162547
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -162157,6 +162658,7 @@ export declare type TeamPrincipalEdge = {
|
|
|
162157
162658
|
};
|
|
162158
162659
|
export declare type TeamQuery = {
|
|
162159
162660
|
__typename?: 'TeamQuery';
|
|
162661
|
+
customField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
162160
162662
|
customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
|
|
162161
162663
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
162162
162664
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
@@ -162169,6 +162671,9 @@ export declare type TeamQuery = {
|
|
|
162169
162671
|
typeInformation?: Maybe<TeamType>;
|
|
162170
162672
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
162171
162673
|
};
|
|
162674
|
+
export declare type TeamQueryCustomFieldArgs = {
|
|
162675
|
+
id: Scalars['ID']['input'];
|
|
162676
|
+
};
|
|
162172
162677
|
export declare type TeamQueryCustomFieldsWithinScopeArgs = {
|
|
162173
162678
|
scopeId: Scalars['ID']['input'];
|
|
162174
162679
|
};
|
|
@@ -162975,6 +163480,24 @@ export declare enum TownsquareAccessControlCapability {
|
|
|
162975
163480
|
Create = "CREATE"
|
|
162976
163481
|
}
|
|
162977
163482
|
export declare type TownsquareAccessPrincipal = AppUser | AtlassianAccountUser | CustomerUser;
|
|
163483
|
+
export declare type TownsquareActivityChange = TownsquareGoalCreatedChange;
|
|
163484
|
+
export declare type TownsquareActivityItem = {
|
|
163485
|
+
__typename?: 'TownsquareActivityItem';
|
|
163486
|
+
actor?: Maybe<User>;
|
|
163487
|
+
change?: Maybe<TownsquareActivityChange>;
|
|
163488
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163489
|
+
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
163490
|
+
};
|
|
163491
|
+
export declare type TownsquareActivityItemConnection = {
|
|
163492
|
+
__typename?: 'TownsquareActivityItemConnection';
|
|
163493
|
+
edges?: Maybe<Array<Maybe<TownsquareActivityItemEdge>>>;
|
|
163494
|
+
pageInfo: PageInfo;
|
|
163495
|
+
};
|
|
163496
|
+
export declare type TownsquareActivityItemEdge = {
|
|
163497
|
+
__typename?: 'TownsquareActivityItemEdge';
|
|
163498
|
+
cursor: Scalars['String']['output'];
|
|
163499
|
+
node?: Maybe<TownsquareActivityItem>;
|
|
163500
|
+
};
|
|
162978
163501
|
export declare type TownsquareAddProjectLinkInput = {
|
|
162979
163502
|
goalId: Scalars['ID']['input'];
|
|
162980
163503
|
projectId: Scalars['ID']['input'];
|
|
@@ -163352,6 +163875,7 @@ export declare type TownsquareFusionDetails = {
|
|
|
163352
163875
|
export declare type TownsquareGoal = Node & {
|
|
163353
163876
|
__typename?: 'TownsquareGoal';
|
|
163354
163877
|
access?: Maybe<TownsquareGoalAccessConnection>;
|
|
163878
|
+
activityItems?: Maybe<TownsquareActivityItemConnection>;
|
|
163355
163879
|
archived: Scalars['Boolean']['output'];
|
|
163356
163880
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
163357
163881
|
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -163403,6 +163927,10 @@ export declare type TownsquareGoalAccessArgs = {
|
|
|
163403
163927
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163404
163928
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163405
163929
|
};
|
|
163930
|
+
export declare type TownsquareGoalActivityItemsArgs = {
|
|
163931
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
163932
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
163933
|
+
};
|
|
163406
163934
|
export declare type TownsquareGoalCommentsArgs = {
|
|
163407
163935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163408
163936
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -163568,6 +164096,10 @@ export declare type TownsquareGoalCreateMetricInput = {
|
|
|
163568
164096
|
type: TownsquareMetricType;
|
|
163569
164097
|
value: Scalars['Float']['input'];
|
|
163570
164098
|
};
|
|
164099
|
+
export declare type TownsquareGoalCreatedChange = {
|
|
164100
|
+
__typename?: 'TownsquareGoalCreatedChange';
|
|
164101
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
164102
|
+
};
|
|
163571
164103
|
export declare type TownsquareGoalEdge = {
|
|
163572
164104
|
__typename?: 'TownsquareGoalEdge';
|
|
163573
164105
|
cursor: Scalars['String']['output'];
|
|
@@ -168110,6 +168642,7 @@ export declare type TrelloInboxQuickCaptureCard = {
|
|
|
168110
168642
|
card?: Maybe<TrelloCard>;
|
|
168111
168643
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
168112
168644
|
member?: Maybe<TrelloMember>;
|
|
168645
|
+
notificationId?: Maybe<Scalars['ID']['output']>;
|
|
168113
168646
|
source?: Maybe<TrelloCardExternalSource>;
|
|
168114
168647
|
};
|
|
168115
168648
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
@@ -169009,7 +169542,9 @@ export declare type TrelloPlannerCalendarAccountEdgeUpdated = {
|
|
|
169009
169542
|
export declare type TrelloPlannerCalendarAccountUpdated = {
|
|
169010
169543
|
__typename?: 'TrelloPlannerCalendarAccountUpdated';
|
|
169011
169544
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
169545
|
+
hasRequiredScopes?: Maybe<Scalars['Boolean']['output']>;
|
|
169012
169546
|
id: Scalars['ID']['output'];
|
|
169547
|
+
isExpired?: Maybe<Scalars['Boolean']['output']>;
|
|
169013
169548
|
onPlannerCalendarDeleted?: Maybe<Array<TrelloPlannerCalendarDeleted>>;
|
|
169014
169549
|
onProviderCalendarDeleted?: Maybe<Array<TrelloProviderCalendarDeleted>>;
|
|
169015
169550
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnectionUpdated>;
|
|
@@ -169218,6 +169753,11 @@ export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount
|
|
|
169218
169753
|
export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
|
|
169219
169754
|
updateCursor?: InputMaybe<Scalars['String']['input']>;
|
|
169220
169755
|
};
|
|
169756
|
+
export declare type TrelloPlannerCalendarStatus = {
|
|
169757
|
+
__typename?: 'TrelloPlannerCalendarStatus';
|
|
169758
|
+
failed: Array<Scalars['ID']['output']>;
|
|
169759
|
+
succeeded: Array<Scalars['ID']['output']>;
|
|
169760
|
+
};
|
|
169221
169761
|
export declare type TrelloPlannerCalendarUpdated = {
|
|
169222
169762
|
__typename?: 'TrelloPlannerCalendarUpdated';
|
|
169223
169763
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
@@ -169256,6 +169796,7 @@ export declare type TrelloPlannerCardUpdated = {
|
|
|
169256
169796
|
};
|
|
169257
169797
|
export declare type TrelloPlannerEventCardConnection = {
|
|
169258
169798
|
__typename?: 'TrelloPlannerEventCardConnection';
|
|
169799
|
+
calendarStatus: TrelloPlannerCalendarStatus;
|
|
169259
169800
|
edges: Array<TrelloPlannerEventCardEdge>;
|
|
169260
169801
|
pageInfo: PageInfo;
|
|
169261
169802
|
};
|
|
@@ -169271,6 +169812,7 @@ export declare type TrelloPlannerEventCardEdge = {
|
|
|
169271
169812
|
};
|
|
169272
169813
|
export declare type TrelloPlannerEventConnection = {
|
|
169273
169814
|
__typename?: 'TrelloPlannerEventConnection';
|
|
169815
|
+
calendarStatus?: Maybe<TrelloPlannerCalendarStatus>;
|
|
169274
169816
|
edges: Array<TrelloPlannerEventEdge>;
|
|
169275
169817
|
pageInfo: PageInfo;
|
|
169276
169818
|
};
|
|
@@ -169680,7 +170222,7 @@ export declare type TrelloQuickCaptureNotification = {
|
|
|
169680
170222
|
};
|
|
169681
170223
|
export declare type TrelloQuickCaptureNotificationCleared = {
|
|
169682
170224
|
__typename?: 'TrelloQuickCaptureNotificationCleared';
|
|
169683
|
-
id
|
|
170225
|
+
id: Scalars['ID']['output'];
|
|
169684
170226
|
};
|
|
169685
170227
|
export declare type TrelloReaction = {
|
|
169686
170228
|
__typename?: 'TrelloReaction';
|
|
@@ -170421,6 +170963,7 @@ export declare type TrelloWorkspace = Node & {
|
|
|
170421
170963
|
name?: Maybe<Scalars['String']['output']>;
|
|
170422
170964
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
170423
170965
|
offering?: Maybe<Scalars['String']['output']>;
|
|
170966
|
+
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
170424
170967
|
prefs?: Maybe<TrelloWorkspacePrefs>;
|
|
170425
170968
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
170426
170969
|
products?: Maybe<Array<Scalars['Float']['output']>>;
|
|
@@ -170432,6 +170975,11 @@ export declare type TrelloWorkspaceMembersArgs = {
|
|
|
170432
170975
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170433
170976
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170434
170977
|
};
|
|
170978
|
+
export declare type TrelloWorkspacePowerUpDataArgs = {
|
|
170979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170980
|
+
filter?: InputMaybe<TrelloPowerUpDataFilterInput>;
|
|
170981
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170982
|
+
};
|
|
170435
170983
|
export declare type TrelloWorkspaceTagsArgs = {
|
|
170436
170984
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
170437
170985
|
first?: InputMaybe<Scalars['Int']['input']>;
|