lockstep_rails 0.3.69 → 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.
- checksums.yaml +4 -4
- data/README.md +85 -53
- data/app/models/lockstep/invoice.rb +8 -3
- data/app/models/lockstep/workflow_status.rb +8 -0
- data/app/platform_api/schema/batch_sync.rb +2 -0
- data/app/platform_api/schema/company_magic_link_summary.rb +7 -3
- data/app/platform_api/schema/company_sync.rb +15 -0
- data/app/platform_api/schema/contact_sync.rb +10 -0
- data/app/platform_api/schema/invoice_line_sync.rb +10 -0
- data/app/platform_api/schema/invoice_sync.rb +15 -0
- data/app/platform_api/schema/journal_entry.rb +22 -17
- data/app/platform_api/schema/journal_entry_line.rb +27 -18
- data/app/platform_api/schema/journal_entry_line_fetch_result.rb +26 -0
- data/app/platform_api/schema/journal_entry_line_sync.rb +92 -0
- data/app/platform_api/schema/journal_entry_sync.rb +66 -0
- data/app/platform_api/schema/payment_applied_sync.rb +15 -0
- data/app/platform_api/schema/payment_sync.rb +10 -0
- data/app/platform_api/schema/workflow_status.rb +65 -0
- data/app/platform_api/schema/workflow_status_fetch_result.rb +26 -0
- data/app/platform_api/swagger.json +10449 -12939
- data/lib/lockstep_rails/version.rb +3 -2
- data/lib/tasks/update_api_schema.rake +5 -0
- metadata +8 -2
@@ -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.
|
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-
|
11
|
+
date: 2023-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -81,6 +81,7 @@ files:
|
|
81
81
|
- app/models/lockstep/user.rb
|
82
82
|
- app/models/lockstep/vendor_summary.rb
|
83
83
|
- app/models/lockstep/webhook.rb
|
84
|
+
- app/models/lockstep/workflow_status.rb
|
84
85
|
- app/platform_api/model_template.rb.erb
|
85
86
|
- app/platform_api/schema/account_authorisation.rb
|
86
87
|
- app/platform_api/schema/accounting_profile.rb
|
@@ -231,6 +232,9 @@ files:
|
|
231
232
|
- app/platform_api/schema/journal_entry.rb
|
232
233
|
- app/platform_api/schema/journal_entry_fetch_result.rb
|
233
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
|
234
238
|
- app/platform_api/schema/lead.rb
|
235
239
|
- app/platform_api/schema/magic_link.rb
|
236
240
|
- app/platform_api/schema/magic_link_fetch_result.rb
|
@@ -345,6 +349,8 @@ files:
|
|
345
349
|
- app/platform_api/schema/webhook_history_table_storage_fetch_result.rb
|
346
350
|
- app/platform_api/schema/webhook_rule.rb
|
347
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
|
348
354
|
- app/platform_api/swagger.json
|
349
355
|
- config/routes.rb
|
350
356
|
- lib/lockstep_rails.rb
|