@maxim_mazurok/gapi.client.content
Advanced tools
Comparing version 2.1.20201211 to 2.1.20210106
{ | ||
"name": "@maxim_mazurok/gapi.client.content", | ||
"version": "2.1.20201211", | ||
"version": "2.1.20210106", | ||
"description": "TypeScript typings for Content API for Shopping v2.1", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -152,2 +152,32 @@ # TypeScript typings for Content API for Shopping v2.1 | ||
/* | ||
Uploads a collection to your Merchant Center account. If a collection with the same collectionId already exists, this method updates that entry. In each update, the collection is completely replaced by the fields in the body of the update request. | ||
*/ | ||
await gapi.client.content.collections.create({ merchantId: "merchantId", }); | ||
/* | ||
Deletes a collection from your Merchant Center account. | ||
*/ | ||
await gapi.client.content.collections.delete({ collectionId: "collectionId", merchantId: "merchantId", }); | ||
/* | ||
Retrieves a collection from your Merchant Center account. | ||
*/ | ||
await gapi.client.content.collections.get({ collectionId: "collectionId", merchantId: "merchantId", }); | ||
/* | ||
Lists the collections in your Merchant Center account. The response might contain fewer items than specified by page_size. Rely on next_page_token to determine if there are more items to be requested. | ||
*/ | ||
await gapi.client.content.collections.list({ merchantId: "merchantId", }); | ||
/* | ||
Gets the status of a collection from your Merchant Center account. | ||
*/ | ||
await gapi.client.content.collectionstatuses.get({ collectionId: "collectionId", merchantId: "merchantId", }); | ||
/* | ||
Lists the statuses of the collections in your Merchant Center account. | ||
*/ | ||
await gapi.client.content.collectionstatuses.list({ merchantId: "merchantId", }); | ||
/* | ||
Retrieves a single CSS domain by ID. | ||
@@ -154,0 +184,0 @@ */ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
782821
13877
706