0.0.20240516 • Published 1 day ago

@maxim_mazurok/gapi.client.androidenterprise-v1 v0.0.20240516

Weekly downloads
-
License
MIT
Repository
github
Last release
1 day ago

TypeScript typings for Google Play EMM API v1

Manages the deployment of apps to Android Enterprise devices. For detailed description please check documentation.

Installing

Install typings for Google Play EMM API:

npm install @types/gapi.client.androidenterprise-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://androidenterprise.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.androidenterprise
  }
);
// 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('androidenterprise', 'v1', () => {
  // now we can use:
  // gapi.client.androidenterprise
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [
    // Manage corporate Android devices
    'https://www.googleapis.com/auth/androidenterprise',
  ],
  immediate = true;
// ...

gapi.auth.authorize(
  {client_id: client_id, scope: scope, immediate: immediate},
  authResult => {
    if (authResult && !authResult.error) {
      /* handle successful authorization */
    } else {
      /* handle authorization error */
    }
  }
);

After that you can use Google Play EMM API resources:

/*
Uploads a report containing any changes in app states on the device since the last report was generated. You can call this method up to 3 times every 24 hours for a given device. If you exceed the quota, then the Google Play EMM API returns HTTP 429 Too Many Requests.
*/
await gapi.client.androidenterprise.devices.forceReportUpload({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Retrieves the details of a device.
*/
await gapi.client.androidenterprise.devices.get({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Retrieves whether a device's access to Google services is enabled or disabled. The device state takes effect only if enforcing EMM policies on Android devices is enabled in the Google Admin Console. Otherwise, the device state is ignored and all devices are allowed access to Google services. This is only supported for Google-managed users.
*/
await gapi.client.androidenterprise.devices.getState({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Retrieves the IDs of all of a user's devices.
*/
await gapi.client.androidenterprise.devices.list({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Sets whether a device's access to Google services is enabled or disabled. The device state takes effect only if enforcing EMM policies on Android devices is enabled in the Google Admin Console. Otherwise, the device state is ignored and all devices are allowed access to Google services. This is only supported for Google-managed users.
*/
await gapi.client.androidenterprise.devices.setState({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Updates the device policy. To ensure the policy is properly enforced, you need to prevent unmanaged accounts from accessing Google Play by setting the allowed_accounts in the managed configuration for the Google Play package. See restrict accounts in Google Play. When provisioning a new device, you should set the device policy using this method before adding the managed Google Play Account to the device, otherwise the policy will not be applied for a short period of time after adding the account to the device.
*/
await gapi.client.androidenterprise.devices.update({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Acknowledges notifications that were received from Enterprises.PullNotificationSet to prevent subsequent calls from returning the same notifications.
*/
await gapi.client.androidenterprise.enterprises.acknowledgeNotificationSet({});

/*
Completes the signup flow, by specifying the Completion token and Enterprise token. This request must not be called multiple times for a given Enterprise Token.
*/
await gapi.client.androidenterprise.enterprises.completeSignup({});

/*
Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.
*/
await gapi.client.androidenterprise.enterprises.createEnrollmentToken({
  enterpriseId: 'enterpriseId',
});

/*
Returns a unique token to access an embeddable UI. To generate a web UI, pass the generated token into the managed Google Play javascript API. Each token may only be used to start one UI session. See the JavaScript API documentation for further information.
*/
await gapi.client.androidenterprise.enterprises.createWebToken({
  enterpriseId: 'enterpriseId',
});

/*
Enrolls an enterprise with the calling EMM.
*/
await gapi.client.androidenterprise.enterprises.enroll({token: 'token'});

/*
Generates a sign-up URL.
*/
await gapi.client.androidenterprise.enterprises.generateSignupUrl({});

/*
Retrieves the name and domain of an enterprise.
*/
await gapi.client.androidenterprise.enterprises.get({
  enterpriseId: 'enterpriseId',
});

/*
Returns a service account and credentials. The service account can be bound to the enterprise by calling setAccount. The service account is unique to this enterprise and EMM, and will be deleted if the enterprise is unbound. The credentials contain private key data and are not stored server-side. This method can only be called after calling Enterprises.Enroll or Enterprises.CompleteSignup, and before Enterprises.SetAccount; at other times it will return an error. Subsequent calls after the first will generate a new, unique set of credentials, and invalidate the previously generated credentials. Once the service account is bound to the enterprise, it can be managed using the serviceAccountKeys resource.
*/
await gapi.client.androidenterprise.enterprises.getServiceAccount({
  enterpriseId: 'enterpriseId',
});

/*
Returns the store layout for the enterprise. If the store layout has not been set, returns "basic" as the store layout type and no homepage.
*/
await gapi.client.androidenterprise.enterprises.getStoreLayout({
  enterpriseId: 'enterpriseId',
});

/*
Looks up an enterprise by domain name. This is only supported for enterprises created via the Google-initiated creation flow. Lookup of the id is not needed for enterprises created via the EMM-initiated flow since the EMM learns the enterprise ID in the callback specified in the Enterprises.generateSignupUrl call.
*/
await gapi.client.androidenterprise.enterprises.list({domain: 'domain'});

/*
Pulls and returns a notification set for the enterprises associated with the service account authenticated for the request. The notification set may be empty if no notification are pending. A notification set returned needs to be acknowledged within 20 seconds by calling Enterprises.AcknowledgeNotificationSet, unless the notification set is empty. Notifications that are not acknowledged within the 20 seconds will eventually be included again in the response to another PullNotificationSet request, and those that are never acknowledged will ultimately be deleted according to the Google Cloud Platform Pub/Sub system policy. Multiple requests might be performed concurrently to retrieve notifications, in which case the pending notifications (if any) will be split among each caller, if any are pending. If no notifications are present, an empty notification list is returned. Subsequent requests may return more notifications once they become available.
*/
await gapi.client.androidenterprise.enterprises.pullNotificationSet({});

/*
Sends a test notification to validate the EMM integration with the Google Cloud Pub/Sub service for this enterprise.
*/
await gapi.client.androidenterprise.enterprises.sendTestPushNotification({
  enterpriseId: 'enterpriseId',
});

/*
Sets the account that will be used to authenticate to the API as the enterprise.
*/
await gapi.client.androidenterprise.enterprises.setAccount({
  enterpriseId: 'enterpriseId',
});

/*
Sets the store layout for the enterprise. By default, storeLayoutType is set to "basic" and the basic store layout is enabled. The basic layout only contains apps approved by the admin, and that have been added to the available product set for a user (using the setAvailableProductSet call). Apps on the page are sorted in order of their product ID value. If you create a custom store layout (by setting storeLayoutType = "custom" and setting a homepage), the basic store layout is disabled.
*/
await gapi.client.androidenterprise.enterprises.setStoreLayout({
  enterpriseId: 'enterpriseId',
});

/*
Unenrolls an enterprise from the calling EMM.
*/
await gapi.client.androidenterprise.enterprises.unenroll({
  enterpriseId: 'enterpriseId',
});

/*
Removes an entitlement to an app for a user. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.entitlements.delete({
  enterpriseId: 'enterpriseId',
  entitlementId: 'entitlementId',
  userId: 'userId',
});

/*
Retrieves details of an entitlement. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.entitlements.get({
  enterpriseId: 'enterpriseId',
  entitlementId: 'entitlementId',
  userId: 'userId',
});

/*
Lists all entitlements for the specified user. Only the ID is set. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.entitlements.list({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Adds or updates an entitlement to an app for a user. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.entitlements.update({
  enterpriseId: 'enterpriseId',
  entitlementId: 'entitlementId',
  userId: 'userId',
});

/*
Retrieves details of an enterprise's group license for a product. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.grouplicenses.get({
  enterpriseId: 'enterpriseId',
  groupLicenseId: 'groupLicenseId',
});

/*
Retrieves IDs of all products for which the enterprise has a group license. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.grouplicenses.list({
  enterpriseId: 'enterpriseId',
});

/*
Retrieves the IDs of the users who have been granted entitlements under the license. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.grouplicenseusers.list({
  enterpriseId: 'enterpriseId',
  groupLicenseId: 'groupLicenseId',
});

/*
Requests to remove an app from a device. A call to get or list will still show the app as installed on the device until it is actually removed. A successful response indicates that a removal request has been sent to the device. The call will be considered successful even if the app is not present on the device (e.g. it was never installed, or was removed by the user).
*/
await gapi.client.androidenterprise.installs.delete({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  installId: 'installId',
  userId: 'userId',
});

/*
Retrieves details of an installation of an app on a device.
*/
await gapi.client.androidenterprise.installs.get({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  installId: 'installId',
  userId: 'userId',
});

/*
Retrieves the details of all apps installed on the specified device.
*/
await gapi.client.androidenterprise.installs.list({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Requests to install the latest version of an app to a device. If the app is already installed, then it is updated to the latest version if necessary.
*/
await gapi.client.androidenterprise.installs.update({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  installId: 'installId',
  userId: 'userId',
});

/*
Removes a per-device managed configuration for an app for the specified device.
*/
await gapi.client.androidenterprise.managedconfigurationsfordevice.delete({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  managedConfigurationForDeviceId: 'managedConfigurationForDeviceId',
  userId: 'userId',
});

/*
Retrieves details of a per-device managed configuration.
*/
await gapi.client.androidenterprise.managedconfigurationsfordevice.get({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  managedConfigurationForDeviceId: 'managedConfigurationForDeviceId',
  userId: 'userId',
});

/*
Lists all the per-device managed configurations for the specified device. Only the ID is set.
*/
await gapi.client.androidenterprise.managedconfigurationsfordevice.list({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Adds or updates a per-device managed configuration for an app for the specified device.
*/
await gapi.client.androidenterprise.managedconfigurationsfordevice.update({
  deviceId: 'deviceId',
  enterpriseId: 'enterpriseId',
  managedConfigurationForDeviceId: 'managedConfigurationForDeviceId',
  userId: 'userId',
});

/*
Removes a per-user managed configuration for an app for the specified user.
*/
await gapi.client.androidenterprise.managedconfigurationsforuser.delete({
  enterpriseId: 'enterpriseId',
  managedConfigurationForUserId: 'managedConfigurationForUserId',
  userId: 'userId',
});

/*
Retrieves details of a per-user managed configuration for an app for the specified user.
*/
await gapi.client.androidenterprise.managedconfigurationsforuser.get({
  enterpriseId: 'enterpriseId',
  managedConfigurationForUserId: 'managedConfigurationForUserId',
  userId: 'userId',
});

/*
Lists all the per-user managed configurations for the specified user. Only the ID is set.
*/
await gapi.client.androidenterprise.managedconfigurationsforuser.list({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Adds or updates the managed configuration settings for an app for the specified user. If you support the Managed configurations iframe, you can apply managed configurations to a user by specifying an mcmId and its associated configuration variables (if any) in the request. Alternatively, all EMMs can apply managed configurations by passing a list of managed properties.
*/
await gapi.client.androidenterprise.managedconfigurationsforuser.update({
  enterpriseId: 'enterpriseId',
  managedConfigurationForUserId: 'managedConfigurationForUserId',
  userId: 'userId',
});

/*
Lists all the managed configurations settings for the specified app.
*/
await gapi.client.androidenterprise.managedconfigurationssettings.list({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Retrieves details of an Android app permission for display to an enterprise admin.
*/
await gapi.client.androidenterprise.permissions.get({
  permissionId: 'permissionId',
});

/*
 Approves the specified product and the relevant app permissions, if any. The maximum number of products that you can approve per enterprise customer is 1,000. To learn how to use managed Google Play to design and create a store layout to display approved products to your users, see Store Layout Design. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations. 
*/
await gapi.client.androidenterprise.products.approve({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Generates a URL that can be rendered in an iframe to display the permissions (if any) of a product. An enterprise admin must view these permissions and accept them on behalf of their organization in order to approve that product. Admins should accept the displayed permissions by interacting with a separate UI element in the EMM console, which in turn should trigger the use of this URL as the approvalUrlInfo.approvalUrl property in a Products.approve call to approve the product. This URL can only be used to display permissions for up to 1 day. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations. 
*/
await gapi.client.androidenterprise.products.generateApprovalUrl({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Retrieves details of a product for display to an enterprise admin.
*/
await gapi.client.androidenterprise.products.get({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Retrieves the schema that defines the configurable properties for this product. All products have a schema, but this schema may be empty if no managed configurations have been defined. This schema can be used to populate a UI that allows an admin to configure the product. To apply a managed configuration based on the schema obtained using this API, see Managed Configurations through Play.
*/
await gapi.client.androidenterprise.products.getAppRestrictionsSchema({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Retrieves the Android app permissions required by this app.
*/
await gapi.client.androidenterprise.products.getPermissions({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Finds approved products that match a query, or all approved products if there is no query. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations. 
*/
await gapi.client.androidenterprise.products.list({
  enterpriseId: 'enterpriseId',
});

/*
Unapproves the specified product (and the relevant app permissions, if any) **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.products.unapprove({
  enterpriseId: 'enterpriseId',
  productId: 'productId',
});

/*
Removes and invalidates the specified credentials for the service account associated with this enterprise. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount.
*/
await gapi.client.androidenterprise.serviceaccountkeys.delete({
  enterpriseId: 'enterpriseId',
  keyId: 'keyId',
});

/*
Generates new credentials for the service account associated with this enterprise. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount. Only the type of the key should be populated in the resource to be inserted.
*/
await gapi.client.androidenterprise.serviceaccountkeys.insert({
  enterpriseId: 'enterpriseId',
});

/*
Lists all active credentials for the service account associated with this enterprise. Only the ID and key type are returned. The calling service account must have been retrieved by calling Enterprises.GetServiceAccount and must have been set as the enterprise service account by calling Enterprises.SetAccount.
*/
await gapi.client.androidenterprise.serviceaccountkeys.list({
  enterpriseId: 'enterpriseId',
});

/*
Deletes a cluster.
*/
await gapi.client.androidenterprise.storelayoutclusters.delete({
  clusterId: 'clusterId',
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Retrieves details of a cluster.
*/
await gapi.client.androidenterprise.storelayoutclusters.get({
  clusterId: 'clusterId',
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Inserts a new cluster in a page.
*/
await gapi.client.androidenterprise.storelayoutclusters.insert({
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Retrieves the details of all clusters on the specified page.
*/
await gapi.client.androidenterprise.storelayoutclusters.list({
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Updates a cluster.
*/
await gapi.client.androidenterprise.storelayoutclusters.update({
  clusterId: 'clusterId',
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Deletes a store page.
*/
await gapi.client.androidenterprise.storelayoutpages.delete({
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Retrieves details of a store page.
*/
await gapi.client.androidenterprise.storelayoutpages.get({
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Inserts a new store page.
*/
await gapi.client.androidenterprise.storelayoutpages.insert({
  enterpriseId: 'enterpriseId',
});

/*
Retrieves the details of all pages in the store.
*/
await gapi.client.androidenterprise.storelayoutpages.list({
  enterpriseId: 'enterpriseId',
});

/*
Updates the content of a store page.
*/
await gapi.client.androidenterprise.storelayoutpages.update({
  enterpriseId: 'enterpriseId',
  pageId: 'pageId',
});

/*
Deleted an EMM-managed user.
*/
await gapi.client.androidenterprise.users.delete({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Generates an authentication token which the device policy client can use to provision the given EMM-managed user account on a device. The generated token is single-use and expires after a few minutes. You can provision a maximum of 10 devices per user. This call only works with EMM-managed accounts.
*/
await gapi.client.androidenterprise.users.generateAuthenticationToken({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Retrieves a user's details.
*/
await gapi.client.androidenterprise.users.get({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Retrieves the set of products a user is entitled to access. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.users.getAvailableProductSet({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Creates a new EMM-managed user. The Users resource passed in the body of the request should include an accountIdentifier and an accountType. If a corresponding user already exists with the same account identifier, the user will be updated with the resource. In this case only the displayName field can be changed.
*/
await gapi.client.androidenterprise.users.insert({
  enterpriseId: 'enterpriseId',
});

/*
Looks up a user by primary email address. This is only supported for Google-managed users. Lookup of the id is not needed for EMM-managed users because the id is already returned in the result of the Users.insert call.
*/
await gapi.client.androidenterprise.users.list({
  email: 'email',
  enterpriseId: 'enterpriseId',
});

/*
Revokes access to all devices currently provisioned to the user. The user will no longer be able to use the managed Play store on any of their managed devices. This call only works with EMM-managed accounts.
*/
await gapi.client.androidenterprise.users.revokeDeviceAccess({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Modifies the set of products that a user is entitled to access (referred to as *whitelisted* products). Only products that are approved or products that were previously approved (products with revoked approval) can be whitelisted. **Note:** This item has been deprecated. New integrations cannot use this method and can refer to our new recommendations.
*/
await gapi.client.androidenterprise.users.setAvailableProductSet({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Updates the details of an EMM-managed user. Can be used with EMM-managed users only (not Google managed users). Pass the new details in the Users resource in the request body. Only the displayName field can be changed. Other fields must either be unset or have the currently active value.
*/
await gapi.client.androidenterprise.users.update({
  enterpriseId: 'enterpriseId',
  userId: 'userId',
});

/*
Deletes an existing web app.
*/
await gapi.client.androidenterprise.webapps.delete({
  enterpriseId: 'enterpriseId',
  webAppId: 'webAppId',
});

/*
Gets an existing web app.
*/
await gapi.client.androidenterprise.webapps.get({
  enterpriseId: 'enterpriseId',
  webAppId: 'webAppId',
});

/*
Creates a new web app for the enterprise.
*/
await gapi.client.androidenterprise.webapps.insert({
  enterpriseId: 'enterpriseId',
});

/*
Retrieves the details of all web apps for a given enterprise.
*/
await gapi.client.androidenterprise.webapps.list({
  enterpriseId: 'enterpriseId',
});

/*
Updates an existing web app.
*/
await gapi.client.androidenterprise.webapps.update({
  enterpriseId: 'enterpriseId',
  webAppId: 'webAppId',
});
0.0.20240516

1 day ago

0.0.20240515

5 days ago

0.0.20240514

6 days ago

0.0.20240512

7 days ago

0.0.20240509

8 days ago

0.0.20240508

12 days ago

0.0.20240507

13 days ago

0.0.20240506

14 days ago

0.0.20240502

15 days ago

0.0.20240501

19 days ago

0.0.20240430

20 days ago

0.0.20240429

21 days ago

0.0.20240425

22 days ago

0.0.20240424

26 days ago

0.0.20240423

27 days ago

0.0.20240422

28 days ago

0.0.20240418

29 days ago

0.0.20240417

1 month ago

0.0.20240416

1 month ago

0.0.20240415

1 month ago

0.0.20240411

1 month ago

0.0.20240410

1 month ago

0.0.20240408

1 month ago

0.0.20240409

1 month ago

0.0.20240404

1 month ago

0.0.20240403

2 months ago

0.0.20240402

2 months ago

0.0.20240331

2 months ago

0.0.20240328

2 months ago

0.0.20240327

2 months ago

0.0.20240326

2 months ago

0.0.20240324

2 months ago

0.0.20240321

2 months ago

0.0.20240320

2 months ago

0.0.20240319

2 months ago

0.0.20240318

2 months ago

0.0.20240314

2 months ago

0.0.20240313

2 months ago

0.0.20240311

2 months ago

0.0.20240307

2 months ago

0.0.20240312

2 months ago

0.0.20240306

2 months ago

0.0.20240305

3 months ago

0.0.20240304

3 months ago

0.0.20240229

3 months ago

0.0.20240228

3 months ago

0.0.20240227

3 months ago

0.0.20240222

3 months ago

0.0.20240226

3 months ago

0.0.20240220

3 months ago

0.0.20240218

3 months ago

0.0.20240215

3 months ago

0.0.20240214

3 months ago

0.0.20240213

3 months ago

0.0.20240212

3 months ago

0.0.20240208

3 months ago

0.0.20240206

3 months ago

0.0.20240204

3 months ago

0.0.20240201

4 months ago

0.0.20240131

4 months ago

0.0.20240130

4 months ago

0.0.20240129

4 months ago

0.0.20240125

4 months ago

0.0.20240124

4 months ago

0.0.20240123

4 months ago

0.0.20240121

4 months ago

0.0.20240117

4 months ago

0.0.20240116

4 months ago

0.0.20240114

4 months ago

0.0.20240110

4 months ago

0.0.20240109

4 months ago

0.0.20240107

4 months ago

0.0.20240104

4 months ago

0.0.20240103

5 months ago

0.0.20240101

5 months ago

0.0.20231212

5 months ago

0.0.20231207

5 months ago

0.0.20231210

5 months ago

0.0.20231206

6 months ago

0.0.20231205

6 months ago

0.0.20231129

6 months ago

0.0.20230816

9 months ago

0.0.20230817

9 months ago

0.0.20230810

9 months ago

0.0.20231105

7 months ago

0.0.20230811

9 months ago

0.0.20231108

6 months ago

0.0.20231107

6 months ago

0.0.20230814

9 months ago

0.0.20231109

6 months ago

0.0.20230813

9 months ago

0.0.20231113

6 months ago

0.0.20230807

10 months ago

0.0.20230927

8 months ago

0.0.20230809

10 months ago

0.0.20230920

8 months ago

0.0.20230921

8 months ago

0.0.20230924

8 months ago

0.0.20230801

10 months ago

0.0.20230802

10 months ago

0.0.20231102

7 months ago

0.0.20231101

7 months ago

0.0.20230719

10 months ago

0.0.20230718

10 months ago

0.0.20231128

6 months ago

0.0.20231127

6 months ago

0.0.20230830

9 months ago

0.0.20231008

7 months ago

0.0.20230831

9 months ago

0.0.20230716

10 months ago

0.0.20230713

10 months ago

0.0.20231010

7 months ago

0.0.20231012

7 months ago

0.0.20231016

7 months ago

0.0.20230829

9 months ago

0.0.20230708

10 months ago

0.0.20230827

9 months ago

0.0.20230706

11 months ago

0.0.20230821

9 months ago

0.0.20231116

6 months ago

0.0.20230820

9 months ago

0.0.20230704

11 months ago

0.0.20230823

9 months ago

0.0.20230824

9 months ago

0.0.20230703

11 months ago

0.0.20231120

6 months ago

0.0.20231122

6 months ago

0.0.20231001

8 months ago

0.0.20231121

6 months ago

0.0.20231003

8 months ago

0.0.20231123

6 months ago

0.0.20231005

8 months ago

0.0.20231004

8 months ago

0.0.20231031

7 months ago

0.0.20231030

7 months ago

0.0.20231018

7 months ago

0.0.20231017

7 months ago

0.0.20230723

10 months ago

0.0.20230720

10 months ago

0.0.20231019

7 months ago

0.0.20230726

10 months ago

0.0.20230727

10 months ago

0.0.20230724

10 months ago

0.0.20231023

7 months ago

0.0.20231025

7 months ago

0.0.20231024

7 months ago

0.0.20230730

10 months ago

0.0.20231026

7 months ago

0.0.20230629

11 months ago

0.0.20230627

11 months ago

0.0.20230628

11 months ago

0.0.20230917

8 months ago

0.0.20230919

8 months ago

0.0.20230910

8 months ago

0.0.20230913

8 months ago

0.0.20230914

8 months ago

0.0.20230912

8 months ago

0.0.20230906

9 months ago

0.0.20230907

8 months ago

0.0.20230903

9 months ago

0.0.20230622

11 months ago

0.0.20230625

11 months ago

0.0.20230524

12 months ago

0.0.20230525

12 months ago

0.0.20230523

12 months ago

0.0.20230529

12 months ago

0.0.20230531

12 months ago

0.0.20230530

12 months ago

0.0.20230429

1 year ago

0.0.20230427

1 year ago

0.0.20230619

11 months ago

0.0.20230612

11 months ago

0.0.20230613

11 months ago

0.0.20230614

11 months ago

0.0.20230615

11 months ago

0.0.20230607

12 months ago

0.0.20230608

11 months ago

0.0.20230601

12 months ago

0.0.20230605

12 months ago

0.0.20230606

12 months ago

0.0.20230511

1 year ago

0.0.20230517

1 year ago

0.0.20230518

12 months ago

0.0.20230515

1 year ago

0.0.20230516

1 year ago

0.0.20230521

12 months ago

0.0.20230509

1 year ago

0.0.20230502

1 year ago

0.0.20230503

1 year ago

0.0.20230507

1 year ago

0.0.20230504

1 year ago

0.0.20230412

1 year ago

0.0.20230413

1 year ago

0.0.20230418

1 year ago

0.0.20230419

1 year ago

0.0.20230301

1 year ago

0.0.20230420

1 year ago

0.0.20230404

1 year ago

0.0.20230402

1 year ago

0.0.20230405

1 year ago

0.0.20230410

1 year ago

0.0.20230411

1 year ago

0.0.20230315

1 year ago

0.0.20230316

1 year ago

0.0.20230314

1 year ago

0.0.20230319

1 year ago

0.0.20230322

1 year ago

0.0.20230321

1 year ago

0.0.20230425

1 year ago

0.0.20230304

1 year ago

0.0.20230426

1 year ago

0.0.20230423

1 year ago

0.0.20230302

1 year ago

0.0.20230308

1 year ago

0.0.20230309

1 year ago

0.0.20230307

1 year ago

0.0.20230312

1 year ago

0.0.20230224

1 year ago

0.0.20230327

1 year ago

0.0.20230328

1 year ago

0.0.20230329

1 year ago

0.0.20230330

1 year ago

0.0.20230228

1 year ago

0.0.20230226

1 year ago

0.0.20230214

1 year ago

0.0.20230215

1 year ago

0.0.20230218

1 year ago

0.0.20230219

1 year ago

0.0.20230221

1 year ago

0.0.20230222

1 year ago

0.0.20230206

1 year ago

0.0.20230129

1 year ago

0.0.20230209

1 year ago

0.0.20230207

1 year ago

0.0.20230208

1 year ago

0.0.20230131

1 year ago

0.0.20230212

1 year ago

0.0.20230201

1 year ago

0.0.20230202

1 year ago

0.0.20221115

2 years ago

0.0.20221114

2 years ago

0.0.20221110

2 years ago

0.0.20230102

1 year ago

0.0.20221109

2 years ago

0.0.20221108

2 years ago

0.0.20221107

2 years ago

0.0.20221103

2 years ago

0.0.20221130

1 year ago

0.0.20230117

1 year ago

0.0.20221215

1 year ago

0.0.20230118

1 year ago

0.0.20221214

1 year ago

0.0.20230115

1 year ago

0.0.20221213

1 year ago

0.0.20221212

1 year ago

0.0.20230119

1 year ago

0.0.20230124

1 year ago

0.0.20221208

1 year ago

0.0.20230125

1 year ago

0.0.20221206

1 year ago

0.0.20221129

1 year ago

0.0.20230123

1 year ago

0.0.20221205

1 year ago

0.0.20221126

1 year ago

0.0.20230104

1 year ago

0.0.20230105

1 year ago

0.0.20221201

1 year ago

0.0.20221124

1 year ago

0.0.20221123

1 year ago

0.0.20221122

1 year ago

0.0.20221121

1 year ago

0.0.20230109

1 year ago

0.0.20230110

1 year ago

0.0.20230111

1 year ago

0.0.20230112

1 year ago

0.0.20221117

1 year ago

0.0.20221031

2 years ago

0.0.20221016

2 years ago

0.0.20221011

2 years ago

0.0.20221010

2 years ago

0.0.20221009

2 years ago

0.0.20221029

2 years ago

0.0.20220930

2 years ago

0.0.20221020

2 years ago

0.0.20221027

2 years ago

0.0.20221004

2 years ago

0.0.20221102

2 years ago

0.0.20221025

2 years ago

0.0.20221023

2 years ago

0.0.20221001

2 years ago

0.0.20220927

2 years ago

0.0.20220928

2 years ago

0.0.20221019

2 years ago

0.0.20221018

2 years ago

0.0.20220925

2 years ago

0.0.20220830

2 years ago

0.0.20220906

2 years ago

0.0.20220908

2 years ago

0.0.20220921

2 years ago

0.0.20220910

2 years ago

0.0.20220913

2 years ago

0.0.20220825

2 years ago

0.0.20220904

2 years ago

0.0.20220817

2 years ago

0.0.20220815

2 years ago

0.0.20220813

2 years ago

0.0.20220811

2 years ago

0.0.20220810

2 years ago