@forge/cli-shared 4.0.0 → 4.0.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -9394,6 +9394,33 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
9394
9394
|
errors?: Maybe<Array<MutationError>>;
|
|
9395
9395
|
success: Scalars['Boolean']['output'];
|
|
9396
9396
|
};
|
|
9397
|
+
export declare type DevAi = {
|
|
9398
|
+
__typename?: 'DevAi';
|
|
9399
|
+
autofixConfigurations?: Maybe<DevAiAutofixConfigurationConnection>;
|
|
9400
|
+
};
|
|
9401
|
+
export declare type DevAiAutofixConfigurationsArgs = {
|
|
9402
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9403
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
9404
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9405
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
9406
|
+
repositoryUrls: Array<Scalars['URL']['input']>;
|
|
9407
|
+
workspaceId: Scalars['ID']['input'];
|
|
9408
|
+
};
|
|
9409
|
+
export declare type DevAiAutofixConfiguration = {
|
|
9410
|
+
__typename?: 'DevAiAutofixConfiguration';
|
|
9411
|
+
id: Scalars['ID']['output'];
|
|
9412
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
9413
|
+
};
|
|
9414
|
+
export declare type DevAiAutofixConfigurationConnection = {
|
|
9415
|
+
__typename?: 'DevAiAutofixConfigurationConnection';
|
|
9416
|
+
edges?: Maybe<Array<Maybe<DevAiAutofixConfigurationEdge>>>;
|
|
9417
|
+
pageInfo: PageInfo;
|
|
9418
|
+
};
|
|
9419
|
+
export declare type DevAiAutofixConfigurationEdge = {
|
|
9420
|
+
__typename?: 'DevAiAutofixConfigurationEdge';
|
|
9421
|
+
cursor: Scalars['String']['output'];
|
|
9422
|
+
node?: Maybe<DevAiAutofixConfiguration>;
|
|
9423
|
+
};
|
|
9397
9424
|
export declare type DevOps = {
|
|
9398
9425
|
__typename?: 'DevOps';
|
|
9399
9426
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -40192,10 +40219,14 @@ export declare type JsmChatInitializeConfigResponse = {
|
|
|
40192
40219
|
export declare type JsmChatMutation = {
|
|
40193
40220
|
__typename?: 'JsmChatMutation';
|
|
40194
40221
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
40222
|
+
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
40195
40223
|
};
|
|
40196
40224
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
40197
40225
|
input: JsmChatDisconnectJiraProjectInput;
|
|
40198
40226
|
};
|
|
40227
|
+
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
40228
|
+
input: JsmChatUpdateChannelSettingsInput;
|
|
40229
|
+
};
|
|
40199
40230
|
export declare type JsmChatProjectSettings = {
|
|
40200
40231
|
__typename?: 'JsmChatProjectSettings';
|
|
40201
40232
|
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -40234,6 +40265,21 @@ export declare type JsmChatSlackConfig = {
|
|
|
40234
40265
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40235
40266
|
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40236
40267
|
};
|
|
40268
|
+
export declare type JsmChatUpdateChannelSettingsInput = {
|
|
40269
|
+
activationId: Scalars['String']['input'];
|
|
40270
|
+
channelId: Scalars['String']['input'];
|
|
40271
|
+
isDeflectionChannel: Scalars['Boolean']['input'];
|
|
40272
|
+
projectId: Scalars['String']['input'];
|
|
40273
|
+
requestTypeIds: Array<Scalars['String']['input']>;
|
|
40274
|
+
siteId: Scalars['String']['input'];
|
|
40275
|
+
teamId: Scalars['String']['input'];
|
|
40276
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
40277
|
+
};
|
|
40278
|
+
export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
40279
|
+
__typename?: 'JsmChatUpdateChannelSettingsOutput';
|
|
40280
|
+
message: Scalars['String']['output'];
|
|
40281
|
+
status: Scalars['Boolean']['output'];
|
|
40282
|
+
};
|
|
40237
40283
|
export declare type JswMutation = {
|
|
40238
40284
|
__typename?: 'JswMutation';
|
|
40239
40285
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -40878,6 +40924,16 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
|
40878
40924
|
title: Scalars['String']['output'];
|
|
40879
40925
|
};
|
|
40880
40926
|
export declare type MarketplaceStoreCurrentUserResponse = MarketplaceStoreAnonymousUser | MarketplaceStoreLoggedInUser;
|
|
40927
|
+
export declare type MarketplaceStoreDeveloperSpace = {
|
|
40928
|
+
__typename?: 'MarketplaceStoreDeveloperSpace';
|
|
40929
|
+
name: Scalars['String']['output'];
|
|
40930
|
+
status: MarketplaceStoreDeveloperSpaceStatus;
|
|
40931
|
+
};
|
|
40932
|
+
export declare enum MarketplaceStoreDeveloperSpaceStatus {
|
|
40933
|
+
Active = "ACTIVE",
|
|
40934
|
+
Archived = "ARCHIVED",
|
|
40935
|
+
Inactive = "INACTIVE"
|
|
40936
|
+
}
|
|
40881
40937
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
40882
40938
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
40883
40939
|
description: Scalars['String']['output'];
|
|
@@ -41008,24 +41064,57 @@ export declare enum MarketplaceStorePartnerEnrollmentProgramValue {
|
|
|
41008
41064
|
Platinum = "PLATINUM",
|
|
41009
41065
|
Silver = "SILVER"
|
|
41010
41066
|
}
|
|
41011
|
-
export declare type
|
|
41012
|
-
__typename?: '
|
|
41067
|
+
export declare type MarketplaceStorePartnerListing = {
|
|
41068
|
+
__typename?: 'MarketplaceStorePartnerListing';
|
|
41013
41069
|
address?: Maybe<MarketplaceStorePartnerAddress>;
|
|
41014
41070
|
contactDetails?: Maybe<MarketplaceStorePartnerContactDetails>;
|
|
41015
41071
|
description?: Maybe<Scalars['String']['output']>;
|
|
41072
|
+
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
41073
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
41074
|
+
supportAvailability?: Maybe<MarketplaceStorePartnerSupportAvailability>;
|
|
41075
|
+
supportContact?: Maybe<MarketplaceStorePartnerSupportContact>;
|
|
41076
|
+
};
|
|
41077
|
+
export declare type MarketplaceStorePartnerResponse = {
|
|
41078
|
+
__typename?: 'MarketplaceStorePartnerResponse';
|
|
41079
|
+
developerSpace: MarketplaceStoreDeveloperSpace;
|
|
41016
41080
|
enrollments: Array<Maybe<MarketplaceStorePartnerEnrollment>>;
|
|
41017
41081
|
id: Scalars['ID']['output'];
|
|
41018
|
-
|
|
41019
|
-
name: Scalars['String']['output'];
|
|
41020
|
-
supportDetails?: Maybe<MarketplaceStorePartnerSupportDetails>;
|
|
41082
|
+
listing?: Maybe<MarketplaceStorePartnerListing>;
|
|
41021
41083
|
};
|
|
41022
|
-
export declare type
|
|
41023
|
-
__typename?: '
|
|
41084
|
+
export declare type MarketplaceStorePartnerSupportAvailability = {
|
|
41085
|
+
__typename?: 'MarketplaceStorePartnerSupportAvailability';
|
|
41086
|
+
days: Array<MarketplaceStorePartnerSupportAvailabilityDay>;
|
|
41087
|
+
holidays: Array<Maybe<MarketplaceStorePartnerSupportHoliday>>;
|
|
41088
|
+
range?: Maybe<MarketplaceStorePartnerSupportAvailabilityRange>;
|
|
41089
|
+
timezone: Scalars['String']['output'];
|
|
41090
|
+
};
|
|
41091
|
+
export declare enum MarketplaceStorePartnerSupportAvailabilityDay {
|
|
41092
|
+
Friday = "FRIDAY",
|
|
41093
|
+
Monday = "MONDAY",
|
|
41094
|
+
Saturday = "SATURDAY",
|
|
41095
|
+
Sunday = "SUNDAY",
|
|
41096
|
+
Thursday = "THURSDAY",
|
|
41097
|
+
Tuesday = "TUESDAY",
|
|
41098
|
+
Wednesday = "WEDNESDAY"
|
|
41099
|
+
}
|
|
41100
|
+
export declare type MarketplaceStorePartnerSupportAvailabilityRange = {
|
|
41101
|
+
__typename?: 'MarketplaceStorePartnerSupportAvailabilityRange';
|
|
41102
|
+
from?: Maybe<Scalars['String']['output']>;
|
|
41103
|
+
to?: Maybe<Scalars['String']['output']>;
|
|
41104
|
+
};
|
|
41105
|
+
export declare type MarketplaceStorePartnerSupportContact = {
|
|
41106
|
+
__typename?: 'MarketplaceStorePartnerSupportContact';
|
|
41024
41107
|
email?: Maybe<Scalars['String']['output']>;
|
|
41025
41108
|
name: Scalars['String']['output'];
|
|
41026
41109
|
phone?: Maybe<Scalars['String']['output']>;
|
|
41027
41110
|
url?: Maybe<Scalars['String']['output']>;
|
|
41028
41111
|
};
|
|
41112
|
+
export declare type MarketplaceStorePartnerSupportHoliday = {
|
|
41113
|
+
__typename?: 'MarketplaceStorePartnerSupportHoliday';
|
|
41114
|
+
date: Scalars['String']['output'];
|
|
41115
|
+
repeatAnnually: Scalars['Boolean']['output'];
|
|
41116
|
+
title: Scalars['String']['output'];
|
|
41117
|
+
};
|
|
41029
41118
|
export declare type MarketplaceStoreQueryApi = {
|
|
41030
41119
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
41031
41120
|
category: MarketplaceStoreCategoryResponse;
|
|
@@ -41033,7 +41122,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
41033
41122
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
41034
41123
|
homePage: MarketplaceStoreHomePageResponse;
|
|
41035
41124
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
41036
|
-
|
|
41125
|
+
partner: MarketplaceStorePartnerResponse;
|
|
41037
41126
|
};
|
|
41038
41127
|
export declare type MarketplaceStoreQueryApiCategoryArgs = {
|
|
41039
41128
|
slug: Scalars['String']['input'];
|
|
@@ -41047,7 +41136,7 @@ export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
|
41047
41136
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
41048
41137
|
id: Scalars['ID']['input'];
|
|
41049
41138
|
};
|
|
41050
|
-
export declare type
|
|
41139
|
+
export declare type MarketplaceStoreQueryApiPartnerArgs = {
|
|
41051
41140
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
41052
41141
|
vendorId: Scalars['ID']['input'];
|
|
41053
41142
|
};
|
|
@@ -44168,6 +44257,7 @@ export declare type Query = {
|
|
|
44168
44257
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
44169
44258
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
44170
44259
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
44260
|
+
devAi?: Maybe<DevAi>;
|
|
44171
44261
|
devOps?: Maybe<DevOps>;
|
|
44172
44262
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
44173
44263
|
devOpsService?: Maybe<DevOpsService>;
|
|
@@ -51614,6 +51704,7 @@ export declare type VirtualAgentRequestTypeConnectionStatus = {
|
|
|
51614
51704
|
connectionStatus?: Maybe<Scalars['String']['output']>;
|
|
51615
51705
|
hasRequiredFields?: Maybe<Scalars['Boolean']['output']>;
|
|
51616
51706
|
hasUnsupportedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
51707
|
+
isHiddenRequestType?: Maybe<Scalars['Boolean']['output']>;
|
|
51617
51708
|
};
|
|
51618
51709
|
export declare type VirtualAgentSlackChannel = {
|
|
51619
51710
|
__typename?: 'VirtualAgentSlackChannel';
|