@forge/cli-shared 9.3.0-next.16 → 9.3.0-next.17-experimental-6320d72
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 +43 -0
- package/out/graphql/graphql-types.d.ts +45 -12
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +33 -27
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.3.0-next.17-experimental-6320d72
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 8759d77: Removed manifest schema validation from linting as this logic will reside in XLS.
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 8a9e608: Pull the Forge tunnel proxy-sidecar image from the Portable Registry, falling back to ECR if the initial pull fails
|
|
12
|
+
- 18b920d: Update feature gate name
|
|
13
|
+
- a36d70b: Implement manual bundler
|
|
14
|
+
- 52e074e: Global App integration + Trigger / Action modules
|
|
15
|
+
- bc2d278: Display deeplinks to installed modules after a successful `forge install`
|
|
16
|
+
- ca4fa27: Add utility function to check if a UI Kit resource needs to be bundled
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 4d50a76: Changes to forge deploy with a feature-gated combined artifact upload flow.
|
|
21
|
+
- 905d8c5: Design changes, hint to module add and a spinner when loading
|
|
22
|
+
- c8105d8: Remind the user to authenticate to the container registry after creating a new container
|
|
23
|
+
- 3e8de63: add `manifest render` command
|
|
24
|
+
- 0949833: Update `tmp` to 0.2.7 to remediate vulnerability
|
|
25
|
+
- 8d20095: bump adm-zip to v0.6.0
|
|
26
|
+
- e7bfe5e: Removing installationTarget
|
|
27
|
+
- Updated dependencies [8759d77]
|
|
28
|
+
- Updated dependencies [f01417b]
|
|
29
|
+
- Updated dependencies [d706cd8]
|
|
30
|
+
- Updated dependencies [4b90a07]
|
|
31
|
+
- Updated dependencies [3e8de63]
|
|
32
|
+
- Updated dependencies [d1610cc]
|
|
33
|
+
- Updated dependencies [e7bfe5e]
|
|
34
|
+
- Updated dependencies [498fda5]
|
|
35
|
+
- Updated dependencies [89ccb1e]
|
|
36
|
+
- Updated dependencies [39f1f15]
|
|
37
|
+
- Updated dependencies [c3a0f20]
|
|
38
|
+
- @forge/manifest@13.3.0-next.9-experimental-6320d72
|
|
39
|
+
|
|
40
|
+
## 9.3.0-next.17
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- 8d20095: bump adm-zip to v0.6.0
|
|
45
|
+
|
|
3
46
|
## 9.3.0-next.16
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
|
@@ -149374,6 +149374,18 @@ export type JiraUpdateWorklogInput = {
|
|
|
149374
149374
|
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
149375
149375
|
workDescription?: InputMaybe<JiraAdfInput>;
|
|
149376
149376
|
};
|
|
149377
|
+
export type JiraUpsertAgentSpaceInstructionInput = {
|
|
149378
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
149379
|
+
prompt: Scalars['String']['input'];
|
|
149380
|
+
scopeType: JiraAgentSpaceInstructionScopeType;
|
|
149381
|
+
spaceAri: Scalars['ID']['input'];
|
|
149382
|
+
};
|
|
149383
|
+
export type JiraUpsertAgentSpaceInstructionPayload = Payload & {
|
|
149384
|
+
__typename?: 'JiraUpsertAgentSpaceInstructionPayload';
|
|
149385
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149386
|
+
instruction?: Maybe<JiraAgentSpaceInstruction>;
|
|
149387
|
+
success: Scalars['Boolean']['output'];
|
|
149388
|
+
};
|
|
149377
149389
|
export type JiraUpsertIssueTypePayload = Payload & {
|
|
149378
149390
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
149379
149391
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -158417,7 +158429,7 @@ export type MarketplaceConsoleAppPublishWizardCheckResult = {
|
|
|
158417
158429
|
__typename?: 'MarketplaceConsoleAppPublishWizardCheckResult';
|
|
158418
158430
|
checkerName: Scalars['String']['output'];
|
|
158419
158431
|
message?: Maybe<Scalars['String']['output']>;
|
|
158420
|
-
moreDetails
|
|
158432
|
+
moreDetails: Array<MarketplaceConsoleAppPublishWizardCheckerFieldDetail>;
|
|
158421
158433
|
recoverable: Scalars['Boolean']['output'];
|
|
158422
158434
|
tier: Scalars['String']['output'];
|
|
158423
158435
|
verdict: MarketplaceConsoleAppPublishWizardCheckerVerdict;
|
|
@@ -158548,6 +158560,16 @@ export declare enum MarketplaceConsoleAppPublishWizardScreenId {
|
|
|
158548
158560
|
PrivacyAndSecurity = "PRIVACY_AND_SECURITY",
|
|
158549
158561
|
Version = "VERSION"
|
|
158550
158562
|
}
|
|
158563
|
+
export type MarketplaceConsoleAppPublishWizardScreenNavItem = {
|
|
158564
|
+
__typename?: 'MarketplaceConsoleAppPublishWizardScreenNavItem';
|
|
158565
|
+
screenId: MarketplaceConsoleAppPublishWizardScreenId;
|
|
158566
|
+
status: MarketplaceConsoleAppPublishWizardScreenNavStatus;
|
|
158567
|
+
};
|
|
158568
|
+
export declare enum MarketplaceConsoleAppPublishWizardScreenNavStatus {
|
|
158569
|
+
Completed = "COMPLETED",
|
|
158570
|
+
Current = "CURRENT",
|
|
158571
|
+
NotReached = "NOT_REACHED"
|
|
158572
|
+
}
|
|
158551
158573
|
export type MarketplaceConsoleAppPublishWizardSessionResponse = {
|
|
158552
158574
|
__typename?: 'MarketplaceConsoleAppPublishWizardSessionResponse';
|
|
158553
158575
|
appSoftwareId: Scalars['String']['output'];
|
|
@@ -158558,6 +158580,7 @@ export type MarketplaceConsoleAppPublishWizardSessionResponse = {
|
|
|
158558
158580
|
status: MarketplaceConsoleAppPublishWizardSessionStatus;
|
|
158559
158581
|
submissionId: Scalars['String']['output'];
|
|
158560
158582
|
updatedAt: Scalars['String']['output'];
|
|
158583
|
+
visibleScreens: Array<MarketplaceConsoleAppPublishWizardScreenNavItem>;
|
|
158561
158584
|
};
|
|
158562
158585
|
export declare enum MarketplaceConsoleAppPublishWizardSessionStatus {
|
|
158563
158586
|
Abandoned = "ABANDONED",
|
|
@@ -159667,6 +159690,7 @@ export type MarketplaceConsoleMutationApi = {
|
|
|
159667
159690
|
startAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
159668
159691
|
submitAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardReadinessResponse>;
|
|
159669
159692
|
subscribeToDeveloperNewsletter: MarketplaceConsoleDeveloperNewsletterSubscribeResponse;
|
|
159693
|
+
terminateAppPublishWizardSession?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
159670
159694
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
159671
159695
|
updateAppPublishWizardField?: Maybe<MarketplaceConsoleAppPublishWizardSessionResponse>;
|
|
159672
159696
|
updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
|
|
@@ -159762,6 +159786,10 @@ export type MarketplaceConsoleMutationApiSubmitAppPublishWizardSessionArgs = {
|
|
|
159762
159786
|
appSoftwareId: Scalars['ID']['input'];
|
|
159763
159787
|
submissionId: Scalars['ID']['input'];
|
|
159764
159788
|
};
|
|
159789
|
+
export type MarketplaceConsoleMutationApiTerminateAppPublishWizardSessionArgs = {
|
|
159790
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
159791
|
+
submissionId: Scalars['ID']['input'];
|
|
159792
|
+
};
|
|
159765
159793
|
export type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
159766
159794
|
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
159767
159795
|
};
|
|
@@ -162933,6 +162961,7 @@ export type MercuryArchiveOrganizationValidationPayload = Payload & {
|
|
|
162933
162961
|
export type MercuryAsk = Node & {
|
|
162934
162962
|
__typename?: 'MercuryAsk';
|
|
162935
162963
|
activities?: Maybe<MercuryAskActivityConnection>;
|
|
162964
|
+
askStatus: MercuryAskStatusEnum;
|
|
162936
162965
|
comments?: Maybe<MercuryThreadedCommentConnection>;
|
|
162937
162966
|
connectedWork?: Maybe<MercuryAskConnectedWorkConnection>;
|
|
162938
162967
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -162957,7 +162986,6 @@ export type MercuryAsk = Node & {
|
|
|
162957
162986
|
receivingOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
162958
162987
|
receivingTeam?: Maybe<TeamV2>;
|
|
162959
162988
|
receivingTeamId?: Maybe<Scalars['ID']['output']>;
|
|
162960
|
-
status: MercuryAskStatus;
|
|
162961
162989
|
submitter?: Maybe<User>;
|
|
162962
162990
|
submitterId: Scalars['ID']['output'];
|
|
162963
162991
|
submittingOrganization?: Maybe<MercuryOrganization>;
|
|
@@ -163138,8 +163166,8 @@ export type MercuryAskActivityUpdatedProposedDate = MercuryAskActivityUpdatedVal
|
|
|
163138
163166
|
export type MercuryAskActivityUpdatedStatus = MercuryAskActivityUpdatedValue & {
|
|
163139
163167
|
__typename?: 'MercuryAskActivityUpdatedStatus';
|
|
163140
163168
|
attribute: MercuryAskActivityAttribute;
|
|
163141
|
-
newValue?: Maybe<
|
|
163142
|
-
oldValue?: Maybe<
|
|
163169
|
+
newValue?: Maybe<MercuryAskStatusEnum>;
|
|
163170
|
+
oldValue?: Maybe<MercuryAskStatusEnum>;
|
|
163143
163171
|
};
|
|
163144
163172
|
export type MercuryAskActivityUpdatedString = MercuryAskActivityUpdatedValue & {
|
|
163145
163173
|
__typename?: 'MercuryAskActivityUpdatedString';
|
|
@@ -163264,7 +163292,7 @@ export declare enum MercuryAskPriority {
|
|
|
163264
163292
|
Medium = "MEDIUM"
|
|
163265
163293
|
}
|
|
163266
163294
|
export type MercuryAskResult = MercuryAsk | QueryError;
|
|
163267
|
-
export declare enum
|
|
163295
|
+
export declare enum MercuryAskStatusEnum {
|
|
163268
163296
|
Accepted = "ACCEPTED",
|
|
163269
163297
|
Canceled = "CANCELED",
|
|
163270
163298
|
Deferred = "DEFERRED",
|
|
@@ -163281,13 +163309,13 @@ export type MercuryAskStatusUpdate = {
|
|
|
163281
163309
|
createdByUserId?: Maybe<Scalars['ID']['output']>;
|
|
163282
163310
|
description?: Maybe<Scalars['String']['output']>;
|
|
163283
163311
|
id: Scalars['ID']['output'];
|
|
163312
|
+
newAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163284
163313
|
newProposedBy?: Maybe<User>;
|
|
163285
163314
|
newProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163286
|
-
newStatus?: Maybe<MercuryAskStatus>;
|
|
163287
163315
|
newTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163316
|
+
oldAskStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163288
163317
|
oldProposedBy?: Maybe<User>;
|
|
163289
163318
|
oldProposedDate?: Maybe<MercuryAskTargetDate>;
|
|
163290
|
-
oldStatus?: Maybe<MercuryAskStatus>;
|
|
163291
163319
|
oldTargetDate?: Maybe<MercuryAskTargetDate>;
|
|
163292
163320
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
163293
163321
|
updatedBy?: Maybe<User>;
|
|
@@ -163310,8 +163338,8 @@ export type MercuryAskStatusUpdateEdge = {
|
|
|
163310
163338
|
};
|
|
163311
163339
|
export type MercuryAskStatusUpdateResult = MercuryAskStatusUpdate | QueryError;
|
|
163312
163340
|
export type MercuryAskStatusUpdateStatusInput = {
|
|
163341
|
+
askStatus: MercuryAskStatusEnum;
|
|
163313
163342
|
id: Scalars['ID']['input'];
|
|
163314
|
-
status: MercuryAskStatus;
|
|
163315
163343
|
};
|
|
163316
163344
|
export type MercuryAskStatusUpdateTargetDateInput = {
|
|
163317
163345
|
id: Scalars['ID']['input'];
|
|
@@ -163334,7 +163362,7 @@ export declare enum MercuryAskTargetDateType {
|
|
|
163334
163362
|
export type MercuryAskTransition = {
|
|
163335
163363
|
__typename?: 'MercuryAskTransition';
|
|
163336
163364
|
askId: Scalars['ID']['output'];
|
|
163337
|
-
|
|
163365
|
+
askStatus?: Maybe<MercuryAskStatusEnum>;
|
|
163338
163366
|
unmetRequirements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
163339
163367
|
};
|
|
163340
163368
|
export type MercuryAskUpdatedField = {
|
|
@@ -164181,6 +164209,7 @@ export type MercuryCreateAskCustomFieldDefinitionInput = {
|
|
|
164181
164209
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
164182
164210
|
};
|
|
164183
164211
|
export type MercuryCreateAskInput = {
|
|
164212
|
+
askStatus: MercuryAskStatusEnum;
|
|
164184
164213
|
cloudId: Scalars['ID']['input'];
|
|
164185
164214
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164186
164215
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164190,7 +164219,6 @@ export type MercuryCreateAskInput = {
|
|
|
164190
164219
|
priority: MercuryAskPriority;
|
|
164191
164220
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164192
164221
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164193
|
-
status: MercuryAskStatus;
|
|
164194
164222
|
submitterId: Scalars['ID']['input'];
|
|
164195
164223
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164196
164224
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -164198,12 +164226,13 @@ export type MercuryCreateAskInput = {
|
|
|
164198
164226
|
};
|
|
164199
164227
|
export type MercuryCreateAskStatusUpdateInput = {
|
|
164200
164228
|
askId: Scalars['ID']['input'];
|
|
164229
|
+
askStatus?: InputMaybe<MercuryAskStatusEnum>;
|
|
164201
164230
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164202
164231
|
proposedDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164203
|
-
status?: InputMaybe<MercuryAskStatus>;
|
|
164204
164232
|
targetDate?: InputMaybe<MercuryAskTargetDateInput>;
|
|
164205
164233
|
};
|
|
164206
164234
|
export type MercuryCreateAsksAskInput = {
|
|
164235
|
+
askStatus: MercuryAskStatusEnum;
|
|
164207
164236
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
164208
164237
|
impactedWorkId?: InputMaybe<Scalars['ID']['input']>;
|
|
164209
164238
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164213,7 +164242,6 @@ export type MercuryCreateAsksAskInput = {
|
|
|
164213
164242
|
priority: MercuryAskPriority;
|
|
164214
164243
|
receivingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164215
164244
|
receivingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
164216
|
-
status: MercuryAskStatus;
|
|
164217
164245
|
submitterId: Scalars['ID']['input'];
|
|
164218
164246
|
submittingOrganizationId?: InputMaybe<Scalars['ID']['input']>;
|
|
164219
164247
|
submittingTeamId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -173406,6 +173434,7 @@ export type Mutation = {
|
|
|
173406
173434
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
173407
173435
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
173408
173436
|
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
|
|
173437
|
+
jira_upsertAgentSpaceInstruction?: Maybe<JiraUpsertAgentSpaceInstructionPayload>;
|
|
173409
173438
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
173410
173439
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
173411
173440
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -178149,6 +178178,10 @@ export type MutationJira_UpdateSchemeFieldRendererToRichTextArgs = {
|
|
|
178149
178178
|
cloudId: Scalars['ID']['input'];
|
|
178150
178179
|
input: JiraSchemeFieldRendererToRichTextInput;
|
|
178151
178180
|
};
|
|
178181
|
+
export type MutationJira_UpsertAgentSpaceInstructionArgs = {
|
|
178182
|
+
cloudId: Scalars['ID']['input'];
|
|
178183
|
+
input: JiraUpsertAgentSpaceInstructionInput;
|
|
178184
|
+
};
|
|
178152
178185
|
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
178153
178186
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
178154
178187
|
};
|