@maxim_mazurok/gapi.client.serviceusage-v1beta1 0.0.20230328 → 0.0.20230330
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/index.d.ts +20 -1
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://serviceusage.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230330
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -381,6 +381,25 @@ declare namespace gapi.client {
|
|
|
381
381
|
interface DotnetSettings {
|
|
382
382
|
/** Some settings. */
|
|
383
383
|
common?: CommonLanguageSettings;
|
|
384
|
+
/** Namespaces which must be aliased in snippets due to a known (but non-generator-predictable) naming collision */
|
|
385
|
+
forcedNamespaceAliases?: string[];
|
|
386
|
+
/** Method signatures (in the form "service.method(signature)") which are provided separately, so shouldn't be generated. Snippets *calling* these methods are still generated, however. */
|
|
387
|
+
handwrittenSignatures?: string[];
|
|
388
|
+
/**
|
|
389
|
+
* List of full resource types to ignore during generation. This is typically used for API-specific Location resources, which should be handled by the generator as if they were
|
|
390
|
+
* actually the common Location resources. Example entry: "documentai.googleapis.com/Location"
|
|
391
|
+
*/
|
|
392
|
+
ignoredResources?: string[];
|
|
393
|
+
/**
|
|
394
|
+
* Map from full resource types to the effective short name for the resource. This is used when otherwise resource named from different services would cause naming collisions. Example
|
|
395
|
+
* entry: "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
|
396
|
+
*/
|
|
397
|
+
renamedResources?: { [P in string]: string };
|
|
398
|
+
/**
|
|
399
|
+
* Map from original service names to renamed versions. This is used when the default generated types would cause a naming conflict. (Neither name is fully-qualified.) Example:
|
|
400
|
+
* Subscriber to SubscriberServiceApi.
|
|
401
|
+
*/
|
|
402
|
+
renamedServices?: { [P in string]: string };
|
|
384
403
|
}
|
|
385
404
|
// tslint:disable-next-line:no-empty-interface
|
|
386
405
|
interface Empty {
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230330
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|