@forge/cli-shared 9.4.0-next.6-experimental-ccd5143 → 9.4.0-next.7
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,21 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 9.4.0-next.
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- 016ed9d: Upgrading graphql-request dependency
|
|
8
|
-
- d1767a0: New dynamic hint bar added to progress display
|
|
9
|
-
- 2b13c2e: Move from node-fetch to native fetch
|
|
10
|
-
- ff4f2bf: Add `forge site provision` to provision a new demo site or get an existing demo site.
|
|
3
|
+
## 9.4.0-next.7
|
|
11
4
|
|
|
12
5
|
### Patch Changes
|
|
13
6
|
|
|
14
|
-
- 71d0c4e: update 'manifest render' command description
|
|
15
|
-
- f9fba62: Add an option to inspect the application bundle
|
|
16
7
|
- Updated dependencies [ccd5143]
|
|
17
|
-
-
|
|
18
|
-
- @forge/manifest@13.3.1-next.0-experimental-ccd5143
|
|
8
|
+
- @forge/manifest@13.3.1-next.1
|
|
19
9
|
|
|
20
10
|
## 9.4.0-next.6
|
|
21
11
|
|
|
@@ -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>>;
|
|
@@ -174907,6 +174916,7 @@ export type Mutation = {
|
|
|
174907
174916
|
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
174908
174917
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
174909
174918
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
174919
|
+
admin_unitIconDelete?: Maybe<AdminUnitIconDeletePayload>;
|
|
174910
174920
|
admin_unitRename?: Maybe<AdminUnitRenamePayload>;
|
|
174911
174921
|
admin_unitUpdateDescription?: Maybe<AdminUnitUpdateDescriptionPayload>;
|
|
174912
174922
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
@@ -176795,6 +176805,9 @@ export type MutationAdmin_UnitCreateArgs = {
|
|
|
176795
176805
|
orgId: Scalars['ID']['input'];
|
|
176796
176806
|
unit: AdminUnitCreateInput;
|
|
176797
176807
|
};
|
|
176808
|
+
export type MutationAdmin_UnitIconDeleteArgs = {
|
|
176809
|
+
input: AdminUnitIconDeleteInput;
|
|
176810
|
+
};
|
|
176798
176811
|
export type MutationAdmin_UnitRenameArgs = {
|
|
176799
176812
|
input: AdminUnitRenameInput;
|
|
176800
176813
|
};
|
|
@@ -227887,6 +227900,7 @@ export type TownsquareGoalCapabilities = {
|
|
|
227887
227900
|
};
|
|
227888
227901
|
export type TownsquareGoalConnection = {
|
|
227889
227902
|
__typename?: 'TownsquareGoalConnection';
|
|
227903
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
227890
227904
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
227891
227905
|
pageInfo: PageInfo;
|
|
227892
227906
|
};
|