@easbot/utils 0.2.41 → 0.2.42
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/index.cjs +50 -50
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +49 -49
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -755,6 +755,7 @@ declare namespace Fetch {
|
|
|
755
755
|
name: string;
|
|
756
756
|
value: string | Uint8Array | Buffer;
|
|
757
757
|
filename?: string;
|
|
758
|
+
maxSize?: number;
|
|
758
759
|
}
|
|
759
760
|
function postForm<T = any>(url: string | URL, fields: FormField[], options?: RequestOptions): Promise<FetchResponse<T>>;
|
|
760
761
|
interface SSEHandler {
|
|
@@ -1125,6 +1126,7 @@ declare namespace Identifier {
|
|
|
1125
1126
|
readonly command: "cmd";
|
|
1126
1127
|
readonly task: "task";
|
|
1127
1128
|
readonly heartbeat: "hb";
|
|
1129
|
+
readonly agent: "ag";
|
|
1128
1130
|
readonly subagent: "sub";
|
|
1129
1131
|
readonly hook: "hok";
|
|
1130
1132
|
readonly compaction: "cmp";
|
package/dist/index.d.ts
CHANGED
|
@@ -755,6 +755,7 @@ declare namespace Fetch {
|
|
|
755
755
|
name: string;
|
|
756
756
|
value: string | Uint8Array | Buffer;
|
|
757
757
|
filename?: string;
|
|
758
|
+
maxSize?: number;
|
|
758
759
|
}
|
|
759
760
|
function postForm<T = any>(url: string | URL, fields: FormField[], options?: RequestOptions): Promise<FetchResponse<T>>;
|
|
760
761
|
interface SSEHandler {
|
|
@@ -1125,6 +1126,7 @@ declare namespace Identifier {
|
|
|
1125
1126
|
readonly command: "cmd";
|
|
1126
1127
|
readonly task: "task";
|
|
1127
1128
|
readonly heartbeat: "hb";
|
|
1129
|
+
readonly agent: "ag";
|
|
1128
1130
|
readonly subagent: "sub";
|
|
1129
1131
|
readonly hook: "hok";
|
|
1130
1132
|
readonly compaction: "cmp";
|