Skip to content

Releases: MethodFi/method-python

v1.1.13

02 May 18:36
cd92207

Choose a tag to compare

  • 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

14 Apr 20:25
437ae41

Choose a tag to compare

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

09 Apr 19:53
a41139c

Choose a tag to compare

Bilal/mthd-8679 (#52)

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

* bump version

v1.1.10

19 Mar 20:35
70ee676

Choose a tag to compare

What's Changed

  • Adds entity attribute as a subscription option

v1.1.9

07 Mar 19:26
28b836f

Choose a tag to compare

Mike/adds payment status (#49)

* adds cashed, payment method, and data_as_of

* version

* fix entity test date format

v1.1.8

07 Feb 21:37
0a2a53f

Choose a tag to compare

payment dry-run (#48)

* payment dry-run

v1.1.7

07 Feb 18:12
a1fb77e

Choose a tag to compare

account products + attributes (#47)

v1.1.6

15 Jan 21:54
09703b4

Choose a tag to compare

added credit_health_open_accounts to attributes (#46)

v1.1.5

07 Jan 22:33
1fee8b3

Choose a tag to compare

entity vehicles (#45)

* entity vehicles

* tests

v1.1.4

06 Dec 20:00
3d4ef2f

Choose a tag to compare

added posted enum to PaymentStatusesLiterals (#44)

* added posted enum to PaymentStatusesLiterals

* version bump

* added posted enum to PaymentFundStatusesLiterals