ts-ag 1.1.19 → 1.1.21
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.d.mts +114 -166
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +681 -144
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -10
package/dist/index.d.mts
CHANGED
|
@@ -5,6 +5,7 @@ import { Result, ResultAsync } from "neverthrow";
|
|
|
5
5
|
import * as _$_aws_sdk_client_cognito_identity_provider0 from "@aws-sdk/client-cognito-identity-provider";
|
|
6
6
|
import { AdminGetUserCommandOutput, AttributeType, CognitoIdentityProviderClient } from "@aws-sdk/client-cognito-identity-provider";
|
|
7
7
|
import { S3Client } from "@aws-sdk/client-s3";
|
|
8
|
+
import { DynamoDBToolboxError } from "dynamodb-toolbox";
|
|
8
9
|
import { Plugin } from "unified";
|
|
9
10
|
import { styleText } from "util";
|
|
10
11
|
import { APIGatewayProxyEventV2WithLambdaAuthorizer, APIGatewayProxyResultV2, APIGatewayRequestAuthorizerEventV2, Context } from "aws-lambda";
|
|
@@ -173,42 +174,42 @@ declare function createApiRequest<API extends ApiEndpoints>(schemas: Partial<Rec
|
|
|
173
174
|
* The separation means that they can be returned from functions that are certainly run inside a lambda fucntion but theyre not the actual return of the lambda.
|
|
174
175
|
* Im not sure it this is optimal behaviour and if not we will migrate to only using the errorResponse function
|
|
175
176
|
*/
|
|
176
|
-
declare const error_lambda_badRequest: (message: string, fieldName?: string, fieldValue?: string) =>
|
|
177
|
-
|
|
177
|
+
declare const error_lambda_badRequest: (message: string, fieldName?: string, fieldValue?: string) => type_error_lambda_badRequest;
|
|
178
|
+
declare const error_lambda_unauthorized: (message: string) => type_error_lambda_unauthorized;
|
|
179
|
+
declare const error_lambda_forbidden: (message: string) => type_error_lambda_forbidden;
|
|
180
|
+
declare const error_lambda_notFound: (message: string, fieldName?: string, fieldValue?: string) => type_error_lambda_notFound;
|
|
181
|
+
declare const error_lambda_conflict: (message: string, fieldName?: string, fieldValue?: string) => type_error_lambda_conflict;
|
|
182
|
+
declare const error_lambda_internal: (message: string) => type_error_lambda_internal;
|
|
183
|
+
type type_error_lambda_badRequest = {
|
|
184
|
+
type: 'badRequest';
|
|
178
185
|
message: string;
|
|
179
|
-
fieldName
|
|
180
|
-
fieldValue
|
|
186
|
+
fieldName?: string;
|
|
187
|
+
fieldValue?: string;
|
|
181
188
|
};
|
|
182
|
-
|
|
183
|
-
type: '
|
|
189
|
+
type type_error_lambda_unauthorized = {
|
|
190
|
+
type: 'unauthorized';
|
|
184
191
|
message: string;
|
|
185
192
|
};
|
|
186
|
-
|
|
187
|
-
type: '
|
|
193
|
+
type type_error_lambda_forbidden = {
|
|
194
|
+
type: 'forbidden';
|
|
188
195
|
message: string;
|
|
189
196
|
};
|
|
190
|
-
|
|
191
|
-
type: '
|
|
197
|
+
type type_error_lambda_notFound = {
|
|
198
|
+
type: 'notFound';
|
|
192
199
|
message: string;
|
|
193
|
-
fieldName
|
|
194
|
-
fieldValue
|
|
200
|
+
fieldName?: string;
|
|
201
|
+
fieldValue?: string;
|
|
195
202
|
};
|
|
196
|
-
|
|
197
|
-
type: '
|
|
203
|
+
type type_error_lambda_conflict = {
|
|
204
|
+
type: 'conflict';
|
|
198
205
|
message: string;
|
|
199
|
-
fieldName
|
|
200
|
-
fieldValue
|
|
206
|
+
fieldName?: string;
|
|
207
|
+
fieldValue?: string;
|
|
201
208
|
};
|
|
202
|
-
|
|
203
|
-
type: '
|
|
209
|
+
type type_error_lambda_internal = {
|
|
210
|
+
type: 'internal';
|
|
204
211
|
message: string;
|
|
205
212
|
};
|
|
206
|
-
type type_error_lambda_badRequest = ReturnType<typeof error_lambda_badRequest>;
|
|
207
|
-
type type_error_lambda_unauthorized = ReturnType<typeof error_lambda_unauthorized>;
|
|
208
|
-
type type_error_lambda_forbidden = ReturnType<typeof error_lambda_forbidden>;
|
|
209
|
-
type type_error_lambda_notFound = ReturnType<typeof error_lambda_notFound>;
|
|
210
|
-
type type_error_lambda_conflict = ReturnType<typeof error_lambda_conflict>;
|
|
211
|
-
type type_error_lambda_internal = ReturnType<typeof error_lambda_internal>;
|
|
212
213
|
type type_error_lambda = type_error_lambda_badRequest | type_error_lambda_unauthorized | type_error_lambda_forbidden | type_error_lambda_notFound | type_error_lambda_conflict | type_error_lambda_internal;
|
|
213
214
|
//#endregion
|
|
214
215
|
//#region src/lambda/response.d.ts
|
|
@@ -270,6 +271,14 @@ type LambdaErrorResponse<Type extends string = '', Extras extends object = {}> =
|
|
|
270
271
|
type: Type;
|
|
271
272
|
} & Extras;
|
|
272
273
|
};
|
|
274
|
+
/**
|
|
275
|
+
* Maps lambda errors to responses suitable to return from lambda functions
|
|
276
|
+
* @param e
|
|
277
|
+
* @param headers
|
|
278
|
+
* @param type
|
|
279
|
+
* @param extras
|
|
280
|
+
* @returns
|
|
281
|
+
*/
|
|
273
282
|
declare function response_error<Type extends string = '', Extras extends object = {}>(e: type_error_lambda, headers: Record<string, string>, type?: Type, extras?: Extras): LambdaErrorResponse<Type, Extras>;
|
|
274
283
|
/**
|
|
275
284
|
* Helper function to get a reasonable default error response from a valibot parse result
|
|
@@ -292,10 +301,7 @@ declare function response_ok<Body extends {
|
|
|
292
301
|
/**
|
|
293
302
|
* Wraps cookies parse along with the api gateway event with neverthrow
|
|
294
303
|
*/
|
|
295
|
-
declare const getCookies: (event: APIGatewayProxyEventV2WithLambdaAuthorizer<any> | APIGatewayRequestAuthorizerEventV2) => Result<_$cookie.Cookies,
|
|
296
|
-
type: 'lambda_unauthorized';
|
|
297
|
-
message: string;
|
|
298
|
-
}>;
|
|
304
|
+
declare const getCookies: (event: APIGatewayProxyEventV2WithLambdaAuthorizer<any> | APIGatewayRequestAuthorizerEventV2) => Result<_$cookie.Cookies, type_error_lambda_unauthorized>;
|
|
299
305
|
//#endregion
|
|
300
306
|
//#region src/cognito/client.d.ts
|
|
301
307
|
/**
|
|
@@ -304,115 +310,23 @@ declare const getCookies: (event: APIGatewayProxyEventV2WithLambdaAuthorizer<any
|
|
|
304
310
|
declare function getCognitoClient(): CognitoIdentityProviderClient;
|
|
305
311
|
//#endregion
|
|
306
312
|
//#region src/cognito/errors.d.ts
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
type: '
|
|
310
|
-
|
|
311
|
-
declare const error_cognito_internal: {
|
|
312
|
-
group: 'cognito';
|
|
313
|
-
type: 'cognito_internal';
|
|
314
|
-
};
|
|
315
|
-
declare const error_cognito_role: {
|
|
316
|
-
group: 'cognito';
|
|
317
|
-
type: 'cognito_role';
|
|
318
|
-
};
|
|
319
|
-
declare const error_cognito_input: {
|
|
320
|
-
group: 'cognito';
|
|
321
|
-
type: 'cognito_input';
|
|
322
|
-
};
|
|
323
|
-
declare const error_cognito_auth: {
|
|
324
|
-
group: 'cognito';
|
|
325
|
-
type: 'cognito_auth';
|
|
326
|
-
};
|
|
327
|
-
declare const error_cognito_notFound: {
|
|
328
|
-
group: 'cognito';
|
|
329
|
-
type: 'cognito_notFound';
|
|
330
|
-
};
|
|
331
|
-
declare const error_cognito_userNotFound: {
|
|
332
|
-
group: 'cognito';
|
|
333
|
-
type: 'cognito_userNotFound';
|
|
334
|
-
};
|
|
335
|
-
declare const error_cognito_tooManyRequests: {
|
|
336
|
-
group: 'cognito';
|
|
337
|
-
type: 'cognito_tooManyRequests';
|
|
338
|
-
};
|
|
339
|
-
declare const error_cognito_passwordPolicy: {
|
|
340
|
-
group: 'cognito';
|
|
341
|
-
type: 'cognito_passwordPolicy';
|
|
342
|
-
};
|
|
343
|
-
declare const error_cognito_passwordHistory: {
|
|
344
|
-
group: 'cognito';
|
|
345
|
-
type: 'cognito_passwordHistory';
|
|
346
|
-
};
|
|
347
|
-
declare const error_cognito_passwordResetRequired: {
|
|
348
|
-
group: 'cognito';
|
|
349
|
-
type: 'cognito_passwordResetRequired';
|
|
350
|
-
};
|
|
351
|
-
declare const error_cognito_codeExpired: {
|
|
352
|
-
group: 'cognito';
|
|
353
|
-
type: 'cognito_codeExpired';
|
|
354
|
-
};
|
|
355
|
-
declare const error_cognito_codeMismatch: {
|
|
356
|
-
group: 'cognito';
|
|
357
|
-
type: 'cognito_codeMismatch';
|
|
358
|
-
};
|
|
359
|
-
declare const error_cognito_delivery: {
|
|
360
|
-
group: 'cognito';
|
|
361
|
-
type: 'cognito_delivery';
|
|
362
|
-
};
|
|
363
|
-
declare const error_cognito_userExists: {
|
|
364
|
-
group: 'cognito';
|
|
365
|
-
type: 'cognito_userExists';
|
|
366
|
-
};
|
|
367
|
-
type type_error_cognito_forbidden = typeof error_cognito_forbidden;
|
|
368
|
-
type type_error_cognito_internal = typeof error_cognito_internal;
|
|
369
|
-
type type_error_cognito_role = typeof error_cognito_role;
|
|
370
|
-
type type_error_cognito_input = typeof error_cognito_input;
|
|
371
|
-
type type_error_cognito_auth = typeof error_cognito_auth;
|
|
372
|
-
type type_error_cognito_notFound = typeof error_cognito_notFound;
|
|
373
|
-
type type_error_cognito_userNotFound = typeof error_cognito_userNotFound;
|
|
374
|
-
type type_error_cognito_tooManyRequests = typeof error_cognito_tooManyRequests;
|
|
375
|
-
type type_error_cognito_passwordPolicy = typeof error_cognito_passwordPolicy;
|
|
376
|
-
type type_error_cognito_passwordHistory = typeof error_cognito_passwordHistory;
|
|
377
|
-
type type_error_cognito_passwordResetRequired = typeof error_cognito_passwordResetRequired;
|
|
378
|
-
type type_error_cognito_codeExpired = typeof error_cognito_codeExpired;
|
|
379
|
-
type type_error_cognito_codeMismatch = typeof error_cognito_codeMismatch;
|
|
380
|
-
type type_error_cognito_delivery = typeof error_cognito_delivery;
|
|
381
|
-
type type_error_cognito_userExists = typeof error_cognito_userExists;
|
|
382
|
-
type type_error_cognito = type_error_cognito_forbidden | type_error_cognito_internal | type_error_cognito_role | type_error_cognito_input | type_error_cognito_auth | type_error_cognito_notFound | type_error_cognito_userNotFound | type_error_cognito_tooManyRequests | type_error_cognito_passwordPolicy | type_error_cognito_passwordHistory | type_error_cognito_passwordResetRequired | type_error_cognito_codeExpired | type_error_cognito_codeMismatch | type_error_cognito_delivery | type_error_cognito_userExists;
|
|
383
|
-
/**
|
|
384
|
-
* Gets a generic error from the name of the aws error
|
|
385
|
-
*/
|
|
386
|
-
declare function error_cognito(error: Error): type_error_cognito;
|
|
387
|
-
/**
|
|
388
|
-
* Converts a cognito error to a lambda error.
|
|
389
|
-
* Basically just for narrowing it down a bit
|
|
390
|
-
*/
|
|
391
|
-
declare function error_lambda_fromCognito(e: type_error_cognito): {
|
|
392
|
-
type: 'lambda_badRequest';
|
|
393
|
-
message: string;
|
|
394
|
-
fieldName: string | undefined;
|
|
395
|
-
fieldValue: string | undefined;
|
|
396
|
-
} | {
|
|
397
|
-
type: 'lambda_unauthorized';
|
|
398
|
-
message: string;
|
|
399
|
-
} | {
|
|
400
|
-
type: 'lambda_forbidden';
|
|
401
|
-
message: string;
|
|
402
|
-
} | {
|
|
403
|
-
type: 'lambda_notFound';
|
|
404
|
-
message: string;
|
|
405
|
-
fieldName: string | undefined;
|
|
406
|
-
fieldValue: string | undefined;
|
|
407
|
-
} | {
|
|
408
|
-
type: 'lambda_conflict';
|
|
409
|
-
message: string;
|
|
410
|
-
fieldName: string | undefined;
|
|
411
|
-
fieldValue: string | undefined;
|
|
412
|
-
} | {
|
|
413
|
-
type: 'lambda_internal';
|
|
414
|
-
message: string;
|
|
313
|
+
/** Error wrapper for failures that happen while doing Cognito SDK work. */
|
|
314
|
+
type type_error_cognito = {
|
|
315
|
+
type: 'cognito';
|
|
316
|
+
error: unknown;
|
|
415
317
|
};
|
|
318
|
+
/** Internal reason used before converting Cognito errors into public lambda errors. */
|
|
319
|
+
type type_error_lambda_fromCognito_reason = 'auth' | 'forbidden' | 'invalidInput' | 'userNotFound' | 'resourceNotFound' | 'tooManyRequests' | 'passwordPolicy' | 'passwordHistory' | 'passwordResetRequired' | 'codeExpired' | 'codeMismatch' | 'delivery' | 'userExists' | 'conflict' | 'internal';
|
|
320
|
+
/** Per-reason public response override for endpoint-specific privacy and status choices. */
|
|
321
|
+
type type_error_lambda_fromCognito_override = {
|
|
322
|
+
message?: string;
|
|
323
|
+
} | Partial<type_error_lambda>;
|
|
324
|
+
/** Options for converting Cognito errors to lambda errors. */
|
|
325
|
+
type type_error_lambda_fromCognito_options = Partial<Record<type_error_lambda_fromCognito_reason, type_error_lambda_fromCognito_override>>;
|
|
326
|
+
/** Wrap an unknown caught value as a Cognito-domain error for neverthrow flows. */
|
|
327
|
+
declare function error_cognito(error: unknown): type_error_cognito;
|
|
328
|
+
/** Convert AWS SDK Cognito errors into a safe lambda error for API responses. */
|
|
329
|
+
declare function error_lambda_fromCognito(e: type_error_cognito, options?: type_error_lambda_fromCognito_options): type_error_lambda;
|
|
416
330
|
//#endregion
|
|
417
331
|
//#region src/cognito/user.d.ts
|
|
418
332
|
type type_userResponse = Omit<AdminGetUserCommandOutput, 'UserAttributes'> & {
|
|
@@ -588,10 +502,7 @@ declare const verifyOAuthToken: (a: {
|
|
|
588
502
|
refresh_token: string;
|
|
589
503
|
token_type: string;
|
|
590
504
|
expires_in: number;
|
|
591
|
-
},
|
|
592
|
-
group: 'cognito';
|
|
593
|
-
type: 'cognito_auth';
|
|
594
|
-
}>;
|
|
505
|
+
}, type_error_cognito>;
|
|
595
506
|
/**
|
|
596
507
|
* Exchanges an OAuth2 refresh token for Cognito tokens using the oauth token endpoint.
|
|
597
508
|
* See https://docs.aws.amazon.com/cognito/latest/developerguide/token-endpoint.html for request/response fields and grant details.
|
|
@@ -613,10 +524,7 @@ declare const refreshOAuthToken: (a: {
|
|
|
613
524
|
refresh_token: string | undefined;
|
|
614
525
|
token_type: string;
|
|
615
526
|
expires_in: number;
|
|
616
|
-
},
|
|
617
|
-
group: 'cognito';
|
|
618
|
-
type: 'cognito_auth';
|
|
619
|
-
}>;
|
|
527
|
+
}, type_error_cognito>;
|
|
620
528
|
//#endregion
|
|
621
529
|
//#region src/s3/client.d.ts
|
|
622
530
|
/**
|
|
@@ -625,17 +533,28 @@ declare const refreshOAuthToken: (a: {
|
|
|
625
533
|
declare function getS3(): S3Client;
|
|
626
534
|
//#endregion
|
|
627
535
|
//#region src/s3/errors.d.ts
|
|
628
|
-
|
|
629
|
-
|
|
536
|
+
/** Error wrapper for failures that happen while doing S3 SDK work. */
|
|
537
|
+
type type_error_s3 = {
|
|
538
|
+
type: 's3';
|
|
539
|
+
error: unknown;
|
|
630
540
|
};
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
type
|
|
635
|
-
|
|
541
|
+
/** Internal reason used before converting S3 errors into public lambda errors. */
|
|
542
|
+
type type_error_lambda_fromS3_reason = 'invalidInput' | 'objectNotFound' | 'bucketNotFound' | 'conflict' | 'throttled' | 'accessDenied' | 'internal';
|
|
543
|
+
/** Per-reason public response override for endpoint-specific privacy and status choices. */
|
|
544
|
+
type type_error_lambda_fromS3_override = {
|
|
545
|
+
message?: string;
|
|
546
|
+
} | Partial<type_error_lambda>;
|
|
547
|
+
/** Options for converting S3 errors to lambda errors. */
|
|
548
|
+
type type_error_lambda_fromS3_options = Partial<Record<type_error_lambda_fromS3_reason, type_error_lambda_fromS3_override>>;
|
|
549
|
+
/** Wrap an unknown caught value as an S3-domain error for neverthrow flows. */
|
|
550
|
+
declare function error_s3(error: unknown): type_error_s3;
|
|
551
|
+
/** Convert AWS SDK S3 errors into a safe lambda error for API responses. */
|
|
552
|
+
declare function error_lambda_fromS3(e: type_error_s3, options?: type_error_lambda_fromS3_options): type_error_lambda;
|
|
553
|
+
/** Returns true for normal S3 object-missing responses. */
|
|
554
|
+
declare function is_s3_notFound(error: unknown): boolean;
|
|
636
555
|
//#endregion
|
|
637
556
|
//#region src/s3/signedUrl.d.ts
|
|
638
|
-
declare const getSignedUrl: <InputTypesUnion extends object, InputType extends InputTypesUnion, OutputType extends _$_smithy_types0.MetadataBearer = _$_smithy_types0.MetadataBearer>(client: _$_aws_sdk_client_cognito_identity_provider0.__Client<any, InputTypesUnion, _$_smithy_types0.MetadataBearer, any>, command: _$_aws_sdk_client_cognito_identity_provider0.$Command<InputType, OutputType, any, InputTypesUnion, _$_smithy_types0.MetadataBearer>, options?: _$_smithy_types0.RequestPresigningArguments | undefined) => ResultAsync<string,
|
|
557
|
+
declare const getSignedUrl: <InputTypesUnion extends object, InputType extends InputTypesUnion, OutputType extends _$_smithy_types0.MetadataBearer = _$_smithy_types0.MetadataBearer>(client: _$_aws_sdk_client_cognito_identity_provider0.__Client<any, InputTypesUnion, _$_smithy_types0.MetadataBearer, any>, command: _$_aws_sdk_client_cognito_identity_provider0.$Command<InputType, OutputType, any, InputTypesUnion, _$_smithy_types0.MetadataBearer>, options?: _$_smithy_types0.RequestPresigningArguments | undefined) => ResultAsync<string, void>;
|
|
639
558
|
//#endregion
|
|
640
559
|
//#region src/s3/object.d.ts
|
|
641
560
|
/**
|
|
@@ -645,13 +564,11 @@ declare const getSignedUrl: <InputTypesUnion extends object, InputType extends I
|
|
|
645
564
|
* @param {string} key - The key of the object to retrieve.
|
|
646
565
|
* @returns {Promise<Buffer>} A promise that resolves to the object data as a Buffer.
|
|
647
566
|
*/
|
|
648
|
-
declare const getObject: (bucketName: string, key: string) => ResultAsync<Buffer<ArrayBufferLike>,
|
|
649
|
-
type: 's3_get';
|
|
650
|
-
}>;
|
|
567
|
+
declare const getObject: (bucketName: string, key: string) => ResultAsync<Buffer<ArrayBufferLike>, type_error_s3>;
|
|
651
568
|
/**
|
|
652
569
|
* Convenience function to get an object from S3 and return it as a string.
|
|
653
570
|
*/
|
|
654
|
-
declare function getObjectString(bucketName: string, key: string): ResultAsync<string,
|
|
571
|
+
declare function getObjectString(bucketName: string, key: string): ResultAsync<string, type_error_s3>;
|
|
655
572
|
/**
|
|
656
573
|
* Checks if an object exists in an s3 bucket by retrieving the HEAD data
|
|
657
574
|
*
|
|
@@ -659,24 +576,51 @@ declare function getObjectString(bucketName: string, key: string): ResultAsync<s
|
|
|
659
576
|
* @param {string} key - The key of the object to retrieve.
|
|
660
577
|
* @returns {Promise<Buffer>} A promise that resolves to a boolean.
|
|
661
578
|
*/
|
|
662
|
-
declare const objectExists: (bucketName: string, key: string) => ResultAsync<boolean,
|
|
663
|
-
type: 's3_get';
|
|
664
|
-
}>;
|
|
579
|
+
declare const objectExists: (bucketName: string, key: string) => ResultAsync<boolean, type_error_s3>;
|
|
665
580
|
//#endregion
|
|
666
581
|
//#region src/dynamo/errors.d.ts
|
|
667
|
-
|
|
582
|
+
/** Error wrapper for failures that happen while doing DynamoDB or DynamoDB Toolbox work. */
|
|
583
|
+
type type_error_dynamo = {
|
|
668
584
|
type: 'dynamo';
|
|
585
|
+
error: DynamoDBToolboxError | unknown;
|
|
669
586
|
};
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
587
|
+
/** Internal reason used before converting Dynamo-related errors into public lambda errors. */
|
|
588
|
+
type type_error_lambda_fromDynamo_reason = 'invalidInput' | 'conditionalCheckFailed' | 'transactionConflict' | 'resourceNotFound' | 'throttled' | 'accessDenied' | 'internal';
|
|
589
|
+
/** Per-reason public response override for endpoint-specific privacy and status choices. */
|
|
590
|
+
type type_error_lambda_fromDynamo_override = {
|
|
591
|
+
message?: string;
|
|
592
|
+
} | Partial<type_error_lambda>;
|
|
593
|
+
/** Options for converting Dynamo errors to lambda errors. */
|
|
594
|
+
type type_error_lambda_fromDynamo_options = Partial<Record<type_error_lambda_fromDynamo_reason, type_error_lambda_fromDynamo_override>> & {
|
|
595
|
+
/**
|
|
596
|
+
* By default DynamoDB and DynamoDB Toolbox details are not returned to clients.
|
|
597
|
+
* Set this to true only when the Toolbox path is already a public input field.
|
|
598
|
+
*/
|
|
599
|
+
includeToolboxPath?: boolean;
|
|
674
600
|
};
|
|
601
|
+
/** Wrap an unknown caught value as a Dynamo-domain error for neverthrow flows. */
|
|
602
|
+
declare function error_dynamo(error: unknown): type_error_dynamo;
|
|
603
|
+
/** Convert DynamoDB Toolbox or AWS SDK errors into a safe lambda error for API responses. */
|
|
604
|
+
declare function error_lambda_fromDynamo(e: type_error_dynamo, options?: type_error_lambda_fromDynamo_options): type_error_lambda;
|
|
675
605
|
//#endregion
|
|
676
606
|
//#region src/ses/errors.d.ts
|
|
677
|
-
|
|
607
|
+
/** Error wrapper for failures that happen while doing SES SDK work. */
|
|
608
|
+
type type_error_ses = {
|
|
678
609
|
type: 'ses';
|
|
610
|
+
error: unknown;
|
|
679
611
|
};
|
|
612
|
+
/** Internal reason used before converting SES errors into public lambda errors. */
|
|
613
|
+
type type_error_lambda_fromSes_reason = 'invalidInput' | 'messageRejected' | 'identityNotVerified' | 'notFound' | 'alreadyExists' | 'conflict' | 'throttled' | 'accessDenied' | 'internal';
|
|
614
|
+
/** Per-reason public response override for endpoint-specific privacy and status choices. */
|
|
615
|
+
type type_error_lambda_fromSes_override = {
|
|
616
|
+
message?: string;
|
|
617
|
+
} | Partial<type_error_lambda>;
|
|
618
|
+
/** Options for converting SES errors to lambda errors. */
|
|
619
|
+
type type_error_lambda_fromSes_options = Partial<Record<type_error_lambda_fromSes_reason, type_error_lambda_fromSes_override>>;
|
|
620
|
+
/** Wrap an unknown caught value as an SES-domain error for neverthrow flows. */
|
|
621
|
+
declare function error_ses(error: unknown): type_error_ses;
|
|
622
|
+
/** Convert AWS SDK SES errors into a safe lambda error for API responses. */
|
|
623
|
+
declare function error_lambda_fromSes(e: type_error_ses, options?: type_error_lambda_fromSes_options): type_error_lambda;
|
|
680
624
|
//#endregion
|
|
681
625
|
//#region node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts
|
|
682
626
|
// ## Interfaces
|
|
@@ -1112,8 +1056,12 @@ declare function readPackageJson(filePath: string): Promise<PackageJson | undefi
|
|
|
1112
1056
|
//#region src/utils/cli.d.ts
|
|
1113
1057
|
declare const colorText: (format: Parameters<typeof styleText>[0], text: unknown) => string;
|
|
1114
1058
|
//#endregion
|
|
1059
|
+
//#region src/utils/errors.d.ts
|
|
1060
|
+
declare function isRecord(value: unknown): value is Record<string, unknown>;
|
|
1061
|
+
declare function getErrorName(error: unknown): string | undefined;
|
|
1062
|
+
//#endregion
|
|
1115
1063
|
//#region src/types/safe.d.ts
|
|
1116
1064
|
type SafeOmit<T, K extends keyof any> = T extends any ? Omit<T, K> : never;
|
|
1117
1065
|
//#endregion
|
|
1118
|
-
export { APIGatewayHandler, ApiEndpoints, ApiErrorBody, ApiInput, ApiOutput, ApiRequestFunction, ApiResponse, ApiSchema, ApiSuccessBody, CleanResponse, DeepOverride, DeepPartial, DeepRequired, ErrorBody, ErrorCode, ErrorRawProxyResultV2, FetchResponse, GetSchemaByPathOptions, HTTPMethod, HTTPMethods, LambdaErrorResponse, OkRawProxyResultV2, RawApiGatewayHandler, RawProxyResultV2, SafeOmit, SuccessCode, Toc, TocEntry, changePassword, colorText, computeSecretHash, confirmForgotPassword, confirmSignup, createApiRequest, deepDiff, error_cognito,
|
|
1066
|
+
export { APIGatewayHandler, ApiEndpoints, ApiErrorBody, ApiInput, ApiOutput, ApiRequestFunction, ApiResponse, ApiSchema, ApiSuccessBody, CleanResponse, DeepOverride, DeepPartial, DeepRequired, ErrorBody, ErrorCode, ErrorRawProxyResultV2, FetchResponse, GetSchemaByPathOptions, HTTPMethod, HTTPMethods, LambdaErrorResponse, OkRawProxyResultV2, RawApiGatewayHandler, RawProxyResultV2, SafeOmit, SuccessCode, Toc, TocEntry, changePassword, colorText, computeSecretHash, confirmForgotPassword, confirmSignup, createApiRequest, deepDiff, error_cognito, error_dynamo, error_lambda_badRequest, error_lambda_conflict, error_lambda_forbidden, error_lambda_fromCognito, error_lambda_fromDynamo, error_lambda_fromS3, error_lambda_fromSes, error_lambda_internal, error_lambda_notFound, error_lambda_unauthorized, error_s3, error_ses, exists, extractAttributes, extractToc, forgotPassword, getByPath, getCognitoClient, getCookies, getErrorName, getObject, getObjectString, getS3, getSchemaByPath, getSignedUrl, getUserDetails, getUserGroups, isRecord, isSchema, is_s3_notFound, login, logout, objectExists, parseRaw, pruneToShape, readPackageJson, refreshOAuthToken, refreshTokens, resetPassword, response_error, response_ok, response_valibotError, setByPath, signUp, type_error_cognito, type_error_dynamo, type_error_lambda, type_error_lambda_badRequest, type_error_lambda_conflict, type_error_lambda_forbidden, type_error_lambda_fromCognito_options, type_error_lambda_fromCognito_reason, type_error_lambda_fromDynamo_options, type_error_lambda_fromDynamo_reason, type_error_lambda_fromS3_options, type_error_lambda_fromS3_reason, type_error_lambda_fromSes_options, type_error_lambda_fromSes_reason, type_error_lambda_internal, type_error_lambda_notFound, type_error_lambda_unauthorized, type_error_response, type_error_s3, type_error_ses, type_userResponse, unwrap, verifyOAuthToken, wrapHandler, writeIfDifferent };
|
|
1119
1067
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":["Data","Point","line","column","offset","Position","start","end","Literal","Node","value","type","data","position","Parent","children","Data","UnistData","Literal","UnistLiteral","Node","UnistNode","Parent","UnistParent","Properties","Array","PropertyName","ElementContent","ElementContentMap","Comment","Element","Text","comment","element","text","RootContent","RootContentMap","Doctype","doctype","Content","Literals","Nodes","Extract","Root","Parents","data","value","children","CommentData","type","DoctypeData","ElementData","tagName","properties","content","RootData","TextData"],"sources":["../src/lambda/handlerUtils.ts","../src/lambda/client-types.ts","../src/lambda/client.ts","../src/lambda/errors.ts","../src/lambda/response.ts","../src/lambda/server/authentication.ts","../src/cognito/client.ts","../src/cognito/errors.ts","../src/cognito/user.ts","../src/cognito/password.ts","../src/s3/client.ts","../src/s3/errors.ts","../src/s3/signedUrl.ts","../src/s3/object.ts","../src/dynamo/errors.ts","../src/ses/errors.ts","../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../node_modules/.pnpm/@types+hast@3.0.4/node_modules/@types/hast/index.d.ts","../src/rehype/flat-toc.ts","../src/utils/valibot.ts","../src/types/deep.ts","../src/utils/object.ts","../src/utils/fs.ts","../src/utils/cli.ts","../src/types/safe.ts"],"x_google_ignoreList":[16,17],"mappings":";;;;;;;;;;;;;;KAGY,WAAA;AAAA,KACA,SAAA;AAAA,KAEA,SAAA;EAAc,OAAA;EAAiB,KAAA;IAAU,IAAA;IAAc,KAAA;EAAA;AAAA;;;;KAKvD,qBAAA;EACV,UAAA,EAAY,SAAA;EACZ,OAAA;IAAA,CAAa,MAAA;EAAA;EACb,IAAA,GAAO,SAAA;EACP,eAAA;EACA,OAAA;AAAA;AAAA,KAGU,kBAAA;EACV,UAAA,EAAY,WAAA;EACZ,OAAA;IAAA,CAAa,MAAA;EAAA;EACb,IAAA;EACA,eAAA;EACA,OAAA;AAAA;;;;KAKU,gBAAA,GAAmB,qBAAA,GAAwB,kBAAA;AAAA,KAG3C,iBAAA,OAAwB,KAAA,EAAO,CAAA,EAAG,OAAA,EAAS,OAAA,KAAY,OAAA,CAAQ,uBAAA;AAAA,KAG/D,oBAAA,WAA+B,0CAAA,UACzC,KAAA,EAAO,CAAA,EACP,OAAA,EAAS,OAAA,KACN,OAAA,CAAQ,gBAAA;;;;;;;;;;;;AAnBb;;;iBAmCgB,WAAA,WAAsB,0CAAA,MAAA,CACpC,OAAA,EAAS,oBAAA,CAAqB,CAAA,IAC7B,iBAAA,CAAkB,CAAA;;;;;;;;;KC7CT,QAAA,WAAmB,YAAA,YAAwB,CAAA,oBAAqB,CAAA,cAAe,OAAA,CACzF,CAAA;EACE,IAAA,EAAM,CAAA;EAAG,MAAA,EAAQ,CAAA;AAAA;;;;ADVrB;;;KCmBY,SAAA,WAAoB,YAAA,YAAwB,CAAA,oBAAqB,CAAA,cAAe,OAAA,CAC1F,CAAA;EACE,IAAA,EAAM,CAAA;EAAG,MAAA,EAAQ,CAAA;AAAA;;;;ADlBrB;;;KC2BY,WAAA,WAAsB,YAAA,YAAwB,CAAA,oBAAqB,CAAA,cAAe,OAAA,CAC5F,CAAA;EACE,IAAA,EAAM,CAAA;EAAG,MAAA,EAAQ,CAAA;AAAA;;;;ADxBrB;;;KCiCY,cAAA,WAAyB,YAAA,YAAwB,CAAA,oBAAqB,CAAA,cAAe,OAAA,CAC/F,OAAA,CAAQ,CAAA;EAAK,IAAA,EAAM,CAAA;EAAG,MAAA,EAAQ,CAAA;AAAA;EAC5B,MAAA,EAAQ,WAAA;AAAA,0BACY,OAAA,aACpB,CAAA;;;;;;AD7BJ;KCsCY,YAAA,WAAuB,YAAA,YAAwB,CAAA,oBAAqB,CAAA,cAAe,OAAA,CAC7F,OAAA,CAAQ,CAAA;EAAK,IAAA,EAAM,CAAA;EAAG,MAAA,EAAQ,CAAA;AAAA;EAC5B,MAAA,EAAQ,SAAA;AAAA,0BACY,OAAA,aACpB,CAAA;;;;KAMC,cAAA,MAAoB,CAAA;EAAY,UAAA;EAAoB,IAAA;EAAc,OAAA;AAAA;EACjE,EAAA,EAAI,CAAA,uBAAwB,WAAA;EAA4B,IAAA,QAAY,OAAA,CAAQ,CAAA;EAAY,MAAA,EAAQ,CAAA;AAAA,IAClG,CAAA;AAAA,KAEQ,aAAA,GAAgB,IAAA,CAAK,QAAA;AAAA,KACrB,aAAA,eAA4B,IAAA,iBAAqB,cAAA,CAAe,OAAA,CAAQ,UAAA,CAAW,CAAA,MAAO,aAAA;AAAA,cAKzF,WAAA;AAAA,KACD,UAAA,WAAqB,WAAA;AAAA,KAErB,YAAA;EACV,IAAA;EACA,MAAA,EAAQ,UAAA;EACR,YAAA,EAAc,MAAA;EACd,aAAA;EACA,QAAA,EAAU,aAAA,OAEF,OAAA;IACA,OAAA;IAAiB,UAAA,EAAY,WAAA;IAAa,IAAA;EAAA;IAC1C,OAAA;IAAiB,UAAA,EAAY,SAAA;IAAW,IAAA,EAAM,SAAA;EAAA;AAAA;;;cCvBlD,aAAA;AAAA,KACD,YAAA,WAAqB,aAAA;AAAA,KAEd,kBAAA,aAA+B,YAAA,kBAC5B,GAAA,yBACE,OAAA,CAAQ,GAAA;EAAO,IAAA,EAAM,IAAA;AAAA,cAEpC,IAAA,EAAM,IAAA,EACN,MAAA,EAAQ,MAAA,EACR,KAAA,EAAO,QAAA,CAAS,GAAA,EAAK,IAAA,EAAM,MAAA,GAC3B,OAAA,GAAU,WAAA,KACP,OAAA,CAAQ,WAAA,CAAY,GAAA,EAAK,IAAA,EAAM,MAAA;AAAA,KAExB,SAAA,GAAY,CAAA,CAAE,aAAA,GAAgB,CAAA,CAAE,kBAAA;;;;;iBAM5B,gBAAA,aAA6B,YAAA,CAAA,CAC3C,OAAA,EAAS,OAAA,CAAQ,MAAA,CAAO,GAAA,UAAa,OAAA,CAAQ,MAAA,CAAO,YAAA,EAAY,SAAA,MAChE,MAAA,UACA,GAAA,WACC,kBAAA,CAAmB,GAAA;;;;;;;;;;;cChFT,uBAAA,GAAuB,OAAA,UAAmB,SAAA,WAAoB,UAAA;;;;;;cAM9D,yBAAA,GAAyB,OAAA;;;;cAEzB,sBAAA,GAAsB,OAAA;;;;cAEtB,qBAAA,GAAqB,OAAA,UAAmB,SAAA,WAAoB,UAAA;;;;;;cAO5D,qBAAA,GAAqB,OAAA,UAAmB,SAAA,WAAoB,UAAA;;;;;;cAO5D,qBAAA,GAAqB,OAAA;;;;KAEtB,4BAAA,GAA+B,UAAA,QAAkB,uBAAA;AAAA,KACjD,8BAAA,GAAiC,UAAA,QAAkB,yBAAA;AAAA,KACnD,2BAAA,GAA8B,UAAA,QAAkB,sBAAA;AAAA,KAChD,0BAAA,GAA6B,UAAA,QAAkB,qBAAA;AAAA,KAC/C,0BAAA,GAA6B,UAAA,QAAkB,qBAAA;AAAA,KAC/C,0BAAA,GAA6B,UAAA,QAAkB,qBAAA;AAAA,KAE/C,iBAAA,GACR,4BAAA,GACA,8BAAA,GACA,2BAAA,GACA,0BAAA,GACA,0BAAA,GACA,0BAAA;;;iBC3CK,KAAA,CAAM,GAAA;EAAO,SAAA;EAAoB,UAAA;AAAA;;;;IAGzB,IAAA;IAAqB,KAAA;EAAA;AAAA;AAAA,KAG1B,mBAAA,GAAsB,IAAA,CAAK,qBAAA;EACrC,OAAA,EAAS,WAAA,CAAY,qBAAA;EACrB,IAAA,EAAM,WAAA,CAAY,qBAAA;AAAA;AAAA,KAGR,mBAAA;EAEN,OAAA,EAAS,MAAA;EACT,UAAA;EACA,IAAA;IAAQ,OAAA;IAAiB,IAAA,EAAM,IAAA;EAAA,IAAS,UAAA,QAAkB,KAAA,IAAS,MAAA;AAAA;EAEnE,OAAA,EAAS,MAAA;EAAwB,UAAA;EAAiB,IAAA;IAAQ,OAAA;IAAiB,IAAA,EAAM,IAAA;EAAA,IAAS,MAAA;AAAA;EAC1F,OAAA,EAAS,MAAA;EAAwB,UAAA;EAAiB,IAAA;IAAQ,OAAA;IAAiB,IAAA,EAAM,IAAA;EAAA,IAAS,MAAA;AAAA;EAE1F,OAAA,EAAS,MAAA;EACT,UAAA;EACA,IAAA;IAAQ,OAAA;IAAiB,IAAA,EAAM,IAAA;EAAA,IAAS,UAAA,QAAkB,KAAA,IAAS,MAAA;AAAA;EAGnE,OAAA,EAAS,MAAA;EACT,UAAA;EACA,IAAA;IAAQ,OAAA;IAAiB,IAAA,EAAM,IAAA;EAAA,IAAS,UAAA,QAAkB,KAAA,IAAS,MAAA;AAAA;EAEnE,OAAA,EAAS,MAAA;EAAwB,UAAA;EAAiB,IAAA;IAAQ,OAAA;IAAiB,IAAA,EAAM,IAAA;EAAA,IAAS,MAAA;AAAA;AAAA,iBAEhF,cAAA,sDAAA,CACd,CAAA,EAAG,iBAAA,EACH,OAAA,EAAS,MAAA,kBACT,IAAA,GAAM,IAAA,EACN,MAAA,GAAQ,MAAA,GACP,mBAAA,CAAoB,IAAA,EAAM,MAAA;;;;;AJT7B;iBIoCgB,qBAAA,CAAsB,GAAA,EAAK,OAAA,CAAQ,eAAA;EAAwB,OAAA;AAAA,IAAmB,OAAA,QAAY,mBAAA;AAAA,iBAU1F,WAAA;EAA2B,OAAA;AAAA,EAAA,CACzC,IAAA,EAAM,IAAA,EACN,OAAA,OACA,OAAA;;;;QAFM,IAAA;AAAA;;;;;;cCvEK,UAAA,GAAU,KAAA,EAAA,0CAAA,QAAA,kCAAA,KAAA,MAAA,CAAA,QAAA,CAAA,OAAA;;;;;;;;;iBCHP,gBAAA,CAAA,GAAgB,6BAAA;;;cCInB,uBAAA;EAA4B,KAAA;EAA2B,IAAA;AAAA;AAAA,cACvD,sBAAA;EAA2B,KAAA;EAA2B,IAAA;AAAA;AAAA,cACtD,kBAAA;EAAuB,KAAA;EAA2B,IAAA;AAAA;AAAA,cAClD,mBAAA;EAAwB,KAAA;EAA2B,IAAA;AAAA;AAAA,cACnD,kBAAA;EAAuB,KAAA;EAA2B,IAAA;AAAA;AAAA,cAClD,sBAAA;EAA2B,KAAA;EAA2B,IAAA;AAAA;AAAA,cACtD,0BAAA;EAA+B,KAAA;EAA2B,IAAA;AAAA;AAAA,cAC1D,6BAAA;EAAkC,KAAA;EAA2B,IAAA;AAAA;AAAA,cAC7D,4BAAA;EAAiC,KAAA;EAA2B,IAAA;AAAA;AAAA,cAC5D,6BAAA;EAAkC,KAAA;EAA2B,IAAA;AAAA;AAAA,cAC7D,mCAAA;EACX,KAAA;EACA,IAAA;AAAA;AAAA,cAIW,yBAAA;EAA8B,KAAA;EAA2B,IAAA;AAAA;AAAA,cACzD,0BAAA;EAA+B,KAAA;EAA2B,IAAA;AAAA;AAAA,cAG1D,sBAAA;EAA2B,KAAA;EAA2B,IAAA;AAAA;AAAA,cAEtD,wBAAA;EAA6B,KAAA;EAA2B,IAAA;AAAA;AAAA,KAEzD,4BAAA,UAAsC,uBAAA;AAAA,KACtC,2BAAA,UAAqC,sBAAA;AAAA,KACrC,uBAAA,UAAiC,kBAAA;AAAA,KACjC,wBAAA,UAAkC,mBAAA;AAAA,KAClC,uBAAA,UAAiC,kBAAA;AAAA,KACjC,2BAAA,UAAqC,sBAAA;AAAA,KACrC,+BAAA,UAAyC,0BAAA;AAAA,KACzC,kCAAA,UAA4C,6BAAA;AAAA,KAC5C,iCAAA,UAA2C,4BAAA;AAAA,KAC3C,kCAAA,UAA4C,6BAAA;AAAA,KAC5C,wCAAA,UAAkD,mCAAA;AAAA,KAClD,8BAAA,UAAwC,yBAAA;AAAA,KACxC,+BAAA,UAAyC,0BAAA;AAAA,KACzC,2BAAA,UAAqC,sBAAA;AAAA,KACrC,6BAAA,UAAuC,wBAAA;AAAA,KAEvC,kBAAA,GACR,4BAAA,GACA,2BAAA,GACA,uBAAA,GACA,wBAAA,GACA,uBAAA,GACA,2BAAA,GACA,+BAAA,GACA,kCAAA,GACA,iCAAA,GACA,kCAAA,GACA,wCAAA,GACA,8BAAA,GACA,+BAAA,GACA,2BAAA,GACA,6BAAA;;;;iBA8CY,aAAA,CAAc,KAAA,EAAO,KAAA,GAAQ,kBAAA;;;;;iBAa7B,wBAAA,CAAyB,CAAA,EAAG,kBAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;KChHhC,iBAAA,GAAoB,IAAA,CAAK,yBAAA;EACnC,cAAA,EAAgB,MAAA;AAAA;;;;cAML,cAAA,GAAc,CAAA;;;;;;ARf3B;iBQ+BgB,iBAAA,CAAkB,KAAA,EAAO,aAAA,iBAA2B,MAAA;;;;cAevD,aAAA,GAAa,CAAA;;;kBAazB,4CAAA,CAAA,mCAAA;;;;;;;;;;iBCrCe,iBAAA,CAAkB,QAAA,UAAkB,QAAA,UAAkB,YAAA;;;;;ATtBtE;;;cSsCa,cAAA,GAAc,WAAA,UAAA,WAAA,UAAA,WAAA,aAAA,WAAA,CAe1B,4CAAA,CAf0B,2BAAA,EAAA,kBAAA;;ATrC3B;;;;;AAEA;;;cS+Da,qBAAA,GAAqB,CAAA;;;;;;kBAiBjC,4CAAA,CAAA,kCAAA;AT3ED;;;;;;;;AAAA,cSuFa,aAAA,GAAa,CAAA;;;;;kBAgBzB,4CAAA,CAAA,0BAAA;AT/FD;;;;;;;AAAA,cS0Ga,cAAA,GAAc,CAAA;;;;kBAe1B,4CAAA,CAAA,2BAAA;;AT/GD;;;;;AAGA;;;cSyHa,KAAA,GAAK,CAAA;;;;;;kBAoBjB,4CAAA,CAAA,8BAAA;;;;;;;;;AT1ID;cSuJa,aAAA,GAAa,CAAA;;;;;;kBAmBzB,4CAAA,CAAA,8BAAA;;;;;;cAQY,MAAA,GAAM,WAAA,aAAA,WAAA,CAUlB,4CAAA,CAVkB,0BAAA,EAAA,kBAAA;;;;;;;AT/JnB;;;cSqLa,aAAA,GAAa,CAAA;;;;;;kBAoBzB,4CAAA,CAAA,mCAAA;;;;;;;;;;cAYY,MAAA,GAAM,CAAA;;;;;;;;;;;;;;;;;cAmCN,gBAAA,GAAgB,CAAA;;;;;;MAmC5B,WAAA;;;;;;;;;;;;;;;;;;;;cAYY,iBAAA,GAAiB,CAAA;;;;;MAgC7B,WAAA;;;;;;;;;;;;;;;iBCxXe,KAAA,CAAA,GAAK,QAAA;;;cCLR,iBAAA;EAAsB,IAAA;AAAA;AAAA,cACtB,YAAA;EAAiB,IAAA;AAAA;AAAA,KAElB,sBAAA,UAAgC,iBAAA;AAAA,KAChC,iBAAA,UAA2B,YAAA;;;cCD1B,YAAA,qDAAY,eAAA,qBAAA,gBAAA,CAAA,cAAA,GAAA,gBAAA,CAAA,cAAA,EAAA,MAAA,EAAA,4CAAA,CAAA,QAAA,MAAA,eAAA,EAAA,gBAAA,CAAA,cAAA,QAAA,OAAA,EAAA,4CAAA,CAAA,QAAA,CAAA,SAAA,EAAA,UAAA,OAAA,eAAA,EAAA,gBAAA,CAAA,cAAA,GAAA,OAAA,GAAA,gBAAA,CAAA,0BAAA,iBAAA,WAAA;;;;;;;;;;cCUZ,SAAA,GAAS,UAAA,UAAA,GAAA,aAAA,WAAA,CAAA,MAAA,CAAA,eAAA;;;;;AbVtB;iBagCgB,eAAA,CAAgB,UAAA,UAAoB,GAAA,WAAc,WAAA,gBAA2B,YAAA;;;;Ab/B7F;;;;ca0Ca,YAAA,GAAY,UAAA,UAAA,GAAA,aAAA,WAAA;;;;;cC5CZ,YAAA;EAAiB,IAAA;AAAA;AAAA,KAElB,iBAAA,UAA2B,YAAA;AAAA,iBAEvB,uBAAA,CAAwB,EAAA,EAAI,iBAAA;;;;;;cCN/B,SAAA;EAAc,IAAA;AAAA;;;;;;;;;;;;;;;;AfG3B;;;;;AACA;;UgBiBiBA,MAAAA;;AhBfjB;;UgBoBiBC,KAAAA;EhBpBI;;;EgBwBjBC,IAAAA;EhBxBoE;;AAKxE;EgBwBIC,MAAAA;;;;EAIAC,MAAAA;AAAAA;;;;;;UAQaC,QAAAA;EhB5BL;;;EgBgCRC,KAAAA,EAAOL,KAAAA;EhB/BG;;;EgBoCVM,GAAAA,EAAKN,KAAAA;AAAAA;;;;;;;;;;AhBrBT;UgBkDiBQ,MAAAA;EhBlDe;;;EgBsD5BE,IAAAA;EhBnDC;;;EgBwDDC,IAAAA,GAAOZ,MAAAA;EhB1DF;;;;;;EgBkELa,QAAAA,GAAWR,QAAAA;AAAAA;;;;;;;;;;;;;;AhBnGf;;;;;AACA;;;UiBkBiBW,IAAAA,SAAaC,MAAAA;AjBhB9B;;;AAAA,UiBqBiBO,UAAAA;EAAAA,CACZE,YAAAA,0DAAsED,KAAAA;AAAAA;AAAAA;;AjBjB3E;;;;;KiB4BYE,cAAAA,GAAiBC,iBAAAA,OAAwBA,iBAAAA;;;;;;UAOpCA,iBAAAA;EACbI,OAAAA,EAASH,OAAAA;EACTI,OAAAA,EAASH,OAAAA;EACTI,IAAAA,EAAMH,IAAAA;AAAAA;;;;;;;KASEI,WAAAA,GAAcC,cAAAA,OAAqBA,cAAAA;;AjB7B/C;;;;;AAGA;;UiBoCiBA,cAAAA;EACbJ,OAAAA,EAASH,OAAAA;EACTS,OAAAA,EAASD,OAAAA;EACTJ,OAAAA,EAASH,OAAAA;EACTI,IAAAA,EAAMH,IAAAA;AAAAA;AAAAA;;;;;;;;;;;;;;UAsDOX,IAAAA,SAAaC,MAAAA;EhBnHV;;;EgBuHhBwB,IAAAA,GAAO7B,IAAAA;AAAAA;;;;;;;;UAUME,OAAAA,SAAgBE,IAAAA;EhBjIsB;;;EgBqInD0B,KAAAA;AAAAA;;;;;;AhB1HJ;;UgBoIiBxB,MAAAA,SAAeF,IAAAA;EhBpIA;;;EgBwI5B2B,QAAAA,EAAUZ,WAAAA;AAAAA;AAAAA;;;;UAQGN,OAAAA,SAAgBX,OAAAA;EhBhJuB;;;EgBoJpD+B,IAAAA;EhBnJF;;;EgBuJEJ,IAAAA,GAAOG,WAAAA;AAAAA;;AhB7IX;;UgBmJiBA,WAAAA,SAAoBhC,IAAAA;;;;UAKpBqB,OAAAA,SAAgBhB,MAAAA;EhBtJZ;;;EgB0JjB4B,IAAAA;EhB5JoB;;;EgBgKpBJ,IAAAA,GAAOK,WAAAA;AAAAA;;;;UAMMA,WAAAA,SAAoBlC,IAAAA;;;;UAKpBc,OAAAA,SAAgBR,MAAAA;EhBhKP;;;EgBoKtB2B,IAAAA;EhBpK8E;;;EgBwK9EG,OAAAA;EhBvKF;;;EgB2KEC,UAAAA,EAAY7B,UAAAA;EhBzKe;;;EgB6K3BuB,QAAAA,EAAUpB,cAAAA;EhBhLqC;;;;EgBqL/C2B,OAAAA,GAAUX,IAAAA;EhBpLZ;;;EgBwLEE,IAAAA,GAAOM,WAAAA;AAAAA;;;;UAMMA,WAAAA,SAAoBnC,IAAAA;;;AhBlLrC;;;;;UgB2LiB2B,IAAAA,SAAarB,MAAAA;EhB1LpB;;;EgB8LN2B,IAAAA;EhB7LQ;;;EgBiMRF,QAAAA,EAAUZ,WAAAA;EhBhMiB;;;EgBoM3BU,IAAAA,GAAOU,QAAAA;AAAAA;;;;UAMMA,QAAAA,SAAiBvC,IAAAA;;;;UAKjBe,IAAAA,SAAab,OAAAA;EhBhNlB;;;EgBoNR+B,IAAAA;EhBlNC;;AACO;EgBqNRJ,IAAAA,GAAOW,QAAAA;AAAAA;;;;UAMMA,QAAAA,SAAiBxC,IAAAA;;;;;;;;;cC7QrB,UAAA,EAAY,MAAA,KAAW,IAAA;AAAA,KAQxB,GAAA,GAAM,QAAA;AAAA,KACN,QAAA;EAAa,KAAA;EAAe,EAAA;EAAY,KAAA;AAAA;;;;iBAoBpC,QAAA,CAAS,GAAA,WAAc,OAAA;;;iBCvCvB,QAAA,CAAS,CAAA,YAAa,CAAA,IAAK,aAAA;AAAA,iBAI3B,MAAA,CAAO,MAAA,EAAQ,aAAA,GAAgB,aAAA;AAAA,KAmBnC,sBAAA;;;;;EAKV,YAAA;AAAA;AAAA,iBAGc,eAAA,CACd,IAAA,EAAM,aAAA,GAAgB,kBAAA,EACtB,IAAA,UACA,IAAA,GAAM,sBAAA,GACL,aAAA;;;;;;;;;;;;;;KC1BS,YAAA,uBACE,CAAA,GAAI,CAAA,eAAgB,CAAA,GAC5B,CAAA,CAAE,CAAA,qBACA,EAAA,SAAW,MAAA,gBACT,CAAA,CAAE,CAAA,UAAW,MAAA,gBACX,YAAA,CAAa,CAAA,CAAE,CAAA,GAAI,EAAA,IACnB,EAAA,GACF,EAAA,SAAW,KAAA,aACT,CAAA,CAAE,CAAA,UAAW,KAAA,aACX,KAAA,CAAM,YAAA,CAAa,EAAA,EAAI,EAAA,KACvB,EAAA,GACF,EAAA,WAEN,CAAA,CAAE,CAAA;AAAA,KAIH,SAAA,oEAA6E,IAAA,GAAO,MAAA,GAAS,QAAA;AAAA,KAEtF,WAAA,MAAiB,CAAA,SAAU,SAAA,GACnC,CAAA,GACA,CAAA,yCACW,CAAA,KACT,CAAA,gCACgB,CAAA,IAAK,WAAA,CAAY,CAAA,CAAE,CAAA,OACjC,CAAA;AAAA,KAEI,YAAA,oBAEE,CAAA,KAAM,WAAA,CAAY,CAAA,CAAE,CAAA,oBAAqB,CAAA,CAAE,CAAA,UAAW,QAAA,GAAW,CAAA,CAAE,CAAA,IAAK,YAAA,CAAa,CAAA,CAAE,CAAA,MAAO,CAAA,CAAE,CAAA;;;;;;;;;;iBC7B9F,SAAA,kBAAA,CAA4B,GAAA,EAAK,CAAA,EAAG,IAAA,UAAc,KAAA,QAAa,CAAA;;;;;;ArBR/E;iBqBkCgB,SAAA,kBAAA,CAA4B,GAAA,EAAK,CAAA,EAAG,IAAA;;;;ArBjCpD;;;;;AAEA;;;;;;;;;;AAKA;;cqB6Da,QAAA,uCAA8C,CAAA,EAAK,CAAA,EAAC,CAAA,EAAK,CAAA,KAAI,WAAA,CAAY,CAAA;;;;;;;;;;;;ArBrDtF;;;;;;;;;;;;iBqBoGgB,YAAA,OAAA,CAAoB,MAAA,EAAQ,CAAA,EAAG,KAAA,EAAO,EAAA,GAAK,EAAA;;;;;;iBC9GrC,MAAA,CAAO,QAAA,WAAmB,OAAA;;;;;iBAa1B,gBAAA,CAAiB,QAAA,UAAkB,OAAA,WAAkB,OAAA;;;;iBA4BrD,eAAA,CAAgB,QAAA,WAAmB,OAAA,CAAQ,WAAA;;;cChDpD,SAAA,GAAS,MAAA,EAAY,UAAA,QAAkB,SAAA,MAAa,IAAA;;;KCFrD,QAAA,2BAAmC,CAAA,eAAgB,IAAA,CAAK,CAAA,EAAG,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":["Data","Point","line","column","offset","Position","start","end","Literal","Node","value","type","data","position","Parent","children","Data","UnistData","Literal","UnistLiteral","Node","UnistNode","Parent","UnistParent","Properties","Array","PropertyName","ElementContent","ElementContentMap","Comment","Element","Text","comment","element","text","RootContent","RootContentMap","Doctype","doctype","Content","Literals","Nodes","Extract","Root","Parents","data","value","children","CommentData","type","DoctypeData","ElementData","tagName","properties","content","RootData","TextData"],"sources":["../src/lambda/handlerUtils.ts","../src/lambda/client-types.ts","../src/lambda/client.ts","../src/lambda/errors.ts","../src/lambda/response.ts","../src/lambda/server/authentication.ts","../src/cognito/client.ts","../src/cognito/errors.ts","../src/cognito/user.ts","../src/cognito/password.ts","../src/s3/client.ts","../src/s3/errors.ts","../src/s3/signedUrl.ts","../src/s3/object.ts","../src/dynamo/errors.ts","../src/ses/errors.ts","../node_modules/.pnpm/@types+unist@3.0.3/node_modules/@types/unist/index.d.ts","../node_modules/.pnpm/@types+hast@3.0.4/node_modules/@types/hast/index.d.ts","../src/rehype/flat-toc.ts","../src/utils/valibot.ts","../src/types/deep.ts","../src/utils/object.ts","../src/utils/fs.ts","../src/utils/cli.ts","../src/utils/errors.ts","../src/types/safe.ts"],"x_google_ignoreList":[16,17],"mappings":"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"}
|