Socket
Socket
Sign inDemoInstall

@maxim_mazurok/gapi.client.mybusinessnotifications-v1

Package Overview
Dependencies
Maintainers
1
Versions
348
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maxim_mazurok/gapi.client.mybusinessnotifications-v1

TypeScript typings for My Business Notifications API v1


Version published
Weekly downloads
1.3K
increased by1.08%
Maintainers
1
Weekly downloads
 
Created
Source

TypeScript typings for My Business Notifications API v1

The My Business Notification Settings API enables managing notification settings for business accounts. Note - If you have a quota of 0 after enabling the API, please request for GBP API access. For detailed description please check documentation.

Installing

Install typings for My Business Notifications API:

npm install @types/gapi.client.mybusinessnotifications-v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://mybusinessnotifications.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.mybusinessnotifications
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('mybusinessnotifications', 'v1', () => {
  // now we can use:
  // gapi.client.mybusinessnotifications
});

After that you can use My Business Notifications API resources:

/*
Returns the pubsub notification settings for the account.
*/
await gapi.client.mybusinessnotifications.accounts.getNotificationSetting({
  name: 'name',
});

/*
Sets the pubsub notification setting for the account informing Google which topic to send pubsub notifications for. Use the notification_types field within notification_setting to manipulate the events an account wants to subscribe to. An account will only have one notification setting resource, and only one pubsub topic can be set. To delete the setting, update with an empty notification_types
*/
await gapi.client.mybusinessnotifications.accounts.updateNotificationSetting({
  name: 'name',
});

FAQs

Package last updated on 18 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc