lockstep_rails 0.3.44 → 0.3.45

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.
Files changed (27) hide show
  1. checksums.yaml +4 -4
  2. data/app/models/lockstep/accounting_profile.rb +8 -0
  3. data/app/models/lockstep/magic_link.rb +7 -2
  4. data/app/platform_api/schema/accounting_profile.rb +108 -0
  5. data/app/platform_api/schema/accounting_profile_contact.rb +56 -0
  6. data/app/platform_api/schema/accounting_profile_contact_fetch_result.rb +26 -0
  7. data/app/platform_api/schema/accounting_profile_fetch_result.rb +26 -0
  8. data/app/platform_api/schema/app_enrollment_reconnect_info.rb +4 -0
  9. data/app/platform_api/schema/bulk_delete_request.rb +14 -0
  10. data/app/platform_api/schema/delete_result.rb +15 -0
  11. data/app/platform_api/schema/group_account.rb +4 -0
  12. data/app/platform_api/schema/invoice.rb +5 -0
  13. data/app/platform_api/schema/invoice_history.rb +5 -0
  14. data/app/platform_api/schema/invoice_sync.rb +5 -0
  15. data/app/platform_api/schema/magic_link.rb +16 -4
  16. data/app/platform_api/schema/magic_link_status.rb +27 -0
  17. data/app/platform_api/schema/payment.rb +5 -0
  18. data/app/platform_api/schema/payment_sync.rb +5 -0
  19. data/app/platform_api/schema/status.rb +16 -0
  20. data/app/platform_api/schema/sync_request.rb +9 -0
  21. data/app/platform_api/schema/transcription_request_submit.rb +30 -0
  22. data/app/platform_api/schema/transcription_validation_request.rb +53 -0
  23. data/app/platform_api/schema/transcription_validation_request_fetch_result.rb +26 -0
  24. data/app/platform_api/schema/transcription_validation_request_item.rb +101 -0
  25. data/app/platform_api/swagger.json +4385 -1991
  26. data/lib/lockstep_rails/version.rb +1 -1
  27. metadata +14 -2
@@ -1,3 +1,3 @@
1
1
  module LockstepRails
2
- VERSION = '0.3.44'
2
+ VERSION = '0.3.45'
3
3
  end
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.44
4
+ version: 0.3.45
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vivek AG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-13 00:00:00.000000000 Z
11
+ date: 2022-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -46,6 +46,7 @@ files:
46
46
  - app/concepts/lockstep/relation_array.rb
47
47
  - app/helpers/types.rb
48
48
  - app/models/lockstep/account.rb
49
+ - app/models/lockstep/accounting_profile.rb
49
50
  - app/models/lockstep/api_key.rb
50
51
  - app/models/lockstep/app_enrollment.rb
51
52
  - app/models/lockstep/connection.rb
@@ -74,6 +75,10 @@ files:
74
75
  - app/models/lockstep/vendor_summary.rb
75
76
  - app/models/lockstep/webhook.rb
76
77
  - app/platform_api/model_template.rb.erb
78
+ - app/platform_api/schema/accounting_profile.rb
79
+ - app/platform_api/schema/accounting_profile_contact.rb
80
+ - app/platform_api/schema/accounting_profile_contact_fetch_result.rb
81
+ - app/platform_api/schema/accounting_profile_fetch_result.rb
77
82
  - app/platform_api/schema/action_result.rb
78
83
  - app/platform_api/schema/activity.rb
79
84
  - app/platform_api/schema/activity_fetch_result.rb
@@ -101,6 +106,7 @@ files:
101
106
  - app/platform_api/schema/attachment_header_info.rb
102
107
  - app/platform_api/schema/batch_sync.rb
103
108
  - app/platform_api/schema/bulk_currency_conversion.rb
109
+ - app/platform_api/schema/bulk_delete_request.rb
104
110
  - app/platform_api/schema/cashflow_report.rb
105
111
  - app/platform_api/schema/code_definition.rb
106
112
  - app/platform_api/schema/code_definition_fetch_result.rb
@@ -137,6 +143,7 @@ files:
137
143
  - app/platform_api/schema/customer_summary_fetch_result.rb
138
144
  - app/platform_api/schema/daily_payable_outstanding_report.rb
139
145
  - app/platform_api/schema/daily_sales_outstanding_report.rb
146
+ - app/platform_api/schema/delete_result.rb
140
147
  - app/platform_api/schema/developer_account_submit.rb
141
148
  - app/platform_api/schema/dpo_summary.rb
142
149
  - app/platform_api/schema/dpo_summary_fetch_result.rb
@@ -188,6 +195,7 @@ files:
188
195
  - app/platform_api/schema/lead.rb
189
196
  - app/platform_api/schema/magic_link.rb
190
197
  - app/platform_api/schema/magic_link_fetch_result.rb
198
+ - app/platform_api/schema/magic_link_status.rb
191
199
  - app/platform_api/schema/member_info.rb
192
200
  - app/platform_api/schema/method_base.rb
193
201
  - app/platform_api/schema/method_info.rb
@@ -243,6 +251,10 @@ files:
243
251
  - app/platform_api/schema/transaction_detail.rb
244
252
  - app/platform_api/schema/transaction_summary_total.rb
245
253
  - app/platform_api/schema/transaction_transaction_summary_total_summary_fetch_result.rb
254
+ - app/platform_api/schema/transcription_request_submit.rb
255
+ - app/platform_api/schema/transcription_validation_request.rb
256
+ - app/platform_api/schema/transcription_validation_request_fetch_result.rb
257
+ - app/platform_api/schema/transcription_validation_request_item.rb
246
258
  - app/platform_api/schema/transfer_owner.rb
247
259
  - app/platform_api/schema/transfer_owner_submit.rb
248
260
  - app/platform_api/schema/type.rb