@forge/cli-shared 5.4.0-next.4 → 5.4.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 +11 -0
- package/out/graphql/graphql-types.d.ts +188 -59
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -9
- package/out/service/bridge-script-service.js +2 -3
- package/out/service/iframe-resizer-script-service.js +2 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.4.0-next.5
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 4117f97: Bump cheerio from version 0.22 to version 1.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [4117f97]
|
|
12
|
+
- @forge/manifest@7.6.0-next.3
|
|
13
|
+
|
|
3
14
|
## 5.4.0-next.4
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -3209,6 +3209,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3209
3209
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
3210
3210
|
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
3211
3211
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
3212
|
+
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
3212
3213
|
createCustomFieldDefinition?: Maybe<CompassCreateCustomFieldDefinitionPayload>;
|
|
3213
3214
|
createEventSource?: Maybe<CreateEventSourcePayload>;
|
|
3214
3215
|
createIncomingWebhook?: Maybe<CompassCreateIncomingWebhookPayload>;
|
|
@@ -3315,6 +3316,10 @@ export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueAr
|
|
|
3315
3316
|
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
3316
3317
|
input: CompassCreateComponentSubscriptionInput;
|
|
3317
3318
|
};
|
|
3319
|
+
export declare type CompassCatalogMutationApiCreateComponentTypeArgs = {
|
|
3320
|
+
cloudId: Scalars['ID']['input'];
|
|
3321
|
+
input: CreateCompassComponentTypeInput;
|
|
3322
|
+
};
|
|
3318
3323
|
export declare type CompassCatalogMutationApiCreateCustomFieldDefinitionArgs = {
|
|
3319
3324
|
input: CompassCreateCustomFieldDefinitionInput;
|
|
3320
3325
|
};
|
|
@@ -15004,6 +15009,17 @@ export declare type CreateCompassComponentPayload = Payload & {
|
|
|
15004
15009
|
errors?: Maybe<Array<MutationError>>;
|
|
15005
15010
|
success: Scalars['Boolean']['output'];
|
|
15006
15011
|
};
|
|
15012
|
+
export declare type CreateCompassComponentTypeInput = {
|
|
15013
|
+
description: Scalars['String']['input'];
|
|
15014
|
+
iconKey: Scalars['String']['input'];
|
|
15015
|
+
name: Scalars['String']['input'];
|
|
15016
|
+
};
|
|
15017
|
+
export declare type CreateCompassComponentTypePayload = {
|
|
15018
|
+
__typename?: 'CreateCompassComponentTypePayload';
|
|
15019
|
+
createdComponentType?: Maybe<CompassComponentTypeObject>;
|
|
15020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15021
|
+
success: Scalars['Boolean']['output'];
|
|
15022
|
+
};
|
|
15007
15023
|
export declare type CreateCompassFieldInput = {
|
|
15008
15024
|
definition: Scalars['ID']['input'];
|
|
15009
15025
|
value: CompassFieldValueInput;
|
|
@@ -18990,7 +19006,7 @@ export declare type ExternalAuthProvider = {
|
|
|
18990
19006
|
key: Scalars['String']['output'];
|
|
18991
19007
|
url: Scalars['URL']['output'];
|
|
18992
19008
|
};
|
|
18993
|
-
export declare type ExternalBranch = {
|
|
19009
|
+
export declare type ExternalBranch = Node & {
|
|
18994
19010
|
__typename?: 'ExternalBranch';
|
|
18995
19011
|
branchId?: Maybe<Scalars['String']['output']>;
|
|
18996
19012
|
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19009,7 +19025,7 @@ export declare type ExternalBuildCommitReference = {
|
|
|
19009
19025
|
id?: Maybe<Scalars['String']['output']>;
|
|
19010
19026
|
repositoryUri?: Maybe<Scalars['String']['output']>;
|
|
19011
19027
|
};
|
|
19012
|
-
export declare type ExternalBuildInfo = {
|
|
19028
|
+
export declare type ExternalBuildInfo = Node & {
|
|
19013
19029
|
__typename?: 'ExternalBuildInfo';
|
|
19014
19030
|
buildNumber?: Maybe<Scalars['Long']['output']>;
|
|
19015
19031
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19054,7 +19070,7 @@ export declare type ExternalChapter = {
|
|
|
19054
19070
|
startTimeInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
19055
19071
|
title?: Maybe<Scalars['String']['output']>;
|
|
19056
19072
|
};
|
|
19057
|
-
export declare type ExternalCommit = {
|
|
19073
|
+
export declare type ExternalCommit = Node & {
|
|
19058
19074
|
__typename?: 'ExternalCommit';
|
|
19059
19075
|
author?: Maybe<ExternalUser>;
|
|
19060
19076
|
commitId?: Maybe<Scalars['String']['output']>;
|
|
@@ -19071,7 +19087,7 @@ export declare type ExternalCommit = {
|
|
|
19071
19087
|
export declare enum ExternalCommitFlags {
|
|
19072
19088
|
MergeCommit = "MERGE_COMMIT"
|
|
19073
19089
|
}
|
|
19074
|
-
export declare type ExternalConversation = {
|
|
19090
|
+
export declare type ExternalConversation = Node & {
|
|
19075
19091
|
__typename?: 'ExternalConversation';
|
|
19076
19092
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19077
19093
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19104,7 +19120,7 @@ export declare type ExternalCue = {
|
|
|
19104
19120
|
startTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
19105
19121
|
text?: Maybe<Scalars['String']['output']>;
|
|
19106
19122
|
};
|
|
19107
|
-
export declare type ExternalDeployment = {
|
|
19123
|
+
export declare type ExternalDeployment = Node & {
|
|
19108
19124
|
__typename?: 'ExternalDeployment';
|
|
19109
19125
|
deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19110
19126
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -19129,7 +19145,7 @@ export declare enum ExternalDeploymentState {
|
|
|
19129
19145
|
Successful = "SUCCESSFUL",
|
|
19130
19146
|
Unknown = "UNKNOWN"
|
|
19131
19147
|
}
|
|
19132
|
-
export declare type ExternalDesign = {
|
|
19148
|
+
export declare type ExternalDesign = Node & {
|
|
19133
19149
|
__typename?: 'ExternalDesign';
|
|
19134
19150
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19135
19151
|
createdBy?: Maybe<ExternalUser>;
|
|
@@ -19162,7 +19178,7 @@ export declare enum ExternalDesignType {
|
|
|
19162
19178
|
Other = "OTHER",
|
|
19163
19179
|
Prototype = "PROTOTYPE"
|
|
19164
19180
|
}
|
|
19165
|
-
export declare type ExternalDocument = {
|
|
19181
|
+
export declare type ExternalDocument = Node & {
|
|
19166
19182
|
__typename?: 'ExternalDocument';
|
|
19167
19183
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19168
19184
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
@@ -19242,7 +19258,7 @@ export declare type ExternalExportLink = {
|
|
|
19242
19258
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19243
19259
|
url?: Maybe<Scalars['String']['output']>;
|
|
19244
19260
|
};
|
|
19245
|
-
export declare type ExternalFeatureFlag = {
|
|
19261
|
+
export declare type ExternalFeatureFlag = Node & {
|
|
19246
19262
|
__typename?: 'ExternalFeatureFlag';
|
|
19247
19263
|
details?: Maybe<Array<Maybe<ExternalFeatureFlagDetail>>>;
|
|
19248
19264
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19304,7 +19320,7 @@ export declare enum ExternalMembershipType {
|
|
|
19304
19320
|
Public = "PUBLIC",
|
|
19305
19321
|
Shared = "SHARED"
|
|
19306
19322
|
}
|
|
19307
|
-
export declare type ExternalMessage = {
|
|
19323
|
+
export declare type ExternalMessage = Node & {
|
|
19308
19324
|
__typename?: 'ExternalMessage';
|
|
19309
19325
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19310
19326
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19331,7 +19347,7 @@ export declare type ExternalPipeline = {
|
|
|
19331
19347
|
id?: Maybe<Scalars['String']['output']>;
|
|
19332
19348
|
url?: Maybe<Scalars['String']['output']>;
|
|
19333
19349
|
};
|
|
19334
|
-
export declare type ExternalPullRequest = {
|
|
19350
|
+
export declare type ExternalPullRequest = Node & {
|
|
19335
19351
|
__typename?: 'ExternalPullRequest';
|
|
19336
19352
|
author?: Maybe<ExternalUser>;
|
|
19337
19353
|
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -19356,7 +19372,7 @@ export declare enum ExternalPullRequestStatus {
|
|
|
19356
19372
|
Open = "OPEN",
|
|
19357
19373
|
Unknown = "UNKNOWN"
|
|
19358
19374
|
}
|
|
19359
|
-
export declare type ExternalRemoteLink = {
|
|
19375
|
+
export declare type ExternalRemoteLink = Node & {
|
|
19360
19376
|
__typename?: 'ExternalRemoteLink';
|
|
19361
19377
|
actionIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
19362
19378
|
assignee?: Maybe<ExternalUser>;
|
|
@@ -19382,7 +19398,7 @@ export declare type ExternalRemoteLinkStatus = {
|
|
|
19382
19398
|
appearance?: Maybe<Scalars['String']['output']>;
|
|
19383
19399
|
label?: Maybe<Scalars['String']['output']>;
|
|
19384
19400
|
};
|
|
19385
|
-
export declare type ExternalRepository = {
|
|
19401
|
+
export declare type ExternalRepository = Node & {
|
|
19386
19402
|
__typename?: 'ExternalRepository';
|
|
19387
19403
|
avatarDescription?: Maybe<Scalars['String']['output']>;
|
|
19388
19404
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -19420,7 +19436,7 @@ export declare type ExternalUser = {
|
|
|
19420
19436
|
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
19421
19437
|
user?: Maybe<User>;
|
|
19422
19438
|
};
|
|
19423
|
-
export declare type ExternalVideo = {
|
|
19439
|
+
export declare type ExternalVideo = Node & {
|
|
19424
19440
|
__typename?: 'ExternalVideo';
|
|
19425
19441
|
chapters?: Maybe<Array<Maybe<ExternalChapter>>>;
|
|
19426
19442
|
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -19442,7 +19458,7 @@ export declare type ExternalVideo = {
|
|
|
19442
19458
|
url?: Maybe<Scalars['String']['output']>;
|
|
19443
19459
|
width?: Maybe<Scalars['Long']['output']>;
|
|
19444
19460
|
};
|
|
19445
|
-
export declare type ExternalVulnerability = {
|
|
19461
|
+
export declare type ExternalVulnerability = Node & {
|
|
19446
19462
|
__typename?: 'ExternalVulnerability';
|
|
19447
19463
|
additionalInfo?: Maybe<ExternalVulnerabilityAdditionalInfo>;
|
|
19448
19464
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -35133,11 +35149,11 @@ export declare enum GrowthUnifiedProfileCompanyType {
|
|
|
35133
35149
|
}
|
|
35134
35150
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
35135
35151
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
35136
|
-
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd
|
|
35152
|
+
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
35137
35153
|
template?: Maybe<Scalars['String']['output']>;
|
|
35138
35154
|
};
|
|
35139
35155
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
35140
|
-
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd
|
|
35156
|
+
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
35141
35157
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
35142
35158
|
};
|
|
35143
35159
|
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
@@ -35181,11 +35197,16 @@ export declare enum GrowthUnifiedProfileJtbd {
|
|
|
35181
35197
|
TrackingRprtng = "TRACKING_RPRTNG",
|
|
35182
35198
|
UseKanbanBoard = "USE_KANBAN_BOARD"
|
|
35183
35199
|
}
|
|
35200
|
+
export declare enum GrowthUnifiedProfileJiraFamiliarity {
|
|
35201
|
+
Experience = "EXPERIENCE",
|
|
35202
|
+
Middle = "MIDDLE",
|
|
35203
|
+
New = "NEW"
|
|
35204
|
+
}
|
|
35184
35205
|
export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
35185
35206
|
__typename?: 'GrowthUnifiedProfileJiraOnboardingContext';
|
|
35186
35207
|
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
35187
|
-
jiraFamiliarity?: Maybe<
|
|
35188
|
-
jobsToBeDone?: Maybe<GrowthUnifiedProfileJtbd
|
|
35208
|
+
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
35209
|
+
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
35189
35210
|
persona?: Maybe<Scalars['String']['output']>;
|
|
35190
35211
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
35191
35212
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -35193,8 +35214,8 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
35193
35214
|
};
|
|
35194
35215
|
export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
35195
35216
|
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
35196
|
-
jiraFamiliarity?: InputMaybe<
|
|
35197
|
-
jobsToBeDone?: InputMaybe<GrowthUnifiedProfileJtbd
|
|
35217
|
+
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
35218
|
+
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
35198
35219
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
35199
35220
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
35200
35221
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -36586,6 +36607,7 @@ export declare type HelpLayoutUpdatePayload = Payload & {
|
|
|
36586
36607
|
__typename?: 'HelpLayoutUpdatePayload';
|
|
36587
36608
|
errors?: Maybe<Array<MutationError>>;
|
|
36588
36609
|
layoutId?: Maybe<Scalars['ID']['output']>;
|
|
36610
|
+
reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
|
|
36589
36611
|
success: Scalars['Boolean']['output'];
|
|
36590
36612
|
};
|
|
36591
36613
|
export declare enum HelpLayoutVerticalAlignment {
|
|
@@ -38105,6 +38127,16 @@ export declare type JiraAffectedServicesFieldInput = {
|
|
|
38105
38127
|
affectedServices: Array<JiraAffectedServicesInput>;
|
|
38106
38128
|
fieldId: Scalars['ID']['input'];
|
|
38107
38129
|
};
|
|
38130
|
+
export declare type JiraAffectedServicesFieldOperationInput = {
|
|
38131
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38132
|
+
operation: JiraSingleValueFieldOperations;
|
|
38133
|
+
};
|
|
38134
|
+
export declare type JiraAffectedServicesFieldPayload = Payload & {
|
|
38135
|
+
__typename?: 'JiraAffectedServicesFieldPayload';
|
|
38136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38137
|
+
field?: Maybe<JiraAffectedServicesField>;
|
|
38138
|
+
success: Scalars['Boolean']['output'];
|
|
38139
|
+
};
|
|
38108
38140
|
export declare type JiraAffectedServicesInput = {
|
|
38109
38141
|
serviceId: Scalars['ID']['input'];
|
|
38110
38142
|
};
|
|
@@ -39918,7 +39950,7 @@ export declare type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldCo
|
|
|
39918
39950
|
type: Scalars['String']['output'];
|
|
39919
39951
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39920
39952
|
};
|
|
39921
|
-
export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39953
|
+
export declare type JiraConnectMultipleSelectField = JiraHasMultipleSelectedValues & JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39922
39954
|
__typename?: 'JiraConnectMultipleSelectField';
|
|
39923
39955
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
39924
39956
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -39929,8 +39961,10 @@ export declare type JiraConnectMultipleSelectField = JiraIssueField & JiraIssueF
|
|
|
39929
39961
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
39930
39962
|
name: Scalars['String']['output'];
|
|
39931
39963
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
39964
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
39932
39965
|
selectedFieldOptions?: Maybe<Array<Maybe<JiraOption>>>;
|
|
39933
39966
|
selectedOptions?: Maybe<JiraOptionConnection>;
|
|
39967
|
+
selectedValues?: Maybe<JiraSelectableValueConnection>;
|
|
39934
39968
|
type: Scalars['String']['output'];
|
|
39935
39969
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
39936
39970
|
};
|
|
@@ -39941,12 +39975,27 @@ export declare type JiraConnectMultipleSelectFieldFieldOptionsArgs = {
|
|
|
39941
39975
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39942
39976
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39943
39977
|
};
|
|
39978
|
+
export declare type JiraConnectMultipleSelectFieldSelectableValueOptionsArgs = {
|
|
39979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39980
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39981
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
39982
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39983
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39984
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39985
|
+
};
|
|
39944
39986
|
export declare type JiraConnectMultipleSelectFieldSelectedOptionsArgs = {
|
|
39945
39987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
39946
39988
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
39947
39989
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39948
39990
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39949
39991
|
};
|
|
39992
|
+
export declare type JiraConnectMultipleSelectFieldSelectedValuesArgs = {
|
|
39993
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
39994
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
39995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
39996
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
39997
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
39998
|
+
};
|
|
39950
39999
|
export declare type JiraConnectNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
39951
40000
|
__typename?: 'JiraConnectNumberField';
|
|
39952
40001
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -41230,6 +41279,7 @@ export declare type JiraForgeExtension = {
|
|
|
41230
41279
|
appVersion: Scalars['String']['output'];
|
|
41231
41280
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
41232
41281
|
egress: Array<Maybe<JiraForgeAppEgressDeclaration>>;
|
|
41282
|
+
environmentId: Scalars['String']['output'];
|
|
41233
41283
|
environmentKey: Scalars['String']['output'];
|
|
41234
41284
|
environmentType: JiraForgeEnvironmentType;
|
|
41235
41285
|
hiddenBy?: Maybe<JiraVisibilityControlMechanism>;
|
|
@@ -41244,6 +41294,7 @@ export declare type JiraForgeExtensionLicense = {
|
|
|
41244
41294
|
__typename?: 'JiraForgeExtensionLicense';
|
|
41245
41295
|
active: Scalars['Boolean']['output'];
|
|
41246
41296
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
41297
|
+
capabilitySet?: Maybe<Scalars['String']['output']>;
|
|
41247
41298
|
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
41248
41299
|
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
41249
41300
|
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -41348,7 +41399,7 @@ export declare type JiraForgeQuery = {
|
|
|
41348
41399
|
extensions?: Maybe<Array<JiraForgeExtension>>;
|
|
41349
41400
|
};
|
|
41350
41401
|
export declare type JiraForgeQueryExtensionsArgs = {
|
|
41351
|
-
cloudId
|
|
41402
|
+
cloudId: Scalars['ID']['input'];
|
|
41352
41403
|
context?: InputMaybe<JiraExtensionRenderingContextInput>;
|
|
41353
41404
|
includeHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41354
41405
|
types: Array<Scalars['String']['input']>;
|
|
@@ -41529,6 +41580,8 @@ export declare type JiraFormattingSingleValueOperandInput = {
|
|
|
41529
41580
|
value: Scalars['String']['input'];
|
|
41530
41581
|
};
|
|
41531
41582
|
export declare enum JiraFormattingSingleValueOperator {
|
|
41583
|
+
Contains = "CONTAINS",
|
|
41584
|
+
DoesNotContain = "DOES_NOT_CONTAIN",
|
|
41532
41585
|
DoesNotEqual = "DOES_NOT_EQUAL",
|
|
41533
41586
|
Equals = "EQUALS",
|
|
41534
41587
|
GreaterThan = "GREATER_THAN",
|
|
@@ -44216,6 +44269,7 @@ export declare type JiraMutation = {
|
|
|
44216
44269
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
44217
44270
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
44218
44271
|
updateActiveBackground?: Maybe<JiraUpdateActiveBackgroundPayload>;
|
|
44272
|
+
updateAffectedServicesField?: Maybe<JiraAffectedServicesFieldPayload>;
|
|
44219
44273
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
44220
44274
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
44221
44275
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
@@ -44555,6 +44609,9 @@ export declare type JiraMutationUnlinkIssuesFromIncidentArgs = {
|
|
|
44555
44609
|
export declare type JiraMutationUpdateActiveBackgroundArgs = {
|
|
44556
44610
|
input: JiraUpdateBackgroundInput;
|
|
44557
44611
|
};
|
|
44612
|
+
export declare type JiraMutationUpdateAffectedServicesFieldArgs = {
|
|
44613
|
+
input: JiraUpdateAffectedServicesFieldInput;
|
|
44614
|
+
};
|
|
44558
44615
|
export declare type JiraMutationUpdateAttachmentFieldArgs = {
|
|
44559
44616
|
input: JiraUpdateAttachmentFieldInput;
|
|
44560
44617
|
};
|
|
@@ -50211,6 +50268,10 @@ export declare type JiraUpdateActiveBackgroundPayload = Payload & {
|
|
|
50211
50268
|
errors?: Maybe<Array<MutationError>>;
|
|
50212
50269
|
success: Scalars['Boolean']['output'];
|
|
50213
50270
|
};
|
|
50271
|
+
export declare type JiraUpdateAffectedServicesFieldInput = {
|
|
50272
|
+
id: Scalars['ID']['input'];
|
|
50273
|
+
operation: JiraAffectedServicesFieldOperationInput;
|
|
50274
|
+
};
|
|
50214
50275
|
export declare type JiraUpdateAttachmentFieldInput = {
|
|
50215
50276
|
id: Scalars['ID']['input'];
|
|
50216
50277
|
operation: JiraAttachmentFieldOperationInput;
|
|
@@ -53471,6 +53532,7 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53471
53532
|
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53472
53533
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53473
53534
|
appSoftwareId: Scalars['ID']['output'];
|
|
53535
|
+
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
53474
53536
|
hosting: MarketplaceConsoleHosting;
|
|
53475
53537
|
isLatestVersionPaidViaAtlassian?: Maybe<Scalars['Boolean']['output']>;
|
|
53476
53538
|
};
|
|
@@ -53487,6 +53549,7 @@ export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
|
53487
53549
|
sourceCodeLicense?: Maybe<MarketplaceConsoleSourceCodeLicense>;
|
|
53488
53550
|
state: MarketplaceConsoleAppSoftwareVersionState;
|
|
53489
53551
|
supportedPaymentModel: MarketplaceConsolePaymentModel;
|
|
53552
|
+
versionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53490
53553
|
versionNumber: Scalars['String']['output'];
|
|
53491
53554
|
};
|
|
53492
53555
|
export declare type MarketplaceConsoleAppSoftwareVersionChangelog = {
|
|
@@ -53555,10 +53618,20 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53555
53618
|
Rejected = "REJECTED",
|
|
53556
53619
|
Submitted = "SUBMITTED"
|
|
53557
53620
|
}
|
|
53621
|
+
export declare type MarketplaceConsoleAppSoftwareVersions = {
|
|
53622
|
+
__typename?: 'MarketplaceConsoleAppSoftwareVersions';
|
|
53623
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53624
|
+
versions: Array<MarketplaceConsoleAppSoftwareVersion>;
|
|
53625
|
+
};
|
|
53558
53626
|
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53559
53627
|
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53560
53628
|
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53561
53629
|
};
|
|
53630
|
+
export declare type MarketplaceConsoleAppVersionDeleteRequestInput = {
|
|
53631
|
+
appId?: InputMaybe<Scalars['ID']['input']>;
|
|
53632
|
+
appSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
53633
|
+
buildNumber: Scalars['ID']['input'];
|
|
53634
|
+
};
|
|
53562
53635
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53563
53636
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53564
53637
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53646,17 +53719,21 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
53646
53719
|
features?: Maybe<Array<Maybe<MarketplaceConsoleFeature>>>;
|
|
53647
53720
|
id: Scalars['ID']['output'];
|
|
53648
53721
|
isDefault: Scalars['Boolean']['output'];
|
|
53649
|
-
name
|
|
53722
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
53650
53723
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
53651
|
-
type:
|
|
53724
|
+
type: MarketplaceConsoleEditionType;
|
|
53652
53725
|
};
|
|
53653
53726
|
export declare type MarketplaceConsoleEditionCreate = {
|
|
53654
53727
|
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureCreate>>>;
|
|
53655
53728
|
isDefault: Scalars['Boolean']['input'];
|
|
53656
53729
|
name: Scalars['String']['input'];
|
|
53657
53730
|
pricingPlan: MarketplaceConsolePricingPlanModify;
|
|
53658
|
-
type:
|
|
53731
|
+
type: MarketplaceConsoleEditionType;
|
|
53659
53732
|
};
|
|
53733
|
+
export declare enum MarketplaceConsoleEditionType {
|
|
53734
|
+
Advanced = "ADVANCED",
|
|
53735
|
+
Standard = "STANDARD"
|
|
53736
|
+
}
|
|
53660
53737
|
export declare type MarketplaceConsoleEditionUpdate = {
|
|
53661
53738
|
features?: InputMaybe<Array<InputMaybe<MarketplaceConsoleFeatureUpdate>>>;
|
|
53662
53739
|
id: Scalars['ID']['input'];
|
|
@@ -53682,6 +53759,10 @@ export declare enum MarketplaceConsoleEditionsActivationStatus {
|
|
|
53682
53759
|
Pending = "PENDING",
|
|
53683
53760
|
Rejected = "REJECTED"
|
|
53684
53761
|
}
|
|
53762
|
+
export declare type MarketplaceConsoleEditionsInput = {
|
|
53763
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53764
|
+
productId?: InputMaybe<Scalars['String']['input']>;
|
|
53765
|
+
};
|
|
53685
53766
|
export declare type MarketplaceConsoleError = {
|
|
53686
53767
|
message: Scalars['String']['output'];
|
|
53687
53768
|
};
|
|
@@ -53747,7 +53828,8 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53747
53828
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53748
53829
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53749
53830
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53750
|
-
|
|
53831
|
+
issueKey?: Maybe<Scalars['String']['output']>;
|
|
53832
|
+
rejectionReason?: Maybe<Scalars['String']['output']>;
|
|
53751
53833
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53752
53834
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53753
53835
|
};
|
|
@@ -53792,26 +53874,30 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
53792
53874
|
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53793
53875
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53794
53876
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53877
|
+
deleteAppVersion?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53795
53878
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53796
53879
|
};
|
|
53797
53880
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53798
53881
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53799
|
-
product:
|
|
53882
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53800
53883
|
};
|
|
53801
53884
|
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53802
53885
|
appSoftwareId: Scalars['String']['input'];
|
|
53803
53886
|
};
|
|
53804
53887
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53805
53888
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53806
|
-
product:
|
|
53889
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53807
53890
|
};
|
|
53808
53891
|
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53809
53892
|
appSoftwareId: Scalars['String']['input'];
|
|
53810
53893
|
token: Scalars['String']['input'];
|
|
53811
53894
|
};
|
|
53895
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
53896
|
+
deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
|
|
53897
|
+
};
|
|
53812
53898
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53813
53899
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53814
|
-
product:
|
|
53900
|
+
product: MarketplaceConsoleEditionsInput;
|
|
53815
53901
|
};
|
|
53816
53902
|
export declare type MarketplaceConsoleMutationVoidResponse = {
|
|
53817
53903
|
__typename?: 'MarketplaceConsoleMutationVoidResponse';
|
|
@@ -53873,46 +53959,39 @@ export declare type MarketplaceConsolePluginsFrameworkAttributes = {
|
|
|
53873
53959
|
__typename?: 'MarketplaceConsolePluginsFrameworkAttributes';
|
|
53874
53960
|
artifactId: Scalars['ID']['output'];
|
|
53875
53961
|
};
|
|
53962
|
+
export declare enum MarketplaceConsolePricingCurrency {
|
|
53963
|
+
Jpy = "JPY",
|
|
53964
|
+
Usd = "USD"
|
|
53965
|
+
}
|
|
53876
53966
|
export declare type MarketplaceConsolePricingItem = {
|
|
53877
53967
|
__typename?: 'MarketplaceConsolePricingItem';
|
|
53878
53968
|
amount: Scalars['Float']['output'];
|
|
53879
|
-
|
|
53880
|
-
|
|
53881
|
-
editionId: Scalars['String']['output'];
|
|
53882
|
-
editionType: Scalars['String']['output'];
|
|
53883
|
-
licenseType: Scalars['String']['output'];
|
|
53884
|
-
localCurrency: Scalars['String']['output'];
|
|
53885
|
-
localCurrencyAmount: Scalars['Float']['output'];
|
|
53886
|
-
localCurrencyRenewalAmount: Scalars['Float']['output'];
|
|
53887
|
-
monthsValid: Scalars['Int']['output'];
|
|
53888
|
-
renewalAmount: Scalars['Float']['output'];
|
|
53889
|
-
unitCount: Scalars['Int']['output'];
|
|
53969
|
+
ceiling: Scalars['Float']['output'];
|
|
53970
|
+
floor: Scalars['Float']['output'];
|
|
53890
53971
|
};
|
|
53891
53972
|
export declare type MarketplaceConsolePricingItemModify = {
|
|
53892
53973
|
amount: Scalars['Float']['input'];
|
|
53893
|
-
|
|
53894
|
-
|
|
53895
|
-
editionId: Scalars['String']['input'];
|
|
53896
|
-
editionType: Scalars['String']['input'];
|
|
53897
|
-
licenseType: Scalars['String']['input'];
|
|
53898
|
-
localCurrency: Scalars['String']['input'];
|
|
53899
|
-
localCurrencyAmount: Scalars['Float']['input'];
|
|
53900
|
-
localCurrencyRenewalAmount: Scalars['Float']['input'];
|
|
53901
|
-
monthsValid: Scalars['Int']['input'];
|
|
53902
|
-
renewalAmount: Scalars['Float']['input'];
|
|
53903
|
-
unitCount: Scalars['Int']['input'];
|
|
53974
|
+
ceiling: Scalars['Float']['input'];
|
|
53975
|
+
floor: Scalars['Float']['input'];
|
|
53904
53976
|
};
|
|
53905
53977
|
export declare type MarketplaceConsolePricingPlan = {
|
|
53906
53978
|
__typename?: 'MarketplaceConsolePricingPlan';
|
|
53979
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
53907
53980
|
expertDiscountOptOut: Scalars['Boolean']['output'];
|
|
53908
|
-
|
|
53909
|
-
|
|
53981
|
+
status: MarketplaceConsolePricingPlanStatus;
|
|
53982
|
+
tieredPricing: MarketplaceConsoleTieredPricing;
|
|
53910
53983
|
};
|
|
53911
53984
|
export declare type MarketplaceConsolePricingPlanModify = {
|
|
53985
|
+
currency: MarketplaceConsolePricingCurrency;
|
|
53912
53986
|
expertDiscountOptOut: Scalars['Boolean']['input'];
|
|
53913
|
-
|
|
53914
|
-
|
|
53987
|
+
status: MarketplaceConsolePricingPlanStatus;
|
|
53988
|
+
tieredPricing: MarketplaceConsoleTieredPricingModify;
|
|
53915
53989
|
};
|
|
53990
|
+
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
53991
|
+
Draft = "DRAFT",
|
|
53992
|
+
Live = "LIVE",
|
|
53993
|
+
Pending = "PENDING"
|
|
53994
|
+
}
|
|
53916
53995
|
export declare type MarketplaceConsolePrivateListings = {
|
|
53917
53996
|
__typename?: 'MarketplaceConsolePrivateListings';
|
|
53918
53997
|
appSoftwareId: Scalars['ID']['output'];
|
|
@@ -53931,8 +54010,10 @@ export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
|
53931
54010
|
node: MarketplaceConsoleTokenDetails;
|
|
53932
54011
|
};
|
|
53933
54012
|
export declare type MarketplaceConsoleProduct = {
|
|
53934
|
-
|
|
53935
|
-
|
|
54013
|
+
__typename?: 'MarketplaceConsoleProduct';
|
|
54014
|
+
appKey: Scalars['ID']['output'];
|
|
54015
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
54016
|
+
productId: Scalars['ID']['output'];
|
|
53936
54017
|
};
|
|
53937
54018
|
export declare type MarketplaceConsoleProductListing = {
|
|
53938
54019
|
__typename?: 'MarketplaceConsoleProductListing';
|
|
@@ -53976,6 +54057,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53976
54057
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53977
54058
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53978
54059
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
54060
|
+
appSoftwareVersions?: Maybe<MarketplaceConsoleAppSoftwareVersions>;
|
|
53979
54061
|
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53980
54062
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53981
54063
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
@@ -53986,6 +54068,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53986
54068
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53987
54069
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
53988
54070
|
parentSoftwares: Array<MarketplaceConsoleParentSoftware>;
|
|
54071
|
+
product?: Maybe<MarketplaceConsoleProduct>;
|
|
53989
54072
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53990
54073
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53991
54074
|
};
|
|
@@ -54005,6 +54088,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
54005
54088
|
appId: Scalars['ID']['input'];
|
|
54006
54089
|
buildNumber: Scalars['ID']['input'];
|
|
54007
54090
|
};
|
|
54091
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionsArgs = {
|
|
54092
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
54093
|
+
};
|
|
54008
54094
|
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
54009
54095
|
appId: Scalars['ID']['input'];
|
|
54010
54096
|
};
|
|
@@ -54021,10 +54107,14 @@ export declare type MarketplaceConsoleQueryApiDeveloperSpaceByAppIdArgs = {
|
|
|
54021
54107
|
appId: Scalars['ID']['input'];
|
|
54022
54108
|
};
|
|
54023
54109
|
export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
54024
|
-
product:
|
|
54110
|
+
product: MarketplaceConsoleEditionsInput;
|
|
54025
54111
|
};
|
|
54026
54112
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
54027
|
-
product:
|
|
54113
|
+
product: MarketplaceConsoleEditionsInput;
|
|
54114
|
+
};
|
|
54115
|
+
export declare type MarketplaceConsoleQueryApiProductArgs = {
|
|
54116
|
+
appKey: Scalars['ID']['input'];
|
|
54117
|
+
productId: Scalars['ID']['input'];
|
|
54028
54118
|
};
|
|
54029
54119
|
export declare type MarketplaceConsoleQueryApiProductListingByAppIdArgs = {
|
|
54030
54120
|
appId: Scalars['ID']['input'];
|
|
@@ -54042,6 +54132,13 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
54042
54132
|
id: Scalars['ID']['output'];
|
|
54043
54133
|
name: Scalars['String']['output'];
|
|
54044
54134
|
};
|
|
54135
|
+
export declare type MarketplaceConsoleTieredPricing = {
|
|
54136
|
+
__typename?: 'MarketplaceConsoleTieredPricing';
|
|
54137
|
+
items: Array<MarketplaceConsolePricingItem>;
|
|
54138
|
+
};
|
|
54139
|
+
export declare type MarketplaceConsoleTieredPricingModify = {
|
|
54140
|
+
items: Array<MarketplaceConsolePricingItemModify>;
|
|
54141
|
+
};
|
|
54045
54142
|
export declare type MarketplaceConsoleTokenDetails = {
|
|
54046
54143
|
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
54047
54144
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -55446,6 +55543,8 @@ export declare type MercuryQueryApi = {
|
|
|
55446
55543
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
55447
55544
|
myPreference?: Maybe<MercuryPreference>;
|
|
55448
55545
|
myPreferences?: Maybe<Array<MercuryPreference>>;
|
|
55546
|
+
providerWork?: Maybe<MercuryProviderWork>;
|
|
55547
|
+
providerWorksByAris?: Maybe<Array<MercuryProviderWork>>;
|
|
55449
55548
|
team?: Maybe<MercuryTeam>;
|
|
55450
55549
|
teams?: Maybe<MercuryTeamConnection>;
|
|
55451
55550
|
workspaceContext: MercuryWorkspaceContext;
|
|
@@ -55519,6 +55618,13 @@ export declare type MercuryQueryApiMyPreferenceArgs = {
|
|
|
55519
55618
|
export declare type MercuryQueryApiMyPreferencesArgs = {
|
|
55520
55619
|
cloudId: Scalars['ID']['input'];
|
|
55521
55620
|
};
|
|
55621
|
+
export declare type MercuryQueryApiProviderWorkArgs = {
|
|
55622
|
+
cloudId: Scalars['ID']['input'];
|
|
55623
|
+
id: Scalars['ID']['input'];
|
|
55624
|
+
};
|
|
55625
|
+
export declare type MercuryQueryApiProviderWorksByArisArgs = {
|
|
55626
|
+
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
55627
|
+
};
|
|
55522
55628
|
export declare type MercuryQueryApiTeamArgs = {
|
|
55523
55629
|
cloudId: Scalars['ID']['input'];
|
|
55524
55630
|
id: Scalars['ID']['input'];
|
|
@@ -69289,6 +69395,7 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
69289
69395
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
69290
69396
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
69291
69397
|
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
69398
|
+
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
69292
69399
|
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
69293
69400
|
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
69294
69401
|
};
|
|
@@ -69299,6 +69406,9 @@ export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
|
69299
69406
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69300
69407
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69301
69408
|
};
|
|
69409
|
+
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
69410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69411
|
+
};
|
|
69302
69412
|
export declare type WorkSuggestionsCodeTabEdge = {
|
|
69303
69413
|
__typename?: 'WorkSuggestionsCodeTabEdge';
|
|
69304
69414
|
cursor: Scalars['String']['output'];
|
|
@@ -69382,6 +69492,25 @@ export declare type WorkSuggestionsCommon = {
|
|
|
69382
69492
|
title: Scalars['String']['output'];
|
|
69383
69493
|
url: Scalars['String']['output'];
|
|
69384
69494
|
};
|
|
69495
|
+
export declare type WorkSuggestionsCompassAnnouncementTask = WorkSuggestionsCompassTask & WorkSuggestionsPeriscopeTask & {
|
|
69496
|
+
__typename?: 'WorkSuggestionsCompassAnnouncementTask';
|
|
69497
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69498
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
69499
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
69500
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
69501
|
+
id: Scalars['String']['output'];
|
|
69502
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69503
|
+
senderComponentName?: Maybe<Scalars['String']['output']>;
|
|
69504
|
+
senderComponentType?: Maybe<Scalars['String']['output']>;
|
|
69505
|
+
targetDate?: Maybe<Scalars['String']['output']>;
|
|
69506
|
+
title: Scalars['String']['output'];
|
|
69507
|
+
url: Scalars['String']['output'];
|
|
69508
|
+
};
|
|
69509
|
+
export declare type WorkSuggestionsCompassTask = {
|
|
69510
|
+
componentAri?: Maybe<Scalars['ID']['output']>;
|
|
69511
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
69512
|
+
componentType?: Maybe<Scalars['String']['output']>;
|
|
69513
|
+
};
|
|
69385
69514
|
export declare type WorkSuggestionsConnection = {
|
|
69386
69515
|
__typename?: 'WorkSuggestionsConnection';
|
|
69387
69516
|
edges?: Maybe<Array<WorkSuggestionsEdge>>;
|