@h-rig/transport-plugin 0.0.6-alpha.158
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/README.md +1 -0
- package/dist/relay-registry/src/client.d.ts +43 -0
- package/dist/relay-registry/src/schema.d.ts +317 -0
- package/dist/src/discovery.d.ts +33 -0
- package/dist/src/discovery.js +308 -0
- package/dist/src/dispatch.d.ts +47 -0
- package/dist/src/dispatch.js +915 -0
- package/dist/src/identity-env.d.ts +13 -0
- package/dist/src/identity-env.js +45 -0
- package/dist/src/index.d.ts +13 -0
- package/dist/src/index.js +943 -0
- package/dist/src/plugin.d.ts +12 -0
- package/dist/src/plugin.js +923 -0
- package/dist/src/relay-registry.d.ts +3 -0
- package/dist/src/relay-registry.js +284 -0
- package/dist/src/run-discovery-bus.d.ts +32 -0
- package/dist/src/run-discovery-bus.js +24 -0
- package/dist/src/transport-provider.d.ts +9 -0
- package/dist/src/transport-provider.js +915 -0
- package/package.json +57 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RUN_DISCOVERY, type RunDiscoveryService } from "@rig/contracts";
|
|
2
|
+
export declare const TRANSPORT_PLUGIN_NAME = "@rig/transport-plugin";
|
|
3
|
+
export declare const DEFAULT_RIG_BACKBONE_HOST = "where.rig-does.work";
|
|
4
|
+
export declare const DEFAULT_RIG_RELAY_URL = "wss://where.rig-does.work";
|
|
5
|
+
export declare const DEFAULT_RIG_REGISTRY_URL = "https://where.rig-does.work/registry";
|
|
6
|
+
export declare const DEFAULT_RIG_SSH_TARGET = "ubuntu@100.125.210.33";
|
|
7
|
+
export type { RunDiscoveryService };
|
|
8
|
+
export { RUN_DISCOVERY };
|
|
9
|
+
export declare const RUN_DISCOVERY_CAPABILITY_ID = "rig.runs.discovery";
|
|
10
|
+
export declare const transportPlugin: import("@rig/core/config").RigPlugin;
|
|
11
|
+
export declare function createTransportPlugin(): import("@rig/core/config").RigPlugin;
|
|
12
|
+
export default transportPlugin;
|