@stacksjs/ts-cloud 0.1.11 → 0.1.14
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 +41 -379
- package/dist/bin/cli.js +1039 -416
- package/dist/index.d.ts +34 -1
- package/dist/index.js +76467 -7133
- package/package.json +6 -6
- package/dist/aws/acm.d.ts +0 -129
- package/dist/aws/application-autoscaling.d.ts +0 -282
- package/dist/aws/bedrock.d.ts +0 -2292
- package/dist/aws/client.d.ts +0 -79
- package/dist/aws/cloudformation.d.ts +0 -105
- package/dist/aws/cloudfront.d.ts +0 -265
- package/dist/aws/cloudwatch-logs.d.ts +0 -48
- package/dist/aws/comprehend.d.ts +0 -505
- package/dist/aws/connect.d.ts +0 -377
- package/dist/aws/deploy-imap.d.ts +0 -14
- package/dist/aws/dynamodb.d.ts +0 -176
- package/dist/aws/ec2.d.ts +0 -272
- package/dist/aws/ecr.d.ts +0 -149
- package/dist/aws/ecs.d.ts +0 -162
- package/dist/aws/elasticache.d.ts +0 -71
- package/dist/aws/elbv2.d.ts +0 -248
- package/dist/aws/email.d.ts +0 -175
- package/dist/aws/eventbridge.d.ts +0 -142
- package/dist/aws/iam.d.ts +0 -638
- package/dist/aws/imap-server.d.ts +0 -119
- package/dist/aws/index.d.ts +0 -192
- package/dist/aws/kendra.d.ts +0 -782
- package/dist/aws/lambda.d.ts +0 -232
- package/dist/aws/opensearch.d.ts +0 -87
- package/dist/aws/personalize.d.ts +0 -516
- package/dist/aws/polly.d.ts +0 -214
- package/dist/aws/rds.d.ts +0 -240
- package/dist/aws/rekognition.d.ts +0 -543
- package/dist/aws/route53-domains.d.ts +0 -113
- package/dist/aws/route53.d.ts +0 -215
- package/dist/aws/s3.d.ts +0 -212
- package/dist/aws/scheduler.d.ts +0 -140
- package/dist/aws/secrets-manager.d.ts +0 -170
- package/dist/aws/ses.d.ts +0 -288
- package/dist/aws/setup-phone.d.ts +0 -0
- package/dist/aws/setup-sms.d.ts +0 -116
- package/dist/aws/sms.d.ts +0 -304
- package/dist/aws/smtp-server.d.ts +0 -61
- package/dist/aws/sns.d.ts +0 -117
- package/dist/aws/sqs.d.ts +0 -65
- package/dist/aws/ssm.d.ts +0 -179
- package/dist/aws/sts.d.ts +0 -15
- package/dist/aws/support.d.ts +0 -104
- package/dist/aws/test-imap.d.ts +0 -0
- package/dist/aws/textract.d.ts +0 -403
- package/dist/aws/transcribe.d.ts +0 -60
- package/dist/aws/translate.d.ts +0 -358
- package/dist/aws/voice.d.ts +0 -219
- package/dist/config.d.ts +0 -7
- package/dist/deploy/index.d.ts +0 -2
- package/dist/deploy/static-site-external-dns.d.ts +0 -51
- package/dist/deploy/static-site.d.ts +0 -71
- package/dist/dns/cloudflare.d.ts +0 -52
- package/dist/dns/godaddy.d.ts +0 -38
- package/dist/dns/index.d.ts +0 -45
- package/dist/dns/porkbun.d.ts +0 -18
- package/dist/dns/route53-adapter.d.ts +0 -38
- package/dist/dns/types.d.ts +0 -77
- package/dist/dns/validator.d.ts +0 -78
- package/dist/generators/index.d.ts +0 -1
- package/dist/generators/infrastructure.d.ts +0 -30
- package/dist/push/apns.d.ts +0 -60
- package/dist/push/fcm.d.ts +0 -117
- package/dist/push/index.d.ts +0 -14
- package/dist/security/pre-deploy-scanner.d.ts +0 -69
- package/dist/ssl/acme-client.d.ts +0 -67
- package/dist/ssl/index.d.ts +0 -2
- package/dist/ssl/letsencrypt.d.ts +0 -48
- package/dist/types.d.ts +0 -1
- package/dist/utils/cli.d.ts +0 -123
- package/dist/validation/index.d.ts +0 -1
- package/dist/validation/template.d.ts +0 -23
package/dist/aws/sms.d.ts
DELETED
|
@@ -1,304 +0,0 @@
|
|
|
1
|
-
import { S3Client } from './s3';
|
|
2
|
-
import { SchedulerClient } from './scheduler';
|
|
3
|
-
import { SNSClient } from './sns';
|
|
4
|
-
/**
|
|
5
|
-
* Create a Lambda handler for processing incoming SMS from SNS
|
|
6
|
-
* Use this with an SNS topic that receives two-way SMS messages
|
|
7
|
-
*
|
|
8
|
-
* @example
|
|
9
|
-
* ```typescript
|
|
10
|
-
* // lambda.ts
|
|
11
|
-
* import { createSmsInboxHandler } from 'ts-cloud/aws/sms'
|
|
12
|
-
*
|
|
13
|
-
* export const handler = createSmsInboxHandler({
|
|
14
|
-
* bucket: 'my-sms-bucket',
|
|
15
|
-
* prefix: 'sms/inbox/',
|
|
16
|
-
* region: 'us-east-1',
|
|
17
|
-
* })
|
|
18
|
-
* ```
|
|
19
|
-
*/
|
|
20
|
-
export declare function createSmsInboxHandler(config: {
|
|
21
|
-
bucket: string
|
|
22
|
-
prefix?: string
|
|
23
|
-
region?: string
|
|
24
|
-
onMessage?: (message: SmsMessage) => Promise<void>
|
|
25
|
-
}): void;
|
|
26
|
-
/**
|
|
27
|
-
* Create a Lambda handler for sending scheduled SMS messages
|
|
28
|
-
* This is invoked by EventBridge Scheduler at the scheduled time
|
|
29
|
-
*
|
|
30
|
-
* @example
|
|
31
|
-
* ```typescript
|
|
32
|
-
* // lambda.ts
|
|
33
|
-
* import { createScheduledSmsHandler } from 'ts-cloud/aws/sms'
|
|
34
|
-
*
|
|
35
|
-
* export const handler = createScheduledSmsHandler({
|
|
36
|
-
* bucket: 'my-sms-bucket',
|
|
37
|
-
* region: 'us-east-1',
|
|
38
|
-
* })
|
|
39
|
-
* ```
|
|
40
|
-
*/
|
|
41
|
-
export declare function createScheduledSmsHandler(config: {
|
|
42
|
-
bucket: string
|
|
43
|
-
scheduledPrefix?: string
|
|
44
|
-
region?: string
|
|
45
|
-
onSent?: (sms: ScheduledSms) => Promise<void>
|
|
46
|
-
onError?: (sms: ScheduledSms, error: Error) => Promise<void>
|
|
47
|
-
}): void;
|
|
48
|
-
/**
|
|
49
|
-
* Convenience function to create an SMS client
|
|
50
|
-
*/
|
|
51
|
-
export declare function createSmsClient(config?: SmsClientConfig): SmsClient;
|
|
52
|
-
/**
|
|
53
|
-
* Create a Lambda handler for processing SMS delivery receipts
|
|
54
|
-
* This handles SNS notifications for SMS delivery status events
|
|
55
|
-
*
|
|
56
|
-
* @example
|
|
57
|
-
* ```typescript
|
|
58
|
-
* // lambda.ts
|
|
59
|
-
* import { createDeliveryReceiptHandler } from 'ts-cloud/aws/sms'
|
|
60
|
-
*
|
|
61
|
-
* export const handler = createDeliveryReceiptHandler({
|
|
62
|
-
* bucket: 'my-sms-bucket',
|
|
63
|
-
* region: 'us-east-1',
|
|
64
|
-
* onDelivered: async (receipt) => {
|
|
65
|
-
* console.log(`SMS ${receipt.messageId} delivered to ${receipt.to}`)
|
|
66
|
-
* },
|
|
67
|
-
* onFailed: async (receipt) => {
|
|
68
|
-
* console.error(`SMS ${receipt.messageId} failed: ${receipt.errorMessage}`)
|
|
69
|
-
* },
|
|
70
|
-
* })
|
|
71
|
-
* ```
|
|
72
|
-
*/
|
|
73
|
-
export declare function createDeliveryReceiptHandler(config: {
|
|
74
|
-
bucket: string
|
|
75
|
-
receiptPrefix?: string
|
|
76
|
-
region?: string
|
|
77
|
-
onDelivered?: (receipt: DeliveryReceipt) => Promise<void>
|
|
78
|
-
onFailed?: (receipt: DeliveryReceipt) => Promise<void>
|
|
79
|
-
onReceipt?: (receipt: DeliveryReceipt) => Promise<void>
|
|
80
|
-
// Optional: webhook URL to forward receipts to
|
|
81
|
-
webhookUrl?: string
|
|
82
|
-
webhookSecret?: string
|
|
83
|
-
}): void;
|
|
84
|
-
/**
|
|
85
|
-
* Normalize a phone number to E.164 format
|
|
86
|
-
* Removes all non-numeric characters except leading +
|
|
87
|
-
*/
|
|
88
|
-
export declare function normalizePhoneNumber(phone: string): string;
|
|
89
|
-
/**
|
|
90
|
-
* Format a phone number for display
|
|
91
|
-
*/
|
|
92
|
-
export declare function formatPhoneNumber(phone: string, format?: 'national' | 'international' | 'e164'): string;
|
|
93
|
-
/**
|
|
94
|
-
* Validate a phone number
|
|
95
|
-
*/
|
|
96
|
-
export declare function isValidPhoneNumber(phone: string): boolean;
|
|
97
|
-
/**
|
|
98
|
-
* Get the country code from a phone number
|
|
99
|
-
*/
|
|
100
|
-
export declare function getCountryCode(phone: string): string | null;
|
|
101
|
-
/**
|
|
102
|
-
* Check if two phone numbers are the same (ignoring formatting)
|
|
103
|
-
*/
|
|
104
|
-
export declare function isSamePhoneNumber(phone1: string, phone2: string): boolean;
|
|
105
|
-
export declare interface SmsClientConfig {
|
|
106
|
-
region?: string
|
|
107
|
-
inboxBucket?: string
|
|
108
|
-
inboxPrefix?: string
|
|
109
|
-
defaultSender?: string
|
|
110
|
-
schedulerLambdaArn?: string
|
|
111
|
-
schedulerRoleArn?: string
|
|
112
|
-
scheduledBucket?: string
|
|
113
|
-
scheduledPrefix?: string
|
|
114
|
-
receiptBucket?: string
|
|
115
|
-
receiptPrefix?: string
|
|
116
|
-
trackDelivery?: boolean
|
|
117
|
-
}
|
|
118
|
-
export declare interface SmsMessage {
|
|
119
|
-
key: string
|
|
120
|
-
from: string
|
|
121
|
-
to: string
|
|
122
|
-
body: string
|
|
123
|
-
timestamp: Date
|
|
124
|
-
messageId?: string
|
|
125
|
-
originationNumber?: string
|
|
126
|
-
destinationNumber?: string
|
|
127
|
-
read?: boolean
|
|
128
|
-
readAt?: Date
|
|
129
|
-
conversationId?: string
|
|
130
|
-
status?: 'pending' | 'sent' | 'delivered' | 'failed'
|
|
131
|
-
deliveredAt?: Date
|
|
132
|
-
raw?: any
|
|
133
|
-
}
|
|
134
|
-
export declare interface SendSmsOptions {
|
|
135
|
-
to: string
|
|
136
|
-
body: string
|
|
137
|
-
from?: string
|
|
138
|
-
type?: 'Promotional' | 'Transactional'
|
|
139
|
-
scheduledAt?: Date
|
|
140
|
-
templateId?: string
|
|
141
|
-
templateVariables?: Record<string, string>
|
|
142
|
-
}
|
|
143
|
-
export declare interface ScheduledSms {
|
|
144
|
-
id: string
|
|
145
|
-
to: string
|
|
146
|
-
body: string
|
|
147
|
-
from?: string
|
|
148
|
-
scheduledAt: Date
|
|
149
|
-
status: 'pending' | 'sent' | 'failed' | 'cancelled'
|
|
150
|
-
createdAt: Date
|
|
151
|
-
sentAt?: Date
|
|
152
|
-
messageId?: string
|
|
153
|
-
error?: string
|
|
154
|
-
templateId?: string
|
|
155
|
-
templateVariables?: Record<string, string>
|
|
156
|
-
}
|
|
157
|
-
export declare interface SmsTemplate {
|
|
158
|
-
id: string
|
|
159
|
-
name: string
|
|
160
|
-
body: string
|
|
161
|
-
description?: string
|
|
162
|
-
variables?: string[]
|
|
163
|
-
createdAt: Date
|
|
164
|
-
updatedAt?: Date
|
|
165
|
-
}
|
|
166
|
-
export declare interface InboxOptions {
|
|
167
|
-
prefix?: string
|
|
168
|
-
maxResults?: number
|
|
169
|
-
startAfter?: string
|
|
170
|
-
}
|
|
171
|
-
export declare interface DeliveryReceipt {
|
|
172
|
-
messageId: string
|
|
173
|
-
status: 'pending' | 'sent' | 'delivered' | 'failed' | 'unknown'
|
|
174
|
-
timestamp: Date
|
|
175
|
-
to: string
|
|
176
|
-
from?: string
|
|
177
|
-
errorCode?: string
|
|
178
|
-
errorMessage?: string
|
|
179
|
-
carrierName?: string
|
|
180
|
-
priceInUsd?: number
|
|
181
|
-
messagePartCount?: number
|
|
182
|
-
raw?: any
|
|
183
|
-
}
|
|
184
|
-
export declare interface DeliveryReceiptWebhookConfig {
|
|
185
|
-
snsTopicArn?: string
|
|
186
|
-
receiptBucket?: string
|
|
187
|
-
receiptPrefix?: string
|
|
188
|
-
webhookUrl?: string
|
|
189
|
-
webhookSecret?: string
|
|
190
|
-
}
|
|
191
|
-
/**
|
|
192
|
-
* SMS Client with S3 inbox storage
|
|
193
|
-
*/
|
|
194
|
-
export declare class SmsClient {
|
|
195
|
-
private config: SmsClientConfig;
|
|
196
|
-
private sns: SNSClient;
|
|
197
|
-
private s3?: S3Client;
|
|
198
|
-
private scheduler?: SchedulerClient;
|
|
199
|
-
constructor(config?: SmsClientConfig);
|
|
200
|
-
send(options: SendSmsOptions): Promise<{ messageId: string; scheduledId?: string }>;
|
|
201
|
-
sendText(to: string, message: string, from?: string): Promise<{ messageId: string }>;
|
|
202
|
-
getInbox(options?: InboxOptions): Promise<SmsMessage[]>;
|
|
203
|
-
getMessage(key: string): Promise<SmsMessage | null>;
|
|
204
|
-
deleteMessage(key: string): Promise<void>;
|
|
205
|
-
moveMessage(key: string, destinationPrefix: string): Promise<string>;
|
|
206
|
-
archiveMessage(key: string): Promise<string>;
|
|
207
|
-
markAsRead(key: string): Promise<void>;
|
|
208
|
-
markAsUnread(key: string): Promise<void>;
|
|
209
|
-
getUnreadCount(): Promise<number>;
|
|
210
|
-
markManyAsRead(keys: string[]): Promise<void>;
|
|
211
|
-
deleteMany(keys: string[]): Promise<void>;
|
|
212
|
-
getInboxCount(): Promise<number>;
|
|
213
|
-
getConversationId(phone1: string, phone2: string): string;
|
|
214
|
-
getConversation(phoneNumber: string, myNumber?: string): Promise<SmsMessage[]>;
|
|
215
|
-
getConversations(): Promise<Array<{
|
|
216
|
-
phoneNumber: string
|
|
217
|
-
lastMessage: SmsMessage
|
|
218
|
-
messageCount: number
|
|
219
|
-
unreadCount: number
|
|
220
|
-
}>>;
|
|
221
|
-
storeIncomingSms(message: {
|
|
222
|
-
from: string
|
|
223
|
-
to: string
|
|
224
|
-
body: string
|
|
225
|
-
messageId?: string
|
|
226
|
-
timestamp?: Date
|
|
227
|
-
raw?: any
|
|
228
|
-
}): Promise<string>;
|
|
229
|
-
isOptedOut(phoneNumber: string): Promise<boolean>;
|
|
230
|
-
getOptedOutNumbers(): Promise<string[]>;
|
|
231
|
-
optIn(phoneNumber: string): Promise<void>;
|
|
232
|
-
isInSandbox(): Promise<boolean>;
|
|
233
|
-
addSandboxNumber(phoneNumber: string): Promise<void>;
|
|
234
|
-
verifySandboxNumber(phoneNumber: string, otp: string): Promise<void>;
|
|
235
|
-
listSandboxNumbers(): Promise<Array<{ PhoneNumber: string; Status: string }>>;
|
|
236
|
-
scheduleMessage(options: {
|
|
237
|
-
to: string
|
|
238
|
-
body: string
|
|
239
|
-
from?: string
|
|
240
|
-
scheduledAt: Date
|
|
241
|
-
templateId?: string
|
|
242
|
-
templateVariables?: Record<string, string>
|
|
243
|
-
}): Promise<ScheduledSms>;
|
|
244
|
-
getScheduledMessages(): Promise<ScheduledSms[]>;
|
|
245
|
-
getScheduledMessage(id: string): Promise<ScheduledSms | null>;
|
|
246
|
-
cancelScheduledMessage(id: string): Promise<void>;
|
|
247
|
-
sendScheduledMessage(id: string): Promise<{ messageId: string }>;
|
|
248
|
-
sendAt(to: string, body: string, scheduledAt: Date, from?: string): Promise<ScheduledSms>;
|
|
249
|
-
sendAfter(to: string, body: string, delayMinutes: number, from?: string): Promise<ScheduledSms>;
|
|
250
|
-
createTemplate(template: {
|
|
251
|
-
name: string
|
|
252
|
-
body: string
|
|
253
|
-
description?: string
|
|
254
|
-
}): Promise<SmsTemplate>;
|
|
255
|
-
getTemplates(): Promise<SmsTemplate[]>;
|
|
256
|
-
getTemplate(id: string): Promise<SmsTemplate | null>;
|
|
257
|
-
getTemplateByName(name: string): Promise<SmsTemplate | null>;
|
|
258
|
-
updateTemplate(id: string, updates: { name?: string; body?: string; description?: string }): Promise<SmsTemplate>;
|
|
259
|
-
deleteTemplate(id: string): Promise<void>;
|
|
260
|
-
sendTemplate(to: string, templateId: string, variables: Record<string, string>, from?: string): Promise<{ messageId: string }>;
|
|
261
|
-
private applyTemplate(template: string, variables: Record<string, string>): string;
|
|
262
|
-
storeDeliveryReceipt(receipt: {
|
|
263
|
-
messageId: string
|
|
264
|
-
status: DeliveryReceipt['status']
|
|
265
|
-
to: string
|
|
266
|
-
from?: string
|
|
267
|
-
errorCode?: string
|
|
268
|
-
errorMessage?: string
|
|
269
|
-
carrierName?: string
|
|
270
|
-
priceInUsd?: number
|
|
271
|
-
messagePartCount?: number
|
|
272
|
-
timestamp?: Date
|
|
273
|
-
raw?: any
|
|
274
|
-
}): Promise<string>;
|
|
275
|
-
getDeliveryReceipt(messageId: string): Promise<DeliveryReceipt | null>;
|
|
276
|
-
getDeliveryReceipts(options?: {
|
|
277
|
-
maxResults?: number
|
|
278
|
-
status?: DeliveryReceipt['status']
|
|
279
|
-
}): Promise<DeliveryReceipt[]>;
|
|
280
|
-
getDeliveryStatus(messageId: string): Promise<DeliveryReceipt['status']>;
|
|
281
|
-
waitForDelivery(messageId: string, options?: {
|
|
282
|
-
timeoutMs?: number
|
|
283
|
-
pollIntervalMs?: number
|
|
284
|
-
}): Promise<DeliveryReceipt | null>;
|
|
285
|
-
getFailedMessages(maxResults?: number): Promise<DeliveryReceipt[]>;
|
|
286
|
-
getDeliveryStats(options?: {
|
|
287
|
-
since?: Date
|
|
288
|
-
maxMessages?: number
|
|
289
|
-
}): Promise<{
|
|
290
|
-
total: number
|
|
291
|
-
delivered: number
|
|
292
|
-
failed: number
|
|
293
|
-
pending: number
|
|
294
|
-
deliveryRate: number
|
|
295
|
-
averagePriceUsd: number
|
|
296
|
-
}>;
|
|
297
|
-
sendAndTrack(options: SendSmsOptions): Promise<{
|
|
298
|
-
messageId: string
|
|
299
|
-
trackDelivery: () => Promise<DeliveryReceipt | null>
|
|
300
|
-
waitForDelivery: (timeoutMs?: number) => Promise<DeliveryReceipt | null>
|
|
301
|
-
}>;
|
|
302
|
-
private parseIncomingSms(content: string, key: string): SmsMessage | null;
|
|
303
|
-
private extractSmsFields(data: any, key: string, timestamp?: string): SmsMessage;
|
|
304
|
-
}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { S3Client } from './s3';
|
|
2
|
-
import { SESClient } from './ses';
|
|
3
|
-
/**
|
|
4
|
-
* Start an SMTP server with the given configuration
|
|
5
|
-
*/
|
|
6
|
-
export declare function startSmtpServer(config: SmtpServerConfig): Promise<SmtpServer>;
|
|
7
|
-
export declare interface SmtpServerConfig {
|
|
8
|
-
port?: number
|
|
9
|
-
tlsPort?: number
|
|
10
|
-
host?: string
|
|
11
|
-
region?: string
|
|
12
|
-
domain: string
|
|
13
|
-
users: Record<string, { password: string; email: string }>
|
|
14
|
-
tls?: {
|
|
15
|
-
key: string
|
|
16
|
-
cert: string
|
|
17
|
-
}
|
|
18
|
-
sentBucket?: string
|
|
19
|
-
sentPrefix?: string
|
|
20
|
-
}
|
|
21
|
-
declare interface SmtpSession {
|
|
22
|
-
id: string
|
|
23
|
-
socket: net.Socket
|
|
24
|
-
secure: boolean
|
|
25
|
-
state: 'greeting' | 'ready' | 'mail' | 'rcpt' | 'data' | 'quit'
|
|
26
|
-
authenticated: boolean
|
|
27
|
-
username?: string
|
|
28
|
-
email?: string
|
|
29
|
-
mailFrom?: string
|
|
30
|
-
rcptTo: string[]
|
|
31
|
-
dataBuffer: string
|
|
32
|
-
tlsUpgraded: boolean
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* SMTP Server that relays emails through AWS SES
|
|
36
|
-
*/
|
|
37
|
-
export declare class SmtpServer {
|
|
38
|
-
private config: SmtpServerConfig;
|
|
39
|
-
private ses: SESClient;
|
|
40
|
-
private s3?: S3Client;
|
|
41
|
-
private server?: net.Server;
|
|
42
|
-
private tlsServer?: tls.Server;
|
|
43
|
-
private sessions: Map<string, SmtpSession>;
|
|
44
|
-
constructor(config: SmtpServerConfig);
|
|
45
|
-
start(): Promise<void>;
|
|
46
|
-
stop(): Promise<void>;
|
|
47
|
-
private handleConnection(socket: net.Socket, secure: boolean): void;
|
|
48
|
-
private send(session: SmtpSession, message: string): void;
|
|
49
|
-
private handleCommand(session: SmtpSession, line: string): Promise<void>;
|
|
50
|
-
private handleEhlo(session: SmtpSession, clientDomain: string): Promise<void>;
|
|
51
|
-
private handleStartTls(session: SmtpSession): Promise<void>;
|
|
52
|
-
private handleAuth(session: SmtpSession, args: string): Promise<void>;
|
|
53
|
-
private handleAuthPlain(session: SmtpSession, credentials: string): Promise<void>;
|
|
54
|
-
private authenticateUser(session: SmtpSession, username: string, password: string): Promise<void>;
|
|
55
|
-
private handleMailFrom(session: SmtpSession, args: string): Promise<void>;
|
|
56
|
-
private handleRcptTo(session: SmtpSession, args: string): Promise<void>;
|
|
57
|
-
private handleData(session: SmtpSession): Promise<void>;
|
|
58
|
-
private handleDataLine(session: SmtpSession, line: string): Promise<void>;
|
|
59
|
-
private sendEmail(session: SmtpSession): Promise<void>;
|
|
60
|
-
private resetSession(session: SmtpSession): void;
|
|
61
|
-
}
|
package/dist/aws/sns.d.ts
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
import { AWSClient } from './client';
|
|
2
|
-
export declare interface SNSTopicAttributes {
|
|
3
|
-
TopicArn?: string
|
|
4
|
-
DisplayName?: string
|
|
5
|
-
Policy?: string
|
|
6
|
-
Owner?: string
|
|
7
|
-
SubscriptionsPending?: string
|
|
8
|
-
SubscriptionsConfirmed?: string
|
|
9
|
-
SubscriptionsDeleted?: string
|
|
10
|
-
DeliveryPolicy?: string
|
|
11
|
-
EffectiveDeliveryPolicy?: string
|
|
12
|
-
KmsMasterKeyId?: string
|
|
13
|
-
}
|
|
14
|
-
export declare interface SNSSubscriptionAttributes {
|
|
15
|
-
SubscriptionArn?: string
|
|
16
|
-
TopicArn?: string
|
|
17
|
-
Protocol?: string
|
|
18
|
-
Endpoint?: string
|
|
19
|
-
Owner?: string
|
|
20
|
-
ConfirmationWasAuthenticated?: string
|
|
21
|
-
RawMessageDelivery?: string
|
|
22
|
-
FilterPolicy?: string
|
|
23
|
-
}
|
|
24
|
-
export type SNSProtocol = 'http' | 'https' | 'email' | 'email-json' | 'sms' | 'sqs' | 'application' | 'lambda'
|
|
25
|
-
/**
|
|
26
|
-
* SNS service management using direct API calls
|
|
27
|
-
*/
|
|
28
|
-
export declare class SNSClient {
|
|
29
|
-
private client: AWSClient;
|
|
30
|
-
private region: string;
|
|
31
|
-
constructor(region?: string);
|
|
32
|
-
private buildFormBody(params: Record<string, string | undefined>): string;
|
|
33
|
-
createTopic(params: {
|
|
34
|
-
Name: string
|
|
35
|
-
DisplayName?: string
|
|
36
|
-
Tags?: Array<{ Key: string, Value: string }>
|
|
37
|
-
Attributes?: Record<string, string>
|
|
38
|
-
}): Promise<{ TopicArn?: string }>;
|
|
39
|
-
deleteTopic(topicArn: string): Promise<void>;
|
|
40
|
-
listTopics(nextToken?: string): Promise<{
|
|
41
|
-
Topics?: Array<{ TopicArn?: string }>
|
|
42
|
-
NextToken?: string
|
|
43
|
-
}>;
|
|
44
|
-
getTopicAttributes(topicArn: string): Promise<SNSTopicAttributes>;
|
|
45
|
-
setTopicAttributes(params: {
|
|
46
|
-
TopicArn: string
|
|
47
|
-
AttributeName: string
|
|
48
|
-
AttributeValue: string
|
|
49
|
-
}): Promise<void>;
|
|
50
|
-
subscribe(params: {
|
|
51
|
-
TopicArn: string
|
|
52
|
-
Protocol: SNSProtocol
|
|
53
|
-
Endpoint: string
|
|
54
|
-
Attributes?: Record<string, string>
|
|
55
|
-
ReturnSubscriptionArn?: boolean
|
|
56
|
-
}): Promise<{ SubscriptionArn?: string }>;
|
|
57
|
-
unsubscribe(subscriptionArn: string): Promise<void>;
|
|
58
|
-
listSubscriptionsByTopic(topicArn: string, nextToken?: string): Promise<{
|
|
59
|
-
Subscriptions?: SNSSubscriptionAttributes[]
|
|
60
|
-
NextToken?: string
|
|
61
|
-
}>;
|
|
62
|
-
publish(params: {
|
|
63
|
-
TopicArn?: string
|
|
64
|
-
TargetArn?: string
|
|
65
|
-
PhoneNumber?: string
|
|
66
|
-
Message: string
|
|
67
|
-
Subject?: string
|
|
68
|
-
MessageStructure?: 'json'
|
|
69
|
-
MessageAttributes?: Record<string, {
|
|
70
|
-
DataType: 'String' | 'Number' | 'Binary'
|
|
71
|
-
StringValue?: string
|
|
72
|
-
BinaryValue?: string
|
|
73
|
-
}>
|
|
74
|
-
}): Promise<{ MessageId?: string }>;
|
|
75
|
-
publishSMS(phoneNumber: string, message: string, senderId?: string): Promise<{ MessageId?: string }>;
|
|
76
|
-
subscribeEmail(topicArn: string, email: string): Promise<{ SubscriptionArn?: string }>;
|
|
77
|
-
subscribeLambda(topicArn: string, lambdaArn: string): Promise<{ SubscriptionArn?: string }>;
|
|
78
|
-
subscribeSqs(topicArn: string, queueArn: string, rawMessageDelivery?: boolean): Promise<{ SubscriptionArn?: string }>;
|
|
79
|
-
subscribeHttp(topicArn: string, url: string, rawMessageDelivery?: boolean): Promise<{ SubscriptionArn?: string }>;
|
|
80
|
-
subscribeSms(topicArn: string, phoneNumber: string): Promise<{ SubscriptionArn?: string }>;
|
|
81
|
-
topicExists(topicArn: string): Promise<boolean>;
|
|
82
|
-
getSMSAttributes(): Promise<{
|
|
83
|
-
MonthlySpendLimit?: string
|
|
84
|
-
DeliveryStatusIAMRole?: string
|
|
85
|
-
DeliveryStatusSuccessSamplingRate?: string
|
|
86
|
-
DefaultSenderID?: string
|
|
87
|
-
DefaultSMSType?: 'Promotional' | 'Transactional'
|
|
88
|
-
UsageReportS3Bucket?: string
|
|
89
|
-
}>;
|
|
90
|
-
setSMSAttributes(attributes: {
|
|
91
|
-
MonthlySpendLimit?: string
|
|
92
|
-
DeliveryStatusIAMRole?: string
|
|
93
|
-
DeliveryStatusSuccessSamplingRate?: string
|
|
94
|
-
DefaultSenderID?: string
|
|
95
|
-
DefaultSMSType?: 'Promotional' | 'Transactional'
|
|
96
|
-
UsageReportS3Bucket?: string
|
|
97
|
-
}): Promise<void>;
|
|
98
|
-
checkIfPhoneNumberIsOptedOut(phoneNumber: string): Promise<boolean>;
|
|
99
|
-
listPhoneNumbersOptedOut(nextToken?: string): Promise<{
|
|
100
|
-
phoneNumbers?: string[]
|
|
101
|
-
nextToken?: string
|
|
102
|
-
}>;
|
|
103
|
-
optInPhoneNumber(phoneNumber: string): Promise<void>;
|
|
104
|
-
listSMSSandboxPhoneNumbers(nextToken?: string): Promise<{
|
|
105
|
-
PhoneNumbers?: Array<{
|
|
106
|
-
PhoneNumber?: string
|
|
107
|
-
Status?: 'Pending' | 'Verified'
|
|
108
|
-
}>
|
|
109
|
-
NextToken?: string
|
|
110
|
-
}>;
|
|
111
|
-
createSMSSandboxPhoneNumber(phoneNumber: string, languageCode?: string): Promise<void>;
|
|
112
|
-
verifySMSSandboxPhoneNumber(phoneNumber: string, oneTimePassword: string): Promise<void>;
|
|
113
|
-
deleteSMSSandboxPhoneNumber(phoneNumber: string): Promise<void>;
|
|
114
|
-
getSMSSandboxAccountStatus(): Promise<{
|
|
115
|
-
IsInSandbox: boolean
|
|
116
|
-
}>;
|
|
117
|
-
}
|
package/dist/aws/sqs.d.ts
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { AWSClient } from './client';
|
|
2
|
-
export declare interface QueueAttributes {
|
|
3
|
-
QueueUrl: string
|
|
4
|
-
QueueArn?: string
|
|
5
|
-
ApproximateNumberOfMessages?: string
|
|
6
|
-
ApproximateNumberOfMessagesNotVisible?: string
|
|
7
|
-
ApproximateNumberOfMessagesDelayed?: string
|
|
8
|
-
CreatedTimestamp?: string
|
|
9
|
-
LastModifiedTimestamp?: string
|
|
10
|
-
VisibilityTimeout?: string
|
|
11
|
-
MaximumMessageSize?: string
|
|
12
|
-
MessageRetentionPeriod?: string
|
|
13
|
-
DelaySeconds?: string
|
|
14
|
-
ReceiveMessageWaitTimeSeconds?: string
|
|
15
|
-
FifoQueue?: string
|
|
16
|
-
ContentBasedDeduplication?: string
|
|
17
|
-
}
|
|
18
|
-
export declare interface CreateQueueOptions {
|
|
19
|
-
queueName: string
|
|
20
|
-
fifo?: boolean
|
|
21
|
-
visibilityTimeout?: number
|
|
22
|
-
messageRetentionPeriod?: number
|
|
23
|
-
delaySeconds?: number
|
|
24
|
-
maxMessageSize?: number
|
|
25
|
-
receiveMessageWaitTime?: number
|
|
26
|
-
deadLetterTargetArn?: string
|
|
27
|
-
maxReceiveCount?: number
|
|
28
|
-
contentBasedDeduplication?: boolean
|
|
29
|
-
tags?: Record<string, string>
|
|
30
|
-
}
|
|
31
|
-
export declare interface Message {
|
|
32
|
-
MessageId: string
|
|
33
|
-
ReceiptHandle: string
|
|
34
|
-
Body: string
|
|
35
|
-
Attributes?: Record<string, string>
|
|
36
|
-
MessageAttributes?: Record<string, any>
|
|
37
|
-
}
|
|
38
|
-
/**
|
|
39
|
-
* SQS queue management using direct API calls
|
|
40
|
-
*/
|
|
41
|
-
export declare class SQSClient {
|
|
42
|
-
private client: AWSClient;
|
|
43
|
-
private region: string;
|
|
44
|
-
constructor(region?: string, profile?: string);
|
|
45
|
-
createQueue(options: CreateQueueOptions): Promise<{ QueueUrl: string }>;
|
|
46
|
-
listQueues(prefix?: string): Promise<{ QueueUrls: string[] }>;
|
|
47
|
-
getQueueAttributes(queueUrl: string): Promise<{ Attributes: Record<string, string> }>;
|
|
48
|
-
getQueueUrl(queueName: string): Promise<{ QueueUrl: string }>;
|
|
49
|
-
deleteQueue(queueUrl: string): Promise<void>;
|
|
50
|
-
purgeQueue(queueUrl: string): Promise<void>;
|
|
51
|
-
sendMessage(options: {
|
|
52
|
-
queueUrl: string
|
|
53
|
-
messageBody: string
|
|
54
|
-
delaySeconds?: number
|
|
55
|
-
messageGroupId?: string
|
|
56
|
-
messageDeduplicationId?: string
|
|
57
|
-
}): Promise<{ MessageId: string }>;
|
|
58
|
-
receiveMessages(options: {
|
|
59
|
-
queueUrl: string
|
|
60
|
-
maxMessages?: number
|
|
61
|
-
visibilityTimeout?: number
|
|
62
|
-
waitTimeSeconds?: number
|
|
63
|
-
}): Promise<{ Messages: Message[] }>;
|
|
64
|
-
deleteMessage(queueUrl: string, receiptHandle: string): Promise<void>;
|
|
65
|
-
}
|