@maxim_mazurok/gapi.client.content
Advanced tools
Comparing version 2.1.20220209 to 2.1.20220217
{ | ||
"name": "@maxim_mazurok/gapi.client.content", | ||
"version": "2.1.20220209", | ||
"version": "2.1.20220217", | ||
"description": "TypeScript typings for Content API for Shopping v2.1", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -457,3 +457,3 @@ # TypeScript typings for Content API for Shopping v2.1 | ||
/* | ||
Deprecated. Notifies that item return and refund was handled directly by merchant outside of Google payments processing (e.g. cash refund done in store). Note: We recommend calling the returnrefundlineitem method to refund in-store returns. We will issue the refund directly to the customer. This helps to prevent possible differences arising between merchant and Google transaction records. We also recommend having the point of sale system communicate with Google to ensure that customers do not receive a double refund by first refunding via Google then via an in-store return. | ||
Deprecated. Notifies that item return and refund was handled directly by merchant outside of Google payments processing (for example, cash refund done in store). Note: We recommend calling the returnrefundlineitem method to refund in-store returns. We will issue the refund directly to the customer. This helps to prevent possible differences arising between merchant and Google transaction records. We also recommend having the point of sale system communicate with Google to ensure that customers do not receive a double refund by first refunding through Google then through an in-store return. | ||
*/ | ||
@@ -483,3 +483,3 @@ await gapi.client.content.orders.instorerefundlineitem({ merchantId: "merchantId", orderId: "orderId", }); | ||
/* | ||
Returns and refunds a line item. Note that this method can only be called on fully shipped orders. Please also note that the Orderreturns API is the preferred way to handle returns after you receive a return from a customer. You can use Orderreturns.list or Orderreturns.get to search for the return, and then use Orderreturns.processreturn to issue the refund. If the return cannot be found, then we recommend using this API to issue a refund. | ||
Returns and refunds a line item. Note that this method can only be called on fully shipped orders. The Orderreturns API is the preferred way to handle returns after you receive a return from a customer. You can use Orderreturns.list or Orderreturns.get to search for the return, and then use Orderreturns.processreturn to issue the refund. If the return cannot be found, then we recommend using this API to issue a refund. | ||
*/ | ||
@@ -489,3 +489,3 @@ await gapi.client.content.orders.returnrefundlineitem({ merchantId: "merchantId", orderId: "orderId", }); | ||
/* | ||
Sets (or overrides if it already exists) merchant provided annotations in the form of key-value pairs. A common use case would be to supply us with additional structured information about a line item that cannot be provided via other methods. Submitted key-value pairs can be retrieved as part of the orders resource. | ||
Sets (or overrides if it already exists) merchant provided annotations in the form of key-value pairs. A common use case would be to supply us with additional structured information about a line item that cannot be provided through other methods. Submitted key-value pairs can be retrieved as part of the orders resource. | ||
*/ | ||
@@ -615,3 +615,3 @@ await gapi.client.content.orders.setlineitemmetadata({ merchantId: "merchantId", orderId: "orderId", }); | ||
/* | ||
Register a Merchant Center account for pubsub notifications. Note that cloud topic name should not be provided as part of the request. | ||
Register a Merchant Center account for pubsub notifications. Note that cloud topic name shouldn't be provided as part of the request. | ||
*/ | ||
@@ -618,0 +618,0 @@ await gapi.client.content.pubsubnotificationsettings.update({ merchantId: "merchantId", }); |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
955441