@googleapis/storagebatchoperations 1.0.1
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 +26 -0
- package/README.md +28 -0
- package/build/index.d.ts +12 -0
- package/build/index.js +31 -0
- package/build/index.js.map +1 -0
- package/build/v1.d.ts +786 -0
- package/build/v1.js +425 -0
- package/build/v1.js.map +1 -0
- package/index.ts +49 -0
- package/package.json +43 -0
- package/tsconfig.json +10 -0
- package/v1.ts +1692 -0
- package/webpack.config.js +79 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [1.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/storagebatchoperations-v1.0.0...storagebatchoperations-v1.0.1) (2025-06-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** upgrade googleapis-common to 8.0.2-rc ([f4b0990](https://github.com/googleapis/google-api-nodejs-client/commit/f4b099071040cfbcfe4a2e7d487d45ee93b369e0))
|
|
9
|
+
|
|
10
|
+
## [1.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/storagebatchoperations-v0.1.0...storagebatchoperations-v1.0.0) (2025-05-29)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### ⚠ BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
* upgrade to node 18
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* upgrade to node 18 ([682fbb8](https://github.com/googleapis/google-api-nodejs-client/commit/682fbb869189ae92b3e9a194d37d0548af0c1f92))
|
|
20
|
+
|
|
21
|
+
## 0.1.0 (2025-05-05)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* **storagebatchoperations:** update the API ([6df2a38](https://github.com/googleapis/google-api-nodejs-client/commit/6df2a38a734808c98d2aba7ffabd73904a12421c))
|
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<img src="https://avatars0.githubusercontent.com/u/1342004?v=3&s=96" alt="Google Inc. logo" title="Google" align="right" height="96" width="96"/>
|
|
2
|
+
|
|
3
|
+
# storagebatchoperations
|
|
4
|
+
|
|
5
|
+
>
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
$ npm install @googleapis/storagebatchoperations
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
All documentation and usage information can be found on [GitHub](https://github.com/googleapis/google-api-nodejs-client).
|
|
15
|
+
Information on classes can be found in [Googleapis Documentation](https://googleapis.dev/nodejs/googleapis/latest/storagebatchoperations/classes/Storagebatchoperations.html).
|
|
16
|
+
|
|
17
|
+
## License
|
|
18
|
+
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/googleapis/google-api-nodejs-client/blob/main/LICENSE).
|
|
19
|
+
|
|
20
|
+
## Contributing
|
|
21
|
+
We love contributions! Before submitting a Pull Request, it's always good to start with a new issue first. To learn more, see [CONTRIBUTING](https://github.com/google/google-api-nodejs-client/blob/main/.github/CONTRIBUTING.md).
|
|
22
|
+
|
|
23
|
+
## Questions/problems?
|
|
24
|
+
* Ask your development related questions on [StackOverflow](http://stackoverflow.com/questions/tagged/google-api-nodejs-client).
|
|
25
|
+
* If you've found an bug/issue, please [file it on GitHub](https://github.com/googleapis/google-api-nodejs-client/issues).
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
*Crafted with ❤️ by the Google Node.js team*
|
package/build/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*! THIS FILE IS AUTO-GENERATED */
|
|
2
|
+
import { AuthPlus } from 'googleapis-common';
|
|
3
|
+
import { storagebatchoperations_v1 } from './v1';
|
|
4
|
+
export declare const VERSIONS: {
|
|
5
|
+
v1: typeof storagebatchoperations_v1.Storagebatchoperations;
|
|
6
|
+
};
|
|
7
|
+
export declare function storagebatchoperations(version: 'v1'): storagebatchoperations_v1.Storagebatchoperations;
|
|
8
|
+
export declare function storagebatchoperations(options: storagebatchoperations_v1.Options): storagebatchoperations_v1.Storagebatchoperations;
|
|
9
|
+
declare const auth: AuthPlus;
|
|
10
|
+
export { auth };
|
|
11
|
+
export { storagebatchoperations_v1 };
|
|
12
|
+
export { AuthPlus, GlobalOptions, APIRequestContext, GoogleConfigurable, StreamMethodOptions, MethodOptions, BodyResponseCallback, } from 'googleapis-common';
|
package/build/index.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Copyright 2020 Google LLC
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.AuthPlus = exports.storagebatchoperations_v1 = exports.auth = exports.storagebatchoperations = exports.VERSIONS = void 0;
|
|
16
|
+
/*! THIS FILE IS AUTO-GENERATED */
|
|
17
|
+
const googleapis_common_1 = require("googleapis-common");
|
|
18
|
+
const v1_1 = require("./v1");
|
|
19
|
+
Object.defineProperty(exports, "storagebatchoperations_v1", { enumerable: true, get: function () { return v1_1.storagebatchoperations_v1; } });
|
|
20
|
+
exports.VERSIONS = {
|
|
21
|
+
v1: v1_1.storagebatchoperations_v1.Storagebatchoperations,
|
|
22
|
+
};
|
|
23
|
+
function storagebatchoperations(versionOrOptions) {
|
|
24
|
+
return (0, googleapis_common_1.getAPI)('storagebatchoperations', versionOrOptions, exports.VERSIONS, this);
|
|
25
|
+
}
|
|
26
|
+
exports.storagebatchoperations = storagebatchoperations;
|
|
27
|
+
const auth = new googleapis_common_1.AuthPlus();
|
|
28
|
+
exports.auth = auth;
|
|
29
|
+
var googleapis_common_2 = require("googleapis-common");
|
|
30
|
+
Object.defineProperty(exports, "AuthPlus", { enumerable: true, get: function () { return googleapis_common_2.AuthPlus; } });
|
|
31
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,4BAA4B;AAC5B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,gDAAgD;AAChD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;AAEjC,kCAAkC;AAElC,yDAAuE;AACvE,6BAA+C;AAuBvC,0GAvBA,8BAAyB,OAuBA;AArBpB,QAAA,QAAQ,GAAG;IACtB,EAAE,EAAE,8BAAyB,CAAC,sBAAsB;CACrD,CAAC;AAQF,SAAgB,sBAAsB,CAIpC,gBAA0D;IAE1D,OAAO,IAAA,0BAAM,EAAI,wBAAwB,EAAE,gBAAgB,EAAE,gBAAQ,EAAE,IAAI,CAAC,CAAC;AAC/E,CAAC;AAPD,wDAOC;AAED,MAAM,IAAI,GAAG,IAAI,4BAAQ,EAAE,CAAC;AACpB,oBAAI;AAEZ,uDAQ2B;AAPzB,6GAAA,QAAQ,OAAA"}
|