casedev 0.15.2 → 0.16.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/CHANGELOG.md +8 -0
- package/core/streaming.d.mts +33 -0
- package/core/streaming.d.mts.map +1 -0
- package/core/streaming.d.ts +33 -0
- package/core/streaming.d.ts.map +1 -0
- package/core/streaming.js +263 -0
- package/core/streaming.js.map +1 -0
- package/core/streaming.mjs +258 -0
- package/core/streaming.mjs.map +1 -0
- package/internal/decoders/line.d.mts +17 -0
- package/internal/decoders/line.d.mts.map +1 -0
- package/internal/decoders/line.d.ts +17 -0
- package/internal/decoders/line.d.ts.map +1 -0
- package/internal/decoders/line.js +113 -0
- package/internal/decoders/line.js.map +1 -0
- package/internal/decoders/line.mjs +108 -0
- package/internal/decoders/line.mjs.map +1 -0
- package/internal/parse.d.mts.map +1 -1
- package/internal/parse.d.ts.map +1 -1
- package/internal/parse.js +10 -0
- package/internal/parse.js.map +1 -1
- package/internal/parse.mjs +10 -0
- package/internal/parse.mjs.map +1 -1
- package/internal/request-options.d.mts +2 -0
- package/internal/request-options.d.mts.map +1 -1
- package/internal/request-options.d.ts +2 -0
- package/internal/request-options.d.ts.map +1 -1
- package/internal/request-options.js.map +1 -1
- package/internal/request-options.mjs.map +1 -1
- package/internal/tslib.js +17 -17
- package/package.json +11 -1
- package/resources/agent/v1/chat.d.mts +78 -0
- package/resources/agent/v1/chat.d.mts.map +1 -0
- package/resources/agent/v1/chat.d.ts +78 -0
- package/resources/agent/v1/chat.d.ts.map +1 -0
- package/resources/agent/v1/chat.js +54 -0
- package/resources/agent/v1/chat.js.map +1 -0
- package/resources/agent/v1/chat.mjs +50 -0
- package/resources/agent/v1/chat.mjs.map +1 -0
- package/resources/agent/v1/index.d.mts +1 -0
- package/resources/agent/v1/index.d.mts.map +1 -1
- package/resources/agent/v1/index.d.ts +1 -0
- package/resources/agent/v1/index.d.ts.map +1 -1
- package/resources/agent/v1/index.js +3 -1
- package/resources/agent/v1/index.js.map +1 -1
- package/resources/agent/v1/index.mjs +1 -0
- package/resources/agent/v1/index.mjs.map +1 -1
- package/resources/agent/v1/v1.d.mts +4 -0
- package/resources/agent/v1/v1.d.mts.map +1 -1
- package/resources/agent/v1/v1.d.ts +4 -0
- package/resources/agent/v1/v1.d.ts.map +1 -1
- package/resources/agent/v1/v1.js +4 -0
- package/resources/agent/v1/v1.js.map +1 -1
- package/resources/agent/v1/v1.mjs +4 -0
- package/resources/agent/v1/v1.mjs.map +1 -1
- package/src/core/streaming.ts +315 -0
- package/src/internal/decoders/line.ts +135 -0
- package/src/internal/parse.ts +14 -0
- package/src/internal/request-options.ts +2 -0
- package/src/resources/agent/v1/chat.ts +139 -0
- package/src/resources/agent/v1/index.ts +10 -0
- package/src/resources/agent/v1/v1.ts +24 -0
- package/src/streaming.ts +2 -0
- package/src/version.ts +1 -1
- package/streaming.d.mts +2 -0
- package/streaming.d.mts.map +1 -0
- package/streaming.d.ts +2 -0
- package/streaming.d.ts.map +1 -0
- package/streaming.js +6 -0
- package/streaming.js.map +1 -0
- package/streaming.mjs +2 -0
- package/streaming.mjs.map +1 -0
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { concatBytes, decodeUTF8, encodeUTF8 } from '../utils/bytes';
|
|
2
|
+
|
|
3
|
+
export type Bytes = string | ArrayBuffer | Uint8Array | null | undefined;
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* A re-implementation of httpx's `LineDecoder` in Python that handles incrementally
|
|
7
|
+
* reading lines from text.
|
|
8
|
+
*
|
|
9
|
+
* https://github.com/encode/httpx/blob/920333ea98118e9cf617f246905d7b202510941c/httpx/_decoders.py#L258
|
|
10
|
+
*/
|
|
11
|
+
export class LineDecoder {
|
|
12
|
+
// prettier-ignore
|
|
13
|
+
static NEWLINE_CHARS = new Set(['\n', '\r']);
|
|
14
|
+
static NEWLINE_REGEXP = /\r\n|[\n\r]/g;
|
|
15
|
+
|
|
16
|
+
#buffer: Uint8Array;
|
|
17
|
+
#carriageReturnIndex: number | null;
|
|
18
|
+
|
|
19
|
+
constructor() {
|
|
20
|
+
this.#buffer = new Uint8Array();
|
|
21
|
+
this.#carriageReturnIndex = null;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
decode(chunk: Bytes): string[] {
|
|
25
|
+
if (chunk == null) {
|
|
26
|
+
return [];
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const binaryChunk =
|
|
30
|
+
chunk instanceof ArrayBuffer ? new Uint8Array(chunk)
|
|
31
|
+
: typeof chunk === 'string' ? encodeUTF8(chunk)
|
|
32
|
+
: chunk;
|
|
33
|
+
|
|
34
|
+
this.#buffer = concatBytes([this.#buffer, binaryChunk]);
|
|
35
|
+
|
|
36
|
+
const lines: string[] = [];
|
|
37
|
+
let patternIndex;
|
|
38
|
+
while ((patternIndex = findNewlineIndex(this.#buffer, this.#carriageReturnIndex)) != null) {
|
|
39
|
+
if (patternIndex.carriage && this.#carriageReturnIndex == null) {
|
|
40
|
+
// skip until we either get a corresponding `\n`, a new `\r` or nothing
|
|
41
|
+
this.#carriageReturnIndex = patternIndex.index;
|
|
42
|
+
continue;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// we got double \r or \rtext\n
|
|
46
|
+
if (
|
|
47
|
+
this.#carriageReturnIndex != null &&
|
|
48
|
+
(patternIndex.index !== this.#carriageReturnIndex + 1 || patternIndex.carriage)
|
|
49
|
+
) {
|
|
50
|
+
lines.push(decodeUTF8(this.#buffer.subarray(0, this.#carriageReturnIndex - 1)));
|
|
51
|
+
this.#buffer = this.#buffer.subarray(this.#carriageReturnIndex);
|
|
52
|
+
this.#carriageReturnIndex = null;
|
|
53
|
+
continue;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
const endIndex =
|
|
57
|
+
this.#carriageReturnIndex !== null ? patternIndex.preceding - 1 : patternIndex.preceding;
|
|
58
|
+
|
|
59
|
+
const line = decodeUTF8(this.#buffer.subarray(0, endIndex));
|
|
60
|
+
lines.push(line);
|
|
61
|
+
|
|
62
|
+
this.#buffer = this.#buffer.subarray(patternIndex.index);
|
|
63
|
+
this.#carriageReturnIndex = null;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
return lines;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
flush(): string[] {
|
|
70
|
+
if (!this.#buffer.length) {
|
|
71
|
+
return [];
|
|
72
|
+
}
|
|
73
|
+
return this.decode('\n');
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* This function searches the buffer for the end patterns, (\r or \n)
|
|
79
|
+
* and returns an object with the index preceding the matched newline and the
|
|
80
|
+
* index after the newline char. `null` is returned if no new line is found.
|
|
81
|
+
*
|
|
82
|
+
* ```ts
|
|
83
|
+
* findNewLineIndex('abc\ndef') -> { preceding: 2, index: 3 }
|
|
84
|
+
* ```
|
|
85
|
+
*/
|
|
86
|
+
function findNewlineIndex(
|
|
87
|
+
buffer: Uint8Array,
|
|
88
|
+
startIndex: number | null,
|
|
89
|
+
): { preceding: number; index: number; carriage: boolean } | null {
|
|
90
|
+
const newline = 0x0a; // \n
|
|
91
|
+
const carriage = 0x0d; // \r
|
|
92
|
+
|
|
93
|
+
for (let i = startIndex ?? 0; i < buffer.length; i++) {
|
|
94
|
+
if (buffer[i] === newline) {
|
|
95
|
+
return { preceding: i, index: i + 1, carriage: false };
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
if (buffer[i] === carriage) {
|
|
99
|
+
return { preceding: i, index: i + 1, carriage: true };
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return null;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export function findDoubleNewlineIndex(buffer: Uint8Array): number {
|
|
107
|
+
// This function searches the buffer for the end patterns (\r\r, \n\n, \r\n\r\n)
|
|
108
|
+
// and returns the index right after the first occurrence of any pattern,
|
|
109
|
+
// or -1 if none of the patterns are found.
|
|
110
|
+
const newline = 0x0a; // \n
|
|
111
|
+
const carriage = 0x0d; // \r
|
|
112
|
+
|
|
113
|
+
for (let i = 0; i < buffer.length - 1; i++) {
|
|
114
|
+
if (buffer[i] === newline && buffer[i + 1] === newline) {
|
|
115
|
+
// \n\n
|
|
116
|
+
return i + 2;
|
|
117
|
+
}
|
|
118
|
+
if (buffer[i] === carriage && buffer[i + 1] === carriage) {
|
|
119
|
+
// \r\r
|
|
120
|
+
return i + 2;
|
|
121
|
+
}
|
|
122
|
+
if (
|
|
123
|
+
buffer[i] === carriage &&
|
|
124
|
+
buffer[i + 1] === newline &&
|
|
125
|
+
i + 3 < buffer.length &&
|
|
126
|
+
buffer[i + 2] === carriage &&
|
|
127
|
+
buffer[i + 3] === newline
|
|
128
|
+
) {
|
|
129
|
+
// \r\n\r\n
|
|
130
|
+
return i + 4;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
return -1;
|
|
135
|
+
}
|
package/src/internal/parse.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
import type { FinalRequestOptions } from './request-options';
|
|
4
|
+
import { Stream } from '../core/streaming';
|
|
4
5
|
import { type Casedev } from '../client';
|
|
5
6
|
import { formatRequestDetails, loggerFor } from './utils/log';
|
|
6
7
|
|
|
@@ -16,6 +17,19 @@ export type APIResponseProps = {
|
|
|
16
17
|
export async function defaultParseResponse<T>(client: Casedev, props: APIResponseProps): Promise<T> {
|
|
17
18
|
const { response, requestLogID, retryOfRequestLogID, startTime } = props;
|
|
18
19
|
const body = await (async () => {
|
|
20
|
+
if (props.options.stream) {
|
|
21
|
+
loggerFor(client).debug('response', response.status, response.url, response.headers, response.body);
|
|
22
|
+
|
|
23
|
+
// Note: there is an invariant here that isn't represented in the type system
|
|
24
|
+
// that if you set `stream: true` the response type must also be `Stream<T>`
|
|
25
|
+
|
|
26
|
+
if (props.options.__streamClass) {
|
|
27
|
+
return props.options.__streamClass.fromSSEResponse(response, props.controller, client) as any;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return Stream.fromSSEResponse(response, props.controller, client) as any;
|
|
31
|
+
}
|
|
32
|
+
|
|
19
33
|
// fetch refuses to read the body when the status code is 204.
|
|
20
34
|
if (response.status === 204) {
|
|
21
35
|
return null as T;
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
import { NullableHeaders } from './headers';
|
|
4
4
|
|
|
5
5
|
import type { BodyInit } from './builtin-types';
|
|
6
|
+
import { Stream } from '../core/streaming';
|
|
6
7
|
import type { HTTPMethod, MergedRequestInit } from './types';
|
|
7
8
|
import { type HeadersLike } from './headers';
|
|
8
9
|
|
|
@@ -76,6 +77,7 @@ export type RequestOptions = {
|
|
|
76
77
|
defaultBaseURL?: string | undefined;
|
|
77
78
|
|
|
78
79
|
__binaryResponse?: boolean | undefined;
|
|
80
|
+
__streamClass?: typeof Stream;
|
|
79
81
|
};
|
|
80
82
|
|
|
81
83
|
export type EncodedContent = { bodyHeaders: HeadersLike; body: BodyInit };
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
import { APIResource } from '../../../core/resource';
|
|
4
|
+
import { APIPromise } from '../../../core/api-promise';
|
|
5
|
+
import { Stream } from '../../../core/streaming';
|
|
6
|
+
import { buildHeaders } from '../../../internal/headers';
|
|
7
|
+
import { RequestOptions } from '../../../internal/request-options';
|
|
8
|
+
import { path } from '../../../internal/utils/path';
|
|
9
|
+
|
|
10
|
+
export class Chat extends APIResource {
|
|
11
|
+
/**
|
|
12
|
+
* Creates a persistent OpenCode chat session in a Modal sandbox. Session state is
|
|
13
|
+
* retained and can be resumed across requests.
|
|
14
|
+
*/
|
|
15
|
+
create(
|
|
16
|
+
body: ChatCreateParams | null | undefined = {},
|
|
17
|
+
options?: RequestOptions,
|
|
18
|
+
): APIPromise<ChatCreateResponse> {
|
|
19
|
+
return this._client.post('/agent/v1/chat', { body, ...options });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Snapshots and terminates the active sandbox (if any), then marks the chat as
|
|
24
|
+
* ended.
|
|
25
|
+
*/
|
|
26
|
+
delete(id: string, options?: RequestOptions): APIPromise<ChatDeleteResponse> {
|
|
27
|
+
return this._client.delete(path`/agent/v1/chat/${id}`, options);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Aborts the active OpenCode generation for this chat session.
|
|
32
|
+
*/
|
|
33
|
+
cancel(id: string, options?: RequestOptions): APIPromise<ChatCancelResponse> {
|
|
34
|
+
return this._client.post(path`/agent/v1/chat/${id}/cancel`, options);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Proxies a message to the OpenCode session bound to this chat.
|
|
39
|
+
*/
|
|
40
|
+
sendMessage(id: string, params: ChatSendMessageParams, options?: RequestOptions): APIPromise<void> {
|
|
41
|
+
const { body } = params;
|
|
42
|
+
return this._client.post(path`/agent/v1/chat/${id}/message`, {
|
|
43
|
+
body: body,
|
|
44
|
+
...options,
|
|
45
|
+
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Relays OpenCode SSE events for this chat. Supports replay from buffered events
|
|
51
|
+
* using Last-Event-ID.
|
|
52
|
+
*/
|
|
53
|
+
stream(
|
|
54
|
+
id: string,
|
|
55
|
+
query: ChatStreamParams | undefined = {},
|
|
56
|
+
options?: RequestOptions,
|
|
57
|
+
): APIPromise<Stream<ChatStreamResponse>> {
|
|
58
|
+
return this._client.get(path`/agent/v1/chat/${id}/stream`, {
|
|
59
|
+
query,
|
|
60
|
+
...options,
|
|
61
|
+
headers: buildHeaders([{ Accept: 'text/event-stream' }, options?.headers]),
|
|
62
|
+
stream: true,
|
|
63
|
+
}) as APIPromise<Stream<ChatStreamResponse>>;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export interface ChatCreateResponse {
|
|
68
|
+
id?: string;
|
|
69
|
+
|
|
70
|
+
createdAt?: string;
|
|
71
|
+
|
|
72
|
+
idleTimeoutMs?: number;
|
|
73
|
+
|
|
74
|
+
status?: string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
export interface ChatDeleteResponse {
|
|
78
|
+
id?: string;
|
|
79
|
+
|
|
80
|
+
cost?: number;
|
|
81
|
+
|
|
82
|
+
runtimeMs?: number;
|
|
83
|
+
|
|
84
|
+
snapshotImageId?: string | null;
|
|
85
|
+
|
|
86
|
+
status?: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export interface ChatCancelResponse {
|
|
90
|
+
id?: string;
|
|
91
|
+
|
|
92
|
+
ok?: boolean;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export type ChatStreamResponse = string;
|
|
96
|
+
|
|
97
|
+
export interface ChatCreateParams {
|
|
98
|
+
/**
|
|
99
|
+
* Idle timeout before session is eligible for snapshot/termination. Defaults to 15
|
|
100
|
+
* minutes.
|
|
101
|
+
*/
|
|
102
|
+
idleTimeoutMs?: number | null;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Optional model override for the OpenCode session
|
|
106
|
+
*/
|
|
107
|
+
model?: string | null;
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* Optional human-readable session title
|
|
111
|
+
*/
|
|
112
|
+
title?: string;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface ChatSendMessageParams {
|
|
116
|
+
/**
|
|
117
|
+
* OpenCode message payload. Passed through 1:1.
|
|
118
|
+
*/
|
|
119
|
+
body: unknown;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
export interface ChatStreamParams {
|
|
123
|
+
/**
|
|
124
|
+
* Replay events after this sequence number
|
|
125
|
+
*/
|
|
126
|
+
lastEventId?: number;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export declare namespace Chat {
|
|
130
|
+
export {
|
|
131
|
+
type ChatCreateResponse as ChatCreateResponse,
|
|
132
|
+
type ChatDeleteResponse as ChatDeleteResponse,
|
|
133
|
+
type ChatCancelResponse as ChatCancelResponse,
|
|
134
|
+
type ChatStreamResponse as ChatStreamResponse,
|
|
135
|
+
type ChatCreateParams as ChatCreateParams,
|
|
136
|
+
type ChatSendMessageParams as ChatSendMessageParams,
|
|
137
|
+
type ChatStreamParams as ChatStreamParams,
|
|
138
|
+
};
|
|
139
|
+
}
|
|
@@ -10,6 +10,16 @@ export {
|
|
|
10
10
|
type AgentCreateParams,
|
|
11
11
|
type AgentUpdateParams,
|
|
12
12
|
} from './agents';
|
|
13
|
+
export {
|
|
14
|
+
Chat,
|
|
15
|
+
type ChatCreateResponse,
|
|
16
|
+
type ChatDeleteResponse,
|
|
17
|
+
type ChatCancelResponse,
|
|
18
|
+
type ChatStreamResponse,
|
|
19
|
+
type ChatCreateParams,
|
|
20
|
+
type ChatSendMessageParams,
|
|
21
|
+
type ChatStreamParams,
|
|
22
|
+
} from './chat';
|
|
13
23
|
export { Execute, type ExecuteCreateResponse, type ExecuteCreateParams } from './execute';
|
|
14
24
|
export {
|
|
15
25
|
Run,
|
|
@@ -12,6 +12,17 @@ import {
|
|
|
12
12
|
AgentUpdateResponse,
|
|
13
13
|
Agents,
|
|
14
14
|
} from './agents';
|
|
15
|
+
import * as ChatAPI from './chat';
|
|
16
|
+
import {
|
|
17
|
+
Chat,
|
|
18
|
+
ChatCancelResponse,
|
|
19
|
+
ChatCreateParams,
|
|
20
|
+
ChatCreateResponse,
|
|
21
|
+
ChatDeleteResponse,
|
|
22
|
+
ChatSendMessageParams,
|
|
23
|
+
ChatStreamParams,
|
|
24
|
+
ChatStreamResponse,
|
|
25
|
+
} from './chat';
|
|
15
26
|
import * as ExecuteAPI from './execute';
|
|
16
27
|
import { Execute, ExecuteCreateParams, ExecuteCreateResponse } from './execute';
|
|
17
28
|
import * as RunAPI from './run';
|
|
@@ -31,11 +42,13 @@ export class V1 extends APIResource {
|
|
|
31
42
|
agents: AgentsAPI.Agents = new AgentsAPI.Agents(this._client);
|
|
32
43
|
run: RunAPI.Run = new RunAPI.Run(this._client);
|
|
33
44
|
execute: ExecuteAPI.Execute = new ExecuteAPI.Execute(this._client);
|
|
45
|
+
chat: ChatAPI.Chat = new ChatAPI.Chat(this._client);
|
|
34
46
|
}
|
|
35
47
|
|
|
36
48
|
V1.Agents = Agents;
|
|
37
49
|
V1.Run = Run;
|
|
38
50
|
V1.Execute = Execute;
|
|
51
|
+
V1.Chat = Chat;
|
|
39
52
|
|
|
40
53
|
export declare namespace V1 {
|
|
41
54
|
export {
|
|
@@ -66,4 +79,15 @@ export declare namespace V1 {
|
|
|
66
79
|
type ExecuteCreateResponse as ExecuteCreateResponse,
|
|
67
80
|
type ExecuteCreateParams as ExecuteCreateParams,
|
|
68
81
|
};
|
|
82
|
+
|
|
83
|
+
export {
|
|
84
|
+
Chat as Chat,
|
|
85
|
+
type ChatCreateResponse as ChatCreateResponse,
|
|
86
|
+
type ChatDeleteResponse as ChatDeleteResponse,
|
|
87
|
+
type ChatCancelResponse as ChatCancelResponse,
|
|
88
|
+
type ChatStreamResponse as ChatStreamResponse,
|
|
89
|
+
type ChatCreateParams as ChatCreateParams,
|
|
90
|
+
type ChatSendMessageParams as ChatSendMessageParams,
|
|
91
|
+
type ChatStreamParams as ChatStreamParams,
|
|
92
|
+
};
|
|
69
93
|
}
|
package/src/streaming.ts
ADDED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.16.0'; // x-release-please-version
|
package/streaming.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streaming.d.mts","sourceRoot":"","sources":["src/streaming.ts"],"names":[],"mappings":""}
|
package/streaming.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streaming.d.ts","sourceRoot":"","sources":["src/streaming.ts"],"names":[],"mappings":""}
|
package/streaming.js
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("./internal/tslib.js");
|
|
4
|
+
/** @deprecated Import from ./core/streaming instead */
|
|
5
|
+
tslib_1.__exportStar(require("./core/streaming.js"), exports);
|
|
6
|
+
//# sourceMappingURL=streaming.js.map
|
package/streaming.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streaming.js","sourceRoot":"","sources":["src/streaming.ts"],"names":[],"mappings":";;;AAAA,uDAAuD;AACvD,8DAAiC"}
|
package/streaming.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streaming.mjs","sourceRoot":"","sources":["src/streaming.ts"],"names":[],"mappings":""}
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.16.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.16.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.16.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|