From 3c6dec67812d606e92f5826fc7d617f6f5dea171 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Mon, 16 May 2022 13:45:19 -0700 Subject: [PATCH 1/4] feat!: Update library to use Node 12 --- .kokoro/continuous/node10/common.cfg | 34 -------- .kokoro/continuous/node10/docs.cfg | 4 - .kokoro/continuous/node10/test.cfg | 9 -- .kokoro/presubmit/node10/common.cfg | 34 -------- package.json | 6 +- protos/protos.d.ts | 106 ++++++++++++----------- protos/protos.js | 122 ++++++++++++++++----------- protos/protos.json | 7 ++ samples/package.json | 2 +- 9 files changed, 139 insertions(+), 185 deletions(-) delete mode 100644 .kokoro/continuous/node10/common.cfg delete mode 100644 .kokoro/continuous/node10/docs.cfg delete mode 100644 .kokoro/continuous/node10/test.cfg delete mode 100644 .kokoro/presubmit/node10/common.cfg diff --git a/.kokoro/continuous/node10/common.cfg b/.kokoro/continuous/node10/common.cfg deleted file mode 100644 index d69a77d..0000000 --- a/.kokoro/continuous/node10/common.cfg +++ /dev/null @@ -1,34 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Build logs will be here -action { - define_artifacts { - regex: "**/*sponge_log.xml" - } -} - -# Bring in codecov.io token into the build as $KOKORO_KEYSTORE_DIR/73713_dpebot_codecov_token -before_action { - fetch_keystore { - keystore_resource { - keystore_config_id: 73713 - keyname: "dpebot_codecov_token" - } - } -} - -# Download trampoline resources. -gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" - -# Use the trampoline script to run in docker. -build_file: "nodejs-channel/.kokoro/trampoline_v2.sh" - -# Configure the docker image for kokoro-trampoline. -env_vars: { - key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-kokoro-resources/node:10-user" -} -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-channel/.kokoro/test.sh" -} diff --git a/.kokoro/continuous/node10/docs.cfg b/.kokoro/continuous/node10/docs.cfg deleted file mode 100644 index b8ac991..0000000 --- a/.kokoro/continuous/node10/docs.cfg +++ /dev/null @@ -1,4 +0,0 @@ -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-channel/.kokoro/docs.sh" -} diff --git a/.kokoro/continuous/node10/test.cfg b/.kokoro/continuous/node10/test.cfg deleted file mode 100644 index 609c0cf..0000000 --- a/.kokoro/continuous/node10/test.cfg +++ /dev/null @@ -1,9 +0,0 @@ -# Bring in codecov.io token into the build as $KOKORO_KEYSTORE_DIR/73713_dpebot_codecov_token -before_action { - fetch_keystore { - keystore_resource { - keystore_config_id: 73713 - keyname: "dpebot_codecov_token" - } - } -} diff --git a/.kokoro/presubmit/node10/common.cfg b/.kokoro/presubmit/node10/common.cfg deleted file mode 100644 index d69a77d..0000000 --- a/.kokoro/presubmit/node10/common.cfg +++ /dev/null @@ -1,34 +0,0 @@ -# Format: //devtools/kokoro/config/proto/build.proto - -# Build logs will be here -action { - define_artifacts { - regex: "**/*sponge_log.xml" - } -} - -# Bring in codecov.io token into the build as $KOKORO_KEYSTORE_DIR/73713_dpebot_codecov_token -before_action { - fetch_keystore { - keystore_resource { - keystore_config_id: 73713 - keyname: "dpebot_codecov_token" - } - } -} - -# Download trampoline resources. -gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline" - -# Use the trampoline script to run in docker. -build_file: "nodejs-channel/.kokoro/trampoline_v2.sh" - -# Configure the docker image for kokoro-trampoline. -env_vars: { - key: "TRAMPOLINE_IMAGE" - value: "gcr.io/cloud-devrel-kokoro-resources/node:10-user" -} -env_vars: { - key: "TRAMPOLINE_BUILD_FILE" - value: "github/nodejs-channel/.kokoro/test.sh" -} diff --git a/package.json b/package.json index fd2e2ac..9247f76 100644 --- a/package.json +++ b/package.json @@ -51,16 +51,16 @@ "jsdoc-fresh": "^1.0.2", "jsdoc-region-tag": "^1.0.6", "linkinator": "^2.7.0", - "mocha": "^8.2.1", + "mocha": "^9.2.2", "null-loader": "^4.0.1", "pack-n-play": "^1.0.0-2", "sinon": "^14.0.0", "ts-loader": "^9.0.0", - "typescript": "^4.1.2", + "typescript": "^4.6.4", "webpack": "^5.9.0", "webpack-cli": "^4.2.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=12.0.0" } } diff --git a/protos/protos.d.ts b/protos/protos.d.ts index 8b6f605..1bf01b7 100644 --- a/protos/protos.d.ts +++ b/protos/protos.d.ts @@ -4927,315 +4927,315 @@ export namespace google { namespace CloudChannelService { /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomers}. * @param error Error, if any * @param [response] ListCustomersResponse */ type ListCustomersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListCustomersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomer}. * @param error Error, if any * @param [response] Customer */ type GetCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#checkCloudIdentityAccountsExist}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|checkCloudIdentityAccountsExist}. * @param error Error, if any * @param [response] CheckCloudIdentityAccountsExistResponse */ type CheckCloudIdentityAccountsExistCallback = (error: (Error|null), response?: google.cloud.channel.v1.CheckCloudIdentityAccountsExistResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomer}. * @param error Error, if any * @param [response] Customer */ type CreateCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomer}. * @param error Error, if any * @param [response] Customer */ type UpdateCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomer}. * @param error Error, if any * @param [response] Empty */ type DeleteCustomerCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#importCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|importCustomer}. * @param error Error, if any * @param [response] Customer */ type ImportCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#provisionCloudIdentity}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|provisionCloudIdentity}. * @param error Error, if any * @param [response] Operation */ type ProvisionCloudIdentityCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listEntitlements}. * @param error Error, if any * @param [response] ListEntitlementsResponse */ type ListEntitlementsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListEntitlementsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableSkus}. * @param error Error, if any * @param [response] ListTransferableSkusResponse */ type ListTransferableSkusCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListTransferableSkusResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableOffers}. * @param error Error, if any * @param [response] ListTransferableOffersResponse */ type ListTransferableOffersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListTransferableOffersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getEntitlement}. * @param error Error, if any * @param [response] Entitlement */ type GetEntitlementCallback = (error: (Error|null), response?: google.cloud.channel.v1.Entitlement) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createEntitlement}. * @param error Error, if any * @param [response] Operation */ type CreateEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeParameters}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeParameters}. * @param error Error, if any * @param [response] Operation */ type ChangeParametersCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeRenewalSettings}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeRenewalSettings}. * @param error Error, if any * @param [response] Operation */ type ChangeRenewalSettingsCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeOffer}. * @param error Error, if any * @param [response] Operation */ type ChangeOfferCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#startPaidService}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|startPaidService}. * @param error Error, if any * @param [response] Operation */ type StartPaidServiceCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#suspendEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|suspendEntitlement}. * @param error Error, if any * @param [response] Operation */ type SuspendEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#cancelEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|cancelEntitlement}. * @param error Error, if any * @param [response] Operation */ type CancelEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#activateEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|activateEntitlement}. * @param error Error, if any * @param [response] Operation */ type ActivateEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlements}. * @param error Error, if any * @param [response] Operation */ type TransferEntitlementsCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlementsToGoogle}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlementsToGoogle}. * @param error Error, if any * @param [response] Operation */ type TransferEntitlementsToGoogleCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerLinks}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerLinks}. * @param error Error, if any * @param [response] ListChannelPartnerLinksResponse */ type ListChannelPartnerLinksCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListChannelPartnerLinksResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerLink}. * @param error Error, if any * @param [response] ChannelPartnerLink */ type GetChannelPartnerLinkCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerLink) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerLink}. * @param error Error, if any * @param [response] ChannelPartnerLink */ type CreateChannelPartnerLinkCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerLink) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerLink}. * @param error Error, if any * @param [response] ChannelPartnerLink */ type UpdateChannelPartnerLinkCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerLink) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomerRepricingConfig}. * @param error Error, if any * @param [response] CustomerRepricingConfig */ type GetCustomerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.CustomerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomerRepricingConfigs}. * @param error Error, if any * @param [response] ListCustomerRepricingConfigsResponse */ type ListCustomerRepricingConfigsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListCustomerRepricingConfigsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomerRepricingConfig}. * @param error Error, if any * @param [response] CustomerRepricingConfig */ type CreateCustomerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.CustomerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomerRepricingConfig}. * @param error Error, if any * @param [response] CustomerRepricingConfig */ type UpdateCustomerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.CustomerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomerRepricingConfig}. * @param error Error, if any * @param [response] Empty */ type DeleteCustomerRepricingConfigCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] ChannelPartnerRepricingConfig */ type GetChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerRepricingConfigs}. * @param error Error, if any * @param [response] ListChannelPartnerRepricingConfigsResponse */ type ListChannelPartnerRepricingConfigsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListChannelPartnerRepricingConfigsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] ChannelPartnerRepricingConfig */ type CreateChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] ChannelPartnerRepricingConfig */ type UpdateChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] Empty */ type DeleteChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#lookupOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|lookupOffer}. * @param error Error, if any * @param [response] Offer */ type LookupOfferCallback = (error: (Error|null), response?: google.cloud.channel.v1.Offer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listProducts}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listProducts}. * @param error Error, if any * @param [response] ListProductsResponse */ type ListProductsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListProductsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSkus}. * @param error Error, if any * @param [response] ListSkusResponse */ type ListSkusCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListSkusResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listOffers}. * @param error Error, if any * @param [response] ListOffersResponse */ type ListOffersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListOffersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableSkus}. * @param error Error, if any * @param [response] ListPurchasableSkusResponse */ type ListPurchasableSkusCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListPurchasableSkusResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableOffers}. * @param error Error, if any * @param [response] ListPurchasableOffersResponse */ type ListPurchasableOffersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListPurchasableOffersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#registerSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|registerSubscriber}. * @param error Error, if any * @param [response] RegisterSubscriberResponse */ type RegisterSubscriberCallback = (error: (Error|null), response?: google.cloud.channel.v1.RegisterSubscriberResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#unregisterSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|unregisterSubscriber}. * @param error Error, if any * @param [response] UnregisterSubscriberResponse */ type UnregisterSubscriberCallback = (error: (Error|null), response?: google.cloud.channel.v1.UnregisterSubscriberResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSubscribers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSubscribers}. * @param error Error, if any * @param [response] ListSubscribersResponse */ @@ -14992,6 +14992,9 @@ export namespace google { /** FieldOptions lazy */ lazy?: (boolean|null); + /** FieldOptions unverifiedLazy */ + unverifiedLazy?: (boolean|null); + /** FieldOptions deprecated */ deprecated?: (boolean|null); @@ -15029,6 +15032,9 @@ export namespace google { /** FieldOptions lazy. */ public lazy: boolean; + /** FieldOptions unverifiedLazy. */ + public unverifiedLazy: boolean; + /** FieldOptions deprecated. */ public deprecated: boolean; @@ -17278,35 +17284,35 @@ export namespace google { namespace Operations { /** - * Callback as used by {@link google.longrunning.Operations#listOperations}. + * Callback as used by {@link google.longrunning.Operations|listOperations}. * @param error Error, if any * @param [response] ListOperationsResponse */ type ListOperationsCallback = (error: (Error|null), response?: google.longrunning.ListOperationsResponse) => void; /** - * Callback as used by {@link google.longrunning.Operations#getOperation}. + * Callback as used by {@link google.longrunning.Operations|getOperation}. * @param error Error, if any * @param [response] Operation */ type GetOperationCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.longrunning.Operations#deleteOperation}. + * Callback as used by {@link google.longrunning.Operations|deleteOperation}. * @param error Error, if any * @param [response] Empty */ type DeleteOperationCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.longrunning.Operations#cancelOperation}. + * Callback as used by {@link google.longrunning.Operations|cancelOperation}. * @param error Error, if any * @param [response] Empty */ type CancelOperationCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.longrunning.Operations#waitOperation}. + * Callback as used by {@link google.longrunning.Operations|waitOperation}. * @param error Error, if any * @param [response] Operation */ diff --git a/protos/protos.js b/protos/protos.js index 6fb28f8..17b270b 100644 --- a/protos/protos.js +++ b/protos/protos.js @@ -11051,7 +11051,7 @@ }; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListCustomersCallback * @type {function} @@ -11084,7 +11084,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetCustomerCallback * @type {function} @@ -11117,7 +11117,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#checkCloudIdentityAccountsExist}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|checkCloudIdentityAccountsExist}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CheckCloudIdentityAccountsExistCallback * @type {function} @@ -11150,7 +11150,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateCustomerCallback * @type {function} @@ -11183,7 +11183,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateCustomerCallback * @type {function} @@ -11216,7 +11216,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef DeleteCustomerCallback * @type {function} @@ -11249,7 +11249,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#importCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|importCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ImportCustomerCallback * @type {function} @@ -11282,7 +11282,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#provisionCloudIdentity}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|provisionCloudIdentity}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ProvisionCloudIdentityCallback * @type {function} @@ -11315,7 +11315,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listEntitlements}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListEntitlementsCallback * @type {function} @@ -11348,7 +11348,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableSkus}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListTransferableSkusCallback * @type {function} @@ -11381,7 +11381,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableOffers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListTransferableOffersCallback * @type {function} @@ -11414,7 +11414,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetEntitlementCallback * @type {function} @@ -11447,7 +11447,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateEntitlementCallback * @type {function} @@ -11480,7 +11480,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeParameters}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeParameters}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ChangeParametersCallback * @type {function} @@ -11513,7 +11513,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeRenewalSettings}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeRenewalSettings}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ChangeRenewalSettingsCallback * @type {function} @@ -11546,7 +11546,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeOffer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ChangeOfferCallback * @type {function} @@ -11579,7 +11579,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#startPaidService}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|startPaidService}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef StartPaidServiceCallback * @type {function} @@ -11612,7 +11612,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#suspendEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|suspendEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef SuspendEntitlementCallback * @type {function} @@ -11645,7 +11645,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#cancelEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|cancelEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CancelEntitlementCallback * @type {function} @@ -11678,7 +11678,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#activateEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|activateEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ActivateEntitlementCallback * @type {function} @@ -11711,7 +11711,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlements}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef TransferEntitlementsCallback * @type {function} @@ -11744,7 +11744,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlementsToGoogle}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlementsToGoogle}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef TransferEntitlementsToGoogleCallback * @type {function} @@ -11777,7 +11777,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerLinks}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerLinks}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListChannelPartnerLinksCallback * @type {function} @@ -11810,7 +11810,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerLink}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetChannelPartnerLinkCallback * @type {function} @@ -11843,7 +11843,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerLink}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateChannelPartnerLinkCallback * @type {function} @@ -11876,7 +11876,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerLink}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateChannelPartnerLinkCallback * @type {function} @@ -11909,7 +11909,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetCustomerRepricingConfigCallback * @type {function} @@ -11942,7 +11942,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomerRepricingConfigs}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListCustomerRepricingConfigsCallback * @type {function} @@ -11975,7 +11975,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateCustomerRepricingConfigCallback * @type {function} @@ -12008,7 +12008,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateCustomerRepricingConfigCallback * @type {function} @@ -12041,7 +12041,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef DeleteCustomerRepricingConfigCallback * @type {function} @@ -12074,7 +12074,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetChannelPartnerRepricingConfigCallback * @type {function} @@ -12107,7 +12107,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerRepricingConfigs}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListChannelPartnerRepricingConfigsCallback * @type {function} @@ -12140,7 +12140,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateChannelPartnerRepricingConfigCallback * @type {function} @@ -12173,7 +12173,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateChannelPartnerRepricingConfigCallback * @type {function} @@ -12206,7 +12206,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef DeleteChannelPartnerRepricingConfigCallback * @type {function} @@ -12239,7 +12239,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#lookupOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|lookupOffer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef LookupOfferCallback * @type {function} @@ -12272,7 +12272,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listProducts}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listProducts}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListProductsCallback * @type {function} @@ -12305,7 +12305,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSkus}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListSkusCallback * @type {function} @@ -12338,7 +12338,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listOffers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListOffersCallback * @type {function} @@ -12371,7 +12371,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableSkus}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListPurchasableSkusCallback * @type {function} @@ -12404,7 +12404,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableOffers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListPurchasableOffersCallback * @type {function} @@ -12437,7 +12437,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#registerSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|registerSubscriber}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef RegisterSubscriberCallback * @type {function} @@ -12470,7 +12470,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#unregisterSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|unregisterSubscriber}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UnregisterSubscriberCallback * @type {function} @@ -12503,7 +12503,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSubscribers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSubscribers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListSubscribersCallback * @type {function} @@ -36373,6 +36373,7 @@ * @property {boolean|null} [packed] FieldOptions packed * @property {google.protobuf.FieldOptions.JSType|null} [jstype] FieldOptions jstype * @property {boolean|null} [lazy] FieldOptions lazy + * @property {boolean|null} [unverifiedLazy] FieldOptions unverifiedLazy * @property {boolean|null} [deprecated] FieldOptions deprecated * @property {boolean|null} [weak] FieldOptions weak * @property {Array.|null} [uninterpretedOption] FieldOptions uninterpretedOption @@ -36429,6 +36430,14 @@ */ FieldOptions.prototype.lazy = false; + /** + * FieldOptions unverifiedLazy. + * @member {boolean} unverifiedLazy + * @memberof google.protobuf.FieldOptions + * @instance + */ + FieldOptions.prototype.unverifiedLazy = false; + /** * FieldOptions deprecated. * @member {boolean} deprecated @@ -36505,6 +36514,8 @@ writer.uint32(/* id 6, wireType 0 =*/48).int32(message.jstype); if (message.weak != null && Object.hasOwnProperty.call(message, "weak")) writer.uint32(/* id 10, wireType 0 =*/80).bool(message.weak); + if (message.unverifiedLazy != null && Object.hasOwnProperty.call(message, "unverifiedLazy")) + writer.uint32(/* id 15, wireType 0 =*/120).bool(message.unverifiedLazy); if (message.uninterpretedOption != null && message.uninterpretedOption.length) for (var i = 0; i < message.uninterpretedOption.length; ++i) $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); @@ -36562,6 +36573,9 @@ case 5: message.lazy = reader.bool(); break; + case 15: + message.unverifiedLazy = reader.bool(); + break; case 3: message.deprecated = reader.bool(); break; @@ -36645,6 +36659,9 @@ if (message.lazy != null && message.hasOwnProperty("lazy")) if (typeof message.lazy !== "boolean") return "lazy: boolean expected"; + if (message.unverifiedLazy != null && message.hasOwnProperty("unverifiedLazy")) + if (typeof message.unverifiedLazy !== "boolean") + return "unverifiedLazy: boolean expected"; if (message.deprecated != null && message.hasOwnProperty("deprecated")) if (typeof message.deprecated !== "boolean") return "deprecated: boolean expected"; @@ -36730,6 +36747,8 @@ } if (object.lazy != null) message.lazy = Boolean(object.lazy); + if (object.unverifiedLazy != null) + message.unverifiedLazy = Boolean(object.unverifiedLazy); if (object.deprecated != null) message.deprecated = Boolean(object.deprecated); if (object.weak != null) @@ -36817,6 +36836,7 @@ object.lazy = false; object.jstype = options.enums === String ? "JS_NORMAL" : 0; object.weak = false; + object.unverifiedLazy = false; object[".google.api.resourceReference"] = null; } if (message.ctype != null && message.hasOwnProperty("ctype")) @@ -36831,6 +36851,8 @@ object.jstype = options.enums === String ? $root.google.protobuf.FieldOptions.JSType[message.jstype] : message.jstype; if (message.weak != null && message.hasOwnProperty("weak")) object.weak = message.weak; + if (message.unverifiedLazy != null && message.hasOwnProperty("unverifiedLazy")) + object.unverifiedLazy = message.unverifiedLazy; if (message.uninterpretedOption && message.uninterpretedOption.length) { object.uninterpretedOption = []; for (var j = 0; j < message.uninterpretedOption.length; ++j) @@ -42062,7 +42084,7 @@ }; /** - * Callback as used by {@link google.longrunning.Operations#listOperations}. + * Callback as used by {@link google.longrunning.Operations|listOperations}. * @memberof google.longrunning.Operations * @typedef ListOperationsCallback * @type {function} @@ -42095,7 +42117,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations#getOperation}. + * Callback as used by {@link google.longrunning.Operations|getOperation}. * @memberof google.longrunning.Operations * @typedef GetOperationCallback * @type {function} @@ -42128,7 +42150,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations#deleteOperation}. + * Callback as used by {@link google.longrunning.Operations|deleteOperation}. * @memberof google.longrunning.Operations * @typedef DeleteOperationCallback * @type {function} @@ -42161,7 +42183,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations#cancelOperation}. + * Callback as used by {@link google.longrunning.Operations|cancelOperation}. * @memberof google.longrunning.Operations * @typedef CancelOperationCallback * @type {function} @@ -42194,7 +42216,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations#waitOperation}. + * Callback as used by {@link google.longrunning.Operations|waitOperation}. * @memberof google.longrunning.Operations * @typedef WaitOperationCallback * @type {function} diff --git a/protos/protos.json b/protos/protos.json index 8299db5..bfda1bf 100644 --- a/protos/protos.json +++ b/protos/protos.json @@ -4336,6 +4336,13 @@ "default": false } }, + "unverifiedLazy": { + "type": "bool", + "id": 15, + "options": { + "default": false + } + }, "deprecated": { "type": "bool", "id": 3, diff --git a/samples/package.json b/samples/package.json index 7aa58ba..dd86b3d 100644 --- a/samples/package.json +++ b/samples/package.json @@ -4,7 +4,7 @@ "license": "Apache-2.0", "author": "Google LLC", "engines": { - "node": ">=10" + "node": ">=12.0.0" }, "files": [ "*.js" From e077c48c64463329395a678fd7ef69fb24537cc6 Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Mon, 16 May 2022 20:47:08 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot=20po?= =?UTF-8?q?st-processor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- .github/sync-repo-settings.yaml | 2 +- .github/workflows/ci.yaml | 2 +- protos/protos.d.ts | 106 +++++++++++++-------------- protos/protos.js | 122 +++++++++++++------------------- protos/protos.json | 7 -- 5 files changed, 102 insertions(+), 137 deletions(-) diff --git a/.github/sync-repo-settings.yaml b/.github/sync-repo-settings.yaml index 1b36268..d1e8b5e 100644 --- a/.github/sync-repo-settings.yaml +++ b/.github/sync-repo-settings.yaml @@ -9,9 +9,9 @@ branchProtectionRules: - "ci/kokoro: System test" - docs - lint - - test (10) - test (12) - test (14) + - test (16) - cla/google - windows - OwlBot Post Processor diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 25251db..f447b84 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [10, 12, 14] + node: [12, 14, 16] steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 diff --git a/protos/protos.d.ts b/protos/protos.d.ts index 1bf01b7..8b6f605 100644 --- a/protos/protos.d.ts +++ b/protos/protos.d.ts @@ -4927,315 +4927,315 @@ export namespace google { namespace CloudChannelService { /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomers}. * @param error Error, if any * @param [response] ListCustomersResponse */ type ListCustomersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListCustomersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomer}. * @param error Error, if any * @param [response] Customer */ type GetCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|checkCloudIdentityAccountsExist}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#checkCloudIdentityAccountsExist}. * @param error Error, if any * @param [response] CheckCloudIdentityAccountsExistResponse */ type CheckCloudIdentityAccountsExistCallback = (error: (Error|null), response?: google.cloud.channel.v1.CheckCloudIdentityAccountsExistResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomer}. * @param error Error, if any * @param [response] Customer */ type CreateCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomer}. * @param error Error, if any * @param [response] Customer */ type UpdateCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomer}. * @param error Error, if any * @param [response] Empty */ type DeleteCustomerCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|importCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#importCustomer}. * @param error Error, if any * @param [response] Customer */ type ImportCustomerCallback = (error: (Error|null), response?: google.cloud.channel.v1.Customer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|provisionCloudIdentity}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#provisionCloudIdentity}. * @param error Error, if any * @param [response] Operation */ type ProvisionCloudIdentityCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listEntitlements}. * @param error Error, if any * @param [response] ListEntitlementsResponse */ type ListEntitlementsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListEntitlementsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableSkus}. * @param error Error, if any * @param [response] ListTransferableSkusResponse */ type ListTransferableSkusCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListTransferableSkusResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableOffers}. * @param error Error, if any * @param [response] ListTransferableOffersResponse */ type ListTransferableOffersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListTransferableOffersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getEntitlement}. * @param error Error, if any * @param [response] Entitlement */ type GetEntitlementCallback = (error: (Error|null), response?: google.cloud.channel.v1.Entitlement) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createEntitlement}. * @param error Error, if any * @param [response] Operation */ type CreateEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeParameters}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeParameters}. * @param error Error, if any * @param [response] Operation */ type ChangeParametersCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeRenewalSettings}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeRenewalSettings}. * @param error Error, if any * @param [response] Operation */ type ChangeRenewalSettingsCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeOffer}. * @param error Error, if any * @param [response] Operation */ type ChangeOfferCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|startPaidService}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#startPaidService}. * @param error Error, if any * @param [response] Operation */ type StartPaidServiceCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|suspendEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#suspendEntitlement}. * @param error Error, if any * @param [response] Operation */ type SuspendEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|cancelEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#cancelEntitlement}. * @param error Error, if any * @param [response] Operation */ type CancelEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|activateEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#activateEntitlement}. * @param error Error, if any * @param [response] Operation */ type ActivateEntitlementCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlements}. * @param error Error, if any * @param [response] Operation */ type TransferEntitlementsCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlementsToGoogle}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlementsToGoogle}. * @param error Error, if any * @param [response] Operation */ type TransferEntitlementsToGoogleCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerLinks}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerLinks}. * @param error Error, if any * @param [response] ListChannelPartnerLinksResponse */ type ListChannelPartnerLinksCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListChannelPartnerLinksResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerLink}. * @param error Error, if any * @param [response] ChannelPartnerLink */ type GetChannelPartnerLinkCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerLink) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerLink}. * @param error Error, if any * @param [response] ChannelPartnerLink */ type CreateChannelPartnerLinkCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerLink) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerLink}. * @param error Error, if any * @param [response] ChannelPartnerLink */ type UpdateChannelPartnerLinkCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerLink) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomerRepricingConfig}. * @param error Error, if any * @param [response] CustomerRepricingConfig */ type GetCustomerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.CustomerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomerRepricingConfigs}. * @param error Error, if any * @param [response] ListCustomerRepricingConfigsResponse */ type ListCustomerRepricingConfigsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListCustomerRepricingConfigsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomerRepricingConfig}. * @param error Error, if any * @param [response] CustomerRepricingConfig */ type CreateCustomerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.CustomerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomerRepricingConfig}. * @param error Error, if any * @param [response] CustomerRepricingConfig */ type UpdateCustomerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.CustomerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomerRepricingConfig}. * @param error Error, if any * @param [response] Empty */ type DeleteCustomerRepricingConfigCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] ChannelPartnerRepricingConfig */ type GetChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerRepricingConfigs}. * @param error Error, if any * @param [response] ListChannelPartnerRepricingConfigsResponse */ type ListChannelPartnerRepricingConfigsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListChannelPartnerRepricingConfigsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] ChannelPartnerRepricingConfig */ type CreateChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] ChannelPartnerRepricingConfig */ type UpdateChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.cloud.channel.v1.ChannelPartnerRepricingConfig) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteChannelPartnerRepricingConfig}. * @param error Error, if any * @param [response] Empty */ type DeleteChannelPartnerRepricingConfigCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|lookupOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#lookupOffer}. * @param error Error, if any * @param [response] Offer */ type LookupOfferCallback = (error: (Error|null), response?: google.cloud.channel.v1.Offer) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listProducts}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listProducts}. * @param error Error, if any * @param [response] ListProductsResponse */ type ListProductsCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListProductsResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSkus}. * @param error Error, if any * @param [response] ListSkusResponse */ type ListSkusCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListSkusResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listOffers}. * @param error Error, if any * @param [response] ListOffersResponse */ type ListOffersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListOffersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableSkus}. * @param error Error, if any * @param [response] ListPurchasableSkusResponse */ type ListPurchasableSkusCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListPurchasableSkusResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableOffers}. * @param error Error, if any * @param [response] ListPurchasableOffersResponse */ type ListPurchasableOffersCallback = (error: (Error|null), response?: google.cloud.channel.v1.ListPurchasableOffersResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|registerSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#registerSubscriber}. * @param error Error, if any * @param [response] RegisterSubscriberResponse */ type RegisterSubscriberCallback = (error: (Error|null), response?: google.cloud.channel.v1.RegisterSubscriberResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|unregisterSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#unregisterSubscriber}. * @param error Error, if any * @param [response] UnregisterSubscriberResponse */ type UnregisterSubscriberCallback = (error: (Error|null), response?: google.cloud.channel.v1.UnregisterSubscriberResponse) => void; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSubscribers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSubscribers}. * @param error Error, if any * @param [response] ListSubscribersResponse */ @@ -14992,9 +14992,6 @@ export namespace google { /** FieldOptions lazy */ lazy?: (boolean|null); - /** FieldOptions unverifiedLazy */ - unverifiedLazy?: (boolean|null); - /** FieldOptions deprecated */ deprecated?: (boolean|null); @@ -15032,9 +15029,6 @@ export namespace google { /** FieldOptions lazy. */ public lazy: boolean; - /** FieldOptions unverifiedLazy. */ - public unverifiedLazy: boolean; - /** FieldOptions deprecated. */ public deprecated: boolean; @@ -17284,35 +17278,35 @@ export namespace google { namespace Operations { /** - * Callback as used by {@link google.longrunning.Operations|listOperations}. + * Callback as used by {@link google.longrunning.Operations#listOperations}. * @param error Error, if any * @param [response] ListOperationsResponse */ type ListOperationsCallback = (error: (Error|null), response?: google.longrunning.ListOperationsResponse) => void; /** - * Callback as used by {@link google.longrunning.Operations|getOperation}. + * Callback as used by {@link google.longrunning.Operations#getOperation}. * @param error Error, if any * @param [response] Operation */ type GetOperationCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** - * Callback as used by {@link google.longrunning.Operations|deleteOperation}. + * Callback as used by {@link google.longrunning.Operations#deleteOperation}. * @param error Error, if any * @param [response] Empty */ type DeleteOperationCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.longrunning.Operations|cancelOperation}. + * Callback as used by {@link google.longrunning.Operations#cancelOperation}. * @param error Error, if any * @param [response] Empty */ type CancelOperationCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** - * Callback as used by {@link google.longrunning.Operations|waitOperation}. + * Callback as used by {@link google.longrunning.Operations#waitOperation}. * @param error Error, if any * @param [response] Operation */ diff --git a/protos/protos.js b/protos/protos.js index 17b270b..6fb28f8 100644 --- a/protos/protos.js +++ b/protos/protos.js @@ -11051,7 +11051,7 @@ }; /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListCustomersCallback * @type {function} @@ -11084,7 +11084,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetCustomerCallback * @type {function} @@ -11117,7 +11117,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|checkCloudIdentityAccountsExist}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#checkCloudIdentityAccountsExist}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CheckCloudIdentityAccountsExistCallback * @type {function} @@ -11150,7 +11150,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateCustomerCallback * @type {function} @@ -11183,7 +11183,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateCustomerCallback * @type {function} @@ -11216,7 +11216,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef DeleteCustomerCallback * @type {function} @@ -11249,7 +11249,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|importCustomer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#importCustomer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ImportCustomerCallback * @type {function} @@ -11282,7 +11282,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|provisionCloudIdentity}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#provisionCloudIdentity}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ProvisionCloudIdentityCallback * @type {function} @@ -11315,7 +11315,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listEntitlements}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListEntitlementsCallback * @type {function} @@ -11348,7 +11348,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableSkus}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListTransferableSkusCallback * @type {function} @@ -11381,7 +11381,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listTransferableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listTransferableOffers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListTransferableOffersCallback * @type {function} @@ -11414,7 +11414,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetEntitlementCallback * @type {function} @@ -11447,7 +11447,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateEntitlementCallback * @type {function} @@ -11480,7 +11480,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeParameters}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeParameters}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ChangeParametersCallback * @type {function} @@ -11513,7 +11513,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeRenewalSettings}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeRenewalSettings}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ChangeRenewalSettingsCallback * @type {function} @@ -11546,7 +11546,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|changeOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#changeOffer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ChangeOfferCallback * @type {function} @@ -11579,7 +11579,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|startPaidService}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#startPaidService}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef StartPaidServiceCallback * @type {function} @@ -11612,7 +11612,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|suspendEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#suspendEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef SuspendEntitlementCallback * @type {function} @@ -11645,7 +11645,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|cancelEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#cancelEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CancelEntitlementCallback * @type {function} @@ -11678,7 +11678,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|activateEntitlement}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#activateEntitlement}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ActivateEntitlementCallback * @type {function} @@ -11711,7 +11711,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlements}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlements}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef TransferEntitlementsCallback * @type {function} @@ -11744,7 +11744,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|transferEntitlementsToGoogle}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#transferEntitlementsToGoogle}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef TransferEntitlementsToGoogleCallback * @type {function} @@ -11777,7 +11777,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerLinks}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerLinks}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListChannelPartnerLinksCallback * @type {function} @@ -11810,7 +11810,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerLink}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetChannelPartnerLinkCallback * @type {function} @@ -11843,7 +11843,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerLink}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateChannelPartnerLinkCallback * @type {function} @@ -11876,7 +11876,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerLink}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerLink}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateChannelPartnerLinkCallback * @type {function} @@ -11909,7 +11909,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetCustomerRepricingConfigCallback * @type {function} @@ -11942,7 +11942,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listCustomerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listCustomerRepricingConfigs}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListCustomerRepricingConfigsCallback * @type {function} @@ -11975,7 +11975,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateCustomerRepricingConfigCallback * @type {function} @@ -12008,7 +12008,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateCustomerRepricingConfigCallback * @type {function} @@ -12041,7 +12041,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteCustomerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteCustomerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef DeleteCustomerRepricingConfigCallback * @type {function} @@ -12074,7 +12074,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|getChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#getChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef GetChannelPartnerRepricingConfigCallback * @type {function} @@ -12107,7 +12107,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listChannelPartnerRepricingConfigs}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listChannelPartnerRepricingConfigs}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListChannelPartnerRepricingConfigsCallback * @type {function} @@ -12140,7 +12140,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|createChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#createChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef CreateChannelPartnerRepricingConfigCallback * @type {function} @@ -12173,7 +12173,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|updateChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#updateChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UpdateChannelPartnerRepricingConfigCallback * @type {function} @@ -12206,7 +12206,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|deleteChannelPartnerRepricingConfig}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#deleteChannelPartnerRepricingConfig}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef DeleteChannelPartnerRepricingConfigCallback * @type {function} @@ -12239,7 +12239,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|lookupOffer}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#lookupOffer}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef LookupOfferCallback * @type {function} @@ -12272,7 +12272,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listProducts}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listProducts}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListProductsCallback * @type {function} @@ -12305,7 +12305,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSkus}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListSkusCallback * @type {function} @@ -12338,7 +12338,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listOffers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListOffersCallback * @type {function} @@ -12371,7 +12371,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableSkus}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableSkus}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListPurchasableSkusCallback * @type {function} @@ -12404,7 +12404,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listPurchasableOffers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listPurchasableOffers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListPurchasableOffersCallback * @type {function} @@ -12437,7 +12437,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|registerSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#registerSubscriber}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef RegisterSubscriberCallback * @type {function} @@ -12470,7 +12470,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|unregisterSubscriber}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#unregisterSubscriber}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef UnregisterSubscriberCallback * @type {function} @@ -12503,7 +12503,7 @@ */ /** - * Callback as used by {@link google.cloud.channel.v1.CloudChannelService|listSubscribers}. + * Callback as used by {@link google.cloud.channel.v1.CloudChannelService#listSubscribers}. * @memberof google.cloud.channel.v1.CloudChannelService * @typedef ListSubscribersCallback * @type {function} @@ -36373,7 +36373,6 @@ * @property {boolean|null} [packed] FieldOptions packed * @property {google.protobuf.FieldOptions.JSType|null} [jstype] FieldOptions jstype * @property {boolean|null} [lazy] FieldOptions lazy - * @property {boolean|null} [unverifiedLazy] FieldOptions unverifiedLazy * @property {boolean|null} [deprecated] FieldOptions deprecated * @property {boolean|null} [weak] FieldOptions weak * @property {Array.|null} [uninterpretedOption] FieldOptions uninterpretedOption @@ -36430,14 +36429,6 @@ */ FieldOptions.prototype.lazy = false; - /** - * FieldOptions unverifiedLazy. - * @member {boolean} unverifiedLazy - * @memberof google.protobuf.FieldOptions - * @instance - */ - FieldOptions.prototype.unverifiedLazy = false; - /** * FieldOptions deprecated. * @member {boolean} deprecated @@ -36514,8 +36505,6 @@ writer.uint32(/* id 6, wireType 0 =*/48).int32(message.jstype); if (message.weak != null && Object.hasOwnProperty.call(message, "weak")) writer.uint32(/* id 10, wireType 0 =*/80).bool(message.weak); - if (message.unverifiedLazy != null && Object.hasOwnProperty.call(message, "unverifiedLazy")) - writer.uint32(/* id 15, wireType 0 =*/120).bool(message.unverifiedLazy); if (message.uninterpretedOption != null && message.uninterpretedOption.length) for (var i = 0; i < message.uninterpretedOption.length; ++i) $root.google.protobuf.UninterpretedOption.encode(message.uninterpretedOption[i], writer.uint32(/* id 999, wireType 2 =*/7994).fork()).ldelim(); @@ -36573,9 +36562,6 @@ case 5: message.lazy = reader.bool(); break; - case 15: - message.unverifiedLazy = reader.bool(); - break; case 3: message.deprecated = reader.bool(); break; @@ -36659,9 +36645,6 @@ if (message.lazy != null && message.hasOwnProperty("lazy")) if (typeof message.lazy !== "boolean") return "lazy: boolean expected"; - if (message.unverifiedLazy != null && message.hasOwnProperty("unverifiedLazy")) - if (typeof message.unverifiedLazy !== "boolean") - return "unverifiedLazy: boolean expected"; if (message.deprecated != null && message.hasOwnProperty("deprecated")) if (typeof message.deprecated !== "boolean") return "deprecated: boolean expected"; @@ -36747,8 +36730,6 @@ } if (object.lazy != null) message.lazy = Boolean(object.lazy); - if (object.unverifiedLazy != null) - message.unverifiedLazy = Boolean(object.unverifiedLazy); if (object.deprecated != null) message.deprecated = Boolean(object.deprecated); if (object.weak != null) @@ -36836,7 +36817,6 @@ object.lazy = false; object.jstype = options.enums === String ? "JS_NORMAL" : 0; object.weak = false; - object.unverifiedLazy = false; object[".google.api.resourceReference"] = null; } if (message.ctype != null && message.hasOwnProperty("ctype")) @@ -36851,8 +36831,6 @@ object.jstype = options.enums === String ? $root.google.protobuf.FieldOptions.JSType[message.jstype] : message.jstype; if (message.weak != null && message.hasOwnProperty("weak")) object.weak = message.weak; - if (message.unverifiedLazy != null && message.hasOwnProperty("unverifiedLazy")) - object.unverifiedLazy = message.unverifiedLazy; if (message.uninterpretedOption && message.uninterpretedOption.length) { object.uninterpretedOption = []; for (var j = 0; j < message.uninterpretedOption.length; ++j) @@ -42084,7 +42062,7 @@ }; /** - * Callback as used by {@link google.longrunning.Operations|listOperations}. + * Callback as used by {@link google.longrunning.Operations#listOperations}. * @memberof google.longrunning.Operations * @typedef ListOperationsCallback * @type {function} @@ -42117,7 +42095,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations|getOperation}. + * Callback as used by {@link google.longrunning.Operations#getOperation}. * @memberof google.longrunning.Operations * @typedef GetOperationCallback * @type {function} @@ -42150,7 +42128,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations|deleteOperation}. + * Callback as used by {@link google.longrunning.Operations#deleteOperation}. * @memberof google.longrunning.Operations * @typedef DeleteOperationCallback * @type {function} @@ -42183,7 +42161,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations|cancelOperation}. + * Callback as used by {@link google.longrunning.Operations#cancelOperation}. * @memberof google.longrunning.Operations * @typedef CancelOperationCallback * @type {function} @@ -42216,7 +42194,7 @@ */ /** - * Callback as used by {@link google.longrunning.Operations|waitOperation}. + * Callback as used by {@link google.longrunning.Operations#waitOperation}. * @memberof google.longrunning.Operations * @typedef WaitOperationCallback * @type {function} diff --git a/protos/protos.json b/protos/protos.json index bfda1bf..8299db5 100644 --- a/protos/protos.json +++ b/protos/protos.json @@ -4336,13 +4336,6 @@ "default": false } }, - "unverifiedLazy": { - "type": "bool", - "id": 15, - "options": { - "default": false - } - }, "deprecated": { "type": "bool", "id": 3, From 7c1742a9452ad61b934f979c76314f7f18110d1c Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Mon, 16 May 2022 14:08:26 -0700 Subject: [PATCH 3/4] dep: update gts --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9247f76..baefaa3 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "@types/node": "^16.0.0", "@types/sinon": "^10.0.0", "c8": "^7.3.5", - "gts": "^3.0.3", + "gts": "^3.1.0", "jsdoc": "^3.6.6", "jsdoc-fresh": "^1.0.2", "jsdoc-region-tag": "^1.0.6", From 8cfedd9a7d1e2cf0e2a23b2ae7e129ee20ef14f5 Mon Sep 17 00:00:00 2001 From: Sofia Leon Date: Mon, 16 May 2022 14:23:36 -0700 Subject: [PATCH 4/4] dep: update google-gax --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index baefaa3..39bb639 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "prelint": "cd samples; npm link ../; npm i" }, "dependencies": { - "google-gax": "^2.24.1" + "google-gax": "^3.0.1" }, "devDependencies": { "@types/mocha": "^9.0.0",