@forge/cli-shared 9.2.0-next.8-experimental-28c9ab7 → 9.2.0-next.9

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,27 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 9.2.0-next.8-experimental-28c9ab7
4
-
5
- ### Minor Changes
6
-
7
- - 8826ca3: add personal apps support for Forge app creation
8
- - d415c89: Surface rate limit errors in CLI, improve E2E test robustness
9
- - 757223b: Added Dashboard, bitbucket, rovo, teamwork, action templates
3
+ ## 9.2.0-next.9
10
4
 
11
5
  ### Patch Changes
12
6
 
13
- - 903d6c1: Updated UI to show error when no installations
14
- - 794aa2a: Skip warning for internal sites for personal apps
15
- - 6e5b5a4: Better interface for packaging the runtime code
16
- - 5abe69e: add support for personal app installation contexts
17
- - 3991f92: Update `tmp` from 0.2.5 to 0.2.6 in `@forge/cli-shared` to remediate vulnerability
18
- - Updated dependencies [4c5ba1c]
19
- - Updated dependencies [8826ca3]
20
- - Updated dependencies [5abe69e]
21
- - Updated dependencies [7195f29]
22
- - Updated dependencies [3252a62]
23
- - Updated dependencies [c67b720]
24
- - @forge/manifest@13.2.0-next.4-experimental-28c9ab7
7
+ - Updated dependencies [2b30ef8]
8
+ - @forge/manifest@13.2.0-next.5
25
9
 
26
10
  ## 9.2.0-next.8
27
11
 
@@ -1,6 +1,5 @@
1
1
  import * as t from 'io-ts';
2
2
  import { ConfigSectionReader } from '../config';
3
- import { AppFeature } from '../graphql';
4
3
  export declare const appConfigShape: t.TypeC<{
5
4
  id: t.StringC;
6
5
  }>;
@@ -11,5 +10,4 @@ export declare function adjustLegacyAppId(legacyAppDetails: AppDetails): {
11
10
  id: string;
12
11
  };
13
12
  export declare const assertiveAppConfigProvider: (appConfigReader: ConfigSectionReader<AppDetails>) => AppConfigProvider;
14
- export declare function isPersonalApp(appFeatures?: AppFeature[]): boolean;
15
13
  //# sourceMappingURL=app-config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app-config.d.ts","sourceRoot":"","sources":["../../src/apps/app-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,OAAO,EAAa,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAE3D,OAAO,EAAE,UAAU,EAAiB,MAAM,YAAY,CAAC;AAEvD,eAAO,MAAM,cAAc;;EAEzB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AACzD,eAAO,MAAM,YAAY,QAAQ,CAAC;AAElC,MAAM,MAAM,iBAAiB,GAAG,MAAM,OAAO,CAAC,UAAU,CAAC,CAAC;AAE1D,wBAAgB,iBAAiB,CAAC,gBAAgB,EAAE,UAAU;;EAQ7D;AAED,eAAO,MAAM,0BAA0B,GACpC,iBAAiB,mBAAmB,CAAC,UAAU,CAAC,KAAG,iBAIxB,CAAC;AAE/B,wBAAgB,aAAa,CAAC,WAAW,CAAC,EAAE,UAAU,EAAE,GAAG,OAAO,CAEjE"}
1
+ {"version":3,"file":"app-config.d.ts","sourceRoot":"","sources":["../../src/apps/app-config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,OAAO,CAAC;AAG3B,OAAO,EAAa,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAG3D,eAAO,MAAM,cAAc;;EAEzB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAC;AACzD,eAAO,MAAM,YAAY,QAAQ,CAAC;AAElC,MAAM,MAAM,iBAAiB,GAAG,MAAM,OAAO,CAAC,UAAU,CAAC,CAAC;AAE1D,wBAAgB,iBAAiB,CAAC,gBAAgB,EAAE,UAAU;;EAQ7D;AAED,eAAO,MAAM,0BAA0B,GACpC,iBAAiB,mBAAmB,CAAC,UAAU,CAAC,KAAG,iBAIxB,CAAC"}
@@ -2,13 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.assertiveAppConfigProvider = exports.appConfigKey = exports.appConfigShape = void 0;
4
4
  exports.adjustLegacyAppId = adjustLegacyAppId;
5
- exports.isPersonalApp = isPersonalApp;
6
5
  const tslib_1 = require("tslib");
7
6
  const t = tslib_1.__importStar(require("io-ts"));
8
7
  const ari_1 = require("../ari");
9
8
  const config_1 = require("../config");
10
9
  const ui_1 = require("../ui");
11
- const graphql_1 = require("../graphql");
12
10
  exports.appConfigShape = t.type({
13
11
  id: t.string
14
12
  });
@@ -26,6 +24,3 @@ const assertiveAppConfigProvider = (appConfigReader) => () => (0, config_1.asser
26
24
  .readConfigSectionOrThrow(ui_1.Text.config.missing, ui_1.Text.config.invalid)
27
25
  .then(adjustLegacyAppId);
28
26
  exports.assertiveAppConfigProvider = assertiveAppConfigProvider;
29
- function isPersonalApp(appFeatures) {
30
- return appFeatures?.some((feature) => feature.key === graphql_1.AppFeatureKey.IsPersonalApp && feature.value) ?? false;
31
- }
@@ -38618,15 +38618,6 @@ export type ConvoAiAgentSessionUpdatedByProjects = {
38618
38618
  projectId: Scalars['String']['output'];
38619
38619
  state: ConvoAiAgentSessionState;
38620
38620
  };
38621
- export declare enum ConvoAiAgentToUiFramework {
38622
- A2Ui = "A2UI"
38623
- }
38624
- export type ConvoAiAgenticUiMessage = {
38625
- __typename?: 'ConvoAiAgenticUiMessage';
38626
- append?: Maybe<Scalars['Boolean']['output']>;
38627
- content?: Maybe<Array<Scalars['JSON']['output']>>;
38628
- framework?: Maybe<ConvoAiAgentToUiFramework>;
38629
- };
38630
38621
  export type ConvoAiAnswerPartMessage = ConvoAiAgentMessage & {
38631
38622
  __typename?: 'ConvoAiAnswerPartMessage';
38632
38623
  artifact?: Maybe<ConvoAiMessageArtifact>;
@@ -38656,7 +38647,6 @@ export type ConvoAiConversationMessage = ConvoAiAgentMessage & {
38656
38647
  __typename?: 'ConvoAiConversationMessage';
38657
38648
  actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
38658
38649
  agentSessionState?: Maybe<Scalars['String']['output']>;
38659
- agenticUi?: Maybe<ConvoAiAgenticUiMessage>;
38660
38650
  artifacts?: Maybe<Array<ConvoAiMessageArtifact>>;
38661
38651
  authorId?: Maybe<Scalars['String']['output']>;
38662
38652
  contentSummary?: Maybe<Scalars['String']['output']>;
@@ -52386,7 +52376,6 @@ export type GlobalAppExtension = {
52386
52376
  requiresLicense?: Maybe<Scalars['Boolean']['output']>;
52387
52377
  scopes: Array<Scalars['String']['output']>;
52388
52378
  securityPolicies: Array<GlobalAppSecurityPolicy>;
52389
- type: Scalars['String']['output'];
52390
52379
  versionId: Scalars['String']['output'];
52391
52380
  };
52392
52381
  export type GlobalAppExtensionContextInput = {
@@ -52396,13 +52385,6 @@ export type GlobalAppExtensionContextInput = {
52396
52385
  extensionType?: InputMaybe<Scalars['String']['input']>;
52397
52386
  installationId?: InputMaybe<Scalars['ID']['input']>;
52398
52387
  };
52399
- export type GlobalAppExtensionsFilterInput = {
52400
- type: GlobalAppExtensionsFilterType;
52401
- value: Array<Scalars['String']['input']>;
52402
- };
52403
- export declare enum GlobalAppExtensionsFilterType {
52404
- ExtensionType = "EXTENSION_TYPE"
52405
- }
52406
52388
  export type GlobalAppExtensionsResponse = {
52407
52389
  __typename?: 'GlobalAppExtensionsResponse';
52408
52390
  extensions?: Maybe<Array<GlobalAppExtension>>;
@@ -187219,10 +187201,8 @@ export type QueryGetSummaryArgs = {
187219
187201
  };
187220
187202
  export type QueryGlobalApp_ExtensionsByContextAriArgs = {
187221
187203
  contextAri: Scalars['ID']['input'];
187222
- filter?: InputMaybe<GlobalAppExtensionsFilterInput>;
187223
187204
  };
187224
187205
  export type QueryGlobalApp_ExtensionsByInstallationIdArgs = {
187225
- filter?: InputMaybe<GlobalAppExtensionsFilterInput>;
187226
187206
  installationId: Scalars['ID']['input'];
187227
187207
  };
187228
187208
  export type QueryGlobalApp_IsProductAdminArgs = {