@googleapis/servicedirectory 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 ADDED
@@ -0,0 +1,19 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0 (2023-08-17)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * **servicedirectory:** This release has breaking changes.
9
+ * **servicedirectory:** This release has breaking changes.
10
+
11
+ ### Features
12
+
13
+ * **servicedirectory:** update the API ([70389d9](https://github.com/googleapis/google-api-nodejs-client/commit/70389d96ea2df29cc5ef65d6c5825180a0c02d24))
14
+ * **servicedirectory:** update the API ([9112ec6](https://github.com/googleapis/google-api-nodejs-client/commit/9112ec6fad0c5055f5817aa5da2c409526958b04))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **servicedirectory:** update the API ([c52f8c3](https://github.com/googleapis/google-api-nodejs-client/commit/c52f8c338618e1a3eb09f4479769396e97a6df24))
package/README.md ADDED
@@ -0,0 +1,37 @@
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
+ # servicedirectory
4
+
5
+ > Service Directory is a platform for discovering, publishing, and connecting services.
6
+
7
+ ## Support status
8
+ **Note**: Google provides multiple libraries for this service. This library is in
9
+ maintenance mode, and will continue to be made available for users who have
10
+ existing applications. If you're building a new application, or modernizing a
11
+ legacy application, please use [@google-cloud/service-directory](https://www.npmjs.com/package/@google-cloud/service-directory) instead.
12
+ The [@google-cloud/service-directory](https://www.npmjs.com/package/@google-cloud/service-directory) library is faster, easier to use, and better maintained.
13
+
14
+ To learn more, see [Client Libraries Explained](https://cloud.google.com/apis/docs/client-libraries-explained).
15
+
16
+ ## Installation
17
+
18
+ ```sh
19
+ $ npm install @googleapis/servicedirectory
20
+ ```
21
+
22
+ ## Usage
23
+ All documentation and usage information can be found on [GitHub](https://github.com/googleapis/google-api-nodejs-client).
24
+ Information on classes can be found in [Googleapis Documentation](https://googleapis.dev/nodejs/googleapis/latest/servicedirectory/classes/Servicedirectory.html).
25
+
26
+ ## License
27
+ 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).
28
+
29
+ ## Contributing
30
+ 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).
31
+
32
+ ## Questions/problems?
33
+ * Ask your development related questions on [StackOverflow](http://stackoverflow.com/questions/tagged/google-api-nodejs-client).
34
+ * If you've found an bug/issue, please [file it on GitHub](https://github.com/googleapis/google-api-nodejs-client/issues).
35
+
36
+
37
+ *Crafted with ❤️ by the Google Node.js team*
@@ -0,0 +1,17 @@
1
+ /*! THIS FILE IS AUTO-GENERATED */
2
+ import { AuthPlus } from 'googleapis-common';
3
+ import { servicedirectory_v1 } from './v1';
4
+ import { servicedirectory_v1beta1 } from './v1beta1';
5
+ export declare const VERSIONS: {
6
+ v1: typeof servicedirectory_v1.Servicedirectory;
7
+ v1beta1: typeof servicedirectory_v1beta1.Servicedirectory;
8
+ };
9
+ export declare function servicedirectory(version: 'v1'): servicedirectory_v1.Servicedirectory;
10
+ export declare function servicedirectory(options: servicedirectory_v1.Options): servicedirectory_v1.Servicedirectory;
11
+ export declare function servicedirectory(version: 'v1beta1'): servicedirectory_v1beta1.Servicedirectory;
12
+ export declare function servicedirectory(options: servicedirectory_v1beta1.Options): servicedirectory_v1beta1.Servicedirectory;
13
+ declare const auth: AuthPlus;
14
+ export { auth };
15
+ export { servicedirectory_v1 };
16
+ export { servicedirectory_v1beta1 };
17
+ export { AuthPlus, GlobalOptions, APIRequestContext, GoogleConfigurable, StreamMethodOptions, GaxiosPromise, MethodOptions, BodyResponseCallback, } from 'googleapis-common';
package/build/index.js ADDED
@@ -0,0 +1,34 @@
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.servicedirectory_v1beta1 = exports.servicedirectory_v1 = exports.auth = exports.servicedirectory = 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, "servicedirectory_v1", { enumerable: true, get: function () { return v1_1.servicedirectory_v1; } });
20
+ const v1beta1_1 = require("./v1beta1");
21
+ Object.defineProperty(exports, "servicedirectory_v1beta1", { enumerable: true, get: function () { return v1beta1_1.servicedirectory_v1beta1; } });
22
+ exports.VERSIONS = {
23
+ v1: v1_1.servicedirectory_v1.Servicedirectory,
24
+ v1beta1: v1beta1_1.servicedirectory_v1beta1.Servicedirectory,
25
+ };
26
+ function servicedirectory(versionOrOptions) {
27
+ return (0, googleapis_common_1.getAPI)('servicedirectory', versionOrOptions, exports.VERSIONS, this);
28
+ }
29
+ exports.servicedirectory = servicedirectory;
30
+ const auth = new googleapis_common_1.AuthPlus();
31
+ exports.auth = auth;
32
+ var googleapis_common_2 = require("googleapis-common");
33
+ Object.defineProperty(exports, "AuthPlus", { enumerable: true, get: function () { return googleapis_common_2.AuthPlus; } });
34
+ //# 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,6BAAyC;AAqCjC,oGArCA,wBAAmB,OAqCA;AApC3B,uCAAmD;AAqC3C,yGArCA,kCAAwB,OAqCA;AAnCnB,QAAA,QAAQ,GAAG;IACtB,EAAE,EAAE,wBAAmB,CAAC,gBAAgB;IACxC,OAAO,EAAE,kCAAwB,CAAC,gBAAgB;CACnD,CAAC;AAcF,SAAgB,gBAAgB,CAM9B,gBAIoC;IAEpC,OAAO,IAAA,0BAAM,EAAI,kBAAkB,EAAE,gBAAgB,EAAE,gBAAQ,EAAE,IAAI,CAAC,CAAC;AACzE,CAAC;AAbD,4CAaC;AAED,MAAM,IAAI,GAAG,IAAI,4BAAQ,EAAE,CAAC;AACpB,oBAAI;AAGZ,uDAS2B;AARzB,6GAAA,QAAQ,OAAA"}