@forge/cli-shared 6.6.0-next.2 → 6.6.0-next.3
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 +6 -0
- package/out/graphql/graphql-types.d.ts +119 -1
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +131 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +141 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1227,6 +1227,7 @@ export declare type AppInstallation = {
|
|
|
1227
1227
|
installationContext: Scalars['ID']['output'];
|
|
1228
1228
|
isRecoverable: Scalars['Boolean']['output'];
|
|
1229
1229
|
license?: Maybe<AppInstallationLicense>;
|
|
1230
|
+
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1230
1231
|
version?: Maybe<AppVersion>;
|
|
1231
1232
|
};
|
|
1232
1233
|
export declare type AppInstallationByIndexConnection = {
|
|
@@ -1329,6 +1330,12 @@ export declare type AppInstallationSubscribeTask = AppInstallationTask & {
|
|
|
1329
1330
|
id: Scalars['ID']['output'];
|
|
1330
1331
|
state: AppTaskState;
|
|
1331
1332
|
};
|
|
1333
|
+
export declare type AppInstallationSummary = {
|
|
1334
|
+
__typename?: 'AppInstallationSummary';
|
|
1335
|
+
installationContext: Scalars['ID']['output'];
|
|
1336
|
+
primaryInstallationContext: Scalars['ID']['output'];
|
|
1337
|
+
secondaryInstallationContexts?: Maybe<Array<Scalars['ID']['output']>>;
|
|
1338
|
+
};
|
|
1332
1339
|
export declare type AppInstallationTask = {
|
|
1333
1340
|
appEnvironmentId?: Maybe<Scalars['ID']['output']>;
|
|
1334
1341
|
appId: Scalars['ID']['output'];
|
|
@@ -3098,7 +3105,7 @@ export declare type CcpChargeDetails = CommerceChargeDetails & {
|
|
|
3098
3105
|
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
3099
3106
|
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
3100
3107
|
};
|
|
3101
|
-
export declare type CcpChargeElement = {
|
|
3108
|
+
export declare type CcpChargeElement = CommerceChargeElement & {
|
|
3102
3109
|
__typename?: 'CcpChargeElement';
|
|
3103
3110
|
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
3104
3111
|
unit?: Maybe<Scalars['String']['output']>;
|
|
@@ -3997,6 +4004,10 @@ export declare type CommerceAccountDetails = {
|
|
|
3997
4004
|
export declare type CommerceChargeDetails = {
|
|
3998
4005
|
chargeQuantities?: Maybe<Array<Maybe<CommerceChargeQuantity>>>;
|
|
3999
4006
|
};
|
|
4007
|
+
export declare type CommerceChargeElement = {
|
|
4008
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
4009
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
4010
|
+
};
|
|
4000
4011
|
export declare type CommerceChargeQuantity = {
|
|
4001
4012
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
4002
4013
|
lastUpdatedAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -4073,6 +4084,7 @@ export declare type CommerceInvoiceGroupExperienceCapabilities = {
|
|
|
4073
4084
|
configurePaymentV2?: Maybe<CommerceExperienceCapability>;
|
|
4074
4085
|
};
|
|
4075
4086
|
export declare type CommerceOffering = {
|
|
4087
|
+
chargeElements?: Maybe<Array<Maybe<CommerceChargeElement>>>;
|
|
4076
4088
|
name?: Maybe<Scalars['String']['output']>;
|
|
4077
4089
|
trial?: Maybe<CommerceOfferingTrial>;
|
|
4078
4090
|
};
|
|
@@ -23178,6 +23190,7 @@ export declare type Extension = {
|
|
|
23178
23190
|
environmentKey: Scalars['String']['output'];
|
|
23179
23191
|
environmentType: Scalars['String']['output'];
|
|
23180
23192
|
id: Scalars['ID']['output'];
|
|
23193
|
+
installation?: Maybe<AppInstallationSummary>;
|
|
23181
23194
|
installationId: Scalars['String']['output'];
|
|
23182
23195
|
key: Scalars['String']['output'];
|
|
23183
23196
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -45737,6 +45750,11 @@ export declare type HamsChargeDetails = CommerceChargeDetails & {
|
|
|
45737
45750
|
__typename?: 'HamsChargeDetails';
|
|
45738
45751
|
chargeQuantities?: Maybe<Array<Maybe<HamsChargeQuantity>>>;
|
|
45739
45752
|
};
|
|
45753
|
+
export declare type HamsChargeElement = CommerceChargeElement & {
|
|
45754
|
+
__typename?: 'HamsChargeElement';
|
|
45755
|
+
ceiling?: Maybe<Scalars['Int']['output']>;
|
|
45756
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
45757
|
+
};
|
|
45740
45758
|
export declare type HamsChargeQuantity = CommerceChargeQuantity & {
|
|
45741
45759
|
__typename?: 'HamsChargeQuantity';
|
|
45742
45760
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
@@ -45827,6 +45845,7 @@ export declare type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGrou
|
|
|
45827
45845
|
};
|
|
45828
45846
|
export declare type HamsOffering = CommerceOffering & {
|
|
45829
45847
|
__typename?: 'HamsOffering';
|
|
45848
|
+
chargeElements?: Maybe<Array<Maybe<HamsChargeElement>>>;
|
|
45830
45849
|
name?: Maybe<Scalars['String']['output']>;
|
|
45831
45850
|
trial?: Maybe<HamsOfferingTrial>;
|
|
45832
45851
|
};
|
|
@@ -50346,6 +50365,25 @@ export declare type JiraClearableNumberFieldInput = {
|
|
|
50346
50365
|
fieldId: Scalars['ID']['input'];
|
|
50347
50366
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
50348
50367
|
};
|
|
50368
|
+
export declare type JiraCloneIssueInput = {
|
|
50369
|
+
assignee?: InputMaybe<JiraUserInfoInput>;
|
|
50370
|
+
includeAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50371
|
+
includeComments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50372
|
+
includeLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50373
|
+
includeSubtasksOrChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50374
|
+
issueId: Scalars['ID']['input'];
|
|
50375
|
+
optionalFields?: InputMaybe<Array<JiraOptionalFieldInput>>;
|
|
50376
|
+
reporter?: InputMaybe<JiraUserInfoInput>;
|
|
50377
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
50378
|
+
};
|
|
50379
|
+
export declare type JiraCloneIssueResponse = Payload & {
|
|
50380
|
+
__typename?: 'JiraCloneIssueResponse';
|
|
50381
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50382
|
+
success: Scalars['Boolean']['output'];
|
|
50383
|
+
taskDescription?: Maybe<Scalars['String']['output']>;
|
|
50384
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
50385
|
+
taskStatus?: Maybe<JiraLongRunningTaskStatus>;
|
|
50386
|
+
};
|
|
50349
50387
|
export declare type JiraCmdbAttribute = {
|
|
50350
50388
|
__typename?: 'JiraCmdbAttribute';
|
|
50351
50389
|
attributeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -50438,6 +50476,16 @@ export declare type JiraCmdbFieldConfigAttributesIncludedInAutoCompleteSearchArg
|
|
|
50438
50476
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50439
50477
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50440
50478
|
};
|
|
50479
|
+
export declare type JiraCmdbFieldOperationInput = {
|
|
50480
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
50481
|
+
operation: JiraSingleValueFieldOperations;
|
|
50482
|
+
};
|
|
50483
|
+
export declare type JiraCmdbFieldPayload = Payload & {
|
|
50484
|
+
__typename?: 'JiraCmdbFieldPayload';
|
|
50485
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50486
|
+
field?: Maybe<JiraCmdbField>;
|
|
50487
|
+
success: Scalars['Boolean']['output'];
|
|
50488
|
+
};
|
|
50441
50489
|
export declare type JiraCmdbIcon = {
|
|
50442
50490
|
__typename?: 'JiraCmdbIcon';
|
|
50443
50491
|
id: Scalars['String']['output'];
|
|
@@ -54658,6 +54706,7 @@ export declare type JiraIssueTransitionCommentVisibilityInput = {
|
|
|
54658
54706
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
54659
54707
|
JiraAffectedServicesField?: InputMaybe<Array<JiraUpdateAffectedServicesFieldInput>>;
|
|
54660
54708
|
JiraAttachmentsField?: InputMaybe<Array<JiraUpdateAttachmentFieldInput>>;
|
|
54709
|
+
JiraCMDBField?: InputMaybe<Array<JiraUpdateCmdbFieldInput>>;
|
|
54661
54710
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
54662
54711
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
54663
54712
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
@@ -56095,6 +56144,7 @@ export declare type JiraMutation = {
|
|
|
56095
56144
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
56096
56145
|
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
56097
56146
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
56147
|
+
cloneIssue?: Maybe<JiraCloneIssueResponse>;
|
|
56098
56148
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
56099
56149
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
56100
56150
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
@@ -56191,6 +56241,7 @@ export declare type JiraMutation = {
|
|
|
56191
56241
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
56192
56242
|
updateCascadingSelectField?: Maybe<JiraCascadingSelectFieldPayload>;
|
|
56193
56243
|
updateCheckboxesField?: Maybe<JiraCheckboxesFieldPayload>;
|
|
56244
|
+
updateCmdbField?: Maybe<JiraCmdbFieldPayload>;
|
|
56194
56245
|
updateColorField?: Maybe<JiraColorFieldPayload>;
|
|
56195
56246
|
updateComponentsField?: Maybe<JiraComponentsFieldPayload>;
|
|
56196
56247
|
updateCustomBackground?: Maybe<JiraUpdateCustomBackgroundPayload>;
|
|
@@ -56310,6 +56361,9 @@ export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
|
56310
56361
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
56311
56362
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
56312
56363
|
};
|
|
56364
|
+
export declare type JiraMutationCloneIssueArgs = {
|
|
56365
|
+
input: JiraCloneIssueInput;
|
|
56366
|
+
};
|
|
56313
56367
|
export declare type JiraMutationCreateAndAssociateWorkflowFromJsmTemplateArgs = {
|
|
56314
56368
|
input: JiraServiceManagementCreateAndAssociateWorkflowFromTemplateInput;
|
|
56315
56369
|
};
|
|
@@ -56632,6 +56686,9 @@ export declare type JiraMutationUpdateCascadingSelectFieldArgs = {
|
|
|
56632
56686
|
export declare type JiraMutationUpdateCheckboxesFieldArgs = {
|
|
56633
56687
|
input: JiraUpdateCheckboxesFieldInput;
|
|
56634
56688
|
};
|
|
56689
|
+
export declare type JiraMutationUpdateCmdbFieldArgs = {
|
|
56690
|
+
input: JiraUpdateCmdbFieldInput;
|
|
56691
|
+
};
|
|
56635
56692
|
export declare type JiraMutationUpdateColorFieldArgs = {
|
|
56636
56693
|
input: JiraUpdateColorFieldInput;
|
|
56637
56694
|
};
|
|
@@ -57346,6 +57403,10 @@ export declare type JiraOptionEdge = {
|
|
|
57346
57403
|
cursor: Scalars['String']['output'];
|
|
57347
57404
|
node?: Maybe<JiraOption>;
|
|
57348
57405
|
};
|
|
57406
|
+
export declare type JiraOptionalFieldInput = {
|
|
57407
|
+
fieldId: Scalars['String']['input'];
|
|
57408
|
+
shouldClone: Scalars['Boolean']['input'];
|
|
57409
|
+
};
|
|
57349
57410
|
export declare type JiraOptoutDevOpsIssuePanelNotConnectedInput = {
|
|
57350
57411
|
cloudId: Scalars['ID']['input'];
|
|
57351
57412
|
};
|
|
@@ -58371,6 +58432,12 @@ export declare type JiraProjectConnection = HasPageInfo & HasTotal & {
|
|
|
58371
58432
|
pageInfo: PageInfo;
|
|
58372
58433
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
58373
58434
|
};
|
|
58435
|
+
export declare type JiraProjectCreateCustomBackgroundMutationPayload = Payload & {
|
|
58436
|
+
__typename?: 'JiraProjectCreateCustomBackgroundMutationPayload';
|
|
58437
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58438
|
+
project?: Maybe<JiraProject>;
|
|
58439
|
+
success: Scalars['Boolean']['output'];
|
|
58440
|
+
};
|
|
58374
58441
|
export declare enum JiraProjectDateTimeFormat {
|
|
58375
58442
|
CompleteDatetimeFormat = "COMPLETE_DATETIME_FORMAT",
|
|
58376
58443
|
DayFormat = "DAY_FORMAT",
|
|
@@ -58378,6 +58445,16 @@ export declare enum JiraProjectDateTimeFormat {
|
|
|
58378
58445
|
Relative = "RELATIVE",
|
|
58379
58446
|
TimeFormat = "TIME_FORMAT"
|
|
58380
58447
|
}
|
|
58448
|
+
export declare type JiraProjectDeleteCustomBackgroundInput = {
|
|
58449
|
+
customBackgroundId: Scalars['ID']['input'];
|
|
58450
|
+
entityId: Scalars['ID']['input'];
|
|
58451
|
+
};
|
|
58452
|
+
export declare type JiraProjectDeleteCustomBackgroundMutationPayload = Payload & {
|
|
58453
|
+
__typename?: 'JiraProjectDeleteCustomBackgroundMutationPayload';
|
|
58454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
58455
|
+
project?: Maybe<JiraProject>;
|
|
58456
|
+
success: Scalars['Boolean']['output'];
|
|
58457
|
+
};
|
|
58381
58458
|
export declare type JiraProjectEdge = {
|
|
58382
58459
|
__typename?: 'JiraProjectEdge';
|
|
58383
58460
|
cursor: Scalars['String']['output'];
|
|
@@ -63228,6 +63305,10 @@ export declare type JiraUpdateCheckboxesFieldInput = {
|
|
|
63228
63305
|
id: Scalars['ID']['input'];
|
|
63229
63306
|
operations: Array<JiraCheckboxesFieldOperationInput>;
|
|
63230
63307
|
};
|
|
63308
|
+
export declare type JiraUpdateCmdbFieldInput = {
|
|
63309
|
+
id: Scalars['ID']['input'];
|
|
63310
|
+
operation: JiraCmdbFieldOperationInput;
|
|
63311
|
+
};
|
|
63231
63312
|
export declare type JiraUpdateColorFieldInput = {
|
|
63232
63313
|
id: Scalars['ID']['input'];
|
|
63233
63314
|
operation: JiraColorFieldOperationInput;
|
|
@@ -63724,6 +63805,9 @@ export declare type JiraUserGroup = {
|
|
|
63724
63805
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
63725
63806
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
63726
63807
|
};
|
|
63808
|
+
export declare type JiraUserInfoInput = {
|
|
63809
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
63810
|
+
};
|
|
63727
63811
|
export declare type JiraUserInput = {
|
|
63728
63812
|
accountId: Scalars['ID']['input'];
|
|
63729
63813
|
};
|
|
@@ -65187,10 +65271,25 @@ export declare type JsmChatInitializeNativeConfigResponse = {
|
|
|
65187
65271
|
};
|
|
65188
65272
|
export declare type JsmChatJiraFieldAppendix = {
|
|
65189
65273
|
__typename?: 'JsmChatJiraFieldAppendix';
|
|
65274
|
+
field?: Maybe<JsmChatRequestTypeField>;
|
|
65190
65275
|
fieldId: Scalars['String']['output'];
|
|
65191
65276
|
jiraProjectId: Scalars['String']['output'];
|
|
65192
65277
|
requestTypeId: Scalars['String']['output'];
|
|
65193
65278
|
};
|
|
65279
|
+
export declare type JsmChatJiraFieldOption = {
|
|
65280
|
+
__typename?: 'JsmChatJiraFieldOption';
|
|
65281
|
+
children?: Maybe<Array<Maybe<JsmChatJiraFieldOption>>>;
|
|
65282
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
65283
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
65284
|
+
};
|
|
65285
|
+
export declare type JsmChatJiraSchema = {
|
|
65286
|
+
__typename?: 'JsmChatJiraSchema';
|
|
65287
|
+
custom?: Maybe<Scalars['String']['output']>;
|
|
65288
|
+
customId?: Maybe<Scalars['String']['output']>;
|
|
65289
|
+
items?: Maybe<Scalars['String']['output']>;
|
|
65290
|
+
system?: Maybe<Scalars['String']['output']>;
|
|
65291
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
65292
|
+
};
|
|
65194
65293
|
export declare type JsmChatMessageConnection = {
|
|
65195
65294
|
__typename?: 'JsmChatMessageConnection';
|
|
65196
65295
|
edges?: Maybe<Array<Maybe<JsmChatMessageEdge>>>;
|
|
@@ -65378,6 +65477,17 @@ export declare type JsmChatRequestTypeData = {
|
|
|
65378
65477
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
65379
65478
|
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
65380
65479
|
};
|
|
65480
|
+
export declare type JsmChatRequestTypeField = {
|
|
65481
|
+
__typename?: 'JsmChatRequestTypeField';
|
|
65482
|
+
defaultValues?: Maybe<Array<Maybe<JsmChatJiraFieldOption>>>;
|
|
65483
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
65484
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
65485
|
+
jiraSchema?: Maybe<JsmChatJiraSchema>;
|
|
65486
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
65487
|
+
required?: Maybe<Scalars['Boolean']['output']>;
|
|
65488
|
+
validValues?: Maybe<Array<Maybe<JsmChatJiraFieldOption>>>;
|
|
65489
|
+
visible?: Maybe<Scalars['Boolean']['output']>;
|
|
65490
|
+
};
|
|
65381
65491
|
export declare type JsmChatRequestTypesMappedResponse = {
|
|
65382
65492
|
__typename?: 'JsmChatRequestTypesMappedResponse';
|
|
65383
65493
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -70883,6 +70993,8 @@ export declare type Mutation = {
|
|
|
70883
70993
|
jira?: Maybe<JiraMutation>;
|
|
70884
70994
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
70885
70995
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
70996
|
+
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
70997
|
+
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
70886
70998
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
70887
70999
|
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
70888
71000
|
jira_setBoardViewCardOptionState?: Maybe<JiraSetBoardViewCardOptionStatePayload>;
|
|
@@ -72091,6 +72203,12 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
72091
72203
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
72092
72204
|
input: InvokePolarisObjectInput;
|
|
72093
72205
|
};
|
|
72206
|
+
export declare type MutationJira_CreateCustomBackgroundArgs = {
|
|
72207
|
+
input: JiraCreateCustomBackgroundInput;
|
|
72208
|
+
};
|
|
72209
|
+
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
72210
|
+
input: JiraProjectDeleteCustomBackgroundInput;
|
|
72211
|
+
};
|
|
72094
72212
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
72095
72213
|
input: JiraReorderBoardViewColumnInput;
|
|
72096
72214
|
};
|