@atproto/aws 0.1.6 → 0.1.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atproto/aws
2
2
 
3
+ ## 0.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - @atproto/repo@0.3.8
9
+
10
+ ## 0.1.7
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`fcf8e3faf`](https://github.com/bluesky-social/atproto/commit/fcf8e3faf311559162c3aa0d9af36f84951914bc)]:
15
+ - @atproto/repo@0.3.7
16
+
3
17
  ## 0.1.6
4
18
 
5
19
  ### Patch Changes
package/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  Dual MIT/Apache-2.0 License
2
2
 
3
- Copyright (c) 2022-2023 Bluesky PBC, and Contributors
3
+ Copyright (c) 2022-2024 Bluesky PBC, and Contributors
4
4
 
5
5
  Except as otherwise noted in individual files, this software is licensed under the MIT license (<http://opensource.org/licenses/MIT>), or the Apache License, Version 2.0 (<http://www.apache.org/licenses/LICENSE-2.0>).
6
6
 
package/dist/bunny.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ImageInvalidator } from './types';
2
- export declare type BunnyConfig = {
2
+ export type BunnyConfig = {
3
3
  accessKey: string;
4
4
  urlPrefix: string;
5
5
  };
@@ -1,6 +1,6 @@
1
1
  import * as aws from '@aws-sdk/client-cloudfront';
2
2
  import { ImageInvalidator } from './types';
3
- export declare type CloudfrontConfig = {
3
+ export type CloudfrontConfig = {
4
4
  distributionId: string;
5
5
  pathPrefix?: string;
6
6
  } & Omit<aws.CloudFrontClientConfig, 'apiVersion'>;