@forge/cli-shared 9.3.0-next.17-experimental-cf2ad4c → 9.3.0-next.19

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
@@ -1,42 +1,17 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 9.3.0-next.17-experimental-cf2ad4c
4
-
5
- ### Major Changes
6
-
7
- - 8759d77: Removed manifest schema validation from linting as this logic will reside in XLS.
3
+ ## 9.3.0-next.19
8
4
 
9
5
  ### Minor Changes
10
6
 
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
7
+ - 342098d: Implement server-side linter logic to prevent accidental major app version deployments
8
+
9
+ ## 9.3.0-next.18
17
10
 
18
11
  ### Patch Changes
19
12
 
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
13
  - Updated dependencies [4404f62]
36
- - Updated dependencies [89ccb1e]
37
- - Updated dependencies [39f1f15]
38
- - Updated dependencies [c3a0f20]
39
- - @forge/manifest@13.3.0-next.9-experimental-cf2ad4c
14
+ - @forge/manifest@13.3.0-next.10
40
15
 
41
16
  ## 9.3.0-next.17
42
17
 
@@ -39632,7 +39632,7 @@ export declare enum CplsContributionCopyMode {
39632
39632
  CurrentAndFuture = "CURRENT_AND_FUTURE",
39633
39633
  None = "NONE"
39634
39634
  }
39635
- export type CplsContributionFilter = {
39635
+ export type CplsContributionDateRange = {
39636
39636
  endDate?: InputMaybe<Scalars['Date']['input']>;
39637
39637
  startDate?: InputMaybe<Scalars['Date']['input']>;
39638
39638
  };
@@ -39717,6 +39717,7 @@ export type CplsContributorWorkAssociationEdge = {
39717
39717
  };
39718
39718
  export type CplsContributorWorkAssociationNode = {
39719
39719
  __typename?: 'CplsContributorWorkAssociationNode';
39720
+ contributions?: Maybe<Array<CplsContribution>>;
39720
39721
  contributorData?: Maybe<CplsContributorData>;
39721
39722
  contributorDataId: Scalars['ID']['output'];
39722
39723
  id: Scalars['ID']['output'];
@@ -39995,7 +39996,7 @@ export type CplsGetContributorWorkAssociationsInput = {
39995
39996
  after?: InputMaybe<Scalars['String']['input']>;
39996
39997
  before?: InputMaybe<Scalars['String']['input']>;
39997
39998
  cloudId: Scalars['ID']['input'];
39998
- contributionFilter?: InputMaybe<CplsContributionFilter>;
39999
+ contributionDateRange?: InputMaybe<CplsContributionDateRange>;
39999
40000
  contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
40000
40001
  first?: InputMaybe<Scalars['Int']['input']>;
40001
40002
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -187010,6 +187011,8 @@ export type Query = {
187010
187011
  statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
187011
187012
  statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
187012
187013
  studio_solutionPlan?: Maybe<StudioSolutionPlan>;
187014
+ studio_templateCategories?: Maybe<StudioTemplateCategoriesResponse>;
187015
+ studio_templates?: Maybe<StudioTemplatesResponse>;
187013
187016
  studio_workspaceAiEnabled?: Maybe<StudioWorkspaceAiEnabled>;
187014
187017
  suggest?: Maybe<QuerySuggestionApi>;
187015
187018
  suggestedSpaces?: Maybe<PaginatedSpaceList>;
@@ -209915,6 +209918,12 @@ export type QueryStudio_SolutionPlanArgs = {
209915
209918
  solutionVersion: Scalars['Int']['input'];
209916
209919
  workspaceId: Scalars['ID']['input'];
209917
209920
  };
209921
+ export type QueryStudio_TemplateCategoriesArgs = {
209922
+ workspaceId: Scalars['ID']['input'];
209923
+ };
209924
+ export type QueryStudio_TemplatesArgs = {
209925
+ workspaceId: Scalars['ID']['input'];
209926
+ };
209918
209927
  export type QueryStudio_WorkspaceAiEnabledArgs = {
209919
209928
  workspaceId: Scalars['ID']['input'];
209920
209929
  };
@@ -238240,6 +238249,16 @@ export type StudioBuilds = {
238240
238249
  __typename?: 'StudioBuilds';
238241
238250
  sequence?: Maybe<Array<Maybe<StudioBuild>>>;
238242
238251
  };
238252
+ export type StudioCategorySourceDiagnostic = {
238253
+ __typename?: 'StudioCategorySourceDiagnostic';
238254
+ message: Scalars['String']['output'];
238255
+ source: Scalars['String']['output'];
238256
+ status: StudioCategorySourceStatus;
238257
+ };
238258
+ export declare enum StudioCategorySourceStatus {
238259
+ Error = "ERROR",
238260
+ Ok = "OK"
238261
+ }
238243
238262
  export type StudioCreateDraftBuildDetails = {
238244
238263
  __typename?: 'StudioCreateDraftBuildDetails';
238245
238264
  ari?: Maybe<Scalars['ID']['output']>;
@@ -238284,6 +238303,85 @@ export type StudioSolutionPlan = {
238284
238303
  updatedBy?: Maybe<User>;
238285
238304
  workspaceId: Scalars['ID']['output'];
238286
238305
  };
238306
+ export type StudioTemplate = {
238307
+ __typename?: 'StudioTemplate';
238308
+ apps: Array<Scalars['String']['output']>;
238309
+ categories: Array<StudioTemplateCategorySummary>;
238310
+ collection: StudioTemplateCollection;
238311
+ createdAt?: Maybe<Scalars['String']['output']>;
238312
+ description?: Maybe<Scalars['String']['output']>;
238313
+ hasAgenticAction: Scalars['Boolean']['output'];
238314
+ howItWorks: Array<StudioTemplateHowItWorksStep>;
238315
+ id: Scalars['String']['output'];
238316
+ name: Scalars['String']['output'];
238317
+ skills?: Maybe<Array<Scalars['String']['output']>>;
238318
+ type: Scalars['String']['output'];
238319
+ usageCount: Scalars['Int']['output'];
238320
+ };
238321
+ export type StudioTemplateCategoriesResponse = {
238322
+ __typename?: 'StudioTemplateCategoriesResponse';
238323
+ categories: Array<StudioTemplateCategory>;
238324
+ sourceDiagnostics: Array<StudioCategorySourceDiagnostic>;
238325
+ };
238326
+ export type StudioTemplateCategory = {
238327
+ __typename?: 'StudioTemplateCategory';
238328
+ categoryKey: Scalars['String']['output'];
238329
+ name: Scalars['String']['output'];
238330
+ templates: Array<StudioTemplateReference>;
238331
+ };
238332
+ export type StudioTemplateCategorySummary = {
238333
+ __typename?: 'StudioTemplateCategorySummary';
238334
+ categoryKey: Scalars['String']['output'];
238335
+ name: Scalars['String']['output'];
238336
+ };
238337
+ export declare enum StudioTemplateCollection {
238338
+ Product = "PRODUCT",
238339
+ Service = "SERVICE",
238340
+ Software = "SOFTWARE",
238341
+ Strategy = "STRATEGY",
238342
+ Teamwork = "TEAMWORK"
238343
+ }
238344
+ export declare enum StudioTemplateHowItWorksRole {
238345
+ Action = "ACTION",
238346
+ Knowledge = "KNOWLEDGE",
238347
+ Reasoning = "REASONING"
238348
+ }
238349
+ export type StudioTemplateHowItWorksStep = {
238350
+ __typename?: 'StudioTemplateHowItWorksStep';
238351
+ role: StudioTemplateHowItWorksRole;
238352
+ text: Scalars['String']['output'];
238353
+ };
238354
+ export type StudioTemplateReference = {
238355
+ __typename?: 'StudioTemplateReference';
238356
+ templateId: Scalars['String']['output'];
238357
+ templateType: StudioTemplateType;
238358
+ };
238359
+ export type StudioTemplateSourceDiagnostic = {
238360
+ __typename?: 'StudioTemplateSourceDiagnostic';
238361
+ code: StudioTemplateSourceDiagnosticCode;
238362
+ message: Scalars['String']['output'];
238363
+ source: Scalars['String']['output'];
238364
+ status: StudioTemplateSourceStatus;
238365
+ };
238366
+ export declare enum StudioTemplateSourceDiagnosticCode {
238367
+ CategorySourceError = "CATEGORY_SOURCE_ERROR",
238368
+ ConfigInvalid = "CONFIG_INVALID",
238369
+ ConfigSourceUnavailable = "CONFIG_SOURCE_UNAVAILABLE",
238370
+ DuplicateTemplateId = "DUPLICATE_TEMPLATE_ID",
238371
+ MetadataParseFailed = "METADATA_PARSE_FAILED"
238372
+ }
238373
+ export declare enum StudioTemplateSourceStatus {
238374
+ Error = "ERROR"
238375
+ }
238376
+ export declare enum StudioTemplateType {
238377
+ Agent = "AGENT",
238378
+ Automation = "AUTOMATION"
238379
+ }
238380
+ export type StudioTemplatesResponse = {
238381
+ __typename?: 'StudioTemplatesResponse';
238382
+ sourceDiagnostics: Array<StudioTemplateSourceDiagnostic>;
238383
+ templates: Array<StudioTemplate>;
238384
+ };
238287
238385
  export type StudioWorkspaceAiEnabled = {
238288
238386
  __typename?: 'StudioWorkspaceAiEnabled';
238289
238387
  aiEnabled: Scalars['Boolean']['output'];
@@ -238669,6 +238767,7 @@ export type SupportRequestAddCommentInput = {
238669
238767
  };
238670
238768
  export type SupportRequestAdditionalTicketData = {
238671
238769
  chatTranscript?: InputMaybe<Scalars['String']['input']>;
238770
+ cloudSiteUrl?: InputMaybe<Scalars['String']['input']>;
238672
238771
  operationType?: InputMaybe<Scalars['String']['input']>;
238673
238772
  parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
238674
238773
  };