Skip to content

Releases: MethodFi/method-python

v1.1.13

Choose a tag to compare

@ossiggy ossiggy released this 02 May 18:36
cd92207
  • Updates entity attribute handling - there is a new payload for requesting entity attributes. Please see more details in the documentation
  • Changes entity subscription creation, please note the new payload in the documentation when upgrading to this version

For example:

response = method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create('credit_score')

is now:

response = method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create({
    enroll: 'credit_score',
  })

For attributes specifically, it will be:

response = method
  .entities('ent_TYHMaRJUUeJ7U')
  .subscriptions
  .create({
    enroll: 'attribute',
    payload: {
      attributes: {
        requested_attributes: ['credit_health_credit_card_usage', 'credit_health_derogatory_marks', ...etc.]
      }
    }
  })

v1.1.12

Choose a tag to compare

@ossiggy ossiggy released this 14 Apr 20:25
437ae41

What's Changed

  • adds card_brand and payment_instrument as subscribable products by @ossiggy in #53

Full Changelog: v1.1.11...1.1.12

v1.1.11

Choose a tag to compare

@sbilalh sbilalh released this 09 Apr 19:53
a41139c
Bilal/mthd-8679 (#52)

* support for transactions, payment instruments & simulating credit scores + tests

* bump version

v1.1.10

Choose a tag to compare

@ossiggy ossiggy released this 19 Mar 20:35
70ee676

What's Changed

  • Adds entity attribute as a subscription option

v1.1.9

Choose a tag to compare

@sbilalh sbilalh released this 07 Mar 19:26
28b836f
Mike/adds payment status (#49)

* adds cashed, payment method, and data_as_of

* version

* fix entity test date format

v1.1.8

Choose a tag to compare

@sbilalh sbilalh released this 07 Feb 21:37
0a2a53f
payment dry-run (#48)

* payment dry-run

v1.1.7

Choose a tag to compare

@sbilalh sbilalh released this 07 Feb 18:12
a1fb77e
account products + attributes (#47)

v1.1.6

Choose a tag to compare

@sbilalh sbilalh released this 15 Jan 21:54
09703b4
added credit_health_open_accounts to attributes (#46)

v1.1.5

Choose a tag to compare

@sbilalh sbilalh released this 07 Jan 22:33
1fee8b3
entity vehicles (#45)

* entity vehicles

* tests

v1.1.4

Choose a tag to compare

@sbilalh sbilalh released this 06 Dec 20:00
3d4ef2f
added posted enum to PaymentStatusesLiterals (#44)

* added posted enum to PaymentStatusesLiterals

* version bump

* added posted enum to PaymentFundStatusesLiterals