@sumicom/quicksave 0.1.0 → 0.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.
- package/dist/config.d.ts +5 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +13 -0
- package/dist/config.js.map +1 -1
- package/dist/connection/signaling.d.ts.map +1 -1
- package/dist/connection/signaling.js +5 -0
- package/dist/connection/signaling.js.map +1 -1
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/package.json +25 -13
- package/LICENSE +0 -21
- package/dist/webrtc/connection.d.ts +0 -52
- package/dist/webrtc/connection.d.ts.map +0 -1
- package/dist/webrtc/connection.js +0 -255
- package/dist/webrtc/connection.js.map +0 -1
- package/dist/webrtc/signaling.d.ts +0 -41
- package/dist/webrtc/signaling.d.ts.map +0 -1
- package/dist/webrtc/signaling.js +0 -152
- package/dist/webrtc/signaling.js.map +0 -1
- package/src/ai/commitSummary.ts +0 -199
- package/src/config.ts +0 -97
- package/src/connection/connection.ts +0 -223
- package/src/connection/signaling.ts +0 -172
- package/src/git/operations.test.ts +0 -305
- package/src/git/operations.ts +0 -443
- package/src/handlers/messageHandler.test.ts +0 -294
- package/src/handlers/messageHandler.ts +0 -550
- package/src/index.ts +0 -151
- package/src/types/webrtc.d.ts +0 -38
- package/tsconfig.json +0 -13
- package/vitest.config.ts +0 -9
package/src/types/webrtc.d.ts
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
// WebRTC types for Node.js (wrtc module)
|
|
2
|
-
// These mirror the browser WebRTC types
|
|
3
|
-
|
|
4
|
-
declare module 'qrcode-terminal' {
|
|
5
|
-
export function generate(text: string, options?: { small?: boolean }): void;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
// Basic WebRTC types that wrtc provides
|
|
9
|
-
export interface RTCSessionDescriptionInit {
|
|
10
|
-
type: 'offer' | 'answer' | 'pranswer' | 'rollback';
|
|
11
|
-
sdp?: string;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export interface RTCIceCandidateInit {
|
|
15
|
-
candidate?: string;
|
|
16
|
-
sdpMid?: string | null;
|
|
17
|
-
sdpMLineIndex?: number | null;
|
|
18
|
-
usernameFragment?: string | null;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export interface RTCIceServer {
|
|
22
|
-
urls: string | string[];
|
|
23
|
-
username?: string;
|
|
24
|
-
credential?: string;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface RTCConfiguration {
|
|
28
|
-
iceServers?: RTCIceServer[];
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface RTCDataChannelInit {
|
|
32
|
-
ordered?: boolean;
|
|
33
|
-
maxPacketLifeTime?: number;
|
|
34
|
-
maxRetransmits?: number;
|
|
35
|
-
protocol?: string;
|
|
36
|
-
negotiated?: boolean;
|
|
37
|
-
id?: number;
|
|
38
|
-
}
|
package/tsconfig.json
DELETED