@forge/cli-shared 3.17.1-next.4 → 3.17.1-next.6
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,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.17.1-next.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 388380b: Bumping dependencies via Renovate:
|
|
8
|
+
|
|
9
|
+
- inquirer
|
|
10
|
+
|
|
11
|
+
## 3.17.1-next.5
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 9e74985: Bumping dependencies via Renovate:
|
|
16
|
+
|
|
17
|
+
- @sentry/node
|
|
18
|
+
|
|
19
|
+
- 94ce678: Bumping dependencies via Renovate:
|
|
20
|
+
|
|
21
|
+
- fp-ts
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [06a3e19]
|
|
24
|
+
- @forge/manifest@4.18.1-next.2
|
|
25
|
+
|
|
3
26
|
## 3.17.1-next.4
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -26957,6 +26957,15 @@ export type TrelloAddMemberToCardPayload = Payload & {
|
|
|
26957
26957
|
errors?: Maybe<Array<MutationError>>;
|
|
26958
26958
|
success: Scalars['Boolean'];
|
|
26959
26959
|
};
|
|
26960
|
+
export type TrelloArchiveCardInput = {
|
|
26961
|
+
cardId: Scalars['ID'];
|
|
26962
|
+
};
|
|
26963
|
+
export type TrelloArchiveCardPayload = Payload & {
|
|
26964
|
+
__typename?: 'TrelloArchiveCardPayload';
|
|
26965
|
+
card?: Maybe<TrelloCard>;
|
|
26966
|
+
errors?: Maybe<Array<MutationError>>;
|
|
26967
|
+
success: Scalars['Boolean'];
|
|
26968
|
+
};
|
|
26960
26969
|
export type TrelloAttachment = {
|
|
26961
26970
|
__typename?: 'TrelloAttachment';
|
|
26962
26971
|
bytes?: Maybe<Scalars['Float']>;
|
|
@@ -26984,6 +26993,7 @@ export type TrelloAttachmentEdge = {
|
|
|
26984
26993
|
export type TrelloBoard = Node & {
|
|
26985
26994
|
__typename?: 'TrelloBoard';
|
|
26986
26995
|
closed: Scalars['Boolean'];
|
|
26996
|
+
creationMethod?: Maybe<Scalars['String']>;
|
|
26987
26997
|
description?: Maybe<TrelloDescription>;
|
|
26988
26998
|
enterpriseOwned: Scalars['Boolean'];
|
|
26989
26999
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
@@ -26994,7 +27004,9 @@ export type TrelloBoard = Node & {
|
|
|
26994
27004
|
name: Scalars['String'];
|
|
26995
27005
|
objectId: Scalars['ID'];
|
|
26996
27006
|
prefs: TrelloBoardPrefs;
|
|
27007
|
+
premiumFeatures?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
26997
27008
|
shortLink: Scalars['TrelloShortLink'];
|
|
27009
|
+
shortUrl?: Maybe<Scalars['URL']>;
|
|
26998
27010
|
url?: Maybe<Scalars['URL']>;
|
|
26999
27011
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
27000
27012
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -27582,8 +27594,12 @@ export type TrelloMutationApi = {
|
|
|
27582
27594
|
__typename?: 'TrelloMutationApi';
|
|
27583
27595
|
addHello?: Maybe<TrelloAddHelloPayload>;
|
|
27584
27596
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
27597
|
+
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
27585
27598
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
27586
27599
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
27600
|
+
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
27601
|
+
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
27602
|
+
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
27587
27603
|
};
|
|
27588
27604
|
export type TrelloMutationApiAddHelloArgs = {
|
|
27589
27605
|
input: TrelloHelloInput;
|
|
@@ -27591,12 +27607,24 @@ export type TrelloMutationApiAddHelloArgs = {
|
|
|
27591
27607
|
export type TrelloMutationApiAddMemberToCardArgs = {
|
|
27592
27608
|
input: TrelloAddMemberInput;
|
|
27593
27609
|
};
|
|
27610
|
+
export type TrelloMutationApiArchiveCardArgs = {
|
|
27611
|
+
input: TrelloArchiveCardInput;
|
|
27612
|
+
};
|
|
27594
27613
|
export type TrelloMutationApiCreateCardArgs = {
|
|
27595
27614
|
input: TrelloCreateCardInput;
|
|
27596
27615
|
};
|
|
27597
27616
|
export type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
27598
27617
|
input: TrelloRemoveMemberInput;
|
|
27599
27618
|
};
|
|
27619
|
+
export type TrelloMutationApiUnarchiveCardArgs = {
|
|
27620
|
+
input: TrelloUnarchiveCardInput;
|
|
27621
|
+
};
|
|
27622
|
+
export type TrelloMutationApiUnwatchCardArgs = {
|
|
27623
|
+
input: TrelloWatchCardInput;
|
|
27624
|
+
};
|
|
27625
|
+
export type TrelloMutationApiWatchCardArgs = {
|
|
27626
|
+
input: TrelloWatchCardInput;
|
|
27627
|
+
};
|
|
27600
27628
|
export type TrelloPlugin = {
|
|
27601
27629
|
__typename?: 'TrelloPlugin';
|
|
27602
27630
|
objectId?: Maybe<Scalars['ID']>;
|
|
@@ -27787,10 +27815,28 @@ export type TrelloTemplateGalleryLanguage = {
|
|
|
27787
27815
|
locale: Scalars['String'];
|
|
27788
27816
|
localizedDescription: Scalars['String'];
|
|
27789
27817
|
};
|
|
27818
|
+
export type TrelloUnarchiveCardInput = {
|
|
27819
|
+
cardId: Scalars['ID'];
|
|
27820
|
+
};
|
|
27821
|
+
export type TrelloUnarchiveCardPayload = Payload & {
|
|
27822
|
+
__typename?: 'TrelloUnarchiveCardPayload';
|
|
27823
|
+
card?: Maybe<TrelloCard>;
|
|
27824
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27825
|
+
success: Scalars['Boolean'];
|
|
27826
|
+
};
|
|
27790
27827
|
export type TrelloUploadedBackground = {
|
|
27791
27828
|
__typename?: 'TrelloUploadedBackground';
|
|
27792
27829
|
objectId: Scalars['ID'];
|
|
27793
27830
|
};
|
|
27831
|
+
export type TrelloWatchCardInput = {
|
|
27832
|
+
cardId: Scalars['ID'];
|
|
27833
|
+
};
|
|
27834
|
+
export type TrelloWatchCardPayload = Payload & {
|
|
27835
|
+
__typename?: 'TrelloWatchCardPayload';
|
|
27836
|
+
card?: Maybe<TrelloCard>;
|
|
27837
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27838
|
+
success: Scalars['Boolean'];
|
|
27839
|
+
};
|
|
27794
27840
|
export type TrelloWorkspace = Node & {
|
|
27795
27841
|
__typename?: 'TrelloWorkspace';
|
|
27796
27842
|
displayName: Scalars['String'];
|