Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@maxim_mazurok/gapi.client.mybusinessaccountmanagement-v1
Advanced tools
TypeScript typings for My Business Account Management API v1
The My Business Account Management API provides an interface for managing access to a location on Google. Note - If you have a quota of 0 after enabling the API, please request for GBP API access. For detailed description please check documentation.
Install typings for My Business Account Management API:
npm install @types/gapi.client.mybusinessaccountmanagement-v1 --save-dev
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://mybusinessaccountmanagement.googleapis.com/$discovery/rest?version=v1',
() => {
// now we can use:
// gapi.client.mybusinessaccountmanagement
}
);
// 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('mybusinessaccountmanagement', 'v1', () => {
// now we can use:
// gapi.client.mybusinessaccountmanagement
});
After that you can use My Business Account Management API resources:
/*
Creates an account with the specified name and type under the given parent. - Personal accounts and Organizations cannot be created. - User Groups cannot be created with a Personal account as primary owner. - Location Groups cannot be created with a primary owner of a Personal account if the Personal account is in an Organization. - Location Groups cannot own Location Groups.
*/
await gapi.client.mybusinessaccountmanagement.accounts.create({});
/*
Gets the specified account. Returns `NOT_FOUND` if the account does not exist or if the caller does not have access rights to it.
*/
await gapi.client.mybusinessaccountmanagement.accounts.get({name: 'name'});
/*
Lists all of the accounts for the authenticated user. This includes all accounts that the user owns, as well as any accounts for which the user has management rights.
*/
await gapi.client.mybusinessaccountmanagement.accounts.list({});
/*
Updates the specified business account. Personal accounts cannot be updated using this method.
*/
await gapi.client.mybusinessaccountmanagement.accounts.patch({name: 'name'});
/*
Moves a location from an account that the user owns to another account that the same user administers. The user must be an owner of the account the location is currently associated with and must also be at least a manager of the destination account.
*/
await gapi.client.mybusinessaccountmanagement.locations.transfer({
name: 'name',
});
FAQs
TypeScript typings for My Business Account Management API v1
The npm package @maxim_mazurok/gapi.client.mybusinessaccountmanagement-v1 receives a total of 978 weekly downloads. As such, @maxim_mazurok/gapi.client.mybusinessaccountmanagement-v1 popularity was classified as not popular.
We found that @maxim_mazurok/gapi.client.mybusinessaccountmanagement-v1 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.