@forge/cli-shared 9.4.0-next.6-experimental-ccd5143 → 9.4.0-next.8
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 +6 -10
- package/out/graphql/graphql-types.d.ts +16 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.4.0-next.
|
|
3
|
+
## 9.4.0-next.8
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
- ff4f2bf: Add `forge site provision` to provision a new demo site or get an existing demo site.
|
|
7
|
+
- 9afd5c3: Add native Forge CLI proxy support for Node and Undici network clients.
|
|
8
|
+
|
|
9
|
+
## 9.4.0-next.7
|
|
11
10
|
|
|
12
11
|
### Patch Changes
|
|
13
12
|
|
|
14
|
-
- 71d0c4e: update 'manifest render' command description
|
|
15
|
-
- f9fba62: Add an option to inspect the application bundle
|
|
16
13
|
- Updated dependencies [ccd5143]
|
|
17
|
-
-
|
|
18
|
-
- @forge/manifest@13.3.1-next.0-experimental-ccd5143
|
|
14
|
+
- @forge/manifest@13.3.1-next.1
|
|
19
15
|
|
|
20
16
|
## 9.4.0-next.6
|
|
21
17
|
|
|
@@ -5501,6 +5501,15 @@ export type AdminUnitEdge = {
|
|
|
5501
5501
|
__typename?: 'AdminUnitEdge';
|
|
5502
5502
|
node: AdminUnit;
|
|
5503
5503
|
};
|
|
5504
|
+
export type AdminUnitIconDeleteInput = {
|
|
5505
|
+
orgId: Scalars['ID']['input'];
|
|
5506
|
+
unitId: Scalars['ID']['input'];
|
|
5507
|
+
};
|
|
5508
|
+
export type AdminUnitIconDeletePayload = {
|
|
5509
|
+
__typename?: 'AdminUnitIconDeletePayload';
|
|
5510
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5511
|
+
success: Scalars['Boolean']['output'];
|
|
5512
|
+
};
|
|
5504
5513
|
export type AdminUnitLinkedConnection = {
|
|
5505
5514
|
__typename?: 'AdminUnitLinkedConnection';
|
|
5506
5515
|
edges?: Maybe<Array<AdminUnitLinkedEdge>>;
|
|
@@ -7821,6 +7830,7 @@ export type AgentWorkspaceAgentAvailability = {
|
|
|
7821
7830
|
agentName: Scalars['String']['output'];
|
|
7822
7831
|
id: Scalars['ID']['output'];
|
|
7823
7832
|
status: AgentWorkspaceAvailabilityStatus;
|
|
7833
|
+
statusExpiresAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7824
7834
|
teamARIs: Array<Scalars['ID']['output']>;
|
|
7825
7835
|
teamIds: Array<Scalars['ID']['output']>;
|
|
7826
7836
|
teamNames: Array<Scalars['String']['output']>;
|
|
@@ -8018,6 +8028,7 @@ export type AgentWorkspaceAvailabilityStatusInput = {
|
|
|
8018
8028
|
cloudId: Scalars['ID']['input'];
|
|
8019
8029
|
projectId: Scalars['ID']['input'];
|
|
8020
8030
|
status: AgentWorkspaceAvailabilityStatus;
|
|
8031
|
+
statusExpiresAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
8021
8032
|
};
|
|
8022
8033
|
export type AgentWorkspaceAvailabilityStatusPayload = {
|
|
8023
8034
|
__typename?: 'AgentWorkspaceAvailabilityStatusPayload';
|
|
@@ -174907,6 +174918,7 @@ export type Mutation = {
|
|
|
174907
174918
|
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
174908
174919
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
174909
174920
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
174921
|
+
admin_unitIconDelete?: Maybe<AdminUnitIconDeletePayload>;
|
|
174910
174922
|
admin_unitRename?: Maybe<AdminUnitRenamePayload>;
|
|
174911
174923
|
admin_unitUpdateDescription?: Maybe<AdminUnitUpdateDescriptionPayload>;
|
|
174912
174924
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
@@ -176795,6 +176807,9 @@ export type MutationAdmin_UnitCreateArgs = {
|
|
|
176795
176807
|
orgId: Scalars['ID']['input'];
|
|
176796
176808
|
unit: AdminUnitCreateInput;
|
|
176797
176809
|
};
|
|
176810
|
+
export type MutationAdmin_UnitIconDeleteArgs = {
|
|
176811
|
+
input: AdminUnitIconDeleteInput;
|
|
176812
|
+
};
|
|
176798
176813
|
export type MutationAdmin_UnitRenameArgs = {
|
|
176799
176814
|
input: AdminUnitRenameInput;
|
|
176800
176815
|
};
|
|
@@ -227887,6 +227902,7 @@ export type TownsquareGoalCapabilities = {
|
|
|
227887
227902
|
};
|
|
227888
227903
|
export type TownsquareGoalConnection = {
|
|
227889
227904
|
__typename?: 'TownsquareGoalConnection';
|
|
227905
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
227890
227906
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
227891
227907
|
pageInfo: PageInfo;
|
|
227892
227908
|
};
|