@forge/cli-shared 8.9.0-next.8 → 8.9.0-next.9
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 +7 -0
- package/out/graphql/graphql-types.d.ts +187 -15
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +44 -26
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -12310,6 +12310,7 @@ export declare type CompassDeploymentEventEnvironmentInput = {
|
|
|
12310
12310
|
};
|
|
12311
12311
|
export declare type CompassDeploymentEventFilters = {
|
|
12312
12312
|
environments?: InputMaybe<Array<CompassDeploymentEventEnvironmentCategory>>;
|
|
12313
|
+
states?: InputMaybe<Array<CompassDeploymentEventState>>;
|
|
12313
12314
|
};
|
|
12314
12315
|
export declare type CompassDeploymentEventPipeline = {
|
|
12315
12316
|
__typename?: 'CompassDeploymentEventPipeline';
|
|
@@ -17218,6 +17219,11 @@ export declare type ConfluenceLanguage = {
|
|
|
17218
17219
|
language?: Maybe<Scalars['String']['output']>;
|
|
17219
17220
|
name?: Maybe<Scalars['String']['output']>;
|
|
17220
17221
|
};
|
|
17222
|
+
export declare type ConfluenceLatestPendingRequests = {
|
|
17223
|
+
__typename?: 'ConfluenceLatestPendingRequests';
|
|
17224
|
+
latestPendingRequest?: Maybe<Array<Maybe<ConfluenceContentAccessRequest>>>;
|
|
17225
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
17226
|
+
};
|
|
17221
17227
|
export declare type ConfluenceLegacyEditorReportDownloadLink = {
|
|
17222
17228
|
__typename?: 'ConfluenceLegacyEditorReportDownloadLink';
|
|
17223
17229
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -27144,6 +27150,7 @@ export declare type DevConsoleResourceUsagePeriod = {
|
|
|
27144
27150
|
export declare type DevConsoleResourceUsageTopSite = {
|
|
27145
27151
|
__typename?: 'DevConsoleResourceUsageTopSite';
|
|
27146
27152
|
contextAri: Scalars['String']['output'];
|
|
27153
|
+
hostName?: Maybe<Scalars['String']['output']>;
|
|
27147
27154
|
totalUsage: Scalars['String']['output'];
|
|
27148
27155
|
unit: Scalars['String']['output'];
|
|
27149
27156
|
};
|
|
@@ -63192,6 +63199,19 @@ export declare type JiraActivityFieldValueKeyValuePairInput = {
|
|
|
63192
63199
|
key: Scalars['String']['input'];
|
|
63193
63200
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
63194
63201
|
};
|
|
63202
|
+
export declare enum JiraActivityFilter {
|
|
63203
|
+
AnyComment = "ANY_COMMENT",
|
|
63204
|
+
Approval = "APPROVAL",
|
|
63205
|
+
HiddenCustomEntries = "HIDDEN_CUSTOM_ENTRIES",
|
|
63206
|
+
History = "HISTORY",
|
|
63207
|
+
HistoryIncludeIssueCreated = "HISTORY_INCLUDE_ISSUE_CREATED",
|
|
63208
|
+
IccSessionDetails = "ICC_SESSION_DETAILS",
|
|
63209
|
+
IccSessionLifecycle = "ICC_SESSION_LIFECYCLE",
|
|
63210
|
+
Incident = "INCIDENT",
|
|
63211
|
+
ResponderAlert = "RESPONDER_ALERT",
|
|
63212
|
+
StakeholderUpdate = "STAKEHOLDER_UPDATE",
|
|
63213
|
+
WorkLog = "WORK_LOG"
|
|
63214
|
+
}
|
|
63195
63215
|
export declare type JiraActivitySortOrderPayload = Payload & {
|
|
63196
63216
|
__typename?: 'JiraActivitySortOrderPayload';
|
|
63197
63217
|
activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
@@ -63549,6 +63569,22 @@ export declare type JiraAlignAggSite = {
|
|
|
63549
63569
|
jiraAlignSiteUrl: Scalars['String']['output'];
|
|
63550
63570
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
63551
63571
|
};
|
|
63572
|
+
export declare type JiraAllActivityFeedConnection = {
|
|
63573
|
+
__typename?: 'JiraAllActivityFeedConnection';
|
|
63574
|
+
edges?: Maybe<Array<JiraAllActivityFeedEdge>>;
|
|
63575
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63576
|
+
};
|
|
63577
|
+
export declare type JiraAllActivityFeedEdge = {
|
|
63578
|
+
__typename?: 'JiraAllActivityFeedEdge';
|
|
63579
|
+
cursor: Scalars['String']['output'];
|
|
63580
|
+
node?: Maybe<JiraAllActivityFeedItem>;
|
|
63581
|
+
};
|
|
63582
|
+
export declare type JiraAllActivityFeedItem = {
|
|
63583
|
+
__typename?: 'JiraAllActivityFeedItem';
|
|
63584
|
+
item?: Maybe<JiraAllActivityFeedItemUnion>;
|
|
63585
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
63586
|
+
};
|
|
63587
|
+
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
|
|
63552
63588
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
63553
63589
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
63554
63590
|
}
|
|
@@ -63719,10 +63755,47 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
|
63719
63755
|
success: Scalars['Boolean']['output'];
|
|
63720
63756
|
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
63721
63757
|
};
|
|
63758
|
+
export declare type JiraApprovalActivityFeedConnection = {
|
|
63759
|
+
__typename?: 'JiraApprovalActivityFeedConnection';
|
|
63760
|
+
nodes: Array<JiraApprovalActivityItem>;
|
|
63761
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63762
|
+
};
|
|
63763
|
+
export declare type JiraApprovalActivityItem = {
|
|
63764
|
+
__typename?: 'JiraApprovalActivityItem';
|
|
63765
|
+
approvalName?: Maybe<Scalars['String']['output']>;
|
|
63766
|
+
date: Scalars['Long']['output'];
|
|
63767
|
+
friendlyDate?: Maybe<Scalars['String']['output']>;
|
|
63768
|
+
id: Scalars['ID']['output'];
|
|
63769
|
+
value?: Maybe<JiraApprovalActivityValueUnion>;
|
|
63770
|
+
};
|
|
63771
|
+
export declare type JiraApprovalActivityValueUnion = JiraApprovalCompleted | JiraApprovalCreated | JiraApproverDecision;
|
|
63772
|
+
export declare type JiraApprovalCompleted = {
|
|
63773
|
+
__typename?: 'JiraApprovalCompleted';
|
|
63774
|
+
outcome?: Maybe<Scalars['String']['output']>;
|
|
63775
|
+
systemDecided?: Maybe<Scalars['Boolean']['output']>;
|
|
63776
|
+
};
|
|
63777
|
+
export declare type JiraApprovalConfiguration = {
|
|
63778
|
+
__typename?: 'JiraApprovalConfiguration';
|
|
63779
|
+
approverFieldId?: Maybe<Scalars['String']['output']>;
|
|
63780
|
+
approverFieldType?: Maybe<Scalars['String']['output']>;
|
|
63781
|
+
conditionType?: Maybe<Scalars['String']['output']>;
|
|
63782
|
+
conditionValue?: Maybe<Scalars['String']['output']>;
|
|
63783
|
+
translatedApproverFieldName?: Maybe<Scalars['String']['output']>;
|
|
63784
|
+
};
|
|
63785
|
+
export declare type JiraApprovalCreated = {
|
|
63786
|
+
__typename?: 'JiraApprovalCreated';
|
|
63787
|
+
approvalConfigurations?: Maybe<Array<Maybe<JiraApprovalConfiguration>>>;
|
|
63788
|
+
excludedFields?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
63789
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
63790
|
+
};
|
|
63722
63791
|
export declare enum JiraApprovalDecision {
|
|
63723
63792
|
Approved = "APPROVED",
|
|
63724
63793
|
Rejected = "REJECTED"
|
|
63725
63794
|
}
|
|
63795
|
+
export declare type JiraApprovalItem = {
|
|
63796
|
+
__typename?: 'JiraApprovalItem';
|
|
63797
|
+
approvalItem?: Maybe<JiraApprovalActivityItem>;
|
|
63798
|
+
};
|
|
63726
63799
|
export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestInput = {
|
|
63727
63800
|
approvalLocation?: InputMaybe<JiraOrganizationApprovalLocation>;
|
|
63728
63801
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -63732,6 +63805,11 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
63732
63805
|
errors?: Maybe<Array<MutationError>>;
|
|
63733
63806
|
success: Scalars['Boolean']['output'];
|
|
63734
63807
|
};
|
|
63808
|
+
export declare type JiraApproverDecision = {
|
|
63809
|
+
__typename?: 'JiraApproverDecision';
|
|
63810
|
+
approver?: Maybe<User>;
|
|
63811
|
+
decision?: Maybe<Scalars['String']['output']>;
|
|
63812
|
+
};
|
|
63735
63813
|
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
63736
63814
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
63737
63815
|
id: Scalars['ID']['input'];
|
|
@@ -66376,6 +66454,10 @@ export declare type JiraCommentEdge = {
|
|
|
66376
66454
|
cursor: Scalars['String']['output'];
|
|
66377
66455
|
node?: Maybe<JiraComment>;
|
|
66378
66456
|
};
|
|
66457
|
+
export declare type JiraCommentItem = {
|
|
66458
|
+
__typename?: 'JiraCommentItem';
|
|
66459
|
+
commentItem?: Maybe<JiraComment>;
|
|
66460
|
+
};
|
|
66379
66461
|
export declare enum JiraCommentSortField {
|
|
66380
66462
|
Created = "CREATED"
|
|
66381
66463
|
}
|
|
@@ -69926,6 +70008,10 @@ export declare type JiraHasSelectableValueOptionsSelectableValueOptionsArgs = {
|
|
|
69926
70008
|
export declare type JiraHasSingleSelectedValue = {
|
|
69927
70009
|
selectedValue?: Maybe<JiraSelectableValue>;
|
|
69928
70010
|
};
|
|
70011
|
+
export declare type JiraHiddenCommentItem = {
|
|
70012
|
+
__typename?: 'JiraHiddenCommentItem';
|
|
70013
|
+
hiddenCommentItem?: Maybe<JiraComment>;
|
|
70014
|
+
};
|
|
69929
70015
|
export declare type JiraHierarchyConfigError = {
|
|
69930
70016
|
__typename?: 'JiraHierarchyConfigError';
|
|
69931
70017
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -69971,6 +70057,10 @@ export declare type JiraHistoryGenericFieldValue = {
|
|
|
69971
70057
|
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
69972
70058
|
value?: Maybe<Scalars['String']['output']>;
|
|
69973
70059
|
};
|
|
70060
|
+
export declare type JiraHistoryItem = {
|
|
70061
|
+
__typename?: 'JiraHistoryItem';
|
|
70062
|
+
historyItem?: Maybe<JiraHistoryActivityFeedItem>;
|
|
70063
|
+
};
|
|
69974
70064
|
export declare type JiraHistoryPriorityFieldValue = {
|
|
69975
70065
|
__typename?: 'JiraHistoryPriorityFieldValue';
|
|
69976
70066
|
absoluteIconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -70092,6 +70182,7 @@ export declare type JiraInviterActivityRecommendation = JiraProjectRecommendatio
|
|
|
70092
70182
|
export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
|
|
70093
70183
|
__typename?: 'JiraIssue';
|
|
70094
70184
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
70185
|
+
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
70095
70186
|
archivedBy?: Maybe<User>;
|
|
70096
70187
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
70097
70188
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
@@ -70232,6 +70323,13 @@ export declare type JiraIssueAiAgentSessionsArgs = {
|
|
|
70232
70323
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70233
70324
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
70234
70325
|
};
|
|
70326
|
+
export declare type JiraIssueAllActivitiesArgs = {
|
|
70327
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70328
|
+
cloudId: Scalars['ID']['input'];
|
|
70329
|
+
filterBy?: InputMaybe<Array<JiraActivityFilter>>;
|
|
70330
|
+
first: Scalars['Int']['input'];
|
|
70331
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
70332
|
+
};
|
|
70235
70333
|
export declare type JiraIssueAttachmentsArgs = {
|
|
70236
70334
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
70237
70335
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79310,6 +79408,7 @@ export declare type JiraResource = {
|
|
|
79310
79408
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
79311
79409
|
id: Scalars['ID']['output'];
|
|
79312
79410
|
integration?: Maybe<JiraResourceIntegration>;
|
|
79411
|
+
isExternallyLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
79313
79412
|
parent?: Maybe<JiraResourceParentName>;
|
|
79314
79413
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
79315
79414
|
};
|
|
@@ -84953,6 +85052,10 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
84953
85052
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
84954
85053
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
84955
85054
|
};
|
|
85055
|
+
export declare type JiraWorklogItem = {
|
|
85056
|
+
__typename?: 'JiraWorklogItem';
|
|
85057
|
+
worklogItem?: Maybe<JiraWorklog>;
|
|
85058
|
+
};
|
|
84956
85059
|
export declare type JiraWorklogPayload = Payload & {
|
|
84957
85060
|
__typename?: 'JiraWorklogPayload';
|
|
84958
85061
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -85144,12 +85247,10 @@ export declare type JsmChannelsExperienceConfiguration = {
|
|
|
85144
85247
|
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
85145
85248
|
filter?: Maybe<JsmChannelsFilterConfiguration>;
|
|
85146
85249
|
isEnabled: Scalars['Boolean']['output'];
|
|
85147
|
-
mode?: Maybe<JsmChannelsExperienceMode>;
|
|
85148
85250
|
};
|
|
85149
85251
|
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
85150
85252
|
filter?: InputMaybe<JsmChannelsFilterConfigurationInput>;
|
|
85151
85253
|
isEnabled: Scalars['Boolean']['input'];
|
|
85152
|
-
mode?: InputMaybe<JsmChannelsExperienceMode>;
|
|
85153
85254
|
};
|
|
85154
85255
|
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
85155
85256
|
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
@@ -85158,23 +85259,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
85158
85259
|
success: Scalars['Boolean']['output'];
|
|
85159
85260
|
};
|
|
85160
85261
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
85161
|
-
export declare enum JsmChannelsExperienceMode {
|
|
85162
|
-
Autonomous = "AUTONOMOUS",
|
|
85163
|
-
Supervised = "SUPERVISED"
|
|
85164
|
-
}
|
|
85165
85262
|
export declare type JsmChannelsFilterConfiguration = {
|
|
85166
85263
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
85167
|
-
requestTypes?: Maybe<Array<
|
|
85168
|
-
requestTypesMode?: Maybe<JsmChannelsFilterRequestTypesMode>;
|
|
85264
|
+
requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
|
|
85169
85265
|
};
|
|
85170
85266
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
85171
|
-
requestTypes?: InputMaybe<Array<
|
|
85172
|
-
requestTypesMode?: InputMaybe<JsmChannelsFilterRequestTypesMode>;
|
|
85267
|
+
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
85173
85268
|
};
|
|
85174
|
-
export declare enum JsmChannelsFilterRequestTypesMode {
|
|
85175
|
-
All = "ALL",
|
|
85176
|
-
Specific = "SPECIFIC"
|
|
85177
|
-
}
|
|
85178
85269
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
85179
85270
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
85180
85271
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -85231,6 +85322,22 @@ export declare type JsmChannelsOrchestratorConversationsFilter = {
|
|
|
85231
85322
|
startDate: Scalars['DateTime']['input'];
|
|
85232
85323
|
states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
|
|
85233
85324
|
};
|
|
85325
|
+
export declare enum JsmChannelsRequestTypeExecutionMode {
|
|
85326
|
+
Assistive = "ASSISTIVE",
|
|
85327
|
+
Autonomous = "AUTONOMOUS",
|
|
85328
|
+
Disabled = "DISABLED",
|
|
85329
|
+
Smart = "SMART",
|
|
85330
|
+
Supervised = "SUPERVISED"
|
|
85331
|
+
}
|
|
85332
|
+
export declare type JsmChannelsRequestTypes = {
|
|
85333
|
+
__typename?: 'JsmChannelsRequestTypes';
|
|
85334
|
+
id: Scalars['String']['output'];
|
|
85335
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
85336
|
+
};
|
|
85337
|
+
export declare type JsmChannelsRequestTypesInput = {
|
|
85338
|
+
id: Scalars['String']['input'];
|
|
85339
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
85340
|
+
};
|
|
85234
85341
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
85235
85342
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
85236
85343
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -88378,6 +88485,11 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
88378
88485
|
logicalFileName: Scalars['String']['output'];
|
|
88379
88486
|
size: Scalars['Int']['output'];
|
|
88380
88487
|
};
|
|
88488
|
+
export declare type MarketplaceConsoleBulkProductMigration = {
|
|
88489
|
+
__typename?: 'MarketplaceConsoleBulkProductMigration';
|
|
88490
|
+
products: Array<Maybe<MarketplaceConsoleProductMigration>>;
|
|
88491
|
+
};
|
|
88492
|
+
export declare type MarketplaceConsoleBulkProductMigrationResponse = MarketplaceConsoleBulkProductMigration | MarketplaceConsoleProductMigrationError;
|
|
88381
88493
|
export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
88382
88494
|
dcAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
88383
88495
|
serverAppSoftwareId: Scalars['ID']['input'];
|
|
@@ -88389,6 +88501,11 @@ export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
|
88389
88501
|
FedrampModerate = "FEDRAMP_MODERATE",
|
|
88390
88502
|
IsolatedCloud = "ISOLATED_CLOUD"
|
|
88391
88503
|
}
|
|
88504
|
+
export declare type MarketplaceConsoleCompatibilityRanges = {
|
|
88505
|
+
__typename?: 'MarketplaceConsoleCompatibilityRanges';
|
|
88506
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
88507
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
88508
|
+
};
|
|
88392
88509
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
88393
88510
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
88394
88511
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -88753,6 +88870,16 @@ export declare type MarketplaceConsoleImageMediaAsset = {
|
|
|
88753
88870
|
uri: Scalars['String']['output'];
|
|
88754
88871
|
width: Scalars['Int']['output'];
|
|
88755
88872
|
};
|
|
88873
|
+
export declare type MarketplaceConsoleJsonPatchOperation = {
|
|
88874
|
+
op: MarketplaceConsoleJsonPatchOperationType;
|
|
88875
|
+
path: Scalars['String']['input'];
|
|
88876
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
88877
|
+
};
|
|
88878
|
+
export declare enum MarketplaceConsoleJsonPatchOperationType {
|
|
88879
|
+
Add = "ADD",
|
|
88880
|
+
Remove = "REMOVE",
|
|
88881
|
+
Replace = "REPLACE"
|
|
88882
|
+
}
|
|
88756
88883
|
export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
|
|
88757
88884
|
__typename?: 'MarketplaceConsoleKnownError';
|
|
88758
88885
|
id: Scalars['ID']['output'];
|
|
@@ -88927,6 +89054,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
88927
89054
|
editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
|
|
88928
89055
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
88929
89056
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
89057
|
+
patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
|
|
88930
89058
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
88931
89059
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
88932
89060
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -88974,6 +89102,10 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
88974
89102
|
export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
88975
89103
|
makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
|
|
88976
89104
|
};
|
|
89105
|
+
export declare type MarketplaceConsoleMutationApiPatchProductMigrationArgs = {
|
|
89106
|
+
operations: Array<MarketplaceConsoleJsonPatchOperation>;
|
|
89107
|
+
productId: Scalars['ID']['input'];
|
|
89108
|
+
};
|
|
88977
89109
|
export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
88978
89110
|
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
88979
89111
|
};
|
|
@@ -89213,6 +89345,30 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
89213
89345
|
productId: Scalars['ID']['output'];
|
|
89214
89346
|
vendorId: Scalars['ID']['output'];
|
|
89215
89347
|
};
|
|
89348
|
+
export declare type MarketplaceConsoleProductMigration = {
|
|
89349
|
+
__typename?: 'MarketplaceConsoleProductMigration';
|
|
89350
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
89351
|
+
addonName?: Maybe<Scalars['String']['output']>;
|
|
89352
|
+
cloudAddonKey?: Maybe<Scalars['String']['output']>;
|
|
89353
|
+
cloudMigrationAssistantCompatibility?: Maybe<Scalars['String']['output']>;
|
|
89354
|
+
cloudMigrationAssistantCompatibilityRanges?: Maybe<Array<Maybe<MarketplaceConsoleCompatibilityRanges>>>;
|
|
89355
|
+
cloudVersionAvailability?: Maybe<Scalars['String']['output']>;
|
|
89356
|
+
cloudVersionDevelopmentRoadmap?: Maybe<Scalars['String']['output']>;
|
|
89357
|
+
developerId?: Maybe<Scalars['ID']['output']>;
|
|
89358
|
+
featureDifferenceDocumentation?: Maybe<Scalars['String']['output']>;
|
|
89359
|
+
isDualLicenseOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
89360
|
+
migrationDocumentation?: Maybe<Scalars['String']['output']>;
|
|
89361
|
+
migrationPath?: Maybe<Scalars['String']['output']>;
|
|
89362
|
+
migrationRoadmapTicketLink?: Maybe<Scalars['String']['output']>;
|
|
89363
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
89364
|
+
};
|
|
89365
|
+
export declare type MarketplaceConsoleProductMigrationError = MarketplaceConsoleError & {
|
|
89366
|
+
__typename?: 'MarketplaceConsoleProductMigrationError';
|
|
89367
|
+
id: Scalars['ID']['output'];
|
|
89368
|
+
message: Scalars['String']['output'];
|
|
89369
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
89370
|
+
};
|
|
89371
|
+
export declare type MarketplaceConsoleProductMigrationResponse = MarketplaceConsoleProductMigration | MarketplaceConsoleProductMigrationError;
|
|
89216
89372
|
export declare type MarketplaceConsoleProductTag = {
|
|
89217
89373
|
__typename?: 'MarketplaceConsoleProductTag';
|
|
89218
89374
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -89243,6 +89399,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
89243
89399
|
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
89244
89400
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
89245
89401
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
89402
|
+
getBulkProductMigration?: Maybe<MarketplaceConsoleBulkProductMigrationResponse>;
|
|
89246
89403
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
89247
89404
|
offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
|
|
89248
89405
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
@@ -89301,6 +89458,9 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
|
89301
89458
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
89302
89459
|
product: MarketplaceConsoleEditionsInput;
|
|
89303
89460
|
};
|
|
89461
|
+
export declare type MarketplaceConsoleQueryApiGetBulkProductMigrationArgs = {
|
|
89462
|
+
productIds: Array<Scalars['ID']['input']>;
|
|
89463
|
+
};
|
|
89304
89464
|
export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
89305
89465
|
appId: Scalars['ID']['input'];
|
|
89306
89466
|
buildNumber: Scalars['ID']['input'];
|
|
@@ -92008,6 +92168,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs =
|
|
|
92008
92168
|
};
|
|
92009
92169
|
export declare type MercuryFundsQueryApi = {
|
|
92010
92170
|
__typename?: 'MercuryFundsQueryApi';
|
|
92171
|
+
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
92011
92172
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
92012
92173
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
92013
92174
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
@@ -92017,6 +92178,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
92017
92178
|
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
92018
92179
|
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
92019
92180
|
};
|
|
92181
|
+
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
92182
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92183
|
+
};
|
|
92020
92184
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
92021
92185
|
ids: Array<Scalars['ID']['input']>;
|
|
92022
92186
|
};
|
|
@@ -92035,7 +92199,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsArgs = {
|
|
|
92035
92199
|
};
|
|
92036
92200
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs = {
|
|
92037
92201
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92038
|
-
cloudId
|
|
92202
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92039
92203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
92040
92204
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
92041
92205
|
};
|
|
@@ -100693,6 +100857,7 @@ export declare type Query = {
|
|
|
100693
100857
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
100694
100858
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
100695
100859
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
100860
|
+
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
100696
100861
|
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
100697
100862
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
100698
100863
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -102367,6 +102532,13 @@ export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs =
|
|
|
102367
102532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102368
102533
|
spaceId: Scalars['ID']['input'];
|
|
102369
102534
|
};
|
|
102535
|
+
export declare type QueryConfluence_GetLatestPendingRequestsArgs = {
|
|
102536
|
+
cloudId: Scalars['ID']['input'];
|
|
102537
|
+
contentId: Scalars['ID']['input'];
|
|
102538
|
+
duration?: InputMaybe<Scalars['Int']['input']>;
|
|
102539
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
102540
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
102541
|
+
};
|
|
102370
102542
|
export declare type QueryConfluence_GetPlaylistArgs = {
|
|
102371
102543
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102372
102544
|
before?: InputMaybe<Scalars['String']['input']>;
|