stacktape 3.5.4 → 3.5.5

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 (3) hide show
  1. package/index.js +13 -4
  2. package/package.json +1 -1
  3. package/plain.d.ts +28 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stacktape",
3
- "version": "3.5.4",
3
+ "version": "3.5.5",
4
4
  "description": "PaaS 2.0 that deploys to your own AWS account.",
5
5
  "author": "Stacktape team <support@stacktape.com>",
6
6
  "license": "MIT",
package/plain.d.ts CHANGED
@@ -6926,7 +6926,34 @@ export interface DirectoryUpload {
6926
6926
  */
6927
6927
  disableS3TransferAcceleration?: boolean;
6928
6928
  }
6929
- export interface DirectoryUploadFilter {}
6929
+ export interface DirectoryUploadFilter {
6930
+ /**
6931
+ * #### Glob pattern for files this rule applies to (e.g., `*.html`, `assets/**`).
6932
+ */
6933
+ includePattern: string;
6934
+ /**
6935
+ * #### Glob pattern for files to exclude even if they match `includePattern`.
6936
+ */
6937
+ excludePattern?: string;
6938
+ /**
6939
+ * #### HTTP headers (e.g., `Cache-Control`) for matching files. Forwarded through CDN to the browser.
6940
+ */
6941
+ headers?: KeyValuePair[];
6942
+ /**
6943
+ * #### Tags for matching files. Can be used to target files with `lifecycleRules`.
6944
+ */
6945
+ tags?: KeyValuePair[];
6946
+ }
6947
+ export interface KeyValuePair {
6948
+ /**
6949
+ * #### Key
6950
+ */
6951
+ key: string;
6952
+ /**
6953
+ * #### Value
6954
+ */
6955
+ value: string;
6956
+ }
6930
6957
  /**
6931
6958
  * #### Who can read/write to this bucket: `private` (default), `public-read`, or `public-read-write`.
6932
6959
  */
@@ -7031,16 +7058,6 @@ export interface ExpirationProps {
7031
7058
  */
7032
7059
  tags?: KeyValuePair[];
7033
7060
  }
7034
- export interface KeyValuePair {
7035
- /**
7036
- * #### Key
7037
- */
7038
- key: string;
7039
- /**
7040
- * #### Value
7041
- */
7042
- value: string;
7043
- }
7044
7061
  export interface NonCurrentVersionExpiration {
7045
7062
  type: "non-current-version-expiration";
7046
7063
  properties: NonCurrentVersionExpirationProps;