@forge/cli-shared 3.11.2-next.4 → 3.11.2-next.5
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
|
@@ -23467,6 +23467,7 @@ export declare type TrelloBoard = {
|
|
|
23467
23467
|
galleryInfo?: Maybe<TrelloTemplateGalleryItemInfo>;
|
|
23468
23468
|
id: Scalars['ID'];
|
|
23469
23469
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
23470
|
+
lists?: Maybe<TrelloListConnection>;
|
|
23470
23471
|
name: Scalars['String'];
|
|
23471
23472
|
objectId: Scalars['ID'];
|
|
23472
23473
|
prefs: TrelloBoardPrefs;
|
|
@@ -23474,6 +23475,11 @@ export declare type TrelloBoard = {
|
|
|
23474
23475
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
23475
23476
|
workspace?: Maybe<TrelloWorkspace>;
|
|
23476
23477
|
};
|
|
23478
|
+
export declare type TrelloBoardListsArgs = {
|
|
23479
|
+
after?: Maybe<Scalars['String']>;
|
|
23480
|
+
filter?: Maybe<Scalars['String']>;
|
|
23481
|
+
first?: Maybe<Scalars['Int']>;
|
|
23482
|
+
};
|
|
23477
23483
|
export declare type TrelloBoardBackground = {
|
|
23478
23484
|
__typename?: 'TrelloBoardBackground';
|
|
23479
23485
|
color?: Maybe<Scalars['String']>;
|
|
@@ -23531,6 +23537,7 @@ export declare type TrelloCard = {
|
|
|
23531
23537
|
id: Scalars['ID'];
|
|
23532
23538
|
isTemplate?: Maybe<Scalars['Boolean']>;
|
|
23533
23539
|
lastActivityAt?: Maybe<Scalars['DateTime']>;
|
|
23540
|
+
limits?: Maybe<TrelloCardLimits>;
|
|
23534
23541
|
location?: Maybe<TrelloCardLocation>;
|
|
23535
23542
|
name?: Maybe<Scalars['String']>;
|
|
23536
23543
|
objectId: Scalars['String'];
|
|
@@ -23540,14 +23547,29 @@ export declare type TrelloCard = {
|
|
|
23540
23547
|
shortLink?: Maybe<Scalars['TrelloShortLink']>;
|
|
23541
23548
|
shortUrl?: Maybe<Scalars['URL']>;
|
|
23542
23549
|
startedAt?: Maybe<Scalars['DateTime']>;
|
|
23550
|
+
stickers?: Maybe<TrelloStickerConnection>;
|
|
23543
23551
|
url?: Maybe<Scalars['URL']>;
|
|
23544
23552
|
};
|
|
23553
|
+
export declare type TrelloCardStickersArgs = {
|
|
23554
|
+
after?: Maybe<Scalars['String']>;
|
|
23555
|
+
first?: Maybe<Scalars['Int']>;
|
|
23556
|
+
};
|
|
23545
23557
|
export declare type TrelloCardDueInfo = {
|
|
23546
23558
|
__typename?: 'TrelloCardDueInfo';
|
|
23547
23559
|
at?: Maybe<Scalars['DateTime']>;
|
|
23548
23560
|
complete?: Maybe<Scalars['Boolean']>;
|
|
23549
23561
|
reminder?: Maybe<Scalars['Int']>;
|
|
23550
23562
|
};
|
|
23563
|
+
export declare type TrelloCardLimit = {
|
|
23564
|
+
__typename?: 'TrelloCardLimit';
|
|
23565
|
+
perCard?: Maybe<TrelloLimitProps>;
|
|
23566
|
+
};
|
|
23567
|
+
export declare type TrelloCardLimits = {
|
|
23568
|
+
__typename?: 'TrelloCardLimits';
|
|
23569
|
+
attachments?: Maybe<TrelloCardLimit>;
|
|
23570
|
+
checklists?: Maybe<TrelloCardLimit>;
|
|
23571
|
+
stickers?: Maybe<TrelloCardLimit>;
|
|
23572
|
+
};
|
|
23551
23573
|
export declare type TrelloCardLocation = {
|
|
23552
23574
|
__typename?: 'TrelloCardLocation';
|
|
23553
23575
|
address?: Maybe<Scalars['String']>;
|
|
@@ -23561,12 +23583,14 @@ export declare enum TrelloCardRole {
|
|
|
23561
23583
|
}
|
|
23562
23584
|
export declare type TrelloLimitProps = {
|
|
23563
23585
|
__typename?: 'TrelloLimitProps';
|
|
23586
|
+
count?: Maybe<Scalars['Int']>;
|
|
23564
23587
|
disableAt: Scalars['Int'];
|
|
23565
23588
|
status: Scalars['String'];
|
|
23566
23589
|
warnAt: Scalars['Int'];
|
|
23567
23590
|
};
|
|
23568
23591
|
export declare type TrelloList = {
|
|
23569
23592
|
__typename?: 'TrelloList';
|
|
23593
|
+
board?: Maybe<TrelloBoard>;
|
|
23570
23594
|
closed: Scalars['Boolean'];
|
|
23571
23595
|
creationMethod: Scalars['String'];
|
|
23572
23596
|
id: Scalars['ID'];
|
|
@@ -23582,6 +23606,17 @@ export declare type TrelloListCardLimits = {
|
|
|
23582
23606
|
openPerList?: Maybe<TrelloLimitProps>;
|
|
23583
23607
|
totalPerList?: Maybe<TrelloLimitProps>;
|
|
23584
23608
|
};
|
|
23609
|
+
export declare type TrelloListConnection = {
|
|
23610
|
+
__typename?: 'TrelloListConnection';
|
|
23611
|
+
edges?: Maybe<Array<TrelloListEdge>>;
|
|
23612
|
+
nodes?: Maybe<Array<TrelloList>>;
|
|
23613
|
+
pageInfo: PageInfo;
|
|
23614
|
+
};
|
|
23615
|
+
export declare type TrelloListEdge = {
|
|
23616
|
+
__typename?: 'TrelloListEdge';
|
|
23617
|
+
cursor?: Maybe<Scalars['String']>;
|
|
23618
|
+
node?: Maybe<TrelloList>;
|
|
23619
|
+
};
|
|
23585
23620
|
export declare type TrelloListLimits = {
|
|
23586
23621
|
__typename?: 'TrelloListLimits';
|
|
23587
23622
|
cards?: Maybe<TrelloListCardLimits>;
|
|
@@ -23645,6 +23680,26 @@ export declare type TrelloScaleProps = {
|
|
|
23645
23680
|
url: Scalars['String'];
|
|
23646
23681
|
width: Scalars['Int'];
|
|
23647
23682
|
};
|
|
23683
|
+
export declare type TrelloSticker = {
|
|
23684
|
+
__typename?: 'TrelloSticker';
|
|
23685
|
+
left?: Maybe<Scalars['Float']>;
|
|
23686
|
+
objectId: Scalars['ID'];
|
|
23687
|
+
rotate?: Maybe<Scalars['Float']>;
|
|
23688
|
+
top?: Maybe<Scalars['Float']>;
|
|
23689
|
+
url?: Maybe<Scalars['URL']>;
|
|
23690
|
+
zIndex?: Maybe<Scalars['Int']>;
|
|
23691
|
+
};
|
|
23692
|
+
export declare type TrelloStickerConnection = {
|
|
23693
|
+
__typename?: 'TrelloStickerConnection';
|
|
23694
|
+
edges?: Maybe<Array<TrelloStickerEdge>>;
|
|
23695
|
+
nodes?: Maybe<Array<TrelloSticker>>;
|
|
23696
|
+
pageInfo: PageInfo;
|
|
23697
|
+
};
|
|
23698
|
+
export declare type TrelloStickerEdge = {
|
|
23699
|
+
__typename?: 'TrelloStickerEdge';
|
|
23700
|
+
cursor: Scalars['String'];
|
|
23701
|
+
node: TrelloSticker;
|
|
23702
|
+
};
|
|
23648
23703
|
export declare type TrelloSubscriptionApi = {
|
|
23649
23704
|
__typename?: 'TrelloSubscriptionApi';
|
|
23650
23705
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|