@foss.global/codefeed 1.9.0 → 1.10.0

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/ts/index.ts CHANGED
@@ -4,6 +4,8 @@ import { CodeFeedProviderCompletenessError } from './classes.errors.js';
4
4
  export { CodeFeedProviderCompletenessError } from './classes.errors.js';
5
5
  export { CodeFeedGitManagerProvider } from './classes.gitmanagerprovider.js';
6
6
  export type { ICodeFeedGitManagerProviderOptions } from './classes.gitmanagerprovider.js';
7
+ export { GitManagerPublicReadClient } from './classes.gitmanagerpublicclient.js';
8
+ export type { IGitManagerPublicReadClientOptions } from './classes.gitmanagerpublicclient.js';
7
9
 
8
10
  export class CodeFeed {
9
11
  private baseUrl: string;
package/ts/plugins.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import type * as fossInterfaces from '@foss.global/interfaces';
2
+
1
3
  // module
2
4
  import * as interfaces from './interfaces/index.js';
3
5
 
@@ -6,12 +8,17 @@ export {
6
8
  }
7
9
 
8
10
  // @push.rocks
9
- import * as smarttime from '@push.rocks/smarttime';
10
11
  import * as lik from '@push.rocks/lik';
12
+ import * as smarttime from '@push.rocks/smarttime';
11
13
 
14
+ export type { fossInterfaces };
12
15
  export type TNpmRegistry = import('@push.rocks/smartnpm').NpmRegistry;
13
16
  export type TGitManager = import('@foss.global/gitmanager').GitManager;
14
17
  export type TGitManagerCommitSummary = import('@foss.global/gitmanager').IGitManagerCommitSummary;
18
+ export type TGitManagerRepositoryInfo = import('@foss.global/gitmanager').IGitManagerRepositoryInfo;
19
+ export type TGitManagerTreeEntry = import('@foss.global/gitmanager').IGitManagerTreeEntry;
20
+ export type TGitManagerTag = import('@foss.global/gitmanager').IGitManagerTag;
21
+ export type TGitManagerDiff = import('@foss.global/gitmanager').IGitManagerDiff;
15
22
 
16
23
  export const getSmartnpm = async () => import('@push.rocks/smartnpm');
17
24