spectrum-ts 1.18.0 → 2.0.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/README.md +11 -1
- package/dist/{attachment-DfWSZS5L.d.ts → attachment-B4nSrKVd.d.ts} +1 -1
- package/dist/{authoring-C9uDdZ2F.d.ts → authoring-BjE5BvlO.d.ts} +2 -2
- package/dist/authoring.d.ts +3 -3
- package/dist/authoring.js +6 -3
- package/dist/chunk-34FQGGD7.js +34 -0
- package/dist/chunk-3B4QH4JG.js +35 -0
- package/dist/chunk-3GEJYGZK.js +84 -0
- package/dist/chunk-5LT5J3NR.js +695 -0
- package/dist/{chunk-MC6ZKFSG.js → chunk-5XEFJBN2.js} +25 -103
- package/dist/{chunk-JQN6CRSC.js → chunk-6BI4PFTP.js} +10 -39
- package/dist/{chunk-QGJFZMD5.js → chunk-6UZFVXQF.js} +17 -101
- package/dist/{chunk-YN6WOTBF.js → chunk-ATNAE7OR.js} +77 -7
- package/dist/{chunk-IPOFBAIM.js → chunk-NGC4DJIX.js} +23 -19
- package/dist/{chunk-5TIF3FIE.js → chunk-Q537JPTG.js} +8 -6
- package/dist/{chunk-5BKZJMZV.js → chunk-U3LXXT3W.js} +61 -32
- package/dist/chunk-U7AWXDH6.js +91 -0
- package/dist/{chunk-3OTECDNH.js → chunk-WXY5QP3M.js} +5 -3
- package/dist/index.d.ts +69 -124
- package/dist/index.js +350 -90
- package/dist/manifest.json +6 -0
- package/dist/providers/imessage/index.d.ts +2 -2
- package/dist/providers/imessage/index.js +8 -5
- package/dist/providers/index.d.ts +5 -2
- package/dist/providers/index.js +16 -8
- package/dist/providers/slack/index.d.ts +1 -1
- package/dist/providers/slack/index.js +4 -3
- package/dist/providers/telegram/index.d.ts +47 -0
- package/dist/providers/telegram/index.js +13 -0
- package/dist/providers/terminal/index.d.ts +17 -419
- package/dist/providers/terminal/index.js +5 -3
- package/dist/providers/whatsapp-business/index.d.ts +1 -1
- package/dist/providers/whatsapp-business/index.js +6 -4
- package/dist/types-BD0-kKyv.d.ts +82 -0
- package/dist/{types-DcQ5a7PK.d.ts → types-Bje8aq1k.d.ts} +34 -4
- package/package.json +2 -1
|
@@ -5,12 +5,15 @@ import {
|
|
|
5
5
|
effect,
|
|
6
6
|
imessage,
|
|
7
7
|
read
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-ATNAE7OR.js";
|
|
9
|
+
import "../../chunk-6BI4PFTP.js";
|
|
10
|
+
import "../../chunk-3B4QH4JG.js";
|
|
10
11
|
import "../../chunk-2D27WW5B.js";
|
|
11
|
-
import "../../chunk-
|
|
12
|
-
import "../../chunk-
|
|
13
|
-
import "../../chunk-
|
|
12
|
+
import "../../chunk-3GEJYGZK.js";
|
|
13
|
+
import "../../chunk-U7AWXDH6.js";
|
|
14
|
+
import "../../chunk-5XEFJBN2.js";
|
|
15
|
+
import "../../chunk-6UZFVXQF.js";
|
|
16
|
+
import "../../chunk-NGC4DJIX.js";
|
|
14
17
|
import "../../chunk-2ILTJC35.js";
|
|
15
18
|
export {
|
|
16
19
|
background,
|
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
export { imessage } from './imessage/index.js';
|
|
2
2
|
export { slack } from './slack/index.js';
|
|
3
|
+
export { telegram } from './telegram/index.js';
|
|
3
4
|
export { terminal } from './terminal/index.js';
|
|
4
5
|
export { whatsappBusiness } from './whatsapp-business/index.js';
|
|
5
|
-
import '../types-
|
|
6
|
+
import '../types-Bje8aq1k.js';
|
|
6
7
|
import 'hotscript';
|
|
7
8
|
import 'zod';
|
|
8
9
|
import 'zod/v4/core';
|
|
9
|
-
import '../attachment-
|
|
10
|
+
import '../attachment-B4nSrKVd.js';
|
|
10
11
|
import '../photo-content-BJKnqgN-.js';
|
|
11
12
|
import '@photon-ai/advanced-imessage';
|
|
12
13
|
import '@photon-ai/imessage-kit';
|
|
13
14
|
import '@photon-ai/slack';
|
|
15
|
+
import '@photon-ai/telegram-ts';
|
|
16
|
+
import '../types-BD0-kKyv.js';
|
|
14
17
|
import 'node:child_process';
|
|
15
18
|
import 'node:net';
|
|
16
19
|
import '@photon-ai/whatsapp-business';
|
package/dist/providers/index.js
CHANGED
|
@@ -1,26 +1,34 @@
|
|
|
1
1
|
import { createRequire as __spectrumCreateRequire } from "node:module"; const require = __spectrumCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
imessage
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-ATNAE7OR.js";
|
|
5
|
+
import "../chunk-6BI4PFTP.js";
|
|
6
6
|
import {
|
|
7
7
|
slack
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-WXY5QP3M.js";
|
|
9
|
+
import {
|
|
10
|
+
telegram
|
|
11
|
+
} from "../chunk-5LT5J3NR.js";
|
|
12
|
+
import "../chunk-34FQGGD7.js";
|
|
13
|
+
import "../chunk-3B4QH4JG.js";
|
|
9
14
|
import {
|
|
10
15
|
terminal
|
|
11
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-U3LXXT3W.js";
|
|
12
17
|
import "../chunk-NNY6LMSC.js";
|
|
13
18
|
import {
|
|
14
19
|
whatsappBusiness
|
|
15
|
-
} from "../chunk-
|
|
20
|
+
} from "../chunk-Q537JPTG.js";
|
|
16
21
|
import "../chunk-2D27WW5B.js";
|
|
17
|
-
import "../chunk-
|
|
18
|
-
import "../chunk-
|
|
19
|
-
import "../chunk-
|
|
22
|
+
import "../chunk-3GEJYGZK.js";
|
|
23
|
+
import "../chunk-U7AWXDH6.js";
|
|
24
|
+
import "../chunk-5XEFJBN2.js";
|
|
25
|
+
import "../chunk-6UZFVXQF.js";
|
|
26
|
+
import "../chunk-NGC4DJIX.js";
|
|
20
27
|
import "../chunk-2ILTJC35.js";
|
|
21
28
|
export {
|
|
22
29
|
imessage,
|
|
23
30
|
slack,
|
|
31
|
+
telegram,
|
|
24
32
|
terminal,
|
|
25
33
|
whatsappBusiness
|
|
26
34
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as SchemaMessage, P as Platform, a as PlatformDef } from '../../types-
|
|
1
|
+
import { S as SchemaMessage, P as Platform, a as PlatformDef } from '../../types-Bje8aq1k.js';
|
|
2
2
|
import * as z from 'zod';
|
|
3
3
|
import z__default from 'zod';
|
|
4
4
|
import * as _photon_ai_slack from '@photon-ai/slack';
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { createRequire as __spectrumCreateRequire } from "node:module"; const require = __spectrumCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
slack
|
|
4
|
-
} from "../../chunk-
|
|
5
|
-
import "../../chunk-
|
|
6
|
-
import "../../chunk-
|
|
4
|
+
} from "../../chunk-WXY5QP3M.js";
|
|
5
|
+
import "../../chunk-3GEJYGZK.js";
|
|
6
|
+
import "../../chunk-5XEFJBN2.js";
|
|
7
|
+
import "../../chunk-NGC4DJIX.js";
|
|
7
8
|
import "../../chunk-2ILTJC35.js";
|
|
8
9
|
export {
|
|
9
10
|
slack
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { P as Platform, a as PlatformDef, g as ProviderMessage } from '../../types-Bje8aq1k.js';
|
|
2
|
+
import * as _photon_ai_telegram_ts from '@photon-ai/telegram-ts';
|
|
3
|
+
import * as zod_v4_core from 'zod/v4/core';
|
|
4
|
+
import * as z from 'zod';
|
|
5
|
+
import z__default from 'zod';
|
|
6
|
+
import { F as FusorClient } from '../../types-BD0-kKyv.js';
|
|
7
|
+
import 'hotscript';
|
|
8
|
+
|
|
9
|
+
interface TelegramSpace {
|
|
10
|
+
id: string;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
declare const configSchema: z__default.ZodObject<{
|
|
14
|
+
botToken: z__default.ZodString;
|
|
15
|
+
webhookSecret: z__default.ZodOptional<z__default.ZodString>;
|
|
16
|
+
baseUrl: z__default.ZodDefault<z__default.ZodURL>;
|
|
17
|
+
}, z__default.core.$strip>;
|
|
18
|
+
type TelegramConfig = z__default.infer<typeof configSchema>;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Telegram provider for Spectrum.
|
|
22
|
+
*
|
|
23
|
+
* Inbound is delivered through Fusor: `createClient` returns a `fusor(...)`
|
|
24
|
+
* client whose `verify` checks the Telegram webhook secret token and parses the
|
|
25
|
+
* `Update` (pure parsing — no client). The `messages` handler reads `config`
|
|
26
|
+
* from its ctx and builds a photon client inline only to download media bytes.
|
|
27
|
+
* Outbound (`send`) also builds a photon client inline. Both go through
|
|
28
|
+
* `@photon-ai/telegram-ts`. Drop `telegram.config({...})` into
|
|
29
|
+
* `Spectrum({ providers: [...] })`.
|
|
30
|
+
*
|
|
31
|
+
* In cloud mode (`projectConfig` present), `createClient` also self-registers
|
|
32
|
+
* the bot's webhook against the Fusor edge for the project slug — see
|
|
33
|
+
* `ensureWebhook`. Without a slug (local/direct mode) registration is skipped.
|
|
34
|
+
*/
|
|
35
|
+
declare const telegram: Platform<PlatformDef<"telegram", z.ZodObject<{
|
|
36
|
+
botToken: z.ZodString;
|
|
37
|
+
webhookSecret: z.ZodOptional<z.ZodString>;
|
|
38
|
+
baseUrl: z.ZodDefault<z.ZodURL>;
|
|
39
|
+
}, zod_v4_core.$strip>, z.ZodType<object, unknown, zod_v4_core.$ZodTypeInternals<object, unknown>> | undefined, z.ZodType<object, unknown, zod_v4_core.$ZodTypeInternals<object, unknown>> | undefined, z.ZodObject<{
|
|
40
|
+
chatId: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
41
|
+
}, zod_v4_core.$strip>, FusorClient<_photon_ai_telegram_ts.Update>, {
|
|
42
|
+
id: string;
|
|
43
|
+
}, TelegramSpace, undefined, ProviderMessage<{
|
|
44
|
+
id: string;
|
|
45
|
+
}, TelegramSpace, Record<never, never>>, undefined, Record<never, never>, Record<never, never>, Record<never, never>>> & Readonly<Record<never, never>>;
|
|
46
|
+
|
|
47
|
+
export { type TelegramConfig, telegram };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { createRequire as __spectrumCreateRequire } from "node:module"; const require = __spectrumCreateRequire(import.meta.url);
|
|
2
|
+
import {
|
|
3
|
+
telegram
|
|
4
|
+
} from "../../chunk-5LT5J3NR.js";
|
|
5
|
+
import "../../chunk-34FQGGD7.js";
|
|
6
|
+
import "../../chunk-3B4QH4JG.js";
|
|
7
|
+
import "../../chunk-NNY6LMSC.js";
|
|
8
|
+
import "../../chunk-6UZFVXQF.js";
|
|
9
|
+
import "../../chunk-NGC4DJIX.js";
|
|
10
|
+
import "../../chunk-2ILTJC35.js";
|
|
11
|
+
export {
|
|
12
|
+
telegram
|
|
13
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { P as Platform, a as PlatformDef,
|
|
1
|
+
import { P as Platform, a as PlatformDef, f as contentSchema } from '../../types-Bje8aq1k.js';
|
|
2
2
|
import { ChildProcess } from 'node:child_process';
|
|
3
3
|
import z__default from 'zod';
|
|
4
4
|
import { Socket } from 'node:net';
|
|
@@ -86,6 +86,21 @@ interface TerminalClient {
|
|
|
86
86
|
proc: ChildProcess;
|
|
87
87
|
session: RpcSession;
|
|
88
88
|
}
|
|
89
|
+
type SpectrumContent = z__default.infer<typeof contentSchema>;
|
|
90
|
+
interface TerminalInboundMessage {
|
|
91
|
+
content: SpectrumContent;
|
|
92
|
+
id: string;
|
|
93
|
+
replyTo?: {
|
|
94
|
+
messageId: string;
|
|
95
|
+
};
|
|
96
|
+
sender: {
|
|
97
|
+
id: string;
|
|
98
|
+
};
|
|
99
|
+
space: {
|
|
100
|
+
id: string;
|
|
101
|
+
};
|
|
102
|
+
timestamp: Date;
|
|
103
|
+
}
|
|
89
104
|
declare const terminal: Platform<PlatformDef<"Terminal", z__default.ZodObject<{
|
|
90
105
|
commands: z__default.ZodOptional<z__default.ZodArray<z__default.ZodObject<{
|
|
91
106
|
name: z__default.ZodString;
|
|
@@ -101,423 +116,6 @@ declare const terminal: Platform<PlatformDef<"Terminal", z__default.ZodObject<{
|
|
|
101
116
|
replyTo: z__default.ZodOptional<z__default.ZodObject<{
|
|
102
117
|
messageId: z__default.ZodString;
|
|
103
118
|
}, z__default.core.$strip>>;
|
|
104
|
-
}, z__default.core.$strip>,
|
|
105
|
-
replyTo?: {
|
|
106
|
-
messageId: string;
|
|
107
|
-
} | undefined;
|
|
108
|
-
id: string;
|
|
109
|
-
content: {
|
|
110
|
-
type: "avatar";
|
|
111
|
-
action: {
|
|
112
|
-
kind: "set";
|
|
113
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
114
|
-
mimeType: string;
|
|
115
|
-
} | {
|
|
116
|
-
kind: "clear";
|
|
117
|
-
};
|
|
118
|
-
} | {
|
|
119
|
-
type: "text";
|
|
120
|
-
text: string;
|
|
121
|
-
} | {
|
|
122
|
-
type: "attachment";
|
|
123
|
-
id: string;
|
|
124
|
-
name: string;
|
|
125
|
-
mimeType: string;
|
|
126
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
127
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
128
|
-
size?: number | undefined;
|
|
129
|
-
} | {
|
|
130
|
-
type: "custom";
|
|
131
|
-
raw: unknown;
|
|
132
|
-
} | {
|
|
133
|
-
type: "contact";
|
|
134
|
-
user?: {
|
|
135
|
-
__platform: string;
|
|
136
|
-
id: string;
|
|
137
|
-
} | undefined;
|
|
138
|
-
name?: {
|
|
139
|
-
formatted?: string | undefined;
|
|
140
|
-
first?: string | undefined;
|
|
141
|
-
last?: string | undefined;
|
|
142
|
-
middle?: string | undefined;
|
|
143
|
-
prefix?: string | undefined;
|
|
144
|
-
suffix?: string | undefined;
|
|
145
|
-
} | undefined;
|
|
146
|
-
phones?: {
|
|
147
|
-
value: string;
|
|
148
|
-
type?: "mobile" | "home" | "work" | "other" | undefined;
|
|
149
|
-
}[] | undefined;
|
|
150
|
-
emails?: {
|
|
151
|
-
value: string;
|
|
152
|
-
type?: "home" | "work" | "other" | undefined;
|
|
153
|
-
}[] | undefined;
|
|
154
|
-
addresses?: {
|
|
155
|
-
street?: string | undefined;
|
|
156
|
-
city?: string | undefined;
|
|
157
|
-
region?: string | undefined;
|
|
158
|
-
postalCode?: string | undefined;
|
|
159
|
-
country?: string | undefined;
|
|
160
|
-
type?: "home" | "work" | "other" | undefined;
|
|
161
|
-
}[] | undefined;
|
|
162
|
-
org?: {
|
|
163
|
-
name?: string | undefined;
|
|
164
|
-
title?: string | undefined;
|
|
165
|
-
department?: string | undefined;
|
|
166
|
-
} | undefined;
|
|
167
|
-
urls?: string[] | undefined;
|
|
168
|
-
birthday?: string | undefined;
|
|
169
|
-
note?: string | undefined;
|
|
170
|
-
photo?: {
|
|
171
|
-
mimeType: string;
|
|
172
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
173
|
-
} | undefined;
|
|
174
|
-
raw?: unknown;
|
|
175
|
-
} | {
|
|
176
|
-
type: "voice";
|
|
177
|
-
mimeType: string;
|
|
178
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
179
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
180
|
-
name?: string | undefined;
|
|
181
|
-
duration?: number | undefined;
|
|
182
|
-
size?: number | undefined;
|
|
183
|
-
} | {
|
|
184
|
-
type: "richlink";
|
|
185
|
-
url: string;
|
|
186
|
-
title: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodString>>>;
|
|
187
|
-
summary: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodString>>>;
|
|
188
|
-
cover: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodObject<{
|
|
189
|
-
mimeType: z__default.ZodOptional<z__default.ZodString>;
|
|
190
|
-
read: z__default.ZodFunction<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
191
|
-
stream: z__default.ZodFunction<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
192
|
-
}, z__default.core.$strip>>>>;
|
|
193
|
-
} | {
|
|
194
|
-
type: "reaction";
|
|
195
|
-
emoji: string;
|
|
196
|
-
target: Message<string, User, Space<unknown>>;
|
|
197
|
-
} | {
|
|
198
|
-
type: "group";
|
|
199
|
-
items: Message<string, User, Space<unknown>>[];
|
|
200
|
-
} | {
|
|
201
|
-
type: "poll";
|
|
202
|
-
title: string;
|
|
203
|
-
options: {
|
|
204
|
-
title: string;
|
|
205
|
-
}[];
|
|
206
|
-
} | {
|
|
207
|
-
type: "poll_option";
|
|
208
|
-
option: {
|
|
209
|
-
title: string;
|
|
210
|
-
};
|
|
211
|
-
poll: {
|
|
212
|
-
type: "poll";
|
|
213
|
-
title: string;
|
|
214
|
-
options: {
|
|
215
|
-
title: string;
|
|
216
|
-
}[];
|
|
217
|
-
};
|
|
218
|
-
selected: boolean;
|
|
219
|
-
title: string;
|
|
220
|
-
} | {
|
|
221
|
-
type: "effect";
|
|
222
|
-
content: {
|
|
223
|
-
type: "text";
|
|
224
|
-
text: string;
|
|
225
|
-
} | {
|
|
226
|
-
type: "attachment";
|
|
227
|
-
id: string;
|
|
228
|
-
name: string;
|
|
229
|
-
mimeType: string;
|
|
230
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
231
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
232
|
-
size?: number | undefined;
|
|
233
|
-
};
|
|
234
|
-
effect: string;
|
|
235
|
-
} | {
|
|
236
|
-
type: "typing";
|
|
237
|
-
state: "start" | "stop";
|
|
238
|
-
} | {
|
|
239
|
-
type: "rename";
|
|
240
|
-
displayName: string;
|
|
241
|
-
} | {
|
|
242
|
-
type: "reply";
|
|
243
|
-
content: {
|
|
244
|
-
type: "avatar";
|
|
245
|
-
action: {
|
|
246
|
-
kind: "set";
|
|
247
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
248
|
-
mimeType: string;
|
|
249
|
-
} | {
|
|
250
|
-
kind: "clear";
|
|
251
|
-
};
|
|
252
|
-
} | {
|
|
253
|
-
type: "text";
|
|
254
|
-
text: string;
|
|
255
|
-
} | {
|
|
256
|
-
type: "attachment";
|
|
257
|
-
id: string;
|
|
258
|
-
name: string;
|
|
259
|
-
mimeType: string;
|
|
260
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
261
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
262
|
-
size?: number | undefined;
|
|
263
|
-
} | {
|
|
264
|
-
type: "custom";
|
|
265
|
-
raw: unknown;
|
|
266
|
-
} | {
|
|
267
|
-
type: "contact";
|
|
268
|
-
user?: {
|
|
269
|
-
__platform: string;
|
|
270
|
-
id: string;
|
|
271
|
-
} | undefined;
|
|
272
|
-
name?: {
|
|
273
|
-
formatted?: string | undefined;
|
|
274
|
-
first?: string | undefined;
|
|
275
|
-
last?: string | undefined;
|
|
276
|
-
middle?: string | undefined;
|
|
277
|
-
prefix?: string | undefined;
|
|
278
|
-
suffix?: string | undefined;
|
|
279
|
-
} | undefined;
|
|
280
|
-
phones?: {
|
|
281
|
-
value: string;
|
|
282
|
-
type?: "mobile" | "home" | "work" | "other" | undefined;
|
|
283
|
-
}[] | undefined;
|
|
284
|
-
emails?: {
|
|
285
|
-
value: string;
|
|
286
|
-
type?: "home" | "work" | "other" | undefined;
|
|
287
|
-
}[] | undefined;
|
|
288
|
-
addresses?: {
|
|
289
|
-
street?: string | undefined;
|
|
290
|
-
city?: string | undefined;
|
|
291
|
-
region?: string | undefined;
|
|
292
|
-
postalCode?: string | undefined;
|
|
293
|
-
country?: string | undefined;
|
|
294
|
-
type?: "home" | "work" | "other" | undefined;
|
|
295
|
-
}[] | undefined;
|
|
296
|
-
org?: {
|
|
297
|
-
name?: string | undefined;
|
|
298
|
-
title?: string | undefined;
|
|
299
|
-
department?: string | undefined;
|
|
300
|
-
} | undefined;
|
|
301
|
-
urls?: string[] | undefined;
|
|
302
|
-
birthday?: string | undefined;
|
|
303
|
-
note?: string | undefined;
|
|
304
|
-
photo?: {
|
|
305
|
-
mimeType: string;
|
|
306
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
307
|
-
} | undefined;
|
|
308
|
-
raw?: unknown;
|
|
309
|
-
} | {
|
|
310
|
-
type: "voice";
|
|
311
|
-
mimeType: string;
|
|
312
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
313
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
314
|
-
name?: string | undefined;
|
|
315
|
-
duration?: number | undefined;
|
|
316
|
-
size?: number | undefined;
|
|
317
|
-
} | {
|
|
318
|
-
type: "richlink";
|
|
319
|
-
url: string;
|
|
320
|
-
title: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodString>>>;
|
|
321
|
-
summary: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodString>>>;
|
|
322
|
-
cover: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodObject<{
|
|
323
|
-
mimeType: z__default.ZodOptional<z__default.ZodString>;
|
|
324
|
-
read: z__default.ZodFunction<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
325
|
-
stream: z__default.ZodFunction<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
326
|
-
}, z__default.core.$strip>>>>;
|
|
327
|
-
} | {
|
|
328
|
-
type: "reaction";
|
|
329
|
-
emoji: string;
|
|
330
|
-
target: Message<string, User, Space<unknown>>;
|
|
331
|
-
} | {
|
|
332
|
-
type: "group";
|
|
333
|
-
items: Message<string, User, Space<unknown>>[];
|
|
334
|
-
} | {
|
|
335
|
-
type: "poll";
|
|
336
|
-
title: string;
|
|
337
|
-
options: {
|
|
338
|
-
title: string;
|
|
339
|
-
}[];
|
|
340
|
-
} | {
|
|
341
|
-
type: "poll_option";
|
|
342
|
-
option: {
|
|
343
|
-
title: string;
|
|
344
|
-
};
|
|
345
|
-
poll: {
|
|
346
|
-
type: "poll";
|
|
347
|
-
title: string;
|
|
348
|
-
options: {
|
|
349
|
-
title: string;
|
|
350
|
-
}[];
|
|
351
|
-
};
|
|
352
|
-
selected: boolean;
|
|
353
|
-
title: string;
|
|
354
|
-
} | {
|
|
355
|
-
type: "effect";
|
|
356
|
-
content: {
|
|
357
|
-
type: "text";
|
|
358
|
-
text: string;
|
|
359
|
-
} | {
|
|
360
|
-
type: "attachment";
|
|
361
|
-
id: string;
|
|
362
|
-
name: string;
|
|
363
|
-
mimeType: string;
|
|
364
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
365
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
366
|
-
size?: number | undefined;
|
|
367
|
-
};
|
|
368
|
-
effect: string;
|
|
369
|
-
} | {
|
|
370
|
-
type: "typing";
|
|
371
|
-
state: "start" | "stop";
|
|
372
|
-
} | {
|
|
373
|
-
type: "rename";
|
|
374
|
-
displayName: string;
|
|
375
|
-
};
|
|
376
|
-
target: Message<string, User, Space<unknown>>;
|
|
377
|
-
} | {
|
|
378
|
-
type: "edit";
|
|
379
|
-
content: {
|
|
380
|
-
type: "avatar";
|
|
381
|
-
action: {
|
|
382
|
-
kind: "set";
|
|
383
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
384
|
-
mimeType: string;
|
|
385
|
-
} | {
|
|
386
|
-
kind: "clear";
|
|
387
|
-
};
|
|
388
|
-
} | {
|
|
389
|
-
type: "text";
|
|
390
|
-
text: string;
|
|
391
|
-
} | {
|
|
392
|
-
type: "attachment";
|
|
393
|
-
id: string;
|
|
394
|
-
name: string;
|
|
395
|
-
mimeType: string;
|
|
396
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
397
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
398
|
-
size?: number | undefined;
|
|
399
|
-
} | {
|
|
400
|
-
type: "custom";
|
|
401
|
-
raw: unknown;
|
|
402
|
-
} | {
|
|
403
|
-
type: "contact";
|
|
404
|
-
user?: {
|
|
405
|
-
__platform: string;
|
|
406
|
-
id: string;
|
|
407
|
-
} | undefined;
|
|
408
|
-
name?: {
|
|
409
|
-
formatted?: string | undefined;
|
|
410
|
-
first?: string | undefined;
|
|
411
|
-
last?: string | undefined;
|
|
412
|
-
middle?: string | undefined;
|
|
413
|
-
prefix?: string | undefined;
|
|
414
|
-
suffix?: string | undefined;
|
|
415
|
-
} | undefined;
|
|
416
|
-
phones?: {
|
|
417
|
-
value: string;
|
|
418
|
-
type?: "mobile" | "home" | "work" | "other" | undefined;
|
|
419
|
-
}[] | undefined;
|
|
420
|
-
emails?: {
|
|
421
|
-
value: string;
|
|
422
|
-
type?: "home" | "work" | "other" | undefined;
|
|
423
|
-
}[] | undefined;
|
|
424
|
-
addresses?: {
|
|
425
|
-
street?: string | undefined;
|
|
426
|
-
city?: string | undefined;
|
|
427
|
-
region?: string | undefined;
|
|
428
|
-
postalCode?: string | undefined;
|
|
429
|
-
country?: string | undefined;
|
|
430
|
-
type?: "home" | "work" | "other" | undefined;
|
|
431
|
-
}[] | undefined;
|
|
432
|
-
org?: {
|
|
433
|
-
name?: string | undefined;
|
|
434
|
-
title?: string | undefined;
|
|
435
|
-
department?: string | undefined;
|
|
436
|
-
} | undefined;
|
|
437
|
-
urls?: string[] | undefined;
|
|
438
|
-
birthday?: string | undefined;
|
|
439
|
-
note?: string | undefined;
|
|
440
|
-
photo?: {
|
|
441
|
-
mimeType: string;
|
|
442
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
443
|
-
} | undefined;
|
|
444
|
-
raw?: unknown;
|
|
445
|
-
} | {
|
|
446
|
-
type: "voice";
|
|
447
|
-
mimeType: string;
|
|
448
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
449
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
450
|
-
name?: string | undefined;
|
|
451
|
-
duration?: number | undefined;
|
|
452
|
-
size?: number | undefined;
|
|
453
|
-
} | {
|
|
454
|
-
type: "richlink";
|
|
455
|
-
url: string;
|
|
456
|
-
title: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodString>>>;
|
|
457
|
-
summary: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodString>>>;
|
|
458
|
-
cover: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodOptional<z__default.ZodObject<{
|
|
459
|
-
mimeType: z__default.ZodOptional<z__default.ZodString>;
|
|
460
|
-
read: z__default.ZodFunction<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
461
|
-
stream: z__default.ZodFunction<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
462
|
-
}, z__default.core.$strip>>>>;
|
|
463
|
-
} | {
|
|
464
|
-
type: "reaction";
|
|
465
|
-
emoji: string;
|
|
466
|
-
target: Message<string, User, Space<unknown>>;
|
|
467
|
-
} | {
|
|
468
|
-
type: "group";
|
|
469
|
-
items: Message<string, User, Space<unknown>>[];
|
|
470
|
-
} | {
|
|
471
|
-
type: "poll";
|
|
472
|
-
title: string;
|
|
473
|
-
options: {
|
|
474
|
-
title: string;
|
|
475
|
-
}[];
|
|
476
|
-
} | {
|
|
477
|
-
type: "poll_option";
|
|
478
|
-
option: {
|
|
479
|
-
title: string;
|
|
480
|
-
};
|
|
481
|
-
poll: {
|
|
482
|
-
type: "poll";
|
|
483
|
-
title: string;
|
|
484
|
-
options: {
|
|
485
|
-
title: string;
|
|
486
|
-
}[];
|
|
487
|
-
};
|
|
488
|
-
selected: boolean;
|
|
489
|
-
title: string;
|
|
490
|
-
} | {
|
|
491
|
-
type: "effect";
|
|
492
|
-
content: {
|
|
493
|
-
type: "text";
|
|
494
|
-
text: string;
|
|
495
|
-
} | {
|
|
496
|
-
type: "attachment";
|
|
497
|
-
id: string;
|
|
498
|
-
name: string;
|
|
499
|
-
mimeType: string;
|
|
500
|
-
read: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<Buffer<ArrayBufferLike>, Buffer<ArrayBufferLike>>>>;
|
|
501
|
-
stream: z__default.core.$InferOuterFunctionType<z__default.ZodTuple<readonly [], null>, z__default.ZodPromise<z__default.ZodCustom<ReadableStream<unknown>, ReadableStream<unknown>>>>;
|
|
502
|
-
size?: number | undefined;
|
|
503
|
-
};
|
|
504
|
-
effect: string;
|
|
505
|
-
} | {
|
|
506
|
-
type: "typing";
|
|
507
|
-
state: "start" | "stop";
|
|
508
|
-
} | {
|
|
509
|
-
type: "rename";
|
|
510
|
-
displayName: string;
|
|
511
|
-
};
|
|
512
|
-
target: Message<string, User, Space<unknown>>;
|
|
513
|
-
};
|
|
514
|
-
sender: {
|
|
515
|
-
id: string;
|
|
516
|
-
};
|
|
517
|
-
space: {
|
|
518
|
-
id: string;
|
|
519
|
-
};
|
|
520
|
-
timestamp: Date;
|
|
521
|
-
}, undefined, Record<never, never>, Record<never, never>, Record<never, never>>> & Readonly<Record<never, never>>;
|
|
119
|
+
}, z__default.core.$strip>, TerminalInboundMessage, undefined, Record<never, never>, Record<never, never>, Record<never, never>>> & Readonly<Record<never, never>>;
|
|
522
120
|
|
|
523
121
|
export { terminal };
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { createRequire as __spectrumCreateRequire } from "node:module"; const require = __spectrumCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
terminal
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-U3LXXT3W.js";
|
|
5
5
|
import "../../chunk-NNY6LMSC.js";
|
|
6
|
-
import "../../chunk-
|
|
7
|
-
import "../../chunk-
|
|
6
|
+
import "../../chunk-U7AWXDH6.js";
|
|
7
|
+
import "../../chunk-5XEFJBN2.js";
|
|
8
|
+
import "../../chunk-6UZFVXQF.js";
|
|
9
|
+
import "../../chunk-NGC4DJIX.js";
|
|
8
10
|
import "../../chunk-2ILTJC35.js";
|
|
9
11
|
export {
|
|
10
12
|
terminal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as SchemaMessage, P as Platform, a as PlatformDef } from '../../types-
|
|
1
|
+
import { S as SchemaMessage, P as Platform, a as PlatformDef } from '../../types-Bje8aq1k.js';
|
|
2
2
|
import { WhatsAppClient } from '@photon-ai/whatsapp-business';
|
|
3
3
|
import * as z from 'zod';
|
|
4
4
|
import z__default from 'zod';
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { createRequire as __spectrumCreateRequire } from "node:module"; const require = __spectrumCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
whatsappBusiness
|
|
4
|
-
} from "../../chunk-
|
|
4
|
+
} from "../../chunk-Q537JPTG.js";
|
|
5
5
|
import "../../chunk-2D27WW5B.js";
|
|
6
|
-
import "../../chunk-
|
|
7
|
-
import "../../chunk-
|
|
8
|
-
import "../../chunk-
|
|
6
|
+
import "../../chunk-3GEJYGZK.js";
|
|
7
|
+
import "../../chunk-U7AWXDH6.js";
|
|
8
|
+
import "../../chunk-5XEFJBN2.js";
|
|
9
|
+
import "../../chunk-6UZFVXQF.js";
|
|
10
|
+
import "../../chunk-NGC4DJIX.js";
|
|
9
11
|
import "../../chunk-2ILTJC35.js";
|
|
10
12
|
export {
|
|
11
13
|
whatsappBusiness
|