@googleapis/storage 10.0.0 → 11.0.0
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 +11 -0
- package/build/v1.d.ts +5 -5
- package/package.json +1 -1
- package/v1.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [11.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/storage-v10.0.0...storage-v11.0.0) (2024-03-12)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### ⚠ BREAKING CHANGES
|
|
7
|
+
|
|
8
|
+
* This release has breaking changes.
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* run the generator ([#3434](https://github.com/googleapis/google-api-nodejs-client/issues/3434)) ([f0db524](https://github.com/googleapis/google-api-nodejs-client/commit/f0db524bb26f05cea3dec4c0ed66b496399e3857))
|
|
13
|
+
|
|
3
14
|
## [10.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/storage-v9.0.0...storage-v10.0.0) (2024-02-07)
|
|
4
15
|
|
|
5
16
|
|
package/build/v1.d.ts
CHANGED
|
@@ -565,6 +565,10 @@ export declare namespace storage_v1 {
|
|
|
565
565
|
* The name of the bucket containing this folder.
|
|
566
566
|
*/
|
|
567
567
|
bucket?: string | null;
|
|
568
|
+
/**
|
|
569
|
+
* The creation time of the folder in RFC 3339 format.
|
|
570
|
+
*/
|
|
571
|
+
createTime?: string | null;
|
|
568
572
|
/**
|
|
569
573
|
* The ID of the folder, including the bucket name, folder name.
|
|
570
574
|
*/
|
|
@@ -591,14 +595,10 @@ export declare namespace storage_v1 {
|
|
|
591
595
|
* The link to this folder.
|
|
592
596
|
*/
|
|
593
597
|
selfLink?: string | null;
|
|
594
|
-
/**
|
|
595
|
-
* The creation time of the folder in RFC 3339 format.
|
|
596
|
-
*/
|
|
597
|
-
timeCreated?: string | null;
|
|
598
598
|
/**
|
|
599
599
|
* The modification time of the folder metadata in RFC 3339 format.
|
|
600
600
|
*/
|
|
601
|
-
|
|
601
|
+
updateTime?: string | null;
|
|
602
602
|
}
|
|
603
603
|
/**
|
|
604
604
|
* A list of folders.
|
package/package.json
CHANGED
package/v1.ts
CHANGED
|
@@ -595,6 +595,10 @@ export namespace storage_v1 {
|
|
|
595
595
|
* The name of the bucket containing this folder.
|
|
596
596
|
*/
|
|
597
597
|
bucket?: string | null;
|
|
598
|
+
/**
|
|
599
|
+
* The creation time of the folder in RFC 3339 format.
|
|
600
|
+
*/
|
|
601
|
+
createTime?: string | null;
|
|
598
602
|
/**
|
|
599
603
|
* The ID of the folder, including the bucket name, folder name.
|
|
600
604
|
*/
|
|
@@ -619,14 +623,10 @@ export namespace storage_v1 {
|
|
|
619
623
|
* The link to this folder.
|
|
620
624
|
*/
|
|
621
625
|
selfLink?: string | null;
|
|
622
|
-
/**
|
|
623
|
-
* The creation time of the folder in RFC 3339 format.
|
|
624
|
-
*/
|
|
625
|
-
timeCreated?: string | null;
|
|
626
626
|
/**
|
|
627
627
|
* The modification time of the folder metadata in RFC 3339 format.
|
|
628
628
|
*/
|
|
629
|
-
|
|
629
|
+
updateTime?: string | null;
|
|
630
630
|
}
|
|
631
631
|
/**
|
|
632
632
|
* A list of folders.
|