@bitblit/ratchet-aws 4.0.183-alpha → 4.0.184-alpha

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.
Files changed (103) hide show
  1. package/lib/batch/aws-batch-background-processor.d.ts +8 -0
  2. package/lib/batch/aws-batch-background-processor.spec.d.ts +1 -0
  3. package/lib/batch/aws-batch-ratchet.d.ts +13 -0
  4. package/lib/batch/aws-batch-ratchet.spec.d.ts +1 -0
  5. package/lib/build/ratchet-aws-info.d.ts +5 -0
  6. package/lib/cache/dynamo-db-storage-provider.d.ts +25 -0
  7. package/lib/cache/s3-storage-provider.d.ts +14 -0
  8. package/lib/cache/simple-cache-object-wrapper.d.ts +7 -0
  9. package/lib/cache/simple-cache-read-options.d.ts +5 -0
  10. package/lib/cache/simple-cache-storage-provider.d.ts +8 -0
  11. package/lib/cache/simple-cache.d.ts +14 -0
  12. package/lib/cache/simple-cache.spec.d.ts +1 -0
  13. package/lib/cloudwatch/cloud-watch-log-group-ratchet.d.ts +10 -0
  14. package/lib/cloudwatch/cloud-watch-log-group-ratchet.spec.d.ts +1 -0
  15. package/lib/cloudwatch/cloud-watch-logs-ratchet.d.ts +15 -0
  16. package/lib/cloudwatch/cloud-watch-logs-ratchet.spec.d.ts +1 -0
  17. package/lib/cloudwatch/cloud-watch-metrics-ratchet.d.ts +11 -0
  18. package/lib/cloudwatch/cloud-watch-metrics-ratchet.spec.d.ts +1 -0
  19. package/lib/daemon/daemon-like.d.ts +17 -0
  20. package/lib/daemon/daemon-process-create-options.d.ts +7 -0
  21. package/lib/daemon/daemon-process-state-public-token.d.ts +4 -0
  22. package/lib/daemon/daemon-process-state.d.ts +13 -0
  23. package/lib/daemon/daemon-stream-data-options.d.ts +3 -0
  24. package/lib/daemon/daemon-util.d.ts +19 -0
  25. package/lib/daemon/daemon-util.spec.d.ts +4 -0
  26. package/lib/daemon/daemon.d.ts +33 -0
  27. package/lib/dao/prototype-dao-config.d.ts +8 -0
  28. package/lib/dao/prototype-dao-db.d.ts +4 -0
  29. package/lib/dao/prototype-dao-provider.d.ts +5 -0
  30. package/lib/dao/prototype-dao.d.ts +15 -0
  31. package/lib/dao/prototype-dao.spec.d.ts +8 -0
  32. package/lib/dao/s3-prototype-dao-provider.d.ts +10 -0
  33. package/lib/dao/s3-simple-dao.d.ts +15 -0
  34. package/lib/dao/simple-dao-item.d.ts +5 -0
  35. package/lib/dynamodb/dynamo-ratchet-like.d.ts +27 -0
  36. package/lib/dynamodb/dynamo-ratchet.d.ts +37 -0
  37. package/lib/dynamodb/dynamo-ratchet.spec.d.ts +1 -0
  38. package/lib/dynamodb/dynamo-table-ratchet.d.ts +13 -0
  39. package/lib/dynamodb/dynamo-table-ratchet.spec.d.ts +1 -0
  40. package/lib/dynamodb/hash-spreader.d.ts +15 -0
  41. package/lib/dynamodb/hash-spreader.spec.d.ts +1 -0
  42. package/lib/ec2/ec2-ratchet.d.ts +16 -0
  43. package/lib/ec2/ec2-ratchet.spec.d.ts +1 -0
  44. package/lib/environment/cascade-environment-service-provider.d.ts +6 -0
  45. package/lib/environment/env-var-environment-service-provider.d.ts +6 -0
  46. package/lib/environment/environment-service-config.d.ts +4 -0
  47. package/lib/environment/environment-service-provider.d.ts +3 -0
  48. package/lib/environment/environment-service.d.ts +11 -0
  49. package/lib/environment/environment-service.spec.d.ts +1 -0
  50. package/lib/environment/fixed-environment-service-provider.d.ts +7 -0
  51. package/lib/environment/s3-environment-service-provider.d.ts +15 -0
  52. package/lib/environment/ssm-environment-service-provider.d.ts +8 -0
  53. package/lib/expiring-code/dynamo-expiring-code-provider.d.ts +12 -0
  54. package/lib/expiring-code/expiring-code-params.d.ts +7 -0
  55. package/lib/expiring-code/expiring-code-provider.d.ts +5 -0
  56. package/lib/expiring-code/expiring-code-ratchet.d.ts +10 -0
  57. package/lib/expiring-code/expiring-code-ratchet.spec.d.ts +1 -0
  58. package/lib/expiring-code/expiring-code.d.ts +6 -0
  59. package/lib/expiring-code/s3-expiring-code-provider.d.ts +17 -0
  60. package/lib/expiring-code/s3-expiring-code-provider.spec.d.ts +1 -0
  61. package/lib/iam/aws-credentials-ratchet.d.ts +4 -0
  62. package/lib/index.mjs +1 -1
  63. package/lib/lambda/lambda-event-detector.d.ts +14 -0
  64. package/lib/lambda/lambda-event-type-guards.d.ts +10 -0
  65. package/lib/model/cloud-watch-metrics-minute-level-dynamo-count-request.d.ts +12 -0
  66. package/lib/model/cloud-watch-metrics-unit.d.ts +29 -0
  67. package/lib/model/dynamo/doc-put-item-command-input.d.ts +4 -0
  68. package/lib/model/dynamo/doc-query-command-input.d.ts +5 -0
  69. package/lib/model/dynamo/doc-scan-command-input.d.ts +5 -0
  70. package/lib/model/dynamo/doc-update-item-command-input.d.ts +5 -0
  71. package/lib/model/dynamo-count-result.d.ts +5 -0
  72. package/lib/route53/route-53-ratchet.d.ts +8 -0
  73. package/lib/runtime-parameter/cached-stored-runtime-parameter.d.ts +4 -0
  74. package/lib/runtime-parameter/dynamo-runtime-parameter-provider.d.ts +11 -0
  75. package/lib/runtime-parameter/dynamo-runtime-parameter-provider.spec.d.ts +1 -0
  76. package/lib/runtime-parameter/global-variable-override-runtime-parameter-provider.d.ts +17 -0
  77. package/lib/runtime-parameter/global-variable-override-runtime-parameter-provider.spec.d.ts +1 -0
  78. package/lib/runtime-parameter/memory-runtime-parameter-provider.d.ts +9 -0
  79. package/lib/runtime-parameter/runtime-parameter-provider.d.ts +6 -0
  80. package/lib/runtime-parameter/runtime-parameter-ratchet.d.ts +15 -0
  81. package/lib/runtime-parameter/runtime-parameter-ratchet.spec.d.ts +1 -0
  82. package/lib/runtime-parameter/stored-runtime-parameter.d.ts +6 -0
  83. package/lib/s3/expanded-file-children.d.ts +5 -0
  84. package/lib/s3/s3-cache-ratchet-like.d.ts +26 -0
  85. package/lib/s3/s3-cache-ratchet.d.ts +34 -0
  86. package/lib/s3/s3-cache-ratchet.spec.d.ts +1 -0
  87. package/lib/s3/s3-location-sync-ratchet.d.ts +21 -0
  88. package/lib/s3/s3-ratchet.d.ts +5 -0
  89. package/lib/s3/s3-ratchet.spec.d.ts +1 -0
  90. package/lib/ses/email-attachment.d.ts +5 -0
  91. package/lib/ses/mailer-config.d.ts +12 -0
  92. package/lib/ses/mailer-like.d.ts +11 -0
  93. package/lib/ses/mailer.d.ts +20 -0
  94. package/lib/ses/mailer.spec.d.ts +1 -0
  95. package/lib/ses/ready-to-send-email.d.ts +13 -0
  96. package/lib/ses/resolved-ready-to-send-email.d.ts +5 -0
  97. package/lib/sns/sns-ratchet.d.ts +9 -0
  98. package/lib/sns/sns-ratchet.spec.d.ts +1 -0
  99. package/lib/sync-lock/dynamo-db-sync-lock.d.ts +10 -0
  100. package/lib/sync-lock/dynamo-db-sync-lock.spec.d.ts +1 -0
  101. package/lib/sync-lock/memory-sync-lock.d.ts +8 -0
  102. package/lib/sync-lock/sync-lock-provider.d.ts +5 -0
  103. package/package.json +7 -7
@@ -0,0 +1,6 @@
1
+ import { StoredRuntimeParameter } from './stored-runtime-parameter.js';
2
+ export interface RuntimeParameterProvider {
3
+ readParameter(groupId: string, paramKey: string): Promise<StoredRuntimeParameter>;
4
+ readAllParametersForGroup(groupId: string): Promise<StoredRuntimeParameter[]>;
5
+ writeParameter(param: StoredRuntimeParameter): Promise<boolean>;
6
+ }
@@ -0,0 +1,15 @@
1
+ import { RuntimeParameterProvider } from './runtime-parameter-provider.js';
2
+ import { StoredRuntimeParameter } from './stored-runtime-parameter.js';
3
+ export declare class RuntimeParameterRatchet {
4
+ private provider;
5
+ private cache;
6
+ constructor(provider: RuntimeParameterProvider);
7
+ fetchParameter<T>(groupId: string, paramKey: string, defaultValue?: T, forceFreshRead?: boolean): Promise<T>;
8
+ fetchAllParametersForGroup(groupId: string): Promise<Map<string, any>>;
9
+ readUnderlyingEntry(groupId: string, paramKey: string): Promise<StoredRuntimeParameter>;
10
+ readUnderlyingEntries(groupId: string): Promise<StoredRuntimeParameter[]>;
11
+ storeParameter(groupId: string, paramKey: string, paramValue: any, ttlSeconds: number): Promise<StoredRuntimeParameter>;
12
+ private static toCacheStoreKey;
13
+ private addToCache;
14
+ clearCache(): void;
15
+ }
@@ -0,0 +1,6 @@
1
+ export interface StoredRuntimeParameter {
2
+ groupId: string;
3
+ paramKey: string;
4
+ paramValue: string;
5
+ ttlSeconds: number;
6
+ }
@@ -0,0 +1,5 @@
1
+ export interface ExpandedFileChildren {
2
+ link: string;
3
+ name: string;
4
+ size: number;
5
+ }
@@ -0,0 +1,26 @@
1
+ /// <reference types="node" resolution-mode="require"/>
2
+ /// <reference types="node" resolution-mode="require"/>
3
+ import { Readable } from 'stream';
4
+ import { CompleteMultipartUploadCommandOutput, CopyObjectCommandOutput, DeleteObjectCommandOutput, GetObjectCommandOutput, HeadObjectCommandOutput, PutObjectCommandInput, S3Client } from '@aws-sdk/client-s3';
5
+ export interface S3CacheRatchetLike {
6
+ getDefaultBucket(): string;
7
+ getS3Client(): S3Client;
8
+ fileExists(key: string, bucket?: string): Promise<boolean>;
9
+ fetchCacheFileAsS3GetObjectCommandOutput(key: string, bucket?: string): Promise<GetObjectCommandOutput>;
10
+ fetchCacheFileAsReadableStream(key: string, bucket?: string): Promise<ReadableStream>;
11
+ fetchCacheFileAsBuffer(key: string, bucket?: string): Promise<Buffer>;
12
+ fetchCacheFileAsString(key: string, bucket?: string): Promise<string>;
13
+ fetchCacheFileAsObject<T>(key: string, bucket?: string): Promise<T>;
14
+ removeCacheFile(key: string, bucket?: string): Promise<DeleteObjectCommandOutput>;
15
+ writeObjectToCacheFile(key: string, dataObject: any, template?: PutObjectCommandInput, bucket?: string): Promise<CompleteMultipartUploadCommandOutput>;
16
+ writeStringToCacheFile(key: string, dataString: string, template?: PutObjectCommandInput, bucket?: string): Promise<CompleteMultipartUploadCommandOutput>;
17
+ writeStreamToCacheFile(key: string, data: ReadableStream | Readable, template?: PutObjectCommandInput, bucket?: string): Promise<CompleteMultipartUploadCommandOutput>;
18
+ synchronize(srcPrefix: string, targetPrefix: string, targetRatchet?: S3CacheRatchetLike, recurseSubFolders?: boolean): Promise<string[]>;
19
+ preSignedDownloadUrlForCacheFile(key: string, expirationSeconds?: number, bucket?: string): Promise<string>;
20
+ fetchMetaForCacheFile(key: string, bucket?: string): Promise<HeadObjectCommandOutput>;
21
+ cacheFileAgeInSeconds(key: string, bucket?: string): Promise<number>;
22
+ copyFile(srcKey: string, dstKey: string, srcBucket?: string, dstBucket?: string): Promise<CopyObjectCommandOutput>;
23
+ quietCopyFile(srcKey: string, dstKey: string, srcBucket?: string, dstBucket?: string): Promise<boolean>;
24
+ directChildrenOfPrefix(prefix: string, expandFiles?: boolean, bucket?: string, maxToReturn?: number): Promise<string[]>;
25
+ allSubFoldersOfPrefix(prefix: string, bucket?: string): Promise<string[]>;
26
+ }
@@ -0,0 +1,34 @@
1
+ /// <reference types="node" resolution-mode="require"/>
2
+ /// <reference types="node" resolution-mode="require"/>
3
+ import { CompleteMultipartUploadCommandOutput, CopyObjectCommandOutput, DeleteObjectCommandOutput, GetObjectCommandOutput, HeadObjectCommandOutput, PutObjectCommandInput, S3Client } from '@aws-sdk/client-s3';
4
+ import { Readable } from 'stream';
5
+ import { S3CacheRatchetLike } from './s3-cache-ratchet-like.js';
6
+ export declare class S3CacheRatchet implements S3CacheRatchetLike {
7
+ private s3;
8
+ private defaultBucket;
9
+ constructor(s3: S3Client, defaultBucket?: string);
10
+ get s3Client(): S3Client;
11
+ static applyCacheControlMaxAge(input: PutObjectCommandInput, seconds: number): PutObjectCommandInput;
12
+ static applyUserMetaData(input: PutObjectCommandInput, key: string, value: string): PutObjectCommandInput;
13
+ getDefaultBucket(): string;
14
+ getS3Client(): S3Client;
15
+ fileExists(key: string, bucket?: string): Promise<boolean>;
16
+ fetchCacheFileAsS3GetObjectCommandOutput(key: string, bucket?: string): Promise<GetObjectCommandOutput>;
17
+ fetchCacheFileAsReadableStream(key: string, bucket?: string): Promise<ReadableStream>;
18
+ fetchCacheFileAsBuffer(key: string, bucket?: string): Promise<Buffer>;
19
+ fetchCacheFileAsString(key: string, bucket?: string): Promise<string>;
20
+ fetchCacheFileAsObject<T>(key: string, bucket?: string): Promise<T>;
21
+ removeCacheFile(key: string, bucket?: string): Promise<DeleteObjectCommandOutput>;
22
+ writeObjectToCacheFile(key: string, dataObject: any, template?: PutObjectCommandInput, bucket?: string): Promise<CompleteMultipartUploadCommandOutput>;
23
+ writeStringToCacheFile(key: string, dataString: string, template?: PutObjectCommandInput, bucket?: string): Promise<CompleteMultipartUploadCommandOutput>;
24
+ writeStreamToCacheFile(key: string, data: ReadableStream | Readable, template?: PutObjectCommandInput, bucket?: string): Promise<CompleteMultipartUploadCommandOutput>;
25
+ synchronize(srcPrefix: string, targetPrefix: string, targetRatchet?: S3CacheRatchetLike, recurseSubFolders?: boolean): Promise<string[]>;
26
+ fetchMetaForCacheFile(key: string, bucket?: string): Promise<HeadObjectCommandOutput>;
27
+ cacheFileAgeInSeconds(key: string, bucket?: string): Promise<number>;
28
+ copyFile(srcKey: string, dstKey: string, srcBucket?: string, dstBucket?: string): Promise<CopyObjectCommandOutput>;
29
+ quietCopyFile(srcKey: string, dstKey: string, srcBucket?: string, dstBucket?: string): Promise<boolean>;
30
+ preSignedDownloadUrlForCacheFile(key: string, expirationSeconds?: number, bucket?: string): Promise<string>;
31
+ directChildrenOfPrefix(prefix: string, expandFiles?: boolean, bucket?: string, maxToReturn?: number): Promise<string[]>;
32
+ allSubFoldersOfPrefix(prefix: string, bucket?: string): Promise<string[]>;
33
+ private bucketVal;
34
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,21 @@
1
+ import { S3Client } from '@aws-sdk/client-s3';
2
+ export interface S3LocationSyncRatchetConfig {
3
+ srcS3: S3Client;
4
+ srcBucket: string;
5
+ srcPrefix: string;
6
+ dstS3: S3Client;
7
+ dstBucket: string;
8
+ dstPrefix: string;
9
+ maxNumThreads?: number;
10
+ maxRetries?: number;
11
+ }
12
+ export declare class S3LocationSyncRatchet {
13
+ private config;
14
+ constructor(config: S3LocationSyncRatchetConfig);
15
+ updateSrcPrefix(prefix: string): void;
16
+ updateDstPrefix(prefix: string): void;
17
+ copyObject(key: string, size: number, express?: boolean): Promise<void>;
18
+ listObjects(bucket: string, prefix: string, s3: S3Client): Promise<any>;
19
+ startSyncing(): Promise<boolean>;
20
+ private compareSrcAndDst;
21
+ }
@@ -0,0 +1,5 @@
1
+ export declare class S3Ratchet {
2
+ static checkS3UrlForValidity(value: string): boolean;
3
+ static extractBucketFromURL(value: string): string;
4
+ static extractKeyFromURL(value: string): string;
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ export interface EmailAttachment {
2
+ filename?: string;
3
+ contentType?: string;
4
+ base64Data?: string;
5
+ }
@@ -0,0 +1,12 @@
1
+ import { RatchetTemplateRenderer } from '@bitblit/ratchet-common';
2
+ import { S3CacheRatchetLike } from '../s3/s3-cache-ratchet-like.js';
3
+ export interface MailerConfig {
4
+ defaultSendingAddress?: string;
5
+ autoBccAddresses?: string[];
6
+ templateRenderer?: RatchetTemplateRenderer;
7
+ allowedDestinationEmails?: RegExp[];
8
+ archive?: S3CacheRatchetLike;
9
+ archivePrefix?: string;
10
+ maxMessageBodySizeInBytes?: number;
11
+ maxAttachmentSizeInBase64Bytes?: number;
12
+ }
@@ -0,0 +1,11 @@
1
+ import { ReadyToSendEmail } from './ready-to-send-email.js';
2
+ import { SendRawEmailResponse } from '@aws-sdk/client-ses';
3
+ import { ResolvedReadyToSendEmail } from './resolved-ready-to-send-email.js';
4
+ export interface MailerLike {
5
+ fillEmailBody(rts: ReadyToSendEmail, context: any, htmlTemplateName: string, txtTemplateName?: string, layoutName?: string, partialNames?: string[]): Promise<ReadyToSendEmail>;
6
+ fillEmailBodyAndSend(rts: ReadyToSendEmail, context: any, htmlTemplateName: string, txtTemplateName?: string, layoutName?: string, partialNames?: string[]): Promise<SendRawEmailResponse>;
7
+ filterEmailsToValid(emails: string[]): string[];
8
+ applyLimitsToBodySizesIfAnyInPlace(rts: ResolvedReadyToSendEmail): void;
9
+ applyLimitsToAttachmentSizesIfAnyInPlace(rts: ResolvedReadyToSendEmail): void;
10
+ sendEmail(inRts: ReadyToSendEmail): Promise<SendRawEmailResponse>;
11
+ }
@@ -0,0 +1,20 @@
1
+ import { ReadyToSendEmail } from './ready-to-send-email.js';
2
+ import { SendRawEmailCommandOutput, SendRawEmailResponse, SESClient } from '@aws-sdk/client-ses';
3
+ import { MailerConfig } from './mailer-config.js';
4
+ import { ResolvedReadyToSendEmail } from './resolved-ready-to-send-email.js';
5
+ import { MailerLike } from './mailer-like.js';
6
+ export declare class Mailer implements MailerLike {
7
+ private ses;
8
+ private config;
9
+ static readonly EMAIL: RegExp;
10
+ constructor(ses: SESClient, config?: MailerConfig);
11
+ get sESClient(): SESClient;
12
+ fillEmailBody(rts: ReadyToSendEmail, context: any, htmlTemplateName: string, txtTemplateName?: string, layoutName?: string, partialNames?: string[]): Promise<ReadyToSendEmail>;
13
+ fillEmailBodyAndSend(rts: ReadyToSendEmail, context: any, htmlTemplateName: string, txtTemplateName?: string, layoutName?: string, partialNames?: string[]): Promise<SendRawEmailResponse>;
14
+ filterEmailsToValid(emails: string[]): string[];
15
+ private archiveEmailIfConfigured;
16
+ applyLimitsToBodySizesIfAnyInPlace(rts: ResolvedReadyToSendEmail): void;
17
+ applyLimitsToAttachmentSizesIfAnyInPlace(rts: ResolvedReadyToSendEmail): void;
18
+ sendEmail(inRts: ReadyToSendEmail): Promise<SendRawEmailCommandOutput>;
19
+ static validEmail(email: string): boolean;
20
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,13 @@
1
+ import { EmailAttachment } from './email-attachment.js';
2
+ export interface ReadyToSendEmail {
3
+ destinationAddresses?: Array<string>;
4
+ bccAddresses?: Array<string>;
5
+ attachments?: Array<EmailAttachment>;
6
+ fromAddress?: string;
7
+ txtMessage?: string;
8
+ htmlMessage?: string;
9
+ subject?: string;
10
+ fromName?: string;
11
+ doNotAutoBcc?: boolean;
12
+ doNotArchive?: boolean;
13
+ }
@@ -0,0 +1,5 @@
1
+ import { ReadyToSendEmail } from './ready-to-send-email.js';
2
+ export interface ResolvedReadyToSendEmail extends ReadyToSendEmail {
3
+ srcDestinationAddresses?: string[];
4
+ srcBccAddresses?: string[];
5
+ }
@@ -0,0 +1,9 @@
1
+ import { PublishCommandOutput, SNSClient } from '@aws-sdk/client-sns';
2
+ export declare class SnsRatchet {
3
+ private sns;
4
+ private topicArn;
5
+ constructor(sns: SNSClient, topicArn: string);
6
+ get snsClient(): SNSClient;
7
+ sendMessage(inMsg: any, suppressErrors?: boolean): Promise<PublishCommandOutput>;
8
+ conditionallySendMessage(inMsg: any, condition: boolean, suppressErrors?: boolean): Promise<PublishCommandOutput>;
9
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,10 @@
1
+ import { DynamoRatchet } from '../dynamodb/dynamo-ratchet.js';
2
+ import { SyncLockProvider } from './sync-lock-provider.js';
3
+ export declare class DynamoDbSyncLock implements SyncLockProvider {
4
+ private ratchet;
5
+ private tableName;
6
+ constructor(ratchet: DynamoRatchet, tableName: string);
7
+ acquireLock(lockKey: string, expirationSeconds?: number): Promise<boolean>;
8
+ releaseLock(lockKey: string): Promise<void>;
9
+ clearExpiredSyncLocks(): Promise<number>;
10
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ import { SyncLockProvider } from './sync-lock-provider.js';
2
+ export declare class MemorySyncLock implements SyncLockProvider {
3
+ private _locks;
4
+ constructor();
5
+ acquireLock(lockKey: string, expirationSeconds?: number): Promise<boolean>;
6
+ releaseLock(lockKey: string): Promise<void>;
7
+ clearExpiredSyncLocks(): Promise<number>;
8
+ }
@@ -0,0 +1,5 @@
1
+ export interface SyncLockProvider {
2
+ acquireLock(lockKey: string, expirationSeconds?: number): Promise<boolean>;
3
+ releaseLock(lockKey: string): Promise<void>;
4
+ clearExpiredSyncLocks?(): Promise<number>;
5
+ }
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@bitblit/ratchet-aws",
3
- "version": "4.0.183-alpha",
3
+ "version": "4.0.184-alpha",
4
4
  "description": "Common tools for use with AWS browser and node",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "module": "./lib/index.mjs",
8
8
  "types": "./lib/index.d.ts",
9
9
  "files": [
10
- "lib/*",
11
- "bin/*"
10
+ "lib/**",
11
+ "bin/**"
12
12
  ],
13
13
  "exports": {
14
14
  ".": {
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "license": "Apache-2.0",
54
54
  "dependencies": {
55
- "@bitblit/ratchet-common": "4.0.183-alpha"
55
+ "@bitblit/ratchet-common": "4.0.184-alpha"
56
56
  },
57
57
  "optionalDependencies": {
58
58
  "@aws-sdk/abort-controller": "3.357.0",
@@ -95,7 +95,7 @@
95
95
  "@aws-sdk/smithy-client": "^3.357.0",
96
96
  "@aws-sdk/types": "^3.357.0",
97
97
  "@aws-sdk/util-waiter": "^3.357.0",
98
- "@bitblit/ratchet-common": "4.0.183-alpha"
98
+ "@bitblit/ratchet-common": "4.0.184-alpha"
99
99
  },
100
100
  "peerDependenciesMeta": {
101
101
  "@aws-sdk/abort-controller": {
@@ -157,8 +157,8 @@
157
157
  }
158
158
  },
159
159
  "devDependencies": {
160
- "@bitblit/ratchet-jest": "4.0.183-alpha",
161
- "@bitblit/ratchet-node-only": "4.0.183-alpha",
160
+ "@bitblit/ratchet-jest": "4.0.184-alpha",
161
+ "@bitblit/ratchet-node-only": "4.0.184-alpha",
162
162
  "@types/aws-lambda": "8.10.119",
163
163
  "aws-sdk-client-mock": "3.0.0"
164
164
  }