@forge/cli-shared 6.6.1-next.22 → 6.6.1-next.23

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,15 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.6.1-next.23
4
+
5
+ ### Patch Changes
6
+
7
+ - fa77f8d: Revert the package registry change for the package
8
+ - Updated dependencies [fa77f8d]
9
+ - @forge/manifest@8.7.0-next.12
10
+ - @forge/i18n@0.0.4-next.1
11
+ - @forge/util@1.4.8-next.2
12
+
3
13
  ## 6.6.1-next.22
4
14
 
5
15
  ### Patch Changes
@@ -30530,6 +30530,8 @@ export declare type GraphStore = {
30530
30530
  userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
30531
30531
  userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
30532
30532
  userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
30533
+ userViewedLoomVideo?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoConnection>;
30534
+ userViewedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseConnection>;
30533
30535
  userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
30534
30536
  userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
30535
30537
  userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
@@ -34480,6 +34482,20 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
34480
34482
  id: Scalars['ID']['input'];
34481
34483
  sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
34482
34484
  };
34485
+ export declare type GraphStoreUserViewedLoomVideoArgs = {
34486
+ after?: InputMaybe<Scalars['String']['input']>;
34487
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34488
+ first?: InputMaybe<Scalars['Int']['input']>;
34489
+ id: Scalars['ID']['input'];
34490
+ sort?: InputMaybe<GraphStoreUserViewedLoomVideoSortInput>;
34491
+ };
34492
+ export declare type GraphStoreUserViewedLoomVideoInverseArgs = {
34493
+ after?: InputMaybe<Scalars['String']['input']>;
34494
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34495
+ first?: InputMaybe<Scalars['Int']['input']>;
34496
+ id: Scalars['ID']['input'];
34497
+ sort?: InputMaybe<GraphStoreUserViewedLoomVideoSortInput>;
34498
+ };
34483
34499
  export declare type GraphStoreUserViewedProjectUpdateArgs = {
34484
34500
  after?: InputMaybe<Scalars['String']['input']>;
34485
34501
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -47173,6 +47189,34 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
47173
47189
  };
47174
47190
  export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
47175
47191
  export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
47192
+ export declare type GraphStoreSimplifiedUserViewedLoomVideoConnection = HasPageInfo & {
47193
+ __typename?: 'GraphStoreSimplifiedUserViewedLoomVideoConnection';
47194
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedLoomVideoEdge>>>;
47195
+ pageInfo: PageInfo;
47196
+ };
47197
+ export declare type GraphStoreSimplifiedUserViewedLoomVideoEdge = {
47198
+ __typename?: 'GraphStoreSimplifiedUserViewedLoomVideoEdge';
47199
+ createdAt: Scalars['DateTime']['output'];
47200
+ cursor?: Maybe<Scalars['String']['output']>;
47201
+ id: Scalars['ID']['output'];
47202
+ lastUpdated: Scalars['DateTime']['output'];
47203
+ node?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoUnion>;
47204
+ };
47205
+ export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseConnection = HasPageInfo & {
47206
+ __typename?: 'GraphStoreSimplifiedUserViewedLoomVideoInverseConnection';
47207
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseEdge>>>;
47208
+ pageInfo: PageInfo;
47209
+ };
47210
+ export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseEdge = {
47211
+ __typename?: 'GraphStoreSimplifiedUserViewedLoomVideoInverseEdge';
47212
+ createdAt: Scalars['DateTime']['output'];
47213
+ cursor?: Maybe<Scalars['String']['output']>;
47214
+ id: Scalars['ID']['output'];
47215
+ lastUpdated: Scalars['DateTime']['output'];
47216
+ node?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseUnion>;
47217
+ };
47218
+ export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
47219
+ export declare type GraphStoreSimplifiedUserViewedLoomVideoUnion = LoomVideo;
47176
47220
  export declare type GraphStoreSimplifiedUserViewedProjectUpdateConnection = HasPageInfo & {
47177
47221
  __typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateConnection';
47178
47222
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateEdge>>>;
@@ -48298,6 +48342,9 @@ export declare type GraphStoreUserViewedGoalUpdateSortInput = {
48298
48342
  export declare type GraphStoreUserViewedJiraIssueSortInput = {
48299
48343
  lastModified?: InputMaybe<GraphStoreSortInput>;
48300
48344
  };
48345
+ export declare type GraphStoreUserViewedLoomVideoSortInput = {
48346
+ lastModified?: InputMaybe<GraphStoreSortInput>;
48347
+ };
48301
48348
  export declare type GraphStoreUserViewedProjectUpdateSortInput = {
48302
48349
  lastModified?: InputMaybe<GraphStoreSortInput>;
48303
48350
  };