0.0.20250611 • Published 7 months ago

@maxim_mazurok/gapi.client.walletobjects-v1 v0.0.20250611

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

TypeScript typings for Google Wallet API v1

API for issuers to save and manage Google Wallet Objects. For detailed description please check documentation.

Installing

Install typings for Google Wallet API:

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

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 = [
    // Private Service: https://www.googleapis.com/auth/wallet_object.issuer
    'https://www.googleapis.com/auth/wallet_object.issuer',
  ],
  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 Wallet API resources:

/*
Adds a message to the event ticket class referenced by the given class ID.
*/
await gapi.client.walletobjects.eventticketclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the event ticket class with the given class ID.
*/
await gapi.client.walletobjects.eventticketclass.get({
  resourceId: 'resourceId',
});

/*
Inserts an event ticket class with the given ID and properties.
*/
await gapi.client.walletobjects.eventticketclass.insert({});

/*
Returns a list of all event ticket classes for a given issuer ID.
*/
await gapi.client.walletobjects.eventticketclass.list({});

/*
Updates the event ticket class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.eventticketclass.patch({
  resourceId: 'resourceId',
});

/*
Updates the event ticket class referenced by the given class ID.
*/
await gapi.client.walletobjects.eventticketclass.update({
  resourceId: 'resourceId',
});

/*
Adds a message to the event ticket object referenced by the given object ID.
*/
await gapi.client.walletobjects.eventticketobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the event ticket object with the given object ID.
*/
await gapi.client.walletobjects.eventticketobject.get({
  resourceId: 'resourceId',
});

/*
Inserts an event ticket object with the given ID and properties.
*/
await gapi.client.walletobjects.eventticketobject.insert({});

/*
Returns a list of all event ticket objects for a given issuer ID.
*/
await gapi.client.walletobjects.eventticketobject.list({});

/*
Modifies linked offer objects for the event ticket object with the given ID.
*/
await gapi.client.walletobjects.eventticketobject.modifylinkedofferobjects({
  resourceId: 'resourceId',
});

/*
Updates the event ticket object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.eventticketobject.patch({
  resourceId: 'resourceId',
});

/*
Updates the event ticket object referenced by the given object ID.
*/
await gapi.client.walletobjects.eventticketobject.update({
  resourceId: 'resourceId',
});

/*
Adds a message to the flight class referenced by the given class ID.
*/
await gapi.client.walletobjects.flightclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the flight class with the given class ID.
*/
await gapi.client.walletobjects.flightclass.get({resourceId: 'resourceId'});

/*
Inserts an flight class with the given ID and properties.
*/
await gapi.client.walletobjects.flightclass.insert({});

/*
Returns a list of all flight classes for a given issuer ID.
*/
await gapi.client.walletobjects.flightclass.list({});

/*
Updates the flight class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.flightclass.patch({resourceId: 'resourceId'});

/*
Updates the flight class referenced by the given class ID.
*/
await gapi.client.walletobjects.flightclass.update({resourceId: 'resourceId'});

/*
Adds a message to the flight object referenced by the given object ID.
*/
await gapi.client.walletobjects.flightobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the flight object with the given object ID.
*/
await gapi.client.walletobjects.flightobject.get({resourceId: 'resourceId'});

/*
Inserts an flight object with the given ID and properties.
*/
await gapi.client.walletobjects.flightobject.insert({});

/*
Returns a list of all flight objects for a given issuer ID.
*/
await gapi.client.walletobjects.flightobject.list({});

/*
Updates the flight object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.flightobject.patch({resourceId: 'resourceId'});

/*
Updates the flight object referenced by the given object ID.
*/
await gapi.client.walletobjects.flightobject.update({resourceId: 'resourceId'});

/*
Adds a message to the generic class referenced by the given class ID.
*/
await gapi.client.walletobjects.genericclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the generic class with the given class ID.
*/
await gapi.client.walletobjects.genericclass.get({resourceId: 'resourceId'});

/*
Inserts a generic class with the given ID and properties.
*/
await gapi.client.walletobjects.genericclass.insert({});

/*
Returns a list of all generic classes for a given issuer ID.
*/
await gapi.client.walletobjects.genericclass.list({});

/*
Updates the generic class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.genericclass.patch({resourceId: 'resourceId'});

/*
Updates the Generic class referenced by the given class ID.
*/
await gapi.client.walletobjects.genericclass.update({resourceId: 'resourceId'});

/*
Adds a message to the generic object referenced by the given object ID.
*/
await gapi.client.walletobjects.genericobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the generic object with the given object ID.
*/
await gapi.client.walletobjects.genericobject.get({resourceId: 'resourceId'});

/*
Inserts a generic object with the given ID and properties.
*/
await gapi.client.walletobjects.genericobject.insert({});

/*
Returns a list of all generic objects for a given issuer ID.
*/
await gapi.client.walletobjects.genericobject.list({});

/*
Updates the generic object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.genericobject.patch({resourceId: 'resourceId'});

/*
Updates the generic object referenced by the given object ID.
*/
await gapi.client.walletobjects.genericobject.update({
  resourceId: 'resourceId',
});

/*
Adds a message to the gift card class referenced by the given class ID.
*/
await gapi.client.walletobjects.giftcardclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the gift card class with the given class ID.
*/
await gapi.client.walletobjects.giftcardclass.get({resourceId: 'resourceId'});

/*
Inserts an gift card class with the given ID and properties.
*/
await gapi.client.walletobjects.giftcardclass.insert({});

/*
Returns a list of all gift card classes for a given issuer ID.
*/
await gapi.client.walletobjects.giftcardclass.list({});

/*
Updates the gift card class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.giftcardclass.patch({resourceId: 'resourceId'});

/*
Updates the gift card class referenced by the given class ID.
*/
await gapi.client.walletobjects.giftcardclass.update({
  resourceId: 'resourceId',
});

/*
Adds a message to the gift card object referenced by the given object ID.
*/
await gapi.client.walletobjects.giftcardobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the gift card object with the given object ID.
*/
await gapi.client.walletobjects.giftcardobject.get({resourceId: 'resourceId'});

/*
Inserts an gift card object with the given ID and properties.
*/
await gapi.client.walletobjects.giftcardobject.insert({});

/*
Returns a list of all gift card objects for a given issuer ID.
*/
await gapi.client.walletobjects.giftcardobject.list({});

/*
Updates the gift card object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.giftcardobject.patch({
  resourceId: 'resourceId',
});

/*
Updates the gift card object referenced by the given object ID.
*/
await gapi.client.walletobjects.giftcardobject.update({
  resourceId: 'resourceId',
});

/*
Returns the issuer with the given issuer ID.
*/
await gapi.client.walletobjects.issuer.get({resourceId: 'resourceId'});

/*
Inserts an issuer with the given ID and properties.
*/
await gapi.client.walletobjects.issuer.insert({});

/*
Returns a list of all issuers shared to the caller.
*/
await gapi.client.walletobjects.issuer.list({});

/*
Updates the issuer referenced by the given issuer ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.issuer.patch({resourceId: 'resourceId'});

/*
Updates the issuer referenced by the given issuer ID.
*/
await gapi.client.walletobjects.issuer.update({resourceId: 'resourceId'});

/*
Inserts the resources in the JWT.
*/
await gapi.client.walletobjects.jwt.insert({});

/*
Adds a message to the loyalty class referenced by the given class ID.
*/
await gapi.client.walletobjects.loyaltyclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the loyalty class with the given class ID.
*/
await gapi.client.walletobjects.loyaltyclass.get({resourceId: 'resourceId'});

/*
Inserts an loyalty class with the given ID and properties.
*/
await gapi.client.walletobjects.loyaltyclass.insert({});

/*
Returns a list of all loyalty classes for a given issuer ID.
*/
await gapi.client.walletobjects.loyaltyclass.list({});

/*
Updates the loyalty class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.loyaltyclass.patch({resourceId: 'resourceId'});

/*
Updates the loyalty class referenced by the given class ID.
*/
await gapi.client.walletobjects.loyaltyclass.update({resourceId: 'resourceId'});

/*
Adds a message to the loyalty object referenced by the given object ID.
*/
await gapi.client.walletobjects.loyaltyobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the loyalty object with the given object ID.
*/
await gapi.client.walletobjects.loyaltyobject.get({resourceId: 'resourceId'});

/*
Inserts an loyalty object with the given ID and properties.
*/
await gapi.client.walletobjects.loyaltyobject.insert({});

/*
Returns a list of all loyalty objects for a given issuer ID.
*/
await gapi.client.walletobjects.loyaltyobject.list({});

/*
Modifies linked offer objects for the loyalty object with the given ID.
*/
await gapi.client.walletobjects.loyaltyobject.modifylinkedofferobjects({
  resourceId: 'resourceId',
});

/*
Updates the loyalty object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.loyaltyobject.patch({resourceId: 'resourceId'});

/*
Updates the loyalty object referenced by the given object ID.
*/
await gapi.client.walletobjects.loyaltyobject.update({
  resourceId: 'resourceId',
});

/*
Downloads rotating barcode values for the transit object referenced by the given object ID.
*/
await gapi.client.walletobjects.media.download({resourceId: 'resourceId'});

/*
Uploads rotating barcode values for the transit object referenced by the given object ID. Note the max upload size is specified in google3/production/config/cdd/apps-upload/customers/payments-consumer-passes/config.gcl and enforced by Scotty.
*/
await gapi.client.walletobjects.media.upload({resourceId: 'resourceId'});

/*
Adds a message to the offer class referenced by the given class ID.
*/
await gapi.client.walletobjects.offerclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the offer class with the given class ID.
*/
await gapi.client.walletobjects.offerclass.get({resourceId: 'resourceId'});

/*
Inserts an offer class with the given ID and properties.
*/
await gapi.client.walletobjects.offerclass.insert({});

/*
Returns a list of all offer classes for a given issuer ID.
*/
await gapi.client.walletobjects.offerclass.list({});

/*
Updates the offer class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.offerclass.patch({resourceId: 'resourceId'});

/*
Updates the offer class referenced by the given class ID.
*/
await gapi.client.walletobjects.offerclass.update({resourceId: 'resourceId'});

/*
Adds a message to the offer object referenced by the given object ID.
*/
await gapi.client.walletobjects.offerobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the offer object with the given object ID.
*/
await gapi.client.walletobjects.offerobject.get({resourceId: 'resourceId'});

/*
Inserts an offer object with the given ID and properties.
*/
await gapi.client.walletobjects.offerobject.insert({});

/*
Returns a list of all offer objects for a given issuer ID.
*/
await gapi.client.walletobjects.offerobject.list({});

/*
Updates the offer object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.offerobject.patch({resourceId: 'resourceId'});

/*
Updates the offer object referenced by the given object ID.
*/
await gapi.client.walletobjects.offerobject.update({resourceId: 'resourceId'});

/*
Returns the permissions for the given issuer id.
*/
await gapi.client.walletobjects.permissions.get({resourceId: 'resourceId'});

/*
Updates the permissions for the given issuer.
*/
await gapi.client.walletobjects.permissions.update({resourceId: 'resourceId'});

/*
Inserts the smart tap.
*/
await gapi.client.walletobjects.smarttap.insert({});

/*
Adds a message to the transit class referenced by the given class ID.
*/
await gapi.client.walletobjects.transitclass.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the transit class with the given class ID.
*/
await gapi.client.walletobjects.transitclass.get({resourceId: 'resourceId'});

/*
Inserts a transit class with the given ID and properties.
*/
await gapi.client.walletobjects.transitclass.insert({});

/*
Returns a list of all transit classes for a given issuer ID.
*/
await gapi.client.walletobjects.transitclass.list({});

/*
Updates the transit class referenced by the given class ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.transitclass.patch({resourceId: 'resourceId'});

/*
Updates the transit class referenced by the given class ID.
*/
await gapi.client.walletobjects.transitclass.update({resourceId: 'resourceId'});

/*
Adds a message to the transit object referenced by the given object ID.
*/
await gapi.client.walletobjects.transitobject.addmessage({
  resourceId: 'resourceId',
});

/*
Returns the transit object with the given object ID.
*/
await gapi.client.walletobjects.transitobject.get({resourceId: 'resourceId'});

/*
Inserts an transit object with the given ID and properties.
*/
await gapi.client.walletobjects.transitobject.insert({});

/*
Returns a list of all transit objects for a given issuer ID.
*/
await gapi.client.walletobjects.transitobject.list({});

/*
Updates the transit object referenced by the given object ID. This method supports patch semantics.
*/
await gapi.client.walletobjects.transitobject.patch({resourceId: 'resourceId'});

/*
Updates the transit object referenced by the given object ID.
*/
await gapi.client.walletobjects.transitobject.update({
  resourceId: 'resourceId',
});
0.0.20250409

10 months ago

0.0.20250528

8 months ago

0.0.20250407

10 months ago

0.0.20250529

8 months ago

0.0.20250408

10 months ago

0.0.20250527

8 months ago

0.0.20250403

10 months ago

0.0.20250404

10 months ago

0.0.20250522

8 months ago

0.0.20250401

10 months ago

0.0.20250523

8 months ago

0.0.20250402

10 months ago

0.0.20250520

8 months ago

0.0.20250521

8 months ago

0.0.20250530

8 months ago

0.0.20250418

9 months ago

0.0.20250416

9 months ago

0.0.20250417

9 months ago

0.0.20250414

9 months ago

0.0.20250415

9 months ago

0.0.20250410

9 months ago

0.0.20250411

9 months ago

0.0.20250429

9 months ago

0.0.20250306

11 months ago

0.0.20250428

9 months ago

0.0.20250307

11 months ago

0.0.20250425

9 months ago

0.0.20250304

11 months ago

0.0.20250305

11 months ago

0.0.20250423

9 months ago

0.0.20250424

9 months ago

0.0.20250303

11 months ago

0.0.20250421

9 months ago

0.0.20250422

9 months ago

0.0.20250430

9 months ago

0.0.20250310

11 months ago

0.0.20250317

10 months ago

0.0.20250318

10 months ago

0.0.20250313

10 months ago

0.0.20250314

10 months ago

0.0.20250311

10 months ago

0.0.20250312

10 months ago

0.0.20250321

10 months ago

0.0.20250328

10 months ago

0.0.20250207

12 months ago

0.0.20250326

10 months ago

0.0.20250205

12 months ago

0.0.20250327

10 months ago

0.0.20250206

12 months ago

0.0.20250324

10 months ago

0.0.20250203

12 months ago

0.0.20250325

10 months ago

0.0.20250204

12 months ago

0.0.20250331

10 months ago

0.0.20250210

11 months ago

0.0.20250211

11 months ago

0.0.20250218

11 months ago

0.0.20250219

11 months ago

0.0.20250214

11 months ago

0.0.20250212

11 months ago

0.0.20250213

11 months ago

0.0.20250221

11 months ago

0.0.20250220

11 months ago

0.0.20250108

1 year ago

0.0.20250109

1 year ago

0.0.20250227

11 months ago

0.0.20250106

1 year ago

0.0.20250228

11 months ago

0.0.20250107

1 year ago

0.0.20250225

11 months ago

0.0.20250226

11 months ago

0.0.20250224

11 months ago

0.0.20250103

1 year ago

0.0.20250110

1 year ago

0.0.20250117

1 year ago

0.0.20250115

1 year ago

0.0.20250116

1 year ago

0.0.20250113

1 year ago

0.0.20250114

1 year ago

0.0.20250122

12 months ago

0.0.20250123

12 months ago

0.0.20250121

12 months ago

0.0.20250128

12 months ago

0.0.20250129

12 months ago

0.0.20250127

12 months ago

0.0.20250124

12 months ago

0.0.20250131

12 months ago

0.0.20250130

12 months ago

0.0.20241212

1 year ago

0.0.20241211

1 year ago

0.0.20241210

1 year ago

0.0.20241206

1 year ago

0.0.20241205

1 year ago

0.0.20241204

1 year ago

0.0.20241203

1 year ago

0.0.20241209

1 year ago

0.0.20250609

7 months ago

0.0.20250605

8 months ago

0.0.20250606

8 months ago

0.0.20250603

8 months ago

0.0.20250604

8 months ago

0.0.20250602

8 months ago

0.0.20241114

1 year ago

0.0.20241113

1 year ago

0.0.20241112

1 year ago

0.0.20241111

1 year ago

0.0.20250610

7 months ago

0.0.20250611

7 months ago

0.0.20241107

1 year ago

0.0.20241106

1 year ago

0.0.20241105

1 year ago

0.0.20241104

1 year ago

0.0.20241108

1 year ago

0.0.20241120

1 year ago

0.0.20250508

9 months ago

0.0.20250509

9 months ago

0.0.20250506

9 months ago

0.0.20250507

9 months ago

0.0.20250505

9 months ago

0.0.20250502

9 months ago

0.0.20241118

1 year ago

0.0.20241115

1 year ago

0.0.20241119

1 year ago

0.0.20250519

8 months ago

0.0.20250515

8 months ago

0.0.20250516

8 months ago

0.0.20250513

8 months ago

0.0.20250514

8 months ago

0.0.20250512

8 months ago

0.0.20241101

1 year ago

0.0.20241031

1 year ago

0.0.20241030

1 year ago

0.0.20241029

1 year ago

0.0.20241028

1 year ago

0.0.20241025

1 year ago

0.0.20241024

1 year ago

0.0.20241022

1 year ago

0.0.20241021

1 year ago

0.0.20241018

1 year ago

0.0.20241017

1 year ago

0.0.20241016

1 year ago

0.0.20241015

1 year ago

0.0.20240925

1 year ago

0.0.20240926

1 year ago

0.0.20240927

1 year ago

0.0.20240930

1 year ago

0.0.20241003

1 year ago

0.0.20241002

1 year ago

0.0.20241001

1 year ago

0.0.20241011

1 year ago

0.0.20241010

1 year ago

0.0.20241014

1 year ago

0.0.20241008

1 year ago

0.0.20241007

1 year ago

0.0.20241009

1 year ago

0.0.20240909

1 year ago

0.0.20240918

1 year ago

0.0.20240919

1 year ago

0.0.20240916

1 year ago

0.0.20240917

1 year ago

0.0.20240910

1 year ago

0.0.20240911

1 year ago

0.0.20240912

1 year ago

0.0.20240913

1 year ago

0.0.20240923

1 year ago

0.0.20240924

1 year ago

0.0.20240920

1 year ago

0.0.20240903

1 year ago

0.0.20240904

1 year ago

0.0.20240905

1 year ago

0.0.20240906

1 year ago

0.0.20240828

1 year ago

0.0.20240829

1 year ago

0.0.20240830

1 year ago

0.0.20240827

1 year ago

0.0.20240606

2 years ago

0.0.20240607

2 years ago

0.0.20240729

1 year ago

0.0.20240723

1 year ago

0.0.20240724

1 year ago

0.0.20240603

2 years ago

0.0.20240725

1 year ago

0.0.20240604

2 years ago

0.0.20240726

1 year ago

0.0.20240722

1 year ago

0.0.20240617

2 years ago

0.0.20240618

2 years ago

0.0.20240613

2 years ago

0.0.20240614

2 years ago

0.0.20240730

1 year ago

0.0.20240731

1 year ago

0.0.20240610

2 years ago

0.0.20240611

2 years ago

0.0.20240612

2 years ago

0.0.20240628

2 years ago

0.0.20240624

2 years ago

0.0.20240625

2 years ago

0.0.20240626

2 years ago

0.0.20240627

2 years ago

0.0.20240620

2 years ago

0.0.20240621

2 years ago

0.0.20240530

2 years ago

0.0.20240531

2 years ago

0.0.20240808

1 year ago

0.0.20240809

1 year ago

0.0.20240529

2 years ago

0.0.20240805

1 year ago

0.0.20240806

1 year ago

0.0.20240801

1 year ago

0.0.20240802

1 year ago

0.0.20240528

2 years ago

0.0.20240522

2 years ago

0.0.20240523

2 years ago

0.0.20240819

1 year ago

0.0.20240815

1 year ago

0.0.20240816

1 year ago

0.0.20240812

1 year ago

0.0.20240813

1 year ago

0.0.20240814

1 year ago

0.0.20240709

2 years ago

0.0.20240826

1 year ago

0.0.20240708

2 years ago

0.0.20240822

1 year ago

0.0.20240701

2 years ago

0.0.20240823

1 year ago

0.0.20240702

2 years ago

0.0.20240703

2 years ago

0.0.20240820

1 year ago

0.0.20240821

1 year ago

0.0.20240716

2 years ago

0.0.20240717

2 years ago

0.0.20240718

2 years ago

0.0.20240719

2 years ago

0.0.20240712

2 years ago

0.0.20240715

2 years ago

0.0.20240710

2 years ago

0.0.20240711

2 years ago

0.0.20240520

2 years ago

0.0.20240521

2 years ago

0.0.20240516

2 years ago

0.0.20240517

2 years ago

0.0.20240515

2 years ago

0.0.20240514

2 years ago

0.0.20240513

2 years ago

0.0.20240510

2 years ago

0.0.20240509

2 years ago

0.0.20240508

2 years ago

0.0.20240507

2 years ago

0.0.20240506

2 years ago

0.0.20240503

2 years ago

0.0.20240502

2 years ago

0.0.20240501

2 years ago

0.0.20240430

2 years ago

0.0.20240429

2 years ago

0.0.20240426

2 years ago

0.0.20240425

2 years ago

0.0.20240424

2 years ago

0.0.20240423

2 years ago

0.0.20240422

2 years ago

0.0.20240419

2 years ago

0.0.20240417

2 years ago

0.0.20240416

2 years ago

0.0.20240415

2 years ago

0.0.20240412

2 years ago

0.0.20240411

2 years ago

0.0.20240410

2 years ago

0.0.20240409

2 years ago

0.0.20240408

2 years ago

0.0.20240405

2 years ago

0.0.20240404

2 years ago

0.0.20240403

2 years ago

0.0.20240401

2 years ago

0.0.20240402

2 years ago

0.0.20240329

2 years ago

0.0.20240327

2 years ago

0.0.20240328

2 years ago

0.0.20240326

2 years ago

0.0.20240325

2 years ago

0.0.20240322

2 years ago

0.0.20240321

2 years ago

0.0.20240320

2 years ago

0.0.20240319

2 years ago

0.0.20240318

2 years ago

0.0.20240315

2 years ago

0.0.20240314

2 years ago

0.0.20240312

2 years ago

0.0.20240313

2 years ago

0.0.20240308

2 years ago

0.0.20240307

2 years ago

0.0.20240306

2 years ago

0.0.20240305

2 years ago

0.0.20240304

2 years ago

0.0.20240229

2 years ago

0.0.20240228

2 years ago

0.0.20240227

2 years ago

0.0.20240226

2 years ago

0.0.20240222

2 years ago

0.0.20240223

2 years ago

0.0.20240221

2 years ago

0.0.20240220

2 years ago

0.0.20240216

2 years ago

0.0.20240215

2 years ago

0.0.20240214

2 years ago

0.0.20240213

2 years ago

0.0.20240212

2 years ago

0.0.20240209

2 years ago

0.0.20240208

2 years ago

0.0.20240207

2 years ago

0.0.20240206

2 years ago

0.0.20240205

2 years ago

0.0.20240202

2 years ago

0.0.20240201

2 years ago

0.0.20240131

2 years ago

0.0.20240130

2 years ago

0.0.20240129

2 years ago

0.0.20240125

2 years ago

0.0.20240126

2 years ago

0.0.20240124

2 years ago

0.0.20240122

2 years ago

0.0.20240123

2 years ago

0.0.20240119

2 years ago

0.0.20240118

2 years ago

0.0.20240117

2 years ago

0.0.20240116

2 years ago

0.0.20240112

2 years ago

0.0.20240110

2 years ago

0.0.20240111

2 years ago

0.0.20240109

2 years ago

0.0.20240108

2 years ago

0.0.20240105

2 years ago

0.0.20240104

2 years ago

0.0.20240103

2 years ago

0.0.20231213

2 years ago

0.0.20231212

2 years ago

0.0.20231211

2 years ago

0.0.20231207

2 years ago

0.0.20231208

2 years ago

0.0.20231206

2 years ago

0.0.20231205

2 years ago

0.0.20231204

2 years ago

0.0.20231129

2 years ago