@forge/cli-shared 8.22.0-next.2 → 8.22.0
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,5 +1,23 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.22.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 16894cf: Extend the `atl-attribution` header sent on every GraphQL request from the Forge CLI with two new fields:
|
|
8
|
+
|
|
9
|
+
- `isAgent` — `true` when stdin and stdout is not a TTY (e.g. running under Rovo Dev, Cursor, or another agent shell).
|
|
10
|
+
- `isCI` — `true` when the `CI` environment variable is set to the literal string `"true"` (matches the `isCI` check already used by `forge build` / `forge deploy` packaging telemetry).
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 372861e: Migrated Forge Templates from Micro Static Apps to Bifrost services
|
|
15
|
+
- Updated dependencies [a99c9f1]
|
|
16
|
+
- Updated dependencies [56e38e9]
|
|
17
|
+
- Updated dependencies [22613fc]
|
|
18
|
+
- Updated dependencies [aed9912]
|
|
19
|
+
- @forge/manifest@12.7.0
|
|
20
|
+
|
|
3
21
|
## 8.22.0-next.2
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -2077,6 +2077,7 @@ export declare type AvpPlatformFilter = {
|
|
|
2077
2077
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
2078
2078
|
label?: Maybe<Scalars['String']['output']>;
|
|
2079
2079
|
metadata?: Maybe<Scalars['String']['output']>;
|
|
2080
|
+
visibility?: Maybe<AvpPlatformFilterVisibility>;
|
|
2080
2081
|
};
|
|
2081
2082
|
export declare type AvpPlatformFilterInput = {
|
|
2082
2083
|
comparison: Scalars['String']['input'];
|
|
@@ -2085,6 +2086,7 @@ export declare type AvpPlatformFilterInput = {
|
|
|
2085
2086
|
isHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2086
2087
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
2087
2088
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
2089
|
+
visibility?: InputMaybe<AvpPlatformFilterVisibility>;
|
|
2088
2090
|
};
|
|
2089
2091
|
export declare type AvpPlatformFilterUpdateInput = {
|
|
2090
2092
|
comparison?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2093,7 +2095,13 @@ export declare type AvpPlatformFilterUpdateInput = {
|
|
|
2093
2095
|
isHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2094
2096
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
2095
2097
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
2098
|
+
visibility?: InputMaybe<AvpPlatformFilterVisibility>;
|
|
2096
2099
|
};
|
|
2100
|
+
export declare enum AvpPlatformFilterVisibility {
|
|
2101
|
+
EditOnly = "EDIT_ONLY",
|
|
2102
|
+
None = "NONE",
|
|
2103
|
+
ViewAndEdit = "VIEW_AND_EDIT"
|
|
2104
|
+
}
|
|
2097
2105
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
2098
2106
|
product: Scalars['String']['input'];
|
|
2099
2107
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -44577,6 +44585,7 @@ export declare enum ExternalDocumentCategory {
|
|
|
44577
44585
|
Form = "FORM",
|
|
44578
44586
|
Image = "IMAGE",
|
|
44579
44587
|
KnowledgeArticle = "KNOWLEDGE_ARTICLE",
|
|
44588
|
+
NewsArticle = "NEWS_ARTICLE",
|
|
44580
44589
|
Notebook = "NOTEBOOK",
|
|
44581
44590
|
Other = "OTHER",
|
|
44582
44591
|
Page = "PAGE",
|
|
@@ -211642,6 +211651,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
211642
211651
|
appId: Scalars['ID']['input'];
|
|
211643
211652
|
contextId: Scalars['ID']['input'];
|
|
211644
211653
|
envId: Scalars['ID']['input'];
|
|
211654
|
+
secretKey?: InputMaybe<Scalars['String']['input']>;
|
|
211645
211655
|
triggerKey: Scalars['String']['input'];
|
|
211646
211656
|
};
|
|
211647
211657
|
export declare type WhiteboardFeatures = {
|