@forge/cli-shared 8.15.0-next.4 → 8.15.0
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 +25 -0
- package/out/graphql/graphql-types.d.ts +443 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +90 -33
- package/package.json +2 -2
|
@@ -4032,10 +4032,200 @@ export declare type AgentStudioWidgets = {
|
|
|
4032
4032
|
widgets?: Maybe<Array<AgentStudioWidget>>;
|
|
4033
4033
|
};
|
|
4034
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
|
+
};
|
|
4035
4090
|
export declare type AgentWorkspaceHelloWorld = {
|
|
4036
4091
|
__typename?: 'AgentWorkspaceHelloWorld';
|
|
4037
4092
|
value: Scalars['String']['output'];
|
|
4038
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
|
+
};
|
|
4039
4229
|
export declare enum AiCoreApiQuestionType {
|
|
4040
4230
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
4041
4231
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -4329,6 +4519,7 @@ export declare type AppContainer = {
|
|
|
4329
4519
|
export declare type AppContainerImagesArgs = {
|
|
4330
4520
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4331
4521
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4522
|
+
imageTag?: InputMaybe<Scalars['String']['input']>;
|
|
4332
4523
|
};
|
|
4333
4524
|
export declare type AppContainerImage = {
|
|
4334
4525
|
__typename?: 'AppContainerImage';
|
|
@@ -4700,7 +4891,7 @@ export declare type AppInstallation = {
|
|
|
4700
4891
|
app?: Maybe<App>;
|
|
4701
4892
|
appEnvironment?: Maybe<AppEnvironment>;
|
|
4702
4893
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
4703
|
-
|
|
4894
|
+
computeVersion?: Maybe<AppEnvironmentVersion>;
|
|
4704
4895
|
config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
4705
4896
|
createdAt: Scalars['DateTime']['output'];
|
|
4706
4897
|
createdBy?: Maybe<User>;
|
|
@@ -4935,6 +5126,12 @@ export declare type AppLogLines = {
|
|
|
4935
5126
|
nodes?: Maybe<Array<Maybe<AppLogLine>>>;
|
|
4936
5127
|
pageInfo: PageInfo;
|
|
4937
5128
|
};
|
|
5129
|
+
export declare type AppLogsFilterBuckets = {
|
|
5130
|
+
__typename?: 'AppLogsFilterBuckets';
|
|
5131
|
+
containers: Array<BucketField>;
|
|
5132
|
+
functionKeys: Array<BucketField>;
|
|
5133
|
+
services: Array<BucketField>;
|
|
5134
|
+
};
|
|
4938
5135
|
export declare type AppLogsWithMetaData = {
|
|
4939
5136
|
__typename?: 'AppLogsWithMetaData';
|
|
4940
5137
|
appId: Scalars['String']['output'];
|
|
@@ -4964,6 +5161,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
4964
5161
|
export declare type AppLogsWithMetaDataResponse = {
|
|
4965
5162
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
4966
5163
|
appLogs: Array<AppLogsWithMetaData>;
|
|
5164
|
+
appLogsFilterBuckets?: Maybe<AppLogsFilterBuckets>;
|
|
4967
5165
|
hasNextPage: Scalars['Boolean']['output'];
|
|
4968
5166
|
offset?: Maybe<Scalars['Int']['output']>;
|
|
4969
5167
|
totalLogs: Scalars['Int']['output'];
|
|
@@ -8540,6 +8738,10 @@ export declare type BlockServiceBlockIdentifierInput = {
|
|
|
8540
8738
|
blockAri: Scalars['String']['input'];
|
|
8541
8739
|
blockInstanceId?: InputMaybe<Scalars['String']['input']>;
|
|
8542
8740
|
};
|
|
8741
|
+
export declare type BlockServiceBlockNodeInput = {
|
|
8742
|
+
blockAri: Scalars['String']['input'];
|
|
8743
|
+
blockInstanceId: Scalars['String']['input'];
|
|
8744
|
+
};
|
|
8543
8745
|
export declare type BlockServiceBlockPayload = {
|
|
8544
8746
|
__typename?: 'BlockServiceBlockPayload';
|
|
8545
8747
|
blockAri: Scalars['String']['output'];
|
|
@@ -8582,13 +8784,39 @@ export declare type BlockServiceDocumentReferenceBlocksPayload = {
|
|
|
8582
8784
|
blocks: Array<BlockServiceBlockPayload>;
|
|
8583
8785
|
errors?: Maybe<Array<BlockServiceBlockErrorPayload>>;
|
|
8584
8786
|
};
|
|
8787
|
+
export declare type BlockServiceGetReferencesPayload = {
|
|
8788
|
+
__typename?: 'BlockServiceGetReferencesPayload';
|
|
8789
|
+
errors: Array<BlockServiceReferenceError>;
|
|
8790
|
+
references: Array<BlockServiceReference>;
|
|
8791
|
+
};
|
|
8792
|
+
export declare type BlockServiceReference = {
|
|
8793
|
+
__typename?: 'BlockServiceReference';
|
|
8794
|
+
blockAri: Scalars['String']['output'];
|
|
8795
|
+
blockInstanceId: Scalars['String']['output'];
|
|
8796
|
+
createdAt: Scalars['String']['output'];
|
|
8797
|
+
createdBy: Scalars['String']['output'];
|
|
8798
|
+
documentAri: Scalars['String']['output'];
|
|
8799
|
+
};
|
|
8800
|
+
export declare type BlockServiceReferenceError = {
|
|
8801
|
+
__typename?: 'BlockServiceReferenceError';
|
|
8802
|
+
blockAri: Scalars['String']['output'];
|
|
8803
|
+
code: Scalars['String']['output'];
|
|
8804
|
+
documentAri: Scalars['String']['output'];
|
|
8805
|
+
reason: Scalars['String']['output'];
|
|
8806
|
+
};
|
|
8585
8807
|
export declare type BlockServiceUpdateBlockInput = {
|
|
8586
8808
|
blockAri: Scalars['String']['input'];
|
|
8587
8809
|
content: Scalars['String']['input'];
|
|
8588
8810
|
stepVersion?: InputMaybe<Scalars['Float']['input']>;
|
|
8589
8811
|
};
|
|
8812
|
+
export declare type BlockServiceUpdateDocumentReferencesInput = {
|
|
8813
|
+
blocks: Array<BlockServiceBlockNodeInput>;
|
|
8814
|
+
documentAri: Scalars['String']['input'];
|
|
8815
|
+
noContent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8816
|
+
};
|
|
8590
8817
|
export declare type BlockSmartLink = SmartLink & {
|
|
8591
8818
|
__typename?: 'BlockSmartLink';
|
|
8819
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
8592
8820
|
url: Scalars['String']['output'];
|
|
8593
8821
|
};
|
|
8594
8822
|
export declare type BlockedAccessEmpowerment = {
|
|
@@ -8800,6 +9028,11 @@ export declare type Breadcrumb = {
|
|
|
8800
9028
|
separator?: Maybe<Scalars['String']['output']>;
|
|
8801
9029
|
url?: Maybe<Scalars['String']['output']>;
|
|
8802
9030
|
};
|
|
9031
|
+
export declare type BucketField = {
|
|
9032
|
+
__typename?: 'BucketField';
|
|
9033
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9034
|
+
key: Scalars['String']['output'];
|
|
9035
|
+
};
|
|
8803
9036
|
export declare type Build = {
|
|
8804
9037
|
__typename?: 'Build';
|
|
8805
9038
|
appId: Scalars['ID']['output'];
|
|
@@ -30044,6 +30277,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
|
|
|
30044
30277
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
30045
30278
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
30046
30279
|
repository: DevAiRovoDevRepositoryInput;
|
|
30280
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
30047
30281
|
workspaceAri: Scalars['ID']['input'];
|
|
30048
30282
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
30049
30283
|
};
|
|
@@ -30085,6 +30319,7 @@ export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
|
30085
30319
|
}
|
|
30086
30320
|
export declare type DevAiRovoDevRepository = {
|
|
30087
30321
|
__typename?: 'DevAiRovoDevRepository';
|
|
30322
|
+
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
30088
30323
|
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
30089
30324
|
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
30090
30325
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -32759,6 +32994,7 @@ export declare type EmbeddedMediaTokenV2 = {
|
|
|
32759
32994
|
export declare type EmbeddedSmartLink = SmartLink & {
|
|
32760
32995
|
__typename?: 'EmbeddedSmartLink';
|
|
32761
32996
|
layout: Scalars['String']['output'];
|
|
32997
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
32762
32998
|
url: Scalars['String']['output'];
|
|
32763
32999
|
width: Scalars['Float']['output'];
|
|
32764
33000
|
};
|
|
@@ -37320,8 +37556,21 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
|
|
|
37320
37556
|
errors?: Maybe<Array<MutationError>>;
|
|
37321
37557
|
success: Scalars['Boolean']['output'];
|
|
37322
37558
|
};
|
|
37559
|
+
export declare enum GraphIntegrationSkillColor {
|
|
37560
|
+
Blue = "BLUE",
|
|
37561
|
+
Default = "DEFAULT",
|
|
37562
|
+
Gray = "GRAY",
|
|
37563
|
+
Green = "GREEN",
|
|
37564
|
+
Lime = "LIME",
|
|
37565
|
+
Magenta = "MAGENTA",
|
|
37566
|
+
Purple = "PURPLE",
|
|
37567
|
+
Red = "RED",
|
|
37568
|
+
Teal = "TEAL",
|
|
37569
|
+
Yellow = "YELLOW"
|
|
37570
|
+
}
|
|
37323
37571
|
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
37324
37572
|
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
37573
|
+
color?: Maybe<GraphIntegrationSkillColor>;
|
|
37325
37574
|
description?: Maybe<Scalars['String']['output']>;
|
|
37326
37575
|
displayName: Scalars['String']['output'];
|
|
37327
37576
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -53316,7 +53565,7 @@ export declare type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
|
53316
53565
|
data?: Maybe<GraphStoreFullProjectDocumentationEntityEndUnion>;
|
|
53317
53566
|
id: Scalars['ID']['output'];
|
|
53318
53567
|
};
|
|
53319
|
-
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
53568
|
+
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
53320
53569
|
export declare type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
53321
53570
|
__typename?: 'GraphStoreFullProjectDocumentationEntityNode';
|
|
53322
53571
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -60975,7 +61224,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
60975
61224
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
60976
61225
|
};
|
|
60977
61226
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseUnion = JiraProject;
|
|
60978
|
-
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
61227
|
+
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
60979
61228
|
export declare type GraphStoreSimplifiedProjectDocumentationPageConnection = HasPageInfo & HasTotal & {
|
|
60980
61229
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageConnection';
|
|
60981
61230
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationPageEdge>>>;
|
|
@@ -82049,7 +82298,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseEdg
|
|
|
82049
82298
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseUnion>;
|
|
82050
82299
|
};
|
|
82051
82300
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseUnion = JiraProject;
|
|
82052
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
82301
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
82053
82302
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityConnection = HasPageInfo & {
|
|
82054
82303
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksEntityConnection';
|
|
82055
82304
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityEdge>>>;
|
|
@@ -87932,6 +88181,7 @@ export declare type InlineCommentResolveProperties = {
|
|
|
87932
88181
|
};
|
|
87933
88182
|
export declare type InlineSmartLink = SmartLink & {
|
|
87934
88183
|
__typename?: 'InlineSmartLink';
|
|
88184
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
87935
88185
|
url: Scalars['String']['output'];
|
|
87936
88186
|
};
|
|
87937
88187
|
export declare type InlineTask = {
|
|
@@ -93907,6 +94157,14 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
93907
94157
|
success: Scalars['Boolean']['output'];
|
|
93908
94158
|
view?: Maybe<JiraView>;
|
|
93909
94159
|
};
|
|
94160
|
+
export declare type JiraDiscardUserTimelineViewConfigInput = {
|
|
94161
|
+
viewId: Scalars['ID']['input'];
|
|
94162
|
+
};
|
|
94163
|
+
export declare type JiraDiscardUserTimelineViewConfigPayload = Payload & {
|
|
94164
|
+
__typename?: 'JiraDiscardUserTimelineViewConfigPayload';
|
|
94165
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94166
|
+
success: Scalars['Boolean']['output'];
|
|
94167
|
+
};
|
|
93910
94168
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
93911
94169
|
viewId: Scalars['ID']['input'];
|
|
93912
94170
|
};
|
|
@@ -96001,6 +96259,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
96001
96259
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
96002
96260
|
fieldsForView?: Maybe<JiraIssueFieldConnection>;
|
|
96003
96261
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
96262
|
+
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
96263
|
+
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
96004
96264
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
96005
96265
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
96006
96266
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -96070,6 +96330,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
96070
96330
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
96071
96331
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
96072
96332
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
96333
|
+
securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
96073
96334
|
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
96074
96335
|
smartSummary?: Maybe<JiraAdf>;
|
|
96075
96336
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
@@ -96254,6 +96515,12 @@ export declare type JiraIssueFieldsForViewArgs = {
|
|
|
96254
96515
|
export declare type JiraIssueGetConsolidatedResourcesArgs = {
|
|
96255
96516
|
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
96256
96517
|
};
|
|
96518
|
+
export declare type JiraIssueGetConsolidatedResourcesTotalCountArgs = {
|
|
96519
|
+
input?: InputMaybe<JiraResourcesTotalCountInput>;
|
|
96520
|
+
};
|
|
96521
|
+
export declare type JiraIssueGetUnhydratedConsolidatedResourcesArgs = {
|
|
96522
|
+
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
96523
|
+
};
|
|
96257
96524
|
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
96258
96525
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96259
96526
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96350,6 +96617,10 @@ export declare type JiraIssueSearchViewContextArgs = {
|
|
|
96350
96617
|
issueSearchInput: JiraIssueSearchInput;
|
|
96351
96618
|
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
96352
96619
|
};
|
|
96620
|
+
export declare type JiraIssueSecurityVulnerabilityRelationshipsArgs = {
|
|
96621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96622
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96623
|
+
};
|
|
96353
96624
|
export declare type JiraIssueStartDateViewFieldArgs = {
|
|
96354
96625
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
96355
96626
|
};
|
|
@@ -97903,7 +98174,9 @@ export declare type JiraIssueSearchStatus = {
|
|
|
97903
98174
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
97904
98175
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
97905
98176
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
98177
|
+
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
97906
98178
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
98179
|
+
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
97907
98180
|
};
|
|
97908
98181
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
97909
98182
|
__typename?: 'JiraIssueSearchView';
|
|
@@ -102686,6 +102959,7 @@ export declare type JiraProject = Node & {
|
|
|
102686
102959
|
goals?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
102687
102960
|
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
102688
102961
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
102962
|
+
hasSecurityVulnerabilityRelationship?: Maybe<Scalars['Boolean']['output']>;
|
|
102689
102963
|
id: Scalars['ID']['output'];
|
|
102690
102964
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
102691
102965
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105799,6 +106073,9 @@ export declare enum JiraResourcesSortDirection {
|
|
|
105799
106073
|
Asc = "ASC",
|
|
105800
106074
|
Desc = "DESC"
|
|
105801
106075
|
}
|
|
106076
|
+
export declare type JiraResourcesTotalCountInput = {
|
|
106077
|
+
integration?: InputMaybe<Array<InputMaybe<JiraResourceIntegration>>>;
|
|
106078
|
+
};
|
|
105802
106079
|
export declare type JiraRestoreCustomFieldsInput = {
|
|
105803
106080
|
fieldIds: Array<Scalars['String']['input']>;
|
|
105804
106081
|
};
|
|
@@ -107650,6 +107927,15 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
107650
107927
|
errors?: Maybe<Array<MutationError>>;
|
|
107651
107928
|
success: Scalars['Boolean']['output'];
|
|
107652
107929
|
};
|
|
107930
|
+
export declare type JiraSetTimelineHighlightedReleasesInput = {
|
|
107931
|
+
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
107932
|
+
viewId: Scalars['ID']['input'];
|
|
107933
|
+
};
|
|
107934
|
+
export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
107935
|
+
__typename?: 'JiraSetTimelineHighlightedReleasesPayload';
|
|
107936
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107937
|
+
success: Scalars['Boolean']['output'];
|
|
107938
|
+
};
|
|
107653
107939
|
export declare type JiraSetTimelineViewRangeModeInput = {
|
|
107654
107940
|
rangeMode: JiraTimelineViewRangeMode;
|
|
107655
107941
|
viewId: Scalars['ID']['input'];
|
|
@@ -111475,6 +111761,28 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
111475
111761
|
export declare type JiraWorklogSortInput = {
|
|
111476
111762
|
order: SortDirection;
|
|
111477
111763
|
};
|
|
111764
|
+
export declare type JpdImportIdeasInput = {
|
|
111765
|
+
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
111766
|
+
jpdProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
111767
|
+
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
111768
|
+
sourceType: JpdImportSourceType;
|
|
111769
|
+
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
111770
|
+
};
|
|
111771
|
+
export declare type JpdImportIdeasPayload = {
|
|
111772
|
+
__typename?: 'JpdImportIdeasPayload';
|
|
111773
|
+
metadata: JpdImportMetadata;
|
|
111774
|
+
suggestedIdeas: Array<SuggestedIdea>;
|
|
111775
|
+
};
|
|
111776
|
+
export declare type JpdImportMetadata = {
|
|
111777
|
+
__typename?: 'JpdImportMetadata';
|
|
111778
|
+
aiGatewayTimeTakenInMs: Scalars['Int']['output'];
|
|
111779
|
+
itemsProcessed: Scalars['Int']['output'];
|
|
111780
|
+
sourceType: Scalars['String']['output'];
|
|
111781
|
+
};
|
|
111782
|
+
export declare enum JpdImportSourceType {
|
|
111783
|
+
Csv = "CSV",
|
|
111784
|
+
Text = "TEXT"
|
|
111785
|
+
}
|
|
111478
111786
|
export declare type JpdInsightDeletedEvent = {
|
|
111479
111787
|
__typename?: 'JpdInsightDeletedEvent';
|
|
111480
111788
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -116715,14 +117023,18 @@ export declare type MarketplaceConsoleProductListingAdditionalChecksInput = {
|
|
|
116715
117023
|
serverAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
116716
117024
|
};
|
|
116717
117025
|
export declare enum MarketplaceConsoleProductListingApprovalStatus {
|
|
117026
|
+
Archived = "ARCHIVED",
|
|
117027
|
+
Notassigned = "NOTASSIGNED",
|
|
116718
117028
|
Private = "PRIVATE",
|
|
116719
117029
|
Public = "PUBLIC",
|
|
117030
|
+
Readytolaunch = "READYTOLAUNCH",
|
|
116720
117031
|
Rejected = "REJECTED",
|
|
116721
117032
|
Submitted = "SUBMITTED"
|
|
116722
117033
|
}
|
|
116723
117034
|
export declare type MarketplaceConsoleProductListingApprovalStatusDetail = {
|
|
116724
117035
|
__typename?: 'MarketplaceConsoleProductListingApprovalStatusDetail';
|
|
116725
117036
|
approvalStatus: MarketplaceConsoleProductListingApprovalStatus;
|
|
117037
|
+
approvalStatusInProcessing?: Maybe<MarketplaceConsoleProductListingApprovalStatus>;
|
|
116726
117038
|
reason?: Maybe<Scalars['String']['output']>;
|
|
116727
117039
|
};
|
|
116728
117040
|
export declare type MarketplaceConsoleProductListingApprovalStatusError = MarketplaceConsoleError & {
|
|
@@ -117140,6 +117452,7 @@ export declare enum MarketplaceConsoleVersionListingApprovalStatus {
|
|
|
117140
117452
|
export declare type MarketplaceConsoleVersionListingApprovalStatusDetail = {
|
|
117141
117453
|
__typename?: 'MarketplaceConsoleVersionListingApprovalStatusDetail';
|
|
117142
117454
|
approvalStatus: MarketplaceConsoleVersionListingApprovalStatus;
|
|
117455
|
+
approvalStatusInProcessing?: Maybe<MarketplaceConsoleVersionListingApprovalStatus>;
|
|
117143
117456
|
reason?: Maybe<Scalars['String']['output']>;
|
|
117144
117457
|
};
|
|
117145
117458
|
export declare type MarketplaceConsoleVersionListingApprovalStatusError = MarketplaceConsoleError & {
|
|
@@ -122643,6 +122956,9 @@ export declare type Mutation = {
|
|
|
122643
122956
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
122644
122957
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
122645
122958
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
122959
|
+
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
122960
|
+
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
122961
|
+
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
122646
122962
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
122647
122963
|
appStorage?: Maybe<AppStorageMutation>;
|
|
122648
122964
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -122736,6 +123052,7 @@ export declare type Mutation = {
|
|
|
122736
123052
|
blockService_createBlock?: Maybe<BlockServiceBlockPayload>;
|
|
122737
123053
|
blockService_deleteBlock?: Maybe<BlockServiceDeleteBlockPayload>;
|
|
122738
123054
|
blockService_updateBlock?: Maybe<BlockServiceBlockPayload>;
|
|
123055
|
+
blockService_updateDocumentReferences?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
|
|
122739
123056
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
122740
123057
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
122741
123058
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -123148,6 +123465,7 @@ export declare type Mutation = {
|
|
|
123148
123465
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
123149
123466
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
123150
123467
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
123468
|
+
jira_discardUserTimelineViewConfig?: Maybe<JiraDiscardUserTimelineViewConfigPayload>;
|
|
123151
123469
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
123152
123470
|
jira_dismissSuggestion?: Maybe<JiraDismissSuggestionPayload>;
|
|
123153
123471
|
jira_dismissSuggestionGroup?: Maybe<JiraDismissSuggestionGroupPayload>;
|
|
@@ -123207,6 +123525,7 @@ export declare type Mutation = {
|
|
|
123207
123525
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
123208
123526
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
123209
123527
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
123528
|
+
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
123210
123529
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
123211
123530
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
123212
123531
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -123487,6 +123806,7 @@ export declare type Mutation = {
|
|
|
123487
123806
|
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
123488
123807
|
stakeholderComms_permanentlyDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123489
123808
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123809
|
+
stakeholderComms_recoverDeletedPage?: Maybe<StakeholderCommsPageRecoverResponse>;
|
|
123490
123810
|
stakeholderComms_recoverPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123491
123811
|
stakeholderComms_removeCustomDomain?: Maybe<StakeholderCommsRemoveCustomDomainResponse>;
|
|
123492
123812
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -123807,6 +124127,15 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
|
123807
124127
|
productType: AgentStudioProductType;
|
|
123808
124128
|
projectContainerAri: Scalars['ID']['input'];
|
|
123809
124129
|
};
|
|
124130
|
+
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
124131
|
+
input: AgentWorkspaceCreateScheduleInput;
|
|
124132
|
+
};
|
|
124133
|
+
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
124134
|
+
input: AgentWorkspaceDeleteScheduleInput;
|
|
124135
|
+
};
|
|
124136
|
+
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
124137
|
+
input: AgentWorkspaceUpdateScheduleInput;
|
|
124138
|
+
};
|
|
123810
124139
|
export declare type MutationAppStorage_AdminArgs = {
|
|
123811
124140
|
appId: Scalars['ID']['input'];
|
|
123812
124141
|
};
|
|
@@ -124186,6 +124515,9 @@ export declare type MutationBlockService_DeleteBlockArgs = {
|
|
|
124186
124515
|
export declare type MutationBlockService_UpdateBlockArgs = {
|
|
124187
124516
|
input: BlockServiceUpdateBlockInput;
|
|
124188
124517
|
};
|
|
124518
|
+
export declare type MutationBlockService_UpdateDocumentReferencesArgs = {
|
|
124519
|
+
input: BlockServiceUpdateDocumentReferencesInput;
|
|
124520
|
+
};
|
|
124189
124521
|
export declare type MutationBoardCardMoveArgs = {
|
|
124190
124522
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
124191
124523
|
};
|
|
@@ -125606,6 +125938,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
125606
125938
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
125607
125939
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
125608
125940
|
};
|
|
125941
|
+
export declare type MutationJira_DiscardUserTimelineViewConfigArgs = {
|
|
125942
|
+
input: JiraDiscardUserTimelineViewConfigInput;
|
|
125943
|
+
};
|
|
125609
125944
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
125610
125945
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
125611
125946
|
};
|
|
@@ -125792,6 +126127,10 @@ export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
125792
126127
|
cloudId: Scalars['ID']['input'];
|
|
125793
126128
|
show: Scalars['Boolean']['input'];
|
|
125794
126129
|
};
|
|
126130
|
+
export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
126131
|
+
cloudId: Scalars['ID']['input'];
|
|
126132
|
+
input: JiraSetTimelineHighlightedReleasesInput;
|
|
126133
|
+
};
|
|
125795
126134
|
export declare type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
125796
126135
|
input: JiraSetTimelineViewRangeModeInput;
|
|
125797
126136
|
};
|
|
@@ -126663,6 +127002,9 @@ export declare type MutationStakeholderComms_PermanentlyDeletePageArgs = {
|
|
|
126663
127002
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
126664
127003
|
draftPageId: Scalars['String']['input'];
|
|
126665
127004
|
};
|
|
127005
|
+
export declare type MutationStakeholderComms_RecoverDeletedPageArgs = {
|
|
127006
|
+
pageId: Scalars['String']['input'];
|
|
127007
|
+
};
|
|
126666
127008
|
export declare type MutationStakeholderComms_RecoverPageArgs = {
|
|
126667
127009
|
pageId: Scalars['String']['input'];
|
|
126668
127010
|
};
|
|
@@ -129924,6 +130266,9 @@ export declare type Query = {
|
|
|
129924
130266
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
129925
130267
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
129926
130268
|
agentWorkspace_helloWorld?: Maybe<AgentWorkspaceHelloWorld>;
|
|
130269
|
+
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
130270
|
+
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
130271
|
+
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
129927
130272
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
129928
130273
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
129929
130274
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -130030,6 +130375,7 @@ export declare type Query = {
|
|
|
130030
130375
|
blockService_batchRetrieveBlocks?: Maybe<BlockServiceBatchRetrieveBlocksPayload>;
|
|
130031
130376
|
blockService_getBlock?: Maybe<BlockServiceBlockPayload>;
|
|
130032
130377
|
blockService_getDocumentReferenceBlocks?: Maybe<BlockServiceDocumentReferenceBlocksPayload>;
|
|
130378
|
+
blockService_getReferences?: Maybe<BlockServiceGetReferencesPayload>;
|
|
130033
130379
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
130034
130380
|
boardScope?: Maybe<BoardScope>;
|
|
130035
130381
|
buildsByApp?: Maybe<BuildConnection>;
|
|
@@ -130323,6 +130669,7 @@ export declare type Query = {
|
|
|
130323
130669
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
130324
130670
|
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
130325
130671
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
130672
|
+
devai_getSessionCommitMsg: Scalars['String']['output'];
|
|
130326
130673
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
130327
130674
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
130328
130675
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
@@ -130417,6 +130764,7 @@ export declare type Query = {
|
|
|
130417
130764
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
130418
130765
|
graphStore?: Maybe<GraphStore>;
|
|
130419
130766
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
130767
|
+
gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
|
|
130420
130768
|
group?: Maybe<Group>;
|
|
130421
130769
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
130422
130770
|
groupMembers?: Maybe<PaginatedPersonList>;
|
|
@@ -131329,6 +131677,16 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
131329
131677
|
export declare type QueryAgentWorkspace_HelloWorldArgs = {
|
|
131330
131678
|
userName: Scalars['String']['input'];
|
|
131331
131679
|
};
|
|
131680
|
+
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
131681
|
+
projectId: Scalars['ID']['input'];
|
|
131682
|
+
scheduleId: Scalars['ID']['input'];
|
|
131683
|
+
};
|
|
131684
|
+
export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
131685
|
+
projectId: Scalars['ID']['input'];
|
|
131686
|
+
};
|
|
131687
|
+
export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
131688
|
+
input: AgentWorkspaceShiftsQueryInput;
|
|
131689
|
+
};
|
|
131332
131690
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
131333
131691
|
projectAri: Scalars['ID']['input'];
|
|
131334
131692
|
};
|
|
@@ -131866,6 +132224,9 @@ export declare type QueryBlockService_GetBlockArgs = {
|
|
|
131866
132224
|
export declare type QueryBlockService_GetDocumentReferenceBlocksArgs = {
|
|
131867
132225
|
documentAri: Scalars['String']['input'];
|
|
131868
132226
|
};
|
|
132227
|
+
export declare type QueryBlockService_GetReferencesArgs = {
|
|
132228
|
+
blockAri: Scalars['String']['input'];
|
|
132229
|
+
};
|
|
131869
132230
|
export declare type QueryBlockedAccessRestrictionsArgs = {
|
|
131870
132231
|
accessType: ResourceAccessType;
|
|
131871
132232
|
contentId: Scalars['Long']['input'];
|
|
@@ -133225,6 +133586,10 @@ export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
|
133225
133586
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
133226
133587
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
133227
133588
|
};
|
|
133589
|
+
export declare type QueryDevai_GetSessionCommitMsgArgs = {
|
|
133590
|
+
codeChanges?: InputMaybe<Scalars['String']['input']>;
|
|
133591
|
+
sessionAri: Scalars['ID']['input'];
|
|
133592
|
+
};
|
|
133228
133593
|
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
133229
133594
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133230
133595
|
repoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133580,6 +133945,9 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
|
|
|
133580
133945
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133581
133946
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
133582
133947
|
};
|
|
133948
|
+
export declare type QueryGravity_JpdImportIdeasArgs = {
|
|
133949
|
+
input: JpdImportIdeasInput;
|
|
133950
|
+
};
|
|
133583
133951
|
export declare type QueryGroupArgs = {
|
|
133584
133952
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
133585
133953
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135438,7 +135806,7 @@ export declare type RadarCustomFieldInput = {
|
|
|
135438
135806
|
relativeId?: InputMaybe<Scalars['String']['input']>;
|
|
135439
135807
|
sensitivityLevel: RadarSensitivityLevel;
|
|
135440
135808
|
sourceField: Scalars['String']['input'];
|
|
135441
|
-
type:
|
|
135809
|
+
type: RadarCustomFieldType;
|
|
135442
135810
|
viewPrincipalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
135443
135811
|
};
|
|
135444
135812
|
export declare enum RadarCustomFieldSyncStatus {
|
|
@@ -135446,6 +135814,10 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
135446
135814
|
NotFound = "NOT_FOUND",
|
|
135447
135815
|
Pending = "PENDING"
|
|
135448
135816
|
}
|
|
135817
|
+
export declare enum RadarCustomFieldType {
|
|
135818
|
+
Date = "DATE",
|
|
135819
|
+
String = "STRING"
|
|
135820
|
+
}
|
|
135449
135821
|
export declare type RadarDateFieldValue = {
|
|
135450
135822
|
__typename?: 'RadarDateFieldValue';
|
|
135451
135823
|
dateValue?: Maybe<Scalars['Date']['output']>;
|
|
@@ -135547,9 +135919,10 @@ export declare enum RadarFieldType {
|
|
|
135547
135919
|
Number = "NUMBER",
|
|
135548
135920
|
Status = "STATUS",
|
|
135549
135921
|
String = "STRING",
|
|
135550
|
-
Url = "URL"
|
|
135922
|
+
Url = "URL",
|
|
135923
|
+
User = "USER"
|
|
135551
135924
|
}
|
|
135552
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
135925
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
|
|
135553
135926
|
export declare type RadarFieldValueIdPair = {
|
|
135554
135927
|
__typename?: 'RadarFieldValueIdPair';
|
|
135555
135928
|
fieldId: Scalars['ID']['output'];
|
|
@@ -135923,6 +136296,12 @@ export declare enum RadarUserFieldPermission {
|
|
|
135923
136296
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
135924
136297
|
PartialOnlySelf = "PartialOnlySelf"
|
|
135925
136298
|
}
|
|
136299
|
+
export declare type RadarUserFieldValue = {
|
|
136300
|
+
__typename?: 'RadarUserFieldValue';
|
|
136301
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
136302
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
136303
|
+
value?: Maybe<User>;
|
|
136304
|
+
};
|
|
135926
136305
|
export declare type RadarView = Node & {
|
|
135927
136306
|
__typename?: 'RadarView';
|
|
135928
136307
|
creator?: Maybe<User>;
|
|
@@ -158102,6 +158481,7 @@ export declare type SmartFeaturesUserResultResponse = SmartFeaturesResultRespons
|
|
|
158102
158481
|
result?: Maybe<Array<Maybe<SmartFeaturesUserResult>>>;
|
|
158103
158482
|
};
|
|
158104
158483
|
export declare type SmartLink = {
|
|
158484
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
158105
158485
|
url: Scalars['String']['output'];
|
|
158106
158486
|
};
|
|
158107
158487
|
export declare type SmartLinkEdge = {
|
|
@@ -160638,6 +161018,11 @@ export declare type StakeholderCommsPageInfo = {
|
|
|
160638
161018
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
160639
161019
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
160640
161020
|
};
|
|
161021
|
+
export declare type StakeholderCommsPageRecoverResponse = {
|
|
161022
|
+
__typename?: 'StakeholderCommsPageRecoverResponse';
|
|
161023
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
161024
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
161025
|
+
};
|
|
160641
161026
|
export declare type StakeholderCommsPageResponse = {
|
|
160642
161027
|
__typename?: 'StakeholderCommsPageResponse';
|
|
160643
161028
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -161462,6 +161847,12 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
161462
161847
|
export declare type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
161463
161848
|
changeRequestId: Scalars['ID']['input'];
|
|
161464
161849
|
};
|
|
161850
|
+
export declare type SuggestedIdea = {
|
|
161851
|
+
__typename?: 'SuggestedIdea';
|
|
161852
|
+
description: Scalars['String']['output'];
|
|
161853
|
+
sourceReference: Scalars['String']['output'];
|
|
161854
|
+
title: Scalars['String']['output'];
|
|
161855
|
+
};
|
|
161465
161856
|
export declare enum SummaryType {
|
|
161466
161857
|
Blogpost = "BLOGPOST",
|
|
161467
161858
|
Page = "PAGE"
|
|
@@ -162050,6 +162441,10 @@ export declare type TeamCreateCustomFieldPayload = {
|
|
|
162050
162441
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
162051
162442
|
type: TeamCustomFieldType;
|
|
162052
162443
|
};
|
|
162444
|
+
export declare type TeamCreateCustomFieldValuePayload = {
|
|
162445
|
+
customFieldAri: Scalars['ID']['input'];
|
|
162446
|
+
value: Scalars['String']['input'];
|
|
162447
|
+
};
|
|
162053
162448
|
export declare type TeamCreatePayload = Payload & {
|
|
162054
162449
|
__typename?: 'TeamCreatePayload';
|
|
162055
162450
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -162074,9 +162469,17 @@ export declare type TeamCustomFieldInfo = {
|
|
|
162074
162469
|
description?: Maybe<Scalars['String']['output']>;
|
|
162075
162470
|
id: Scalars['ID']['output'];
|
|
162076
162471
|
name: Scalars['String']['output'];
|
|
162077
|
-
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
162078
162472
|
type: TeamCustomFieldType;
|
|
162079
162473
|
};
|
|
162474
|
+
export declare type TeamCustomFieldKeyValues = {
|
|
162475
|
+
__typename?: 'TeamCustomFieldKeyValues';
|
|
162476
|
+
cardinality: TeamCustomFieldCardinality;
|
|
162477
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
162478
|
+
id: Scalars['ID']['output'];
|
|
162479
|
+
name: Scalars['String']['output'];
|
|
162480
|
+
type: TeamCustomFieldType;
|
|
162481
|
+
values?: Maybe<Array<TeamCustomFieldValue>>;
|
|
162482
|
+
};
|
|
162080
162483
|
export declare enum TeamCustomFieldType {
|
|
162081
162484
|
Number = "NUMBER",
|
|
162082
162485
|
Selector = "SELECTOR",
|
|
@@ -162084,6 +162487,11 @@ export declare enum TeamCustomFieldType {
|
|
|
162084
162487
|
Team = "TEAM",
|
|
162085
162488
|
User = "USER"
|
|
162086
162489
|
}
|
|
162490
|
+
export declare type TeamCustomFieldValue = {
|
|
162491
|
+
__typename?: 'TeamCustomFieldValue';
|
|
162492
|
+
id: Scalars['ID']['output'];
|
|
162493
|
+
value: Scalars['String']['output'];
|
|
162494
|
+
};
|
|
162087
162495
|
export declare type TeamDeletePayload = Payload & {
|
|
162088
162496
|
__typename?: 'TeamDeletePayload';
|
|
162089
162497
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -162094,6 +162502,15 @@ export declare type TeamDeleteTeamInput = {
|
|
|
162094
162502
|
scopeId: Scalars['ID']['input'];
|
|
162095
162503
|
teamId: Scalars['ID']['input'];
|
|
162096
162504
|
};
|
|
162505
|
+
export declare type TeamDetailedCustomFieldInfo = {
|
|
162506
|
+
__typename?: 'TeamDetailedCustomFieldInfo';
|
|
162507
|
+
cardinality: TeamCustomFieldCardinality;
|
|
162508
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
162509
|
+
id: Scalars['ID']['output'];
|
|
162510
|
+
name: Scalars['String']['output'];
|
|
162511
|
+
options?: Maybe<Array<TeamCustomFieldValue>>;
|
|
162512
|
+
type: TeamCustomFieldType;
|
|
162513
|
+
};
|
|
162097
162514
|
export declare type TeamHierarchy = {
|
|
162098
162515
|
__typename?: 'TeamHierarchy';
|
|
162099
162516
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -162174,7 +162591,8 @@ export declare type TeamMutation = {
|
|
|
162174
162591
|
addParent?: Maybe<TeamV2>;
|
|
162175
162592
|
assignTeamToType?: Maybe<TeamV2>;
|
|
162176
162593
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
162177
|
-
createCustomField?: Maybe<
|
|
162594
|
+
createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
162595
|
+
createCustomFieldValue?: Maybe<TeamCustomFieldValue>;
|
|
162178
162596
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
162179
162597
|
createTeamType?: Maybe<TeamType>;
|
|
162180
162598
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -162211,6 +162629,9 @@ export declare type TeamMutationCreateCustomFieldArgs = {
|
|
|
162211
162629
|
customFieldData: TeamCreateCustomFieldPayload;
|
|
162212
162630
|
scopeId: Scalars['ID']['input'];
|
|
162213
162631
|
};
|
|
162632
|
+
export declare type TeamMutationCreateCustomFieldValueArgs = {
|
|
162633
|
+
customFieldValueData: TeamCreateCustomFieldValuePayload;
|
|
162634
|
+
};
|
|
162214
162635
|
export declare type TeamMutationCreateTeamArgs = {
|
|
162215
162636
|
input: TeamCreateTeamInput;
|
|
162216
162637
|
};
|
|
@@ -162291,7 +162712,9 @@ export declare type TeamPrincipalEdge = {
|
|
|
162291
162712
|
};
|
|
162292
162713
|
export declare type TeamQuery = {
|
|
162293
162714
|
__typename?: 'TeamQuery';
|
|
162715
|
+
customField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
162294
162716
|
customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
|
|
162717
|
+
customFieldsWithinTeam?: Maybe<Array<TeamCustomFieldKeyValues>>;
|
|
162295
162718
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
162296
162719
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
162297
162720
|
team?: Maybe<Team>;
|
|
@@ -162303,9 +162726,16 @@ export declare type TeamQuery = {
|
|
|
162303
162726
|
typeInformation?: Maybe<TeamType>;
|
|
162304
162727
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
162305
162728
|
};
|
|
162729
|
+
export declare type TeamQueryCustomFieldArgs = {
|
|
162730
|
+
id: Scalars['ID']['input'];
|
|
162731
|
+
};
|
|
162306
162732
|
export declare type TeamQueryCustomFieldsWithinScopeArgs = {
|
|
162307
162733
|
scopeId: Scalars['ID']['input'];
|
|
162308
162734
|
};
|
|
162735
|
+
export declare type TeamQueryCustomFieldsWithinTeamArgs = {
|
|
162736
|
+
scopeId: Scalars['ID']['input'];
|
|
162737
|
+
teamId: Scalars['ID']['input'];
|
|
162738
|
+
};
|
|
162309
162739
|
export declare type TeamQueryNotificationConfigurationsArgs = {
|
|
162310
162740
|
ari: Scalars['ID']['input'];
|
|
162311
162741
|
};
|
|
@@ -168271,6 +168701,7 @@ export declare type TrelloInboxQuickCaptureCard = {
|
|
|
168271
168701
|
card?: Maybe<TrelloCard>;
|
|
168272
168702
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
168273
168703
|
member?: Maybe<TrelloMember>;
|
|
168704
|
+
notificationId?: Maybe<Scalars['ID']['output']>;
|
|
168274
168705
|
source?: Maybe<TrelloCardExternalSource>;
|
|
168275
168706
|
};
|
|
168276
168707
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
@@ -169170,7 +169601,9 @@ export declare type TrelloPlannerCalendarAccountEdgeUpdated = {
|
|
|
169170
169601
|
export declare type TrelloPlannerCalendarAccountUpdated = {
|
|
169171
169602
|
__typename?: 'TrelloPlannerCalendarAccountUpdated';
|
|
169172
169603
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
169604
|
+
hasRequiredScopes?: Maybe<Scalars['Boolean']['output']>;
|
|
169173
169605
|
id: Scalars['ID']['output'];
|
|
169606
|
+
isExpired?: Maybe<Scalars['Boolean']['output']>;
|
|
169174
169607
|
onPlannerCalendarDeleted?: Maybe<Array<TrelloPlannerCalendarDeleted>>;
|
|
169175
169608
|
onProviderCalendarDeleted?: Maybe<Array<TrelloProviderCalendarDeleted>>;
|
|
169176
169609
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnectionUpdated>;
|
|
@@ -169848,7 +170281,7 @@ export declare type TrelloQuickCaptureNotification = {
|
|
|
169848
170281
|
};
|
|
169849
170282
|
export declare type TrelloQuickCaptureNotificationCleared = {
|
|
169850
170283
|
__typename?: 'TrelloQuickCaptureNotificationCleared';
|
|
169851
|
-
id
|
|
170284
|
+
id: Scalars['ID']['output'];
|
|
169852
170285
|
};
|
|
169853
170286
|
export declare type TrelloReaction = {
|
|
169854
170287
|
__typename?: 'TrelloReaction';
|