@alepha/bucket-azure 0.7.1 → 0.7.2

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.cjs CHANGED
@@ -115,7 +115,7 @@ class AzureFileStorageProvider {
115
115
  const container = this.blobServiceClient.getContainerClient(name);
116
116
  await this.dateTimeProvider.deadline(
117
117
  (abortSignal) => container.createIfNotExists({ abortSignal }),
118
- { seconds: 5 }
118
+ [5, "seconds"]
119
119
  );
120
120
  return container;
121
121
  }
package/dist/index.js CHANGED
@@ -113,7 +113,7 @@ class AzureFileStorageProvider {
113
113
  const container = this.blobServiceClient.getContainerClient(name);
114
114
  await this.dateTimeProvider.deadline(
115
115
  (abortSignal) => container.createIfNotExists({ abortSignal }),
116
- { seconds: 5 }
116
+ [5, "seconds"]
117
117
  );
118
118
  return container;
119
119
  }
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "storage-blob"
10
10
  ],
11
11
  "author": "Feunard",
12
- "version": "0.7.1",
12
+ "version": "0.7.2",
13
13
  "type": "module",
14
14
  "license": "MIT",
15
15
  "main": "./dist/index.js",
@@ -19,10 +19,10 @@
19
19
  "src"
20
20
  ],
21
21
  "dependencies": {
22
- "@alepha/bucket": "0.7.1",
23
- "@alepha/core": "0.7.1",
24
- "@alepha/datetime": "0.7.1",
25
- "@alepha/file": "0.7.1",
22
+ "@alepha/bucket": "0.7.2",
23
+ "@alepha/core": "0.7.2",
24
+ "@alepha/datetime": "0.7.2",
25
+ "@alepha/file": "0.7.2",
26
26
  "@azure/storage-blob": "^12.27.0"
27
27
  },
28
28
  "devDependencies": {
@@ -162,7 +162,7 @@ export class AzureFileStorageProvider implements FileStorageProvider {
162
162
 
163
163
  await this.dateTimeProvider.deadline(
164
164
  (abortSignal) => container.createIfNotExists({ abortSignal }),
165
- { seconds: 5 },
165
+ [5, "seconds"],
166
166
  );
167
167
 
168
168
  return container;