@forge/cli-shared 4.0.1-next.0 → 4.0.1-next.1
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
|
@@ -26243,6 +26243,7 @@ export declare type HelpLayoutAnnouncementElementData = {
|
|
|
26243
26243
|
__typename?: 'HelpLayoutAnnouncementElementData';
|
|
26244
26244
|
header?: Maybe<Scalars['String']['output']>;
|
|
26245
26245
|
message?: Maybe<Scalars['String']['output']>;
|
|
26246
|
+
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
26246
26247
|
};
|
|
26247
26248
|
export declare type HelpLayoutAnnouncementInput = {
|
|
26248
26249
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
@@ -26389,6 +26390,7 @@ export declare type HelpLayoutHeroElementData = {
|
|
|
26389
26390
|
__typename?: 'HelpLayoutHeroElementData';
|
|
26390
26391
|
homePageTitle?: Maybe<Scalars['String']['output']>;
|
|
26391
26392
|
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
26393
|
+
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
26392
26394
|
};
|
|
26393
26395
|
export declare type HelpLayoutHeroElementInput = {
|
|
26394
26396
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
@@ -26657,7 +26659,9 @@ export declare type HelpLayoutVisualConfig = {
|
|
|
26657
26659
|
};
|
|
26658
26660
|
export declare type HelpLayoutVisualConfigInput = {
|
|
26659
26661
|
alignment?: InputMaybe<HelpLayoutAlignmentSettingsInput>;
|
|
26662
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
26660
26663
|
backgroundImage?: InputMaybe<HelpLayoutBackgroundImageInput>;
|
|
26664
|
+
foregroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
26661
26665
|
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
26662
26666
|
themeTemplateId?: InputMaybe<Scalars['String']['input']>;
|
|
26663
26667
|
};
|
|
@@ -40180,6 +40184,8 @@ export declare type JsmChatChannelRequestTypeMapping = {
|
|
|
40180
40184
|
channelId: Scalars['ID']['output'];
|
|
40181
40185
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
40182
40186
|
channelType?: Maybe<Scalars['String']['output']>;
|
|
40187
|
+
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
40188
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40183
40189
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
40184
40190
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
40185
40191
|
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -40220,6 +40226,7 @@ export declare type JsmChatMutation = {
|
|
|
40220
40226
|
__typename?: 'JsmChatMutation';
|
|
40221
40227
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
40222
40228
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
40229
|
+
updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
|
|
40223
40230
|
};
|
|
40224
40231
|
export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
40225
40232
|
input: JsmChatDisconnectJiraProjectInput;
|
|
@@ -40227,6 +40234,9 @@ export declare type JsmChatMutationDisconnectJiraProjectArgs = {
|
|
|
40227
40234
|
export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
40228
40235
|
input: JsmChatUpdateChannelSettingsInput;
|
|
40229
40236
|
};
|
|
40237
|
+
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
40238
|
+
input: JsmChatUpdateProjectSettingsInput;
|
|
40239
|
+
};
|
|
40230
40240
|
export declare type JsmChatProjectSettings = {
|
|
40231
40241
|
__typename?: 'JsmChatProjectSettings';
|
|
40232
40242
|
agentAssignedMessageDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -40262,7 +40272,10 @@ export declare type JsmChatSlackConfig = {
|
|
|
40262
40272
|
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40263
40273
|
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40264
40274
|
siteId: Scalars['ID']['output'];
|
|
40275
|
+
slackTeamDomain?: Maybe<Scalars['String']['output']>;
|
|
40265
40276
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40277
|
+
slackTeamName?: Maybe<Scalars['String']['output']>;
|
|
40278
|
+
slackTeamUrl?: Maybe<Scalars['String']['output']>;
|
|
40266
40279
|
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
40267
40280
|
};
|
|
40268
40281
|
export declare type JsmChatUpdateChannelSettingsInput = {
|
|
@@ -40280,6 +40293,27 @@ export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
|
40280
40293
|
message: Scalars['String']['output'];
|
|
40281
40294
|
status: Scalars['Boolean']['output'];
|
|
40282
40295
|
};
|
|
40296
|
+
export declare type JsmChatUpdateProjectSettingsInput = {
|
|
40297
|
+
activationId: Scalars['String']['input'];
|
|
40298
|
+
projectId: Scalars['String']['input'];
|
|
40299
|
+
settings?: InputMaybe<JsmChatUpdatedProjectSettings>;
|
|
40300
|
+
siteId: Scalars['String']['input'];
|
|
40301
|
+
};
|
|
40302
|
+
export declare type JsmChatUpdateProjectSettingsOutput = {
|
|
40303
|
+
__typename?: 'JsmChatUpdateProjectSettingsOutput';
|
|
40304
|
+
message: Scalars['String']['output'];
|
|
40305
|
+
status: Scalars['Boolean']['output'];
|
|
40306
|
+
};
|
|
40307
|
+
export declare type JsmChatUpdatedProjectSettings = {
|
|
40308
|
+
agentAssignedMessageDisabled: Scalars['Boolean']['input'];
|
|
40309
|
+
agentIssueClosedMessageDisabled: Scalars['Boolean']['input'];
|
|
40310
|
+
agentThreadMessageDisabled: Scalars['Boolean']['input'];
|
|
40311
|
+
areRequesterThreadRepliesPrivate: Scalars['Boolean']['input'];
|
|
40312
|
+
hideQueueDuringTicketCreation: Scalars['Boolean']['input'];
|
|
40313
|
+
jsmApproversEnabled: Scalars['Boolean']['input'];
|
|
40314
|
+
requesterIssueClosedMessageDisabled: Scalars['Boolean']['input'];
|
|
40315
|
+
requesterThreadMessageDisabled: Scalars['Boolean']['input'];
|
|
40316
|
+
};
|
|
40283
40317
|
export declare type JswMutation = {
|
|
40284
40318
|
__typename?: 'JswMutation';
|
|
40285
40319
|
deleteCard?: Maybe<DeleteCardOutput>;
|