lockstep_rails 0.3.48 → 0.3.49
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/app/platform_api/schema/invoice.rb +4 -4
- data/app/platform_api/schema/invoice_at_risk_summary.rb +7 -3
- data/app/platform_api/schema/invoice_summary.rb +7 -3
- data/app/platform_api/schema/payment.rb +2 -2
- data/app/platform_api/schema/payment_summary.rb +7 -3
- data/lib/lockstep_rails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82705df2e97e69f440875d55efffae23cce649b7b87d3787a42c4947fd31b2f8
|
4
|
+
data.tar.gz: dc8248a2bdc68373ef1614419a9af594c36b3a98361e523b19e2bced5df78b96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fdd0cbd1821586a4b75c5ee35a492d768f0b94f72546ce853391ac4522e44d0256f5c7bd1d68b762ab7cbab74f3e708f92f629032b358ce7045b91b665903af0
|
7
|
+
data.tar.gz: fb0fdb58e7faa0bd0093eae93967e786f3accbe128ae2764a8db41266dc07364a5a5f18461fd82c8814a8a5f0f77af1a8202d8a6edfbc5fc4ff4663f1acd9b88
|
@@ -209,22 +209,22 @@ end
|
|
209
209
|
# The Currency Rate used to get from the account's base currency to the total amount.
|
210
210
|
# @type: number
|
211
211
|
# @format: double
|
212
|
-
field :
|
212
|
+
field :base_currency_total_amount
|
213
213
|
|
214
214
|
# The sales tax amount in the group's base currency.
|
215
215
|
# @type: number
|
216
216
|
# @format: double
|
217
|
-
field :
|
217
|
+
field :base_currency_sales_tax_amount
|
218
218
|
|
219
219
|
# The discount amount in the group's base currency.
|
220
220
|
# @type: number
|
221
221
|
# @format: double
|
222
|
-
field :
|
222
|
+
field :base_currency_discount_amount
|
223
223
|
|
224
224
|
# The outstanding balance amount in the group's base currency.
|
225
225
|
# @type: number
|
226
226
|
# @format: double
|
227
|
-
field :
|
227
|
+
field :base_currency_outstanding_balance_amount
|
228
228
|
|
229
229
|
# The Company associated to this invoice.
|
230
230
|
# To retrieve this item, specify `Company` in the "Include" parameter for your query.
|
@@ -83,19 +83,23 @@ end
|
|
83
83
|
# @type: array
|
84
84
|
field :payment_ids
|
85
85
|
|
86
|
+
# The group's currency code.
|
87
|
+
# @type: string
|
88
|
+
field :currency_code
|
89
|
+
|
86
90
|
# The base currency code of the group.
|
87
91
|
# @type: string
|
88
|
-
field :
|
92
|
+
field :base_currency_code
|
89
93
|
|
90
94
|
# The total amount of the Invoice in the group's currency.
|
91
95
|
# @type: number
|
92
96
|
# @format: double
|
93
|
-
field :
|
97
|
+
field :base_currency_invoice_amount
|
94
98
|
|
95
99
|
# The remaining balance value of this invoice in the group's currency.
|
96
100
|
# @type: number
|
97
101
|
# @format: double
|
98
|
-
field :
|
102
|
+
field :base_currency_outstanding_balance
|
99
103
|
|
100
104
|
belongs_to :customer, {:class_name=>"Lockstep::Connection", :primary_key=>:company_id, :foreign_key=>"customer_id"}
|
101
105
|
belongs_to :connection, {:class_name=>"Lockstep::Connection", :primary_key=>:company_id, :foreign_key=>"customer_id"}
|
@@ -94,19 +94,23 @@ end
|
|
94
94
|
# @type: array
|
95
95
|
field :payment_ids
|
96
96
|
|
97
|
+
# The group's currency code.
|
98
|
+
# @type: string
|
99
|
+
field :currency_code
|
100
|
+
|
97
101
|
# The group's base currency code.
|
98
102
|
# @type: string
|
99
|
-
field :
|
103
|
+
field :base_currency_code
|
100
104
|
|
101
105
|
# The invoice amount in the group's base currency.
|
102
106
|
# @type: number
|
103
107
|
# @format: double
|
104
|
-
field :
|
108
|
+
field :base_currency_invoice_amount
|
105
109
|
|
106
110
|
# The outstanding balance amount in the group's base currency.
|
107
111
|
# @type: number
|
108
112
|
# @format: double
|
109
|
-
field :
|
113
|
+
field :base_currency_outstanding_balance_amount
|
110
114
|
|
111
115
|
# The modified date of the invoice.
|
112
116
|
# @type: string
|
@@ -142,12 +142,12 @@ end
|
|
142
142
|
# Total amount of this payment in the group's base currency.
|
143
143
|
# @type: number
|
144
144
|
# @format: double
|
145
|
-
field :
|
145
|
+
field :base_currency_payment_amount
|
146
146
|
|
147
147
|
# Unapplied balance of this payment in the group's base currency. If this amount is nonzero, the field IsOpen will be true.
|
148
148
|
# @type: number
|
149
149
|
# @format: double
|
150
|
-
field :
|
150
|
+
field :base_currency_unapplied_amount
|
151
151
|
|
152
152
|
|
153
153
|
belongs_to :company, {:class_name=>"Lockstep::Account", :primary_key=>:company_id, :foreign_key=>"company_id"}
|
@@ -102,19 +102,23 @@ end
|
|
102
102
|
# @type: array
|
103
103
|
field :company_names
|
104
104
|
|
105
|
+
# The group's currency code.
|
106
|
+
# @type: string
|
107
|
+
field :currency_code
|
108
|
+
|
105
109
|
# The base currency code of the group.
|
106
110
|
# @type: string
|
107
|
-
field :
|
111
|
+
field :base_currency_code
|
108
112
|
|
109
113
|
# The payment amount in the group's base currency.
|
110
114
|
# @type: number
|
111
115
|
# @format: double
|
112
|
-
field :
|
116
|
+
field :base_currency_payment_amount
|
113
117
|
|
114
118
|
# The unapplied amount in the group's base currency.
|
115
119
|
# @type: number
|
116
120
|
# @format: double
|
117
|
-
field :
|
121
|
+
field :base_currency_unapplied_amount
|
118
122
|
|
119
123
|
# The modified date of the payment
|
120
124
|
# @type: string
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lockstep_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.49
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vivek AG
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|