@forge/cli-shared 9.3.0-next.17-experimental-cf2ad4c → 9.3.0-next.18
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 +2 -33
- package/out/graphql/graphql-types.d.ts +97 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +41 -5
- package/out/service/statsig-service.d.ts +1 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +0 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,42 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.3.0-next.
|
|
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
|
|
3
|
+
## 9.3.0-next.18
|
|
17
4
|
|
|
18
5
|
### Patch Changes
|
|
19
6
|
|
|
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
7
|
- Updated dependencies [4404f62]
|
|
36
|
-
-
|
|
37
|
-
- Updated dependencies [39f1f15]
|
|
38
|
-
- Updated dependencies [c3a0f20]
|
|
39
|
-
- @forge/manifest@13.3.0-next.9-experimental-cf2ad4c
|
|
8
|
+
- @forge/manifest@13.3.0-next.10
|
|
40
9
|
|
|
41
10
|
## 9.3.0-next.17
|
|
42
11
|
|
|
@@ -187010,6 +187010,8 @@ export type Query = {
|
|
|
187010
187010
|
statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
|
|
187011
187011
|
statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
|
|
187012
187012
|
studio_solutionPlan?: Maybe<StudioSolutionPlan>;
|
|
187013
|
+
studio_templateCategories?: Maybe<StudioTemplateCategoriesResponse>;
|
|
187014
|
+
studio_templates?: Maybe<StudioTemplatesResponse>;
|
|
187013
187015
|
studio_workspaceAiEnabled?: Maybe<StudioWorkspaceAiEnabled>;
|
|
187014
187016
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
187015
187017
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -209915,6 +209917,12 @@ export type QueryStudio_SolutionPlanArgs = {
|
|
|
209915
209917
|
solutionVersion: Scalars['Int']['input'];
|
|
209916
209918
|
workspaceId: Scalars['ID']['input'];
|
|
209917
209919
|
};
|
|
209920
|
+
export type QueryStudio_TemplateCategoriesArgs = {
|
|
209921
|
+
workspaceId: Scalars['ID']['input'];
|
|
209922
|
+
};
|
|
209923
|
+
export type QueryStudio_TemplatesArgs = {
|
|
209924
|
+
workspaceId: Scalars['ID']['input'];
|
|
209925
|
+
};
|
|
209918
209926
|
export type QueryStudio_WorkspaceAiEnabledArgs = {
|
|
209919
209927
|
workspaceId: Scalars['ID']['input'];
|
|
209920
209928
|
};
|
|
@@ -238240,6 +238248,16 @@ export type StudioBuilds = {
|
|
|
238240
238248
|
__typename?: 'StudioBuilds';
|
|
238241
238249
|
sequence?: Maybe<Array<Maybe<StudioBuild>>>;
|
|
238242
238250
|
};
|
|
238251
|
+
export type StudioCategorySourceDiagnostic = {
|
|
238252
|
+
__typename?: 'StudioCategorySourceDiagnostic';
|
|
238253
|
+
message: Scalars['String']['output'];
|
|
238254
|
+
source: Scalars['String']['output'];
|
|
238255
|
+
status: StudioCategorySourceStatus;
|
|
238256
|
+
};
|
|
238257
|
+
export declare enum StudioCategorySourceStatus {
|
|
238258
|
+
Error = "ERROR",
|
|
238259
|
+
Ok = "OK"
|
|
238260
|
+
}
|
|
238243
238261
|
export type StudioCreateDraftBuildDetails = {
|
|
238244
238262
|
__typename?: 'StudioCreateDraftBuildDetails';
|
|
238245
238263
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -238284,6 +238302,85 @@ export type StudioSolutionPlan = {
|
|
|
238284
238302
|
updatedBy?: Maybe<User>;
|
|
238285
238303
|
workspaceId: Scalars['ID']['output'];
|
|
238286
238304
|
};
|
|
238305
|
+
export type StudioTemplate = {
|
|
238306
|
+
__typename?: 'StudioTemplate';
|
|
238307
|
+
apps: Array<Scalars['String']['output']>;
|
|
238308
|
+
categories: Array<StudioTemplateCategorySummary>;
|
|
238309
|
+
collection: StudioTemplateCollection;
|
|
238310
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
238311
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
238312
|
+
hasAgenticAction: Scalars['Boolean']['output'];
|
|
238313
|
+
howItWorks: Array<StudioTemplateHowItWorksStep>;
|
|
238314
|
+
id: Scalars['String']['output'];
|
|
238315
|
+
name: Scalars['String']['output'];
|
|
238316
|
+
skills?: Maybe<Array<Scalars['String']['output']>>;
|
|
238317
|
+
type: Scalars['String']['output'];
|
|
238318
|
+
usageCount: Scalars['Int']['output'];
|
|
238319
|
+
};
|
|
238320
|
+
export type StudioTemplateCategoriesResponse = {
|
|
238321
|
+
__typename?: 'StudioTemplateCategoriesResponse';
|
|
238322
|
+
categories: Array<StudioTemplateCategory>;
|
|
238323
|
+
sourceDiagnostics: Array<StudioCategorySourceDiagnostic>;
|
|
238324
|
+
};
|
|
238325
|
+
export type StudioTemplateCategory = {
|
|
238326
|
+
__typename?: 'StudioTemplateCategory';
|
|
238327
|
+
categoryKey: Scalars['String']['output'];
|
|
238328
|
+
name: Scalars['String']['output'];
|
|
238329
|
+
templates: Array<StudioTemplateReference>;
|
|
238330
|
+
};
|
|
238331
|
+
export type StudioTemplateCategorySummary = {
|
|
238332
|
+
__typename?: 'StudioTemplateCategorySummary';
|
|
238333
|
+
categoryKey: Scalars['String']['output'];
|
|
238334
|
+
name: Scalars['String']['output'];
|
|
238335
|
+
};
|
|
238336
|
+
export declare enum StudioTemplateCollection {
|
|
238337
|
+
Product = "PRODUCT",
|
|
238338
|
+
Service = "SERVICE",
|
|
238339
|
+
Software = "SOFTWARE",
|
|
238340
|
+
Strategy = "STRATEGY",
|
|
238341
|
+
Teamwork = "TEAMWORK"
|
|
238342
|
+
}
|
|
238343
|
+
export declare enum StudioTemplateHowItWorksRole {
|
|
238344
|
+
Action = "ACTION",
|
|
238345
|
+
Knowledge = "KNOWLEDGE",
|
|
238346
|
+
Reasoning = "REASONING"
|
|
238347
|
+
}
|
|
238348
|
+
export type StudioTemplateHowItWorksStep = {
|
|
238349
|
+
__typename?: 'StudioTemplateHowItWorksStep';
|
|
238350
|
+
role: StudioTemplateHowItWorksRole;
|
|
238351
|
+
text: Scalars['String']['output'];
|
|
238352
|
+
};
|
|
238353
|
+
export type StudioTemplateReference = {
|
|
238354
|
+
__typename?: 'StudioTemplateReference';
|
|
238355
|
+
templateId: Scalars['String']['output'];
|
|
238356
|
+
templateType: StudioTemplateType;
|
|
238357
|
+
};
|
|
238358
|
+
export type StudioTemplateSourceDiagnostic = {
|
|
238359
|
+
__typename?: 'StudioTemplateSourceDiagnostic';
|
|
238360
|
+
code: StudioTemplateSourceDiagnosticCode;
|
|
238361
|
+
message: Scalars['String']['output'];
|
|
238362
|
+
source: Scalars['String']['output'];
|
|
238363
|
+
status: StudioTemplateSourceStatus;
|
|
238364
|
+
};
|
|
238365
|
+
export declare enum StudioTemplateSourceDiagnosticCode {
|
|
238366
|
+
CategorySourceError = "CATEGORY_SOURCE_ERROR",
|
|
238367
|
+
ConfigInvalid = "CONFIG_INVALID",
|
|
238368
|
+
ConfigSourceUnavailable = "CONFIG_SOURCE_UNAVAILABLE",
|
|
238369
|
+
DuplicateTemplateId = "DUPLICATE_TEMPLATE_ID",
|
|
238370
|
+
MetadataParseFailed = "METADATA_PARSE_FAILED"
|
|
238371
|
+
}
|
|
238372
|
+
export declare enum StudioTemplateSourceStatus {
|
|
238373
|
+
Error = "ERROR"
|
|
238374
|
+
}
|
|
238375
|
+
export declare enum StudioTemplateType {
|
|
238376
|
+
Agent = "AGENT",
|
|
238377
|
+
Automation = "AUTOMATION"
|
|
238378
|
+
}
|
|
238379
|
+
export type StudioTemplatesResponse = {
|
|
238380
|
+
__typename?: 'StudioTemplatesResponse';
|
|
238381
|
+
sourceDiagnostics: Array<StudioTemplateSourceDiagnostic>;
|
|
238382
|
+
templates: Array<StudioTemplate>;
|
|
238383
|
+
};
|
|
238287
238384
|
export type StudioWorkspaceAiEnabled = {
|
|
238288
238385
|
__typename?: 'StudioWorkspaceAiEnabled';
|
|
238289
238386
|
aiEnabled: Scalars['Boolean']['output'];
|