@forge/cli-shared 6.4.0-next.4 → 6.4.0-next.6
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 +16 -0
- package/out/graphql/graphql-types.d.ts +138 -51
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +32 -20
- package/out/shared/error-handling.d.ts +0 -2
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +0 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.4.0-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a2eed13: Update test for deprecated feature flag
|
|
8
|
+
- Updated dependencies [80f2659]
|
|
9
|
+
- Updated dependencies [6fddb0a]
|
|
10
|
+
- Updated dependencies [cefd0cd]
|
|
11
|
+
- @forge/manifest@8.1.0-next.4
|
|
12
|
+
|
|
13
|
+
## 6.4.0-next.5
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 85663fe: Display filename, index, line, and column when linting results in a compilation error.
|
|
18
|
+
|
|
3
19
|
## 6.4.0-next.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -135,6 +135,7 @@ export declare type ActionsAction = {
|
|
|
135
135
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
136
136
|
auth: Array<ActionsAuthType>;
|
|
137
137
|
description?: Maybe<ActionsDescription>;
|
|
138
|
+
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
138
139
|
extensionAri?: Maybe<Scalars['String']['output']>;
|
|
139
140
|
icon?: Maybe<Scalars['String']['output']>;
|
|
140
141
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
@@ -168,6 +169,7 @@ export declare type ActionsActionType = {
|
|
|
168
169
|
contextEntityType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
169
170
|
description?: Maybe<ActionsDescription>;
|
|
170
171
|
displayName: Scalars['String']['output'];
|
|
172
|
+
enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
|
|
171
173
|
entityProperty?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
172
174
|
entityType?: Maybe<Scalars['String']['output']>;
|
|
173
175
|
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
@@ -221,6 +223,9 @@ export declare enum ActionsAuthType {
|
|
|
221
223
|
ThreeLegged = "THREE_LEGGED",
|
|
222
224
|
TwoLegged = "TWO_LEGGED"
|
|
223
225
|
}
|
|
226
|
+
export declare enum ActionsCapabilityType {
|
|
227
|
+
Automation = "AUTOMATION"
|
|
228
|
+
}
|
|
224
229
|
export declare type ActionsDescription = {
|
|
225
230
|
__typename?: 'ActionsDescription';
|
|
226
231
|
ai?: Maybe<Scalars['String']['output']>;
|
|
@@ -4326,7 +4331,7 @@ export declare type CompassComponentTypeEdge = {
|
|
|
4326
4331
|
cursor: Scalars['String']['output'];
|
|
4327
4332
|
node?: Maybe<CompassComponentTypeObject>;
|
|
4328
4333
|
};
|
|
4329
|
-
export declare type CompassComponentTypeObject = {
|
|
4334
|
+
export declare type CompassComponentTypeObject = Node & {
|
|
4330
4335
|
__typename?: 'CompassComponentTypeObject';
|
|
4331
4336
|
componentCount?: Maybe<Scalars['Int']['output']>;
|
|
4332
4337
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -5802,7 +5807,7 @@ export declare type CompassMetricDefinitionsQuery = {
|
|
|
5802
5807
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5803
5808
|
};
|
|
5804
5809
|
export declare type CompassMetricDefinitionsQueryResult = CompassMetricDefinitionsConnection | QueryError;
|
|
5805
|
-
export declare type CompassMetricSource = {
|
|
5810
|
+
export declare type CompassMetricSource = Node & {
|
|
5806
5811
|
__typename?: 'CompassMetricSource';
|
|
5807
5812
|
component?: Maybe<CompassComponent>;
|
|
5808
5813
|
derivedFrom?: Maybe<Array<EventSource>>;
|
|
@@ -15005,11 +15010,13 @@ export declare type ContentPlatformIpmInlineDialog = {
|
|
|
15005
15010
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15006
15011
|
featuredImage?: Maybe<ContentPlatformIpmCompImage>;
|
|
15007
15012
|
id: Scalars['String']['output'];
|
|
15013
|
+
ipmNumber: Scalars['String']['output'];
|
|
15008
15014
|
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
|
|
15009
15015
|
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
|
|
15010
15016
|
title: Scalars['String']['output'];
|
|
15011
15017
|
trigger: ContentPlatformIpmTrigger;
|
|
15012
15018
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
15019
|
+
variant: Scalars['String']['output'];
|
|
15013
15020
|
};
|
|
15014
15021
|
export declare type ContentPlatformIpmInlineDialogResultEdge = {
|
|
15015
15022
|
__typename?: 'ContentPlatformIpmInlineDialogResultEdge';
|
|
@@ -38025,6 +38032,7 @@ export declare type HelpCenter = Node & {
|
|
|
38025
38032
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
38026
38033
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
38027
38034
|
name?: Maybe<HelpCenterName>;
|
|
38035
|
+
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
38028
38036
|
portals?: Maybe<HelpCenterPortals>;
|
|
38029
38037
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
38030
38038
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
@@ -38090,6 +38098,7 @@ export declare type HelpCenterBranding = {
|
|
|
38090
38098
|
__typename?: 'HelpCenterBranding';
|
|
38091
38099
|
banner?: Maybe<HelpCenterBanner>;
|
|
38092
38100
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
38101
|
+
hasTopBarBeenSplit?: Maybe<Scalars['Boolean']['output']>;
|
|
38093
38102
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
38094
38103
|
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
38095
38104
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -44067,6 +44076,7 @@ export declare type JiraForgeExtension = {
|
|
|
44067
44076
|
properties: Scalars['JSON']['output'];
|
|
44068
44077
|
scopes: Array<Scalars['String']['output']>;
|
|
44069
44078
|
type: Scalars['String']['output'];
|
|
44079
|
+
userAccess?: Maybe<JiraUserAppAccess>;
|
|
44070
44080
|
};
|
|
44071
44081
|
export declare type JiraForgeExtensionLicense = {
|
|
44072
44082
|
__typename?: 'JiraForgeExtensionLicense';
|
|
@@ -45502,6 +45512,7 @@ export declare type JiraIssueItemPanelItem = {
|
|
|
45502
45512
|
export declare enum JiraIssueItemSystemContainerType {
|
|
45503
45513
|
Content = "CONTENT",
|
|
45504
45514
|
Context = "CONTEXT",
|
|
45515
|
+
CustomerContext = "CUSTOMER_CONTEXT",
|
|
45505
45516
|
HiddenItems = "HIDDEN_ITEMS",
|
|
45506
45517
|
Primary = "PRIMARY",
|
|
45507
45518
|
Request = "REQUEST",
|
|
@@ -46269,6 +46280,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
46269
46280
|
parentIssue?: Maybe<JiraJourneyParentIssue>;
|
|
46270
46281
|
status?: Maybe<JiraJourneyStatus>;
|
|
46271
46282
|
trigger?: Maybe<JiraJourneyTrigger>;
|
|
46283
|
+
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
46272
46284
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
46273
46285
|
updatedBy?: Maybe<User>;
|
|
46274
46286
|
version?: Maybe<Scalars['Long']['output']>;
|
|
@@ -46295,6 +46307,13 @@ export declare type JiraJourneyParentIssueInput = {
|
|
|
46295
46307
|
type: JiraJourneyParentIssueType;
|
|
46296
46308
|
value: Scalars['String']['input'];
|
|
46297
46309
|
};
|
|
46310
|
+
export declare type JiraJourneyParentIssueTriggerConfiguration = {
|
|
46311
|
+
__typename?: 'JiraJourneyParentIssueTriggerConfiguration';
|
|
46312
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46313
|
+
};
|
|
46314
|
+
export declare type JiraJourneyParentIssueTriggerConfigurationInput = {
|
|
46315
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46316
|
+
};
|
|
46298
46317
|
export declare enum JiraJourneyParentIssueType {
|
|
46299
46318
|
Request = "REQUEST"
|
|
46300
46319
|
}
|
|
@@ -46309,12 +46328,27 @@ export declare type JiraJourneyTrigger = {
|
|
|
46309
46328
|
__typename?: 'JiraJourneyTrigger';
|
|
46310
46329
|
type: JiraJourneyTriggerType;
|
|
46311
46330
|
};
|
|
46331
|
+
export declare type JiraJourneyTriggerConfiguration = JiraJourneyParentIssueTriggerConfiguration | JiraJourneyWorkdayIntegrationTriggerConfiguration;
|
|
46332
|
+
export declare type JiraJourneyTriggerConfigurationInput = {
|
|
46333
|
+
parentIssueTriggerConfiguration?: InputMaybe<JiraJourneyParentIssueTriggerConfigurationInput>;
|
|
46334
|
+
workdayIntegrationTriggerConfiguration?: InputMaybe<JiraJourneyWorkdayIntegrationTriggerConfigurationInput>;
|
|
46335
|
+
};
|
|
46312
46336
|
export declare type JiraJourneyTriggerInput = {
|
|
46313
46337
|
type: JiraJourneyTriggerType;
|
|
46314
46338
|
};
|
|
46315
46339
|
export declare enum JiraJourneyTriggerType {
|
|
46316
|
-
ParentIssueCreated = "PARENT_ISSUE_CREATED"
|
|
46340
|
+
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
46341
|
+
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
46317
46342
|
}
|
|
46343
|
+
export declare type JiraJourneyWorkdayIntegrationTriggerConfiguration = {
|
|
46344
|
+
__typename?: 'JiraJourneyWorkdayIntegrationTriggerConfiguration';
|
|
46345
|
+
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
46346
|
+
type?: Maybe<JiraJourneyTriggerType>;
|
|
46347
|
+
};
|
|
46348
|
+
export declare type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
46349
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
46350
|
+
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
46351
|
+
};
|
|
46318
46352
|
export declare enum JiraJqlAutocompleteType {
|
|
46319
46353
|
Basic = "BASIC",
|
|
46320
46354
|
Cascadingoption = "CASCADINGOPTION",
|
|
@@ -47475,6 +47509,7 @@ export declare type JiraMutation = {
|
|
|
47475
47509
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
47476
47510
|
updateJiraJourneyActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47477
47511
|
updateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47512
|
+
updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
47478
47513
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
47479
47514
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
47480
47515
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -47916,6 +47951,10 @@ export declare type JiraMutationUpdateJiraJourneyConfigurationArgs = {
|
|
|
47916
47951
|
cloudId: Scalars['ID']['input'];
|
|
47917
47952
|
input: JiraUpdateJourneyConfigurationInput;
|
|
47918
47953
|
};
|
|
47954
|
+
export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
|
|
47955
|
+
cloudId: Scalars['ID']['input'];
|
|
47956
|
+
input: JiraUpdateJourneyTriggerConfigurationInput;
|
|
47957
|
+
};
|
|
47919
47958
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
47920
47959
|
input: JiraVersionUpdateMutationInput;
|
|
47921
47960
|
};
|
|
@@ -49048,6 +49087,7 @@ export declare type JiraProject = Node & {
|
|
|
49048
49087
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49049
49088
|
isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49050
49089
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
49090
|
+
isVirtualAgentEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
49051
49091
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
49052
49092
|
jsmChatInitialNativeConfig?: Maybe<JsmChatInitializeNativeConfigResponse>;
|
|
49053
49093
|
jsmChatMsTeamsConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
@@ -53011,6 +53051,7 @@ export declare type JiraSpreadsheetGroup = {
|
|
|
53011
53051
|
export declare type JiraSpreadsheetGroupIssuesArgs = {
|
|
53012
53052
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53013
53053
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
53054
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
53014
53055
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53015
53056
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53016
53057
|
};
|
|
@@ -53948,6 +53989,11 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
|
|
|
53948
53989
|
jiraJourneyConfigurationEdge?: Maybe<JiraJourneyConfigurationEdge>;
|
|
53949
53990
|
success: Scalars['Boolean']['output'];
|
|
53950
53991
|
};
|
|
53992
|
+
export declare type JiraUpdateJourneyTriggerConfigurationInput = {
|
|
53993
|
+
id: Scalars['ID']['input'];
|
|
53994
|
+
triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
|
|
53995
|
+
version: Scalars['Long']['input'];
|
|
53996
|
+
};
|
|
53951
53997
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
53952
53998
|
id: Scalars['ID']['input'];
|
|
53953
53999
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -54244,6 +54290,10 @@ export declare type JiraUser = {
|
|
|
54244
54290
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
54245
54291
|
email?: Maybe<Scalars['String']['output']>;
|
|
54246
54292
|
};
|
|
54293
|
+
export declare type JiraUserAppAccess = {
|
|
54294
|
+
__typename?: 'JiraUserAppAccess';
|
|
54295
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
54296
|
+
};
|
|
54247
54297
|
export declare type JiraUserBroadcastMessage = Node & {
|
|
54248
54298
|
__typename?: 'JiraUserBroadcastMessage';
|
|
54249
54299
|
id: Scalars['ID']['output'];
|
|
@@ -55967,6 +56017,7 @@ export declare type JsmChatWebAddConversationInteractionPayload = Payload & {
|
|
|
55967
56017
|
};
|
|
55968
56018
|
export declare enum JsmChatWebConversationActions {
|
|
55969
56019
|
CloseConversation = "CLOSE_CONVERSATION",
|
|
56020
|
+
DisableInput = "DISABLE_INPUT",
|
|
55970
56021
|
RedirectToSearch = "REDIRECT_TO_SEARCH"
|
|
55971
56022
|
}
|
|
55972
56023
|
export declare type JsmChatWebConversationAppendixAction = JsmChatDropdownAppendix | JsmChatJiraFieldAppendix | JsmChatOptionAppendix;
|
|
@@ -60534,7 +60585,7 @@ export declare type Mutation = {
|
|
|
60534
60585
|
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
|
|
60535
60586
|
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
|
|
60536
60587
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
60537
|
-
radar_updateFocusAreaMappings
|
|
60588
|
+
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
60538
60589
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
60539
60590
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
60540
60591
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -63519,8 +63570,8 @@ export declare type Query = {
|
|
|
63519
63570
|
pricings: ContentPlatformPricingSearchConnection;
|
|
63520
63571
|
productListing?: Maybe<ProductListingResult>;
|
|
63521
63572
|
productListings: Array<ProductListingResult>;
|
|
63522
|
-
radar_fieldValues
|
|
63523
|
-
radar_positions
|
|
63573
|
+
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
63574
|
+
radar_positions?: Maybe<RadarPositionConnection>;
|
|
63524
63575
|
radar_workspace: RadarWorkspace;
|
|
63525
63576
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
63526
63577
|
releaseNotes: ContentPlatformReleaseNotesConnection;
|
|
@@ -65095,7 +65146,7 @@ export declare type RadarEdge = {
|
|
|
65095
65146
|
cursor: Scalars['String']['output'];
|
|
65096
65147
|
};
|
|
65097
65148
|
export declare type RadarEntity = {
|
|
65098
|
-
fieldValues
|
|
65149
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
65099
65150
|
id: Scalars['ID']['output'];
|
|
65100
65151
|
type?: Maybe<RadarEntityType>;
|
|
65101
65152
|
};
|
|
@@ -65104,21 +65155,6 @@ export declare enum RadarEntityType {
|
|
|
65104
65155
|
Person = "person",
|
|
65105
65156
|
Position = "position"
|
|
65106
65157
|
}
|
|
65107
|
-
export declare type RadarError = {
|
|
65108
|
-
__typename?: 'RadarError';
|
|
65109
|
-
errorCode: Scalars['String']['output'];
|
|
65110
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
65111
|
-
extensions?: Maybe<Array<RadarErrorExtension>>;
|
|
65112
|
-
location?: Maybe<Array<RadarLocation>>;
|
|
65113
|
-
message?: Maybe<Scalars['String']['output']>;
|
|
65114
|
-
stackTrace?: Maybe<Array<Scalars['String']['output']>>;
|
|
65115
|
-
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
65116
|
-
};
|
|
65117
|
-
export declare type RadarErrorExtension = {
|
|
65118
|
-
__typename?: 'RadarErrorExtension';
|
|
65119
|
-
property: Scalars['String']['output'];
|
|
65120
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
65121
|
-
};
|
|
65122
65158
|
export declare type RadarFieldDefinition = Node & {
|
|
65123
65159
|
__typename?: 'RadarFieldDefinition';
|
|
65124
65160
|
displayName: Scalars['String']['output'];
|
|
@@ -65151,17 +65187,6 @@ export declare type RadarFieldValuesConnection = RadarConnection & {
|
|
|
65151
65187
|
pageInfo: PageInfo;
|
|
65152
65188
|
totalCount: Scalars['Int']['output'];
|
|
65153
65189
|
};
|
|
65154
|
-
export declare type RadarFieldValuesConnectionResult = {
|
|
65155
|
-
__typename?: 'RadarFieldValuesConnectionResult';
|
|
65156
|
-
errors?: Maybe<Array<RadarError>>;
|
|
65157
|
-
result?: Maybe<RadarFieldValuesConnection>;
|
|
65158
|
-
};
|
|
65159
|
-
export declare type RadarFieldValuesConnectionResultResultArgs = {
|
|
65160
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
65161
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
65162
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65163
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65164
|
-
};
|
|
65165
65190
|
export declare type RadarFieldValuesEdge = RadarEdge & {
|
|
65166
65191
|
__typename?: 'RadarFieldValuesEdge';
|
|
65167
65192
|
cursor: Scalars['String']['output'];
|
|
@@ -65196,14 +65221,8 @@ export declare type RadarFocusAreaMappingsInput = {
|
|
|
65196
65221
|
focusAreaAri: Scalars['ID']['input'];
|
|
65197
65222
|
positionId: Scalars['ID']['input'];
|
|
65198
65223
|
};
|
|
65199
|
-
export declare type RadarLocation = {
|
|
65200
|
-
__typename?: 'RadarLocation';
|
|
65201
|
-
column: Scalars['Int']['output'];
|
|
65202
|
-
line: Scalars['Int']['output'];
|
|
65203
|
-
};
|
|
65204
65224
|
export declare type RadarMutationResponse = {
|
|
65205
65225
|
__typename?: 'RadarMutationResponse';
|
|
65206
|
-
errors?: Maybe<Array<RadarError>>;
|
|
65207
65226
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
65208
65227
|
};
|
|
65209
65228
|
export declare type RadarNumericFieldValue = {
|
|
@@ -65213,7 +65232,7 @@ export declare type RadarNumericFieldValue = {
|
|
|
65213
65232
|
};
|
|
65214
65233
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
65215
65234
|
__typename?: 'RadarPosition';
|
|
65216
|
-
fieldValues
|
|
65235
|
+
fieldValues: Array<RadarFieldValueIdPair>;
|
|
65217
65236
|
id: Scalars['ID']['output'];
|
|
65218
65237
|
type?: Maybe<RadarEntityType>;
|
|
65219
65238
|
};
|
|
@@ -65224,17 +65243,6 @@ export declare type RadarPositionConnection = RadarConnection & {
|
|
|
65224
65243
|
pageInfo: PageInfo;
|
|
65225
65244
|
totalCount: Scalars['Int']['output'];
|
|
65226
65245
|
};
|
|
65227
|
-
export declare type RadarPositionConnectionResult = {
|
|
65228
|
-
__typename?: 'RadarPositionConnectionResult';
|
|
65229
|
-
errors?: Maybe<Array<RadarError>>;
|
|
65230
|
-
result?: Maybe<RadarPositionConnection>;
|
|
65231
|
-
};
|
|
65232
|
-
export declare type RadarPositionConnectionResultResultArgs = {
|
|
65233
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
65234
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
65235
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65236
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
65237
|
-
};
|
|
65238
65246
|
export declare type RadarPositionEdge = RadarEdge & {
|
|
65239
65247
|
__typename?: 'RadarPositionEdge';
|
|
65240
65248
|
cursor: Scalars['String']['output'];
|
|
@@ -72144,6 +72152,8 @@ export declare type TrelloQueryApi = {
|
|
|
72144
72152
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
72145
72153
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
72146
72154
|
plannerCalendarAccountById?: Maybe<TrelloPlannerCalendarAccount>;
|
|
72155
|
+
plannerCalendarById?: Maybe<TrelloPlannerCalendar>;
|
|
72156
|
+
plannerCalendarEventById?: Maybe<TrelloPlannerCalendarEvent>;
|
|
72147
72157
|
plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
72148
72158
|
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
72149
72159
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
@@ -72199,6 +72209,15 @@ export declare type TrelloQueryApiPlannerCalendarAccountByIdArgs = {
|
|
|
72199
72209
|
id: Scalars['ID']['input'];
|
|
72200
72210
|
workspaceId: Scalars['ID']['input'];
|
|
72201
72211
|
};
|
|
72212
|
+
export declare type TrelloQueryApiPlannerCalendarByIdArgs = {
|
|
72213
|
+
id: Scalars['ID']['input'];
|
|
72214
|
+
providerAccountId: Scalars['ID']['input'];
|
|
72215
|
+
};
|
|
72216
|
+
export declare type TrelloQueryApiPlannerCalendarEventByIdArgs = {
|
|
72217
|
+
id: Scalars['ID']['input'];
|
|
72218
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
72219
|
+
providerAccountId: Scalars['ID']['input'];
|
|
72220
|
+
};
|
|
72202
72221
|
export declare type TrelloQueryApiPlannerCalendarEventsByCalendarIdArgs = {
|
|
72203
72222
|
accountId: Scalars['ID']['input'];
|
|
72204
72223
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72544,6 +72563,23 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
72544
72563
|
linkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
72545
72564
|
parentAccount?: Maybe<UnifiedParentAccount>;
|
|
72546
72565
|
};
|
|
72566
|
+
export declare type UnifiedAccount2 = UnifiedINode & {
|
|
72567
|
+
__typename?: 'UnifiedAccount2';
|
|
72568
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
72569
|
+
id: Scalars['ID']['output'];
|
|
72570
|
+
internalId?: Maybe<Scalars['String']['output']>;
|
|
72571
|
+
isLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
72572
|
+
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
72573
|
+
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
72574
|
+
linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
|
|
72575
|
+
};
|
|
72576
|
+
export declare type UnifiedAccountDetails = UnifiedINode & {
|
|
72577
|
+
__typename?: 'UnifiedAccountDetails';
|
|
72578
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
72579
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
72580
|
+
id: Scalars['ID']['output'];
|
|
72581
|
+
orgId?: Maybe<Scalars['String']['output']>;
|
|
72582
|
+
};
|
|
72547
72583
|
export declare type UnifiedAdmins = UnifiedINode & {
|
|
72548
72584
|
__typename?: 'UnifiedAdmins';
|
|
72549
72585
|
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -72816,6 +72852,11 @@ export declare type UnifiedLearningCertificationEdge = UnifiedIEdge & {
|
|
|
72816
72852
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
72817
72853
|
node?: Maybe<UnifiedLearningCertification>;
|
|
72818
72854
|
};
|
|
72855
|
+
export declare type UnifiedLinkTransaction = {
|
|
72856
|
+
__typename?: 'UnifiedLinkTransaction';
|
|
72857
|
+
id: Scalars['ID']['output'];
|
|
72858
|
+
transactionId?: Maybe<Scalars['String']['output']>;
|
|
72859
|
+
};
|
|
72819
72860
|
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
72820
72861
|
__typename?: 'UnifiedLinkedAccount';
|
|
72821
72862
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -72827,18 +72868,47 @@ export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
|
72827
72868
|
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
72828
72869
|
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
72829
72870
|
};
|
|
72871
|
+
export declare type UnifiedLinkedAccount2Connection = UnifiedIConnection & {
|
|
72872
|
+
__typename?: 'UnifiedLinkedAccount2Connection';
|
|
72873
|
+
edges?: Maybe<Array<Maybe<UnifiedLinkedAccount2Edge>>>;
|
|
72874
|
+
pageInfo: UnifiedPageInfo;
|
|
72875
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
72876
|
+
};
|
|
72877
|
+
export declare type UnifiedLinkedAccount2Edge = UnifiedIEdge & {
|
|
72878
|
+
__typename?: 'UnifiedLinkedAccount2Edge';
|
|
72879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72880
|
+
node?: Maybe<UnifiedAccount2>;
|
|
72881
|
+
};
|
|
72830
72882
|
export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
|
|
72831
72883
|
__typename?: 'UnifiedLinkedAccountPayload';
|
|
72832
72884
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72833
72885
|
success: Scalars['Boolean']['output'];
|
|
72834
72886
|
unifiedLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
72835
72887
|
};
|
|
72888
|
+
export declare type UnifiedLinkingMutation = {
|
|
72889
|
+
__typename?: 'UnifiedLinkingMutation';
|
|
72890
|
+
authenticateTransaction?: Maybe<UnifiedULinkTransactionResult>;
|
|
72891
|
+
completeTransaction?: Maybe<UnifiedULinkTransactionResult>;
|
|
72892
|
+
initializeTransaction?: Maybe<UnifiedULinkTransactionResult>;
|
|
72893
|
+
};
|
|
72894
|
+
export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
|
|
72895
|
+
isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72896
|
+
token: Scalars['String']['input'];
|
|
72897
|
+
};
|
|
72898
|
+
export declare type UnifiedLinkingMutationCompleteTransactionArgs = {
|
|
72899
|
+
token: Scalars['String']['input'];
|
|
72900
|
+
};
|
|
72901
|
+
export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
|
|
72902
|
+
account2Aaid?: InputMaybe<Scalars['String']['input']>;
|
|
72903
|
+
primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
|
|
72904
|
+
};
|
|
72836
72905
|
export declare type UnifiedMutation = {
|
|
72837
72906
|
__typename?: 'UnifiedMutation';
|
|
72838
72907
|
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
|
|
72839
72908
|
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
|
|
72840
72909
|
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
|
|
72841
72910
|
gating?: Maybe<UnifiedGatingMutation>;
|
|
72911
|
+
linking?: Maybe<UnifiedLinkingMutation>;
|
|
72842
72912
|
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
|
|
72843
72913
|
};
|
|
72844
72914
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
@@ -72890,6 +72960,10 @@ export declare type UnifiedPayload = {
|
|
|
72890
72960
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
72891
72961
|
success: Scalars['Boolean']['output'];
|
|
72892
72962
|
};
|
|
72963
|
+
export declare enum UnifiedPrimaryAccountType {
|
|
72964
|
+
Input = "INPUT",
|
|
72965
|
+
LoggedIn = "LOGGED_IN"
|
|
72966
|
+
}
|
|
72893
72967
|
export declare type UnifiedProfile = UnifiedINode & {
|
|
72894
72968
|
__typename?: 'UnifiedProfile';
|
|
72895
72969
|
badges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
@@ -72964,6 +73038,8 @@ export declare type UnifiedProfilePayload = UnifiedPayload & {
|
|
|
72964
73038
|
};
|
|
72965
73039
|
export declare type UnifiedQuery = {
|
|
72966
73040
|
__typename?: 'UnifiedQuery';
|
|
73041
|
+
account?: Maybe<UnifiedUAccount2Result>;
|
|
73042
|
+
accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
|
|
72967
73043
|
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
|
|
72968
73044
|
gating?: Maybe<UnifiedGatingQuery>;
|
|
72969
73045
|
node?: Maybe<UnifiedINode>;
|
|
@@ -72972,6 +73048,13 @@ export declare type UnifiedQuery = {
|
|
|
72972
73048
|
unifiedProfile?: Maybe<UnifiedUProfileResult>;
|
|
72973
73049
|
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
|
|
72974
73050
|
};
|
|
73051
|
+
export declare type UnifiedQueryAccountArgs = {
|
|
73052
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
73053
|
+
};
|
|
73054
|
+
export declare type UnifiedQueryAccountDetailsArgs = {
|
|
73055
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
73056
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
73057
|
+
};
|
|
72975
73058
|
export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
72976
73059
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72977
73060
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -73015,6 +73098,8 @@ export declare type UnifiedRecentCourseEdge = UnifiedIEdge & {
|
|
|
73015
73098
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
73016
73099
|
node?: Maybe<UnifiedRecentCourse>;
|
|
73017
73100
|
};
|
|
73101
|
+
export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
|
|
73102
|
+
export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
|
|
73018
73103
|
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
|
|
73019
73104
|
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
|
|
73020
73105
|
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
|
|
@@ -73030,6 +73115,8 @@ export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQu
|
|
|
73030
73115
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|
|
73031
73116
|
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
|
|
73032
73117
|
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
|
|
73118
|
+
export declare type UnifiedULinkTransactionResult = UnifiedLinkTransaction | UnifiedQueryError;
|
|
73119
|
+
export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
|
|
73033
73120
|
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
|
|
73034
73121
|
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
|
|
73035
73122
|
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
|