lockstep_rails 0.3.68 → 0.3.70

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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +85 -52
  3. data/app/models/lockstep/company_magic_link_summary.rb +6 -0
  4. data/app/models/lockstep/invoice.rb +8 -3
  5. data/app/models/lockstep/workflow_status.rb +8 -0
  6. data/app/platform_api/schema/application.rb +1 -0
  7. data/app/platform_api/schema/batch_sync.rb +2 -0
  8. data/app/platform_api/schema/company_magic_link_summary.rb +93 -0
  9. data/app/platform_api/schema/company_magic_link_summary_fetch_result.rb +26 -0
  10. data/app/platform_api/schema/company_sync.rb +15 -0
  11. data/app/platform_api/schema/contact_sync.rb +10 -0
  12. data/app/platform_api/schema/directory_company.rb +72 -0
  13. data/app/platform_api/schema/external_connector.rb +30 -0
  14. data/app/platform_api/schema/external_connector_auth.rb +14 -0
  15. data/app/platform_api/schema/external_connector_auth_request.rb +22 -0
  16. data/app/platform_api/schema/external_connector_token.rb +36 -0
  17. data/app/platform_api/schema/invoice_fetch_result.rb +4 -2
  18. data/app/platform_api/schema/invoice_line_sync.rb +10 -0
  19. data/app/platform_api/schema/invoice_sync.rb +15 -0
  20. data/app/platform_api/schema/journal_entry.rb +106 -0
  21. data/app/platform_api/schema/journal_entry_fetch_result.rb +26 -0
  22. data/app/platform_api/schema/journal_entry_line.rb +129 -0
  23. data/app/platform_api/schema/journal_entry_line_fetch_result.rb +26 -0
  24. data/app/platform_api/schema/journal_entry_line_sync.rb +92 -0
  25. data/app/platform_api/schema/journal_entry_sync.rb +66 -0
  26. data/app/platform_api/schema/magic_link.rb +8 -0
  27. data/app/platform_api/schema/magic_link_summary.rb +30 -0
  28. data/app/platform_api/schema/note.rb +28 -27
  29. data/app/platform_api/schema/payment_applied_sync.rb +15 -0
  30. data/app/platform_api/schema/payment_sync.rb +10 -0
  31. data/app/platform_api/schema/transaction.rb +5 -0
  32. data/app/platform_api/schema/workflow_status.rb +65 -0
  33. data/app/platform_api/schema/workflow_status_fetch_result.rb +26 -0
  34. data/app/platform_api/swagger.json +4237 -5291
  35. data/lib/lockstep_rails/version.rb +3 -2
  36. data/lib/tasks/update_api_schema.rake +5 -0
  37. metadata +20 -2
@@ -1,4 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module LockstepRails
2
- VERSION = '0.3.68'
4
+ VERSION = '0.3.70'
3
5
  end
4
-
@@ -124,6 +124,11 @@ BELONGS_TO_RELATIONS = {
124
124
  class_name: "Lockstep::User",
125
125
  primary_key: :user_id,
126
126
  },
127
+ parent_workflow_status: {
128
+ keys: %w[parentWorkflowStatusId],
129
+ class_name: "Lockstep::WorkflowStatus",
130
+ primary_key: :id
131
+ }
127
132
  }
128
133
 
129
134
  def build_belongs_to_relations(schema_name, properties)
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.68
4
+ version: 0.3.70
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-08-08 00:00:00.000000000 Z
11
+ date: 2023-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -50,6 +50,7 @@ files:
50
50
  - app/models/lockstep/api_key.rb
51
51
  - app/models/lockstep/app_enrollment.rb
52
52
  - app/models/lockstep/attachment.rb
53
+ - app/models/lockstep/company_magic_link_summary.rb
53
54
  - app/models/lockstep/connection.rb
54
55
  - app/models/lockstep/contact.rb
55
56
  - app/models/lockstep/customer_summary.rb
@@ -80,6 +81,7 @@ files:
80
81
  - app/models/lockstep/user.rb
81
82
  - app/models/lockstep/vendor_summary.rb
82
83
  - app/models/lockstep/webhook.rb
84
+ - app/models/lockstep/workflow_status.rb
83
85
  - app/platform_api/model_template.rb.erb
84
86
  - app/platform_api/schema/account_authorisation.rb
85
87
  - app/platform_api/schema/accounting_profile.rb
@@ -129,6 +131,8 @@ files:
129
131
  - app/platform_api/schema/company_details.rb
130
132
  - app/platform_api/schema/company_details_payment.rb
131
133
  - app/platform_api/schema/company_fetch_result.rb
134
+ - app/platform_api/schema/company_magic_link_summary.rb
135
+ - app/platform_api/schema/company_magic_link_summary_fetch_result.rb
132
136
  - app/platform_api/schema/company_sync.rb
133
137
  - app/platform_api/schema/connector_info.rb
134
138
  - app/platform_api/schema/constructor_info.rb
@@ -164,6 +168,7 @@ files:
164
168
  - app/platform_api/schema/debtor_agent_account.rb
165
169
  - app/platform_api/schema/delete_result.rb
166
170
  - app/platform_api/schema/developer_account_submit.rb
171
+ - app/platform_api/schema/directory_company.rb
167
172
  - app/platform_api/schema/dpo_summary.rb
168
173
  - app/platform_api/schema/dpo_summary_fetch_result.rb
169
174
  - app/platform_api/schema/dpo_summary_group_total.rb
@@ -178,6 +183,10 @@ files:
178
183
  - app/platform_api/schema/erp_info_data.rb
179
184
  - app/platform_api/schema/event_info.rb
180
185
  - app/platform_api/schema/exception.rb
186
+ - app/platform_api/schema/external_connector.rb
187
+ - app/platform_api/schema/external_connector_auth.rb
188
+ - app/platform_api/schema/external_connector_auth_request.rb
189
+ - app/platform_api/schema/external_connector_token.rb
181
190
  - app/platform_api/schema/feature_flag.rb
182
191
  - app/platform_api/schema/feature_flags_request.rb
183
192
  - app/platform_api/schema/feature_flags_response.rb
@@ -220,10 +229,17 @@ files:
220
229
  - app/platform_api/schema/invoice_summary_invoice_summary_totals_summary_fetch_result.rb
221
230
  - app/platform_api/schema/invoice_summary_totals.rb
222
231
  - app/platform_api/schema/invoice_sync.rb
232
+ - app/platform_api/schema/journal_entry.rb
233
+ - app/platform_api/schema/journal_entry_fetch_result.rb
234
+ - app/platform_api/schema/journal_entry_line.rb
235
+ - app/platform_api/schema/journal_entry_line_fetch_result.rb
236
+ - app/platform_api/schema/journal_entry_line_sync.rb
237
+ - app/platform_api/schema/journal_entry_sync.rb
223
238
  - app/platform_api/schema/lead.rb
224
239
  - app/platform_api/schema/magic_link.rb
225
240
  - app/platform_api/schema/magic_link_fetch_result.rb
226
241
  - app/platform_api/schema/magic_link_status.rb
242
+ - app/platform_api/schema/magic_link_summary.rb
227
243
  - app/platform_api/schema/member_info.rb
228
244
  - app/platform_api/schema/metadata.rb
229
245
  - app/platform_api/schema/method_base.rb
@@ -333,6 +349,8 @@ files:
333
349
  - app/platform_api/schema/webhook_history_table_storage_fetch_result.rb
334
350
  - app/platform_api/schema/webhook_rule.rb
335
351
  - app/platform_api/schema/webhook_rule_fetch_result.rb
352
+ - app/platform_api/schema/workflow_status.rb
353
+ - app/platform_api/schema/workflow_status_fetch_result.rb
336
354
  - app/platform_api/swagger.json
337
355
  - config/routes.rb
338
356
  - lib/lockstep_rails.rb