lockstep_sdk 2023.3.18.0 → 2023.5.21.0
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/lockstep_sdk/clients/attachment_links_client.rb +91 -0
- data/lib/lockstep_sdk/clients/profiles_accounting_client.rb +1 -12
- data/lib/lockstep_sdk/clients/profiles_accounting_contacts_client.rb +27 -7
- data/lib/lockstep_sdk/lockstep_api.rb +8 -3
- data/lib/lockstep_sdk/models/accounting_profile_contact_model.rb +6 -0
- data/lib/lockstep_sdk/models/accounting_profile_contact_result_model.rb +251 -0
- data/lib/lockstep_sdk/models/accounting_profile_model.rb +0 -6
- data/lib/lockstep_sdk/models/accounting_profile_request.rb +183 -0
- data/lib/lockstep_sdk/models/app_enrollment_reconnect_info.rb +7 -1
- data/lib/lockstep_sdk/models/attachment_link_model.rb +77 -0
- data/lib/lockstep_sdk/models/company_model.rb +12 -0
- data/lib/lockstep_sdk/models/invoice_model.rb +28 -4
- data/lib/lockstep_sdk/models/invoice_summary_model_invoice_summary_totals_model_summary_fetch_result.rb +6 -6
- data/lib/lockstep_sdk/models/invoice_sync_model.rb +28 -4
- data/lib/lockstep_sdk/models/payment_model.rb +14 -2
- data/lib/lockstep_sdk/models/payment_summary_model_payment_summary_totals_model_summary_fetch_result.rb +6 -6
- data/lib/lockstep_sdk/models/payment_sync_model.rb +14 -2
- data/lib/lockstep_sdk/models/sync_request_model.rb +6 -0
- data/lib/lockstep_sdk/models/transaction_model_transaction_summary_total_model_summary_fetch_result.rb +6 -6
- data/lib/lockstep_sdk/version.rb +1 -1
- metadata +6 -2
@@ -21,14 +21,18 @@ module LockstepSdk
|
|
21
21
|
##
|
22
22
|
# Initialize the TransactionModelTransactionSummaryTotalModelSummaryFetchResult using the provided prototype
|
23
23
|
def initialize(params = {})
|
24
|
+
@records = params.dig(:records)
|
24
25
|
@total_count = params.dig(:total_count)
|
25
26
|
@page_size = params.dig(:page_size)
|
26
27
|
@page_number = params.dig(:page_number)
|
27
|
-
@records = params.dig(:records)
|
28
28
|
@summary = params.dig(:summary)
|
29
29
|
@aging_summary = params.dig(:aging_summary)
|
30
30
|
end
|
31
31
|
|
32
|
+
##
|
33
|
+
# @return [TransactionModel]
|
34
|
+
attr_accessor :records
|
35
|
+
|
32
36
|
##
|
33
37
|
# @return [Int32]
|
34
38
|
attr_accessor :total_count
|
@@ -41,10 +45,6 @@ module LockstepSdk
|
|
41
45
|
# @return [Int32]
|
42
46
|
attr_accessor :page_number
|
43
47
|
|
44
|
-
##
|
45
|
-
# @return [TransactionModel]
|
46
|
-
attr_accessor :records
|
47
|
-
|
48
48
|
##
|
49
49
|
# @return [TransactionSummaryTotalModel] Represents transaction summary information based on the query request within the group account.
|
50
50
|
attr_accessor :summary
|
@@ -57,10 +57,10 @@ module LockstepSdk
|
|
57
57
|
# @return [object] This object as a JSON key-value structure
|
58
58
|
def as_json(options={})
|
59
59
|
{
|
60
|
+
'records' => @records,
|
60
61
|
'totalCount' => @total_count,
|
61
62
|
'pageSize' => @page_size,
|
62
63
|
'pageNumber' => @page_number,
|
63
|
-
'records' => @records,
|
64
64
|
'summary' => @summary,
|
65
65
|
'agingSummary' => @aging_summary,
|
66
66
|
}
|
data/lib/lockstep_sdk/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lockstep_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2023.
|
4
|
+
version: 2023.5.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lockstep
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awrence
|
@@ -35,6 +35,7 @@ files:
|
|
35
35
|
- lib/lockstep_sdk/clients/api_keys_client.rb
|
36
36
|
- lib/lockstep_sdk/clients/app_enrollments_client.rb
|
37
37
|
- lib/lockstep_sdk/clients/applications_client.rb
|
38
|
+
- lib/lockstep_sdk/clients/attachment_links_client.rb
|
38
39
|
- lib/lockstep_sdk/clients/attachments_client.rb
|
39
40
|
- lib/lockstep_sdk/clients/code_definitions_client.rb
|
40
41
|
- lib/lockstep_sdk/clients/companies_client.rb
|
@@ -73,7 +74,9 @@ files:
|
|
73
74
|
- lib/lockstep_sdk/clients/webhooks_client.rb
|
74
75
|
- lib/lockstep_sdk/lockstep_api.rb
|
75
76
|
- lib/lockstep_sdk/models/accounting_profile_contact_model.rb
|
77
|
+
- lib/lockstep_sdk/models/accounting_profile_contact_result_model.rb
|
76
78
|
- lib/lockstep_sdk/models/accounting_profile_model.rb
|
79
|
+
- lib/lockstep_sdk/models/accounting_profile_request.rb
|
77
80
|
- lib/lockstep_sdk/models/action_result_model.rb
|
78
81
|
- lib/lockstep_sdk/models/aging_model.rb
|
79
82
|
- lib/lockstep_sdk/models/ap_aging_header_info_model.rb
|
@@ -87,6 +90,7 @@ files:
|
|
87
90
|
- lib/lockstep_sdk/models/ar_header_info_model.rb
|
88
91
|
- lib/lockstep_sdk/models/at_risk_invoice_summary_model.rb
|
89
92
|
- lib/lockstep_sdk/models/attachment_header_info_model.rb
|
93
|
+
- lib/lockstep_sdk/models/attachment_link_model.rb
|
90
94
|
- lib/lockstep_sdk/models/attachment_model.rb
|
91
95
|
- lib/lockstep_sdk/models/base_currency_sync_model.rb
|
92
96
|
- lib/lockstep_sdk/models/batch_sync_model.rb
|