@forge/cli-shared 3.17.3-next.2 → 3.18.0-next.4
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,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 3.18.0-next.4
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9a78932b: Update warning text for outdated CLI version
|
|
8
|
+
|
|
9
|
+
## 3.17.3-next.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [a4cc20b6]
|
|
14
|
+
- @forge/manifest@4.19.2-next.2
|
|
15
|
+
|
|
3
16
|
## 3.17.3-next.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -9347,7 +9347,7 @@ export type ForgeAuditLogsContributorActivity = {
|
|
|
9347
9347
|
publicName: Scalars['String'];
|
|
9348
9348
|
status: Scalars['String'];
|
|
9349
9349
|
lastActive?: Maybe<Scalars['String']>;
|
|
9350
|
-
|
|
9350
|
+
roles?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
9351
9351
|
};
|
|
9352
9352
|
export type ForgeAuditLogsContributorsActivityData = {
|
|
9353
9353
|
__typename?: 'ForgeAuditLogsContributorsActivityData';
|
|
@@ -11315,7 +11315,6 @@ export type InfluentsNotificationItem = {
|
|
|
11315
11315
|
export type InfluentsNotificationMutation = {
|
|
11316
11316
|
__typename?: 'InfluentsNotificationMutation';
|
|
11317
11317
|
markNotificationsAsRead?: Maybe<Scalars['String']>;
|
|
11318
|
-
markNotificationsAsUnread?: Maybe<Scalars['String']>;
|
|
11319
11318
|
markNotificationsByGroupIdAsRead?: Maybe<Scalars['String']>;
|
|
11320
11319
|
markNotificationsByGroupIdAsUnread?: Maybe<Scalars['String']>;
|
|
11321
11320
|
markNotificationsByIdsAsRead?: Maybe<Scalars['String']>;
|
|
@@ -11330,21 +11329,14 @@ export type InfluentsNotificationMutationMarkNotificationsAsReadArgs = {
|
|
|
11330
11329
|
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11331
11330
|
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
11332
11331
|
};
|
|
11333
|
-
export type InfluentsNotificationMutationMarkNotificationsAsUnreadArgs = {
|
|
11334
|
-
category?: Maybe<InfluentsNotificationCategory>;
|
|
11335
|
-
product?: Maybe<Scalars['String']>;
|
|
11336
|
-
workspaceId?: Maybe<Scalars['String']>;
|
|
11337
|
-
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11338
|
-
beforeInclusiveTimestamp?: Maybe<Scalars['String']>;
|
|
11339
|
-
};
|
|
11340
11332
|
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsReadArgs = {
|
|
11341
11333
|
category?: Maybe<InfluentsNotificationCategory>;
|
|
11342
|
-
groupId
|
|
11334
|
+
groupId: Scalars['String'];
|
|
11343
11335
|
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11344
11336
|
};
|
|
11345
11337
|
export type InfluentsNotificationMutationMarkNotificationsByGroupIdAsUnreadArgs = {
|
|
11346
11338
|
category?: Maybe<InfluentsNotificationCategory>;
|
|
11347
|
-
groupId
|
|
11339
|
+
groupId: Scalars['String'];
|
|
11348
11340
|
beforeInclusive?: Maybe<Scalars['String']>;
|
|
11349
11341
|
};
|
|
11350
11342
|
export type InfluentsNotificationMutationMarkNotificationsByIdsAsReadArgs = {
|
|
@@ -28228,6 +28220,12 @@ export type TrelloDescriptionDataEmojisArgs = {
|
|
|
28228
28220
|
after?: Maybe<Scalars['String']>;
|
|
28229
28221
|
first?: Maybe<Scalars['Int']>;
|
|
28230
28222
|
};
|
|
28223
|
+
export type TrelloEnterprise = {
|
|
28224
|
+
__typename?: 'TrelloEnterprise';
|
|
28225
|
+
displayName?: Maybe<Scalars['String']>;
|
|
28226
|
+
id: Scalars['ID'];
|
|
28227
|
+
objectId: Scalars['ID'];
|
|
28228
|
+
};
|
|
28231
28229
|
export type TrelloHelloInput = {
|
|
28232
28230
|
hello: Scalars['String'];
|
|
28233
28231
|
};
|
|
@@ -28472,12 +28470,14 @@ export type TrelloQueryApi = {
|
|
|
28472
28470
|
board?: Maybe<TrelloBoard>;
|
|
28473
28471
|
card?: Maybe<TrelloCard>;
|
|
28474
28472
|
echo?: Maybe<Scalars['String']>;
|
|
28473
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
28475
28474
|
list?: Maybe<TrelloList>;
|
|
28476
28475
|
member?: Maybe<TrelloMember>;
|
|
28477
28476
|
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
28478
28477
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
28479
28478
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
28480
28479
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
28480
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
28481
28481
|
myRecentCards?: Maybe<TrelloRecentCardConnection>;
|
|
28482
28482
|
};
|
|
28483
28483
|
export type TrelloQueryApiBoardArgs = {
|
|
@@ -28486,6 +28486,9 @@ export type TrelloQueryApiBoardArgs = {
|
|
|
28486
28486
|
export type TrelloQueryApiCardArgs = {
|
|
28487
28487
|
id: Scalars['ID'];
|
|
28488
28488
|
};
|
|
28489
|
+
export type TrelloQueryApiEnterpriseArgs = {
|
|
28490
|
+
id: Scalars['ID'];
|
|
28491
|
+
};
|
|
28489
28492
|
export type TrelloQueryApiListArgs = {
|
|
28490
28493
|
id: Scalars['ID'];
|
|
28491
28494
|
};
|
|
@@ -28500,6 +28503,9 @@ export type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
28500
28503
|
filter?: Maybe<TrelloTemplateGalleryFilterInput>;
|
|
28501
28504
|
first?: Maybe<Scalars['Int']>;
|
|
28502
28505
|
};
|
|
28506
|
+
export type TrelloQueryApiWorkspaceArgs = {
|
|
28507
|
+
id: Scalars['ID'];
|
|
28508
|
+
};
|
|
28503
28509
|
export type TrelloQueryApiMyRecentCardsArgs = {
|
|
28504
28510
|
accountId?: Maybe<Scalars['ID']>;
|
|
28505
28511
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -28657,7 +28663,36 @@ export type TrelloWorkspace = Node & {
|
|
|
28657
28663
|
__typename?: 'TrelloWorkspace';
|
|
28658
28664
|
displayName: Scalars['String'];
|
|
28659
28665
|
id: Scalars['ID'];
|
|
28666
|
+
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
28667
|
+
objectId: Scalars['ID'];
|
|
28668
|
+
};
|
|
28669
|
+
export type TrelloWorkspaceMembersArgs = {
|
|
28670
|
+
after?: Maybe<Scalars['String']>;
|
|
28671
|
+
first?: Maybe<Scalars['Int']>;
|
|
28672
|
+
};
|
|
28673
|
+
export type TrelloWorkspaceMembershipEdge = {
|
|
28674
|
+
__typename?: 'TrelloWorkspaceMembershipEdge';
|
|
28675
|
+
cursor?: Maybe<Scalars['String']>;
|
|
28676
|
+
membership?: Maybe<TrelloWorkspaceMembershipInfo>;
|
|
28677
|
+
node?: Maybe<TrelloMember>;
|
|
28678
|
+
};
|
|
28679
|
+
export type TrelloWorkspaceMembershipInfo = {
|
|
28680
|
+
__typename?: 'TrelloWorkspaceMembershipInfo';
|
|
28681
|
+
deactivated?: Maybe<Scalars['Boolean']>;
|
|
28682
|
+
lastActive?: Maybe<Scalars['DateTime']>;
|
|
28660
28683
|
objectId: Scalars['ID'];
|
|
28684
|
+
type?: Maybe<TrelloWorkspaceMembershipType>;
|
|
28685
|
+
unconfirmed?: Maybe<Scalars['Boolean']>;
|
|
28686
|
+
};
|
|
28687
|
+
export declare enum TrelloWorkspaceMembershipType {
|
|
28688
|
+
Admin = "ADMIN",
|
|
28689
|
+
Normal = "NORMAL"
|
|
28690
|
+
}
|
|
28691
|
+
export type TrelloWorkspaceMembershipsConnection = {
|
|
28692
|
+
__typename?: 'TrelloWorkspaceMembershipsConnection';
|
|
28693
|
+
edges?: Maybe<Array<TrelloWorkspaceMembershipEdge>>;
|
|
28694
|
+
nodes?: Maybe<Array<TrelloMember>>;
|
|
28695
|
+
pageInfo: PageInfo;
|
|
28661
28696
|
};
|
|
28662
28697
|
export type TunnelDefinitionsInput = {
|
|
28663
28698
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|