@forge/cli-shared 2.1.3-next.4 → 2.1.3
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,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 962582f: Remove ts-ignore and fix complex union type error related to MutationResult generic.
|
|
8
|
+
- Updated dependencies [f3c0748]
|
|
9
|
+
- Updated dependencies [bd2be7f]
|
|
10
|
+
- Updated dependencies [46240f3]
|
|
11
|
+
- Updated dependencies [18c799a]
|
|
12
|
+
- Updated dependencies [5ed2e3a]
|
|
13
|
+
- Updated dependencies [7cfcd6c]
|
|
14
|
+
- Updated dependencies [f0d3871]
|
|
15
|
+
- Updated dependencies [9b09fef]
|
|
16
|
+
- @forge/manifest@2.3.0
|
|
17
|
+
|
|
3
18
|
## 2.1.3-next.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -903,6 +903,7 @@ export declare type Backlog = {
|
|
|
903
903
|
};
|
|
904
904
|
export declare type BacklogCardsArgs = {
|
|
905
905
|
cardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
906
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
906
907
|
};
|
|
907
908
|
export declare type BacklogExtension = {
|
|
908
909
|
__typename?: 'BacklogExtension';
|
|
@@ -1070,6 +1071,7 @@ export declare type BoardScopeSprintsArgs = {
|
|
|
1070
1071
|
};
|
|
1071
1072
|
export declare type BoardScopeCardsArgs = {
|
|
1072
1073
|
cardIds: Array<Maybe<Scalars['ID']>>;
|
|
1074
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
1073
1075
|
};
|
|
1074
1076
|
export declare type BoardScopeSprintArgs = {
|
|
1075
1077
|
sprintId: Scalars['ID'];
|
|
@@ -1309,6 +1311,9 @@ export declare type Column = {
|
|
|
1309
1311
|
isInitial: Scalars['Boolean'];
|
|
1310
1312
|
isDone: Scalars['Boolean'];
|
|
1311
1313
|
};
|
|
1314
|
+
export declare type ColumnCardsArgs = {
|
|
1315
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
1316
|
+
};
|
|
1312
1317
|
export declare type ColumnInSwimlane = {
|
|
1313
1318
|
__typename?: 'ColumnInSwimlane';
|
|
1314
1319
|
columnDetails?: Maybe<Column>;
|
|
@@ -1316,6 +1321,7 @@ export declare type ColumnInSwimlane = {
|
|
|
1316
1321
|
};
|
|
1317
1322
|
export declare type ColumnInSwimlaneCardsArgs = {
|
|
1318
1323
|
cardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
1324
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
1319
1325
|
};
|
|
1320
1326
|
export declare type ColumnStatus = {
|
|
1321
1327
|
__typename?: 'ColumnStatus';
|
|
@@ -10728,6 +10734,7 @@ export declare type SoftwareBoard = {
|
|
|
10728
10734
|
};
|
|
10729
10735
|
export declare type SoftwareBoardCardsArgs = {
|
|
10730
10736
|
cardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
10737
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
10731
10738
|
};
|
|
10732
10739
|
export declare type SoftwareCard = {
|
|
10733
10740
|
__typename?: 'SoftwareCard';
|
|
@@ -10853,6 +10860,7 @@ export declare type Sprint = {
|
|
|
10853
10860
|
};
|
|
10854
10861
|
export declare type SprintCardsArgs = {
|
|
10855
10862
|
cardIds?: Maybe<Array<Maybe<Scalars['ID']>>>;
|
|
10863
|
+
customFilterIds?: Maybe<Array<Scalars['ID']>>;
|
|
10856
10864
|
};
|
|
10857
10865
|
export declare type SprintEndData = {
|
|
10858
10866
|
__typename?: 'SprintEndData';
|