@forge/cli-shared 9.2.0-next.3-experimental-bf8e292 → 9.2.0-next.3-experimental-c6a3916
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 +5 -2
- package/out/graphql/graphql-types.d.ts +2 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/log-color.d.ts +1 -0
- package/out/ui/log-color.d.ts.map +1 -1
- package/out/ui/log-color.js +1 -0
- package/out/ui/single-table-prompt.d.ts.map +1 -1
- package/out/ui/single-table-prompt.js +2 -1
- package/out/ui/text.d.ts +9 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +35 -13
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.2.0-next.3-experimental-
|
|
3
|
+
## 9.2.0-next.3-experimental-c6a3916
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
|
+
- 342098d: Implement server-side linter logic to prevent accidental major app version deployments
|
|
7
8
|
- 757223b: Added Dashboard, bitbucket, rovo, teamwork, action templates
|
|
8
9
|
|
|
9
10
|
### Patch Changes
|
|
10
11
|
|
|
12
|
+
- 903d6c1: Updated UI to show error when no installations
|
|
13
|
+
- 9cd0e0e: Update Forge CLI output rendering to incorporate pre-deployment API rules
|
|
11
14
|
- 3991f92: Update `tmp` from 0.2.5 to 0.2.6 in `@forge/cli-shared` to remediate vulnerability
|
|
12
15
|
- Updated dependencies [4c5ba1c]
|
|
13
16
|
- Updated dependencies [7195f29]
|
|
14
17
|
- Updated dependencies [3252a62]
|
|
15
|
-
- @forge/manifest@13.1.1-next.2-experimental-
|
|
18
|
+
- @forge/manifest@13.1.1-next.2-experimental-c6a3916
|
|
16
19
|
|
|
17
20
|
## 9.2.0-next.3
|
|
18
21
|
|
|
@@ -6141,6 +6141,7 @@ export type AgentStudioAssistantConversation = {
|
|
|
6141
6141
|
hasCoachingContent?: Maybe<Scalars['Boolean']['output']>;
|
|
6142
6142
|
hasGenericAnnotation?: Maybe<Scalars['Boolean']['output']>;
|
|
6143
6143
|
id?: Maybe<Scalars['ID']['output']>;
|
|
6144
|
+
interactionChannel?: Maybe<Scalars['String']['output']>;
|
|
6144
6145
|
lastMessageDate?: Maybe<Scalars['String']['output']>;
|
|
6145
6146
|
lifecycleStatus?: Maybe<AgentStudioConversationLifecycleStatus>;
|
|
6146
6147
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -6863,6 +6864,7 @@ export type AgentStudioLiveConversationFilterInput = {
|
|
|
6863
6864
|
annotationLabels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6864
6865
|
conversationReviewStatus?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6865
6866
|
customerFeedback?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6867
|
+
interactionChannels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6866
6868
|
llmJudgedResolution?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6867
6869
|
messageReviewStatus?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
6868
6870
|
updatedAfter?: InputMaybe<Scalars['String']['input']>;
|