@forge/cli-shared 8.8.2-next.0 → 8.8.2-next.1
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 +6 -0
- package/out/graphql/graphql-types.d.ts +6 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.d.ts +17 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -0
- package/out/tunnel/docker-compose-lifecycle.js +160 -0
- package/out/tunnel/index.d.ts +1 -0
- package/out/tunnel/index.d.ts.map +1 -1
- package/out/tunnel/index.js +1 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -100318,6 +100318,7 @@ export declare type Query = {
|
|
|
100318
100318
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
100319
100319
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
100320
100320
|
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100321
|
+
teamworkGraph_teamUsers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100321
100322
|
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100322
100323
|
teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100323
100324
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -103683,6 +103684,11 @@ export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
|
103683
103684
|
projectId: Scalars['String']['input'];
|
|
103684
103685
|
startDate: Scalars['DateTime']['input'];
|
|
103685
103686
|
};
|
|
103687
|
+
export declare type QueryTeamworkGraph_TeamUsersArgs = {
|
|
103688
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103689
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103690
|
+
teamId: Scalars['ID']['input'];
|
|
103691
|
+
};
|
|
103686
103692
|
export declare type QueryTeamworkGraph_UserCommentedArgs = {
|
|
103687
103693
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103688
103694
|
first?: InputMaybe<Scalars['Int']['input']>;
|