@googleapis/searchads360 1.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 +13 -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/v0.d.ts +2854 -0
- package/build/v0.js +259 -0
- package/build/v0.js.map +1 -0
- package/index.ts +46 -0
- package/package.json +43 -0
- package/tsconfig.json +10 -0
- package/v0.ts +3415 -0
- package/webpack.config.js +79 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 1.0.0 (2023-08-17)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **searchads360:** update the API ([0a49ddb](https://github.com/googleapis/google-api-nodejs-client/commit/0a49ddbab1c1a4bdaad5383ffa583878f7f3d5a6))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **searchads360:** update the API ([8ed1df1](https://github.com/googleapis/google-api-nodejs-client/commit/8ed1df140bdd0e6feb12265578c2ee8c55ff474e))
|
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
|
+
# searchads360
|
|
4
|
+
|
|
5
|
+
> The Search Ads 360 API allows developers to automate downloading reports from Search Ads 360.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
$ npm install @googleapis/searchads360
|
|
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/searchads360/classes/Searchads360.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 { searchads360_v0 } from './v0';
|
|
4
|
+
export declare const VERSIONS: {
|
|
5
|
+
v0: typeof searchads360_v0.Searchads360;
|
|
6
|
+
};
|
|
7
|
+
export declare function searchads360(version: 'v0'): searchads360_v0.Searchads360;
|
|
8
|
+
export declare function searchads360(options: searchads360_v0.Options): searchads360_v0.Searchads360;
|
|
9
|
+
declare const auth: AuthPlus;
|
|
10
|
+
export { auth };
|
|
11
|
+
export { searchads360_v0 };
|
|
12
|
+
export { AuthPlus, GlobalOptions, APIRequestContext, GoogleConfigurable, StreamMethodOptions, GaxiosPromise, 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.searchads360_v0 = exports.auth = exports.searchads360 = exports.VERSIONS = void 0;
|
|
16
|
+
/*! THIS FILE IS AUTO-GENERATED */
|
|
17
|
+
const googleapis_common_1 = require("googleapis-common");
|
|
18
|
+
const v0_1 = require("./v0");
|
|
19
|
+
Object.defineProperty(exports, "searchads360_v0", { enumerable: true, get: function () { return v0_1.searchads360_v0; } });
|
|
20
|
+
exports.VERSIONS = {
|
|
21
|
+
v0: v0_1.searchads360_v0.Searchads360,
|
|
22
|
+
};
|
|
23
|
+
function searchads360(versionOrOptions) {
|
|
24
|
+
return (0, googleapis_common_1.getAPI)('searchads360', versionOrOptions, exports.VERSIONS, this);
|
|
25
|
+
}
|
|
26
|
+
exports.searchads360 = searchads360;
|
|
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,6BAAqC;AAmB7B,gGAnBA,oBAAe,OAmBA;AAjBV,QAAA,QAAQ,GAAG;IACtB,EAAE,EAAE,oBAAe,CAAC,YAAY;CACjC,CAAC;AAMF,SAAgB,YAAY,CAE1B,gBAAgD;IAEhD,OAAO,IAAA,0BAAM,EAAI,cAAc,EAAE,gBAAgB,EAAE,gBAAQ,EAAE,IAAI,CAAC,CAAC;AACrE,CAAC;AALD,oCAKC;AAED,MAAM,IAAI,GAAG,IAAI,4BAAQ,EAAE,CAAC;AACpB,oBAAI;AAEZ,uDAS2B;AARzB,6GAAA,QAAQ,OAAA"}
|