@elizaos/plugin-github 1.2.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.
@@ -0,0 +1,5 @@
1
+ import { type Action } from '@elizaos/core';
2
+ export declare const getRepositoryAction: Action;
3
+ export declare const listRepositoriesAction: Action;
4
+ export declare const createRepositoryAction: Action;
5
+ export declare const searchRepositoriesAction: Action;
@@ -0,0 +1,2 @@
1
+ import { type Action } from '@elizaos/core';
2
+ export declare const searchGitHubAction: Action;
@@ -0,0 +1,3 @@
1
+ import { type Action } from '@elizaos/core';
2
+ export declare const getRepositoryStatsAction: Action;
3
+ export declare const getRepositoryTrafficAction: Action;
@@ -0,0 +1,4 @@
1
+ import { type Action } from '@elizaos/core';
2
+ export declare const getUserProfileAction: Action;
3
+ export declare const getUserStatsAction: Action;
4
+ export declare const listUserRepositoriesAction: Action;
@@ -0,0 +1,5 @@
1
+ import { type Action } from '@elizaos/core';
2
+ export declare const createWebhookAction: Action;
3
+ export declare const listWebhooksAction: Action;
4
+ export declare const deleteWebhookAction: Action;
5
+ export declare const pingWebhookAction: Action;
@@ -0,0 +1,9 @@
1
+ import type { Plugin } from '@elizaos/core';
2
+ import { type Action, type Provider } from '@elizaos/core';
3
+ import { GitHubService } from './services/github';
4
+ declare const githubActions: Action[];
5
+ declare const githubProviders: Provider[];
6
+ export declare const githubPlugin: Plugin;
7
+ export { GitHubService, githubActions, githubProviders };
8
+ export * from './types';
9
+ export default githubPlugin;