payrix 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/payrix/resource/credentials.rb +1 -1
- data/lib/payrix/resource/disbursements.rb +1 -1
- data/lib/payrix/resource/entities.rb +1 -1
- data/lib/payrix/resource/entries.rb +2 -1
- data/lib/payrix/resource/holds.rb +1 -1
- data/lib/payrix/resource/logins.rb +1 -1
- data/lib/payrix/resource/members.rb +2 -1
- data/lib/payrix/resource/merchants.rb +8 -2
- data/lib/payrix/resource/payout_flows.rb +2 -1
- data/lib/payrix/resource/payouts.rb +2 -1
- data/lib/payrix/resource/pending_entries.rb +2 -1
- data/lib/payrix/resource/sessions.rb +1 -1
- data/lib/payrix/resource/statement_entries.rb +1 -1
- data/lib/payrix/resource/terminal_txn_metadatas.rb +20 -0
- data/lib/payrix/resource/terminal_txn_refs.rb +19 -0
- data/lib/payrix/resource/terminal_txns.rb +1 -1
- data/lib/payrix/resource/txns.rb +2 -1
- data/lib/payrix/resource.rb +2 -0
- data/lib/payrix/version.rb +1 -1
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89e803aa477a87e55a9aea86ccfae4d941bf17ee27149553a7031a9e8f3f1ad4
|
4
|
+
data.tar.gz: 6e694b84572d47c07395731ce3a90e0842a68adca250cd5ee8b6ac66a06132a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9703012f430f3ef81c4dc9ad43045b87937357886b0aa6a1ec9fe29f247a964c4e04e1de12b1e7e650e47c156d0d1fceb95a67780ba3fe1c3d5a371b68e0fe65
|
7
|
+
data.tar.gz: ed21f21ee569a7f4aec31826902f9d11cb12c0f1d895d0c8b2c8132de4b803fb1fc663a1ac84ae9ed39b12133a10a11aefeb6d51b775db1d78ccb06164927770
|
@@ -11,7 +11,7 @@ module Payrix
|
|
11
11
|
ATTRS = [:id, :created, :modified, :creator, :modifier,
|
12
12
|
:entity, :name, :description, :username, :password,
|
13
13
|
:connectUsername, :connectPassword, :integration, :type, :inactive,
|
14
|
-
:frozen]
|
14
|
+
:frozen, :secret]
|
15
15
|
|
16
16
|
attr_accessor *ATTRS
|
17
17
|
|
@@ -16,7 +16,7 @@ module Payrix
|
|
16
16
|
:status, :processed, :currency, :payment, :expiration,
|
17
17
|
:sameDay, :returnedAmount, :statement, :settlement, :lastNegativeEntry,
|
18
18
|
:lastNegativePendingEntry, :lastPositiveReserveEntry, :disbursementEntriesStatus, :lastPositiveEntry, :lastPositivePendingEntry,
|
19
|
-
:lastNegativeReserveEntry]
|
19
|
+
:lastNegativeReserveEntry, :fundingStatus, :secondaryDescriptor]
|
20
20
|
|
21
21
|
attr_accessor *ATTRS
|
22
22
|
|
@@ -16,7 +16,7 @@ module Payrix
|
|
16
16
|
:tcDate, :tcIp, :tcAcceptDate, :tcAcceptIp, :custom,
|
17
17
|
:inactive, :frozen, :tinStatus, :reserved, :checkStage,
|
18
18
|
:public, :customerPhone, :locations, :industry, :displayName,
|
19
|
-
:totalCreditDisbursements]
|
19
|
+
:totalCreditDisbursements, :payoutSecondaryDescriptor, :einType, :irsFilingName]
|
20
20
|
|
21
21
|
attr_accessor *ATTRS
|
22
22
|
|
@@ -16,7 +16,8 @@ module Payrix
|
|
16
16
|
:fee, :disbursement, :refund, :txn, :chargeback,
|
17
17
|
:adjustment, :profitShare, :event, :eventId, :description,
|
18
18
|
:amount, :unsourced, :pending, :originalCurrency, :currencyRate,
|
19
|
-
:isFee, :statement, :settlement, :archiveSummary
|
19
|
+
:isFee, :statement, :settlement, :archiveSummary, :pendingEntry,
|
20
|
+
:pendingEntryCreated, :originalEventId, :originalEvent]
|
20
21
|
|
21
22
|
attr_accessor *ATTRS
|
22
23
|
|
@@ -12,7 +12,7 @@ module Payrix
|
|
12
12
|
ATTRS = [:id, :created, :modified, :creator, :modifier,
|
13
13
|
:login, :txn, :verification, :action, :released,
|
14
14
|
:reviewed, :inactive, :frozen, :entity, :terminalTxn,
|
15
|
-
:decisionAction, :account]
|
15
|
+
:decisionAction, :account, :verificationRef]
|
16
16
|
|
17
17
|
attr_accessor *ATTRS
|
18
18
|
|
@@ -14,7 +14,7 @@ module Payrix
|
|
14
14
|
:country, :zip, :state, :city, :address2,
|
15
15
|
:address1, :confirmed, :roles, :division, :inactive,
|
16
16
|
:frozen, :allowedResources, :restrictedResources, :parentDivision, :portalAccess,
|
17
|
-
:effectiveRoles]
|
17
|
+
:ssoId, :effectiveRoles]
|
18
18
|
|
19
19
|
attr_accessor *ATTRS
|
20
20
|
|
@@ -13,7 +13,8 @@ module Payrix
|
|
13
13
|
:ssn, :dob, :dl, :dlstate, :ownership,
|
14
14
|
:email, :fax, :phone, :country, :zip,
|
15
15
|
:state, :city, :address2, :address1, :primary,
|
16
|
-
:inactive, :frozen, :timezone, :gender
|
16
|
+
:inactive, :frozen, :timezone, :gender, :significantResponsibility,
|
17
|
+
:politicallyExposed, :citizenship]
|
17
18
|
|
18
19
|
attr_accessor *ATTRS
|
19
20
|
|
@@ -11,8 +11,14 @@ module Payrix
|
|
11
11
|
ATTRS = [:id, :created, :modified, :creator, :modifier,
|
12
12
|
:lastActivity, :entity, :dba, :new, :established,
|
13
13
|
:annualCCSales, :avgTicket, :amex, :discover, :mcc,
|
14
|
-
:status, :boarded, :
|
15
|
-
:
|
14
|
+
:status, :boarded, :inactive, :frozen, :environment,
|
15
|
+
:visaMvv, :chargebackNotificationEmail, :statusReason, :totalApprovedSales, :autoBoarded,
|
16
|
+
:saqType, :saqDate, :qsa, :letterStatus, :letterDate,
|
17
|
+
:tcAttestation, :visaDisclosure, :disclosureIP, :disclosureDate, :accountClosureReasonCode,
|
18
|
+
:accountClosureReasonDate, :annualCCSaleVolume, :annualACHSaleVolume, :riskLevel, :creditRatio,
|
19
|
+
:creditTimeliness, :chargebackRatio, :ndxDays, :ndxPercentage, :advancedBilling,
|
20
|
+
:locationType, :percentKeyed, :totalVolume, :percentCardNotPresent, :seasonal,
|
21
|
+
:amexVolume, :incrementalAuthSupported, :tmxSessionId]
|
16
22
|
|
17
23
|
attr_accessor *ATTRS
|
18
24
|
|
@@ -11,7 +11,8 @@ module Payrix
|
|
11
11
|
ATTRS = [:id, :created, :modified, :creator, :modifier,
|
12
12
|
:login, :payoutLogin, :org, :entity, :trigger,
|
13
13
|
:schedule, :scheduleFactor, :um, :amount, :minimum,
|
14
|
-
:payoutInactive, :skipOffDays, :inactive, :frozen, :division
|
14
|
+
:payoutInactive, :skipOffDays, :inactive, :frozen, :division,
|
15
|
+
:secondaryDescriptor, :billing, :start]
|
15
16
|
|
16
17
|
attr_accessor *ATTRS
|
17
18
|
|
@@ -12,7 +12,8 @@ module Payrix
|
|
12
12
|
:login, :account, :entity, :payoutFlow, :name,
|
13
13
|
:description, :schedule, :scheduleFactor, :start, :currency,
|
14
14
|
:um, :amount, :minimum, :float, :skipOffDays,
|
15
|
-
:inactive, :frozen, :sameDay, :maximum, :billing
|
15
|
+
:inactive, :frozen, :sameDay, :maximum, :billing,
|
16
|
+
:secondaryDescriptor]
|
16
17
|
|
17
18
|
attr_accessor *ATTRS
|
18
19
|
|
@@ -16,7 +16,8 @@ module Payrix
|
|
16
16
|
:entry, :adjustment, :profitShare, :chargeback, :disbursement,
|
17
17
|
:fee, :refund, :txn, :event, :eventId,
|
18
18
|
:description, :amount, :pending, :originalCurrency, :currencyRate,
|
19
|
-
:terminalTxn, :isFee, :entityDebt, :statement, :settlement
|
19
|
+
:terminalTxn, :isFee, :entityDebt, :statement, :settlement,
|
20
|
+
:originalEventId, :originalEvent]
|
20
21
|
|
21
22
|
attr_accessor *ATTRS
|
22
23
|
|
@@ -14,7 +14,7 @@ module Payrix
|
|
14
14
|
ATTRS = [:id, :created, :modified, :creator, :modifier,
|
15
15
|
:onentity, :billing, :statement, :fee, :profitShare,
|
16
16
|
:event, :eventId, :description, :amount, :deductedFromBalance,
|
17
|
-
:entity, :forentity]
|
17
|
+
:entity, :forentity, :originalEventId, :originalEvent]
|
18
18
|
|
19
19
|
attr_accessor *ATTRS
|
20
20
|
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Payrix
|
2
|
+
module Resource
|
3
|
+
class TerminalTxnMetadatas < Base
|
4
|
+
|
5
|
+
include Mixin::UpdateDisabled
|
6
|
+
include Mixin::DeleteDisabled
|
7
|
+
def initialize(params)
|
8
|
+
super(params, ATTRS)
|
9
|
+
|
10
|
+
@resource_name = 'terminalTxnMetadatas'
|
11
|
+
end
|
12
|
+
|
13
|
+
ATTRS = [:id, :created, :modified, :creator, :modifier,
|
14
|
+
:terminalTxn, :type, :field, :value]
|
15
|
+
|
16
|
+
attr_accessor *ATTRS
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Payrix
|
2
|
+
module Resource
|
3
|
+
class TerminalTxnRefs < Base
|
4
|
+
|
5
|
+
include Mixin::UpdateDisabled
|
6
|
+
include Mixin::DeleteDisabled
|
7
|
+
def initialize(params)
|
8
|
+
super(params, ATTRS)
|
9
|
+
|
10
|
+
@resource_name = 'terminalTxnRefs'
|
11
|
+
end
|
12
|
+
|
13
|
+
ATTRS = [:terminalTxn, :ref, :stage]
|
14
|
+
|
15
|
+
attr_accessor *ATTRS
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -20,7 +20,7 @@ module Payrix
|
|
20
20
|
:email, :address1, :address2, :city, :state,
|
21
21
|
:zip, :country, :phone, :status, :reserved,
|
22
22
|
:checkStage, :inactive, :frozen, :forterminalTxn, :token,
|
23
|
-
:binType, :tip, :payment]
|
23
|
+
:binType, :tip, :paymentNumber, :paymentMethod, :payment]
|
24
24
|
|
25
25
|
attr_accessor *ATTRS
|
26
26
|
|
data/lib/payrix/resource/txns.rb
CHANGED
@@ -25,7 +25,8 @@ module Payrix
|
|
25
25
|
:traceNumber, :cvvStatus, :unauthReason, :fee, :fundingCurrency,
|
26
26
|
:authentication, :authenticationId, :cofType, :copyReason, :originalApproved,
|
27
27
|
:currencyConversion, :serviceCode, :authTokenCustomer, :debtRepayment, :statement,
|
28
|
-
:convenienceFee, :surcharge, :channel, :funded, :fundingEnabled
|
28
|
+
:convenienceFee, :surcharge, :channel, :funded, :fundingEnabled,
|
29
|
+
:requestSequence, :processedSequence]
|
29
30
|
|
30
31
|
attr_accessor *ATTRS
|
31
32
|
|
data/lib/payrix/resource.rb
CHANGED
@@ -94,6 +94,8 @@ module Payrix
|
|
94
94
|
autoload :Teams, 'payrix/resource/teams'
|
95
95
|
autoload :Terminals, 'payrix/resource/terminals'
|
96
96
|
autoload :TerminalTxnDatas, 'payrix/resource/terminal_txn_datas'
|
97
|
+
autoload :TerminalTxnMetadatas, 'payrix/resource/terminal_txn_metadatas'
|
98
|
+
autoload :TerminalTxnRefs, 'payrix/resource/terminal_txn_refs'
|
97
99
|
autoload :TerminalTxnResults, 'payrix/resource/terminal_txn_results'
|
98
100
|
autoload :TerminalTxns, 'payrix/resource/terminal_txns'
|
99
101
|
autoload :Tokens, 'payrix/resource/tokens'
|
data/lib/payrix/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: payrix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Payrix
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '10.0'
|
69
69
|
description: Defines ruby classes for the Payrix API
|
70
|
-
email:
|
70
|
+
email:
|
71
71
|
executables: []
|
72
72
|
extensions: []
|
73
73
|
extra_rdoc_files: []
|
@@ -179,6 +179,8 @@ files:
|
|
179
179
|
- lib/payrix/resource/team_logins.rb
|
180
180
|
- lib/payrix/resource/teams.rb
|
181
181
|
- lib/payrix/resource/terminal_txn_datas.rb
|
182
|
+
- lib/payrix/resource/terminal_txn_metadatas.rb
|
183
|
+
- lib/payrix/resource/terminal_txn_refs.rb
|
182
184
|
- lib/payrix/resource/terminal_txn_results.rb
|
183
185
|
- lib/payrix/resource/terminal_txns.rb
|
184
186
|
- lib/payrix/resource/terminals.rb
|
@@ -193,7 +195,7 @@ homepage: https://portal.payrix.com/docs/api
|
|
193
195
|
licenses:
|
194
196
|
- Apache-2.0
|
195
197
|
metadata: {}
|
196
|
-
post_install_message:
|
198
|
+
post_install_message:
|
197
199
|
rdoc_options: []
|
198
200
|
require_paths:
|
199
201
|
- lib
|
@@ -208,8 +210,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
208
210
|
- !ruby/object:Gem::Version
|
209
211
|
version: '0'
|
210
212
|
requirements: []
|
211
|
-
rubygems_version: 3.
|
212
|
-
signing_key:
|
213
|
+
rubygems_version: 3.1.6
|
214
|
+
signing_key:
|
213
215
|
specification_version: 4
|
214
216
|
summary: Ruby bindings for the Payrix API
|
215
217
|
test_files: []
|