lockstep_rails 0.3.67 → 0.3.69
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 +1 -0
- data/app/models/lockstep/company_magic_link_summary.rb +6 -0
- data/app/platform_api/schema/application.rb +1 -0
- data/app/platform_api/schema/company.rb +7 -1
- data/app/platform_api/schema/company_magic_link_summary.rb +89 -0
- data/app/platform_api/schema/company_magic_link_summary_fetch_result.rb +26 -0
- data/app/platform_api/schema/directory_company.rb +72 -0
- data/app/platform_api/schema/external_connector.rb +30 -0
- data/app/platform_api/schema/external_connector_auth.rb +14 -0
- data/app/platform_api/schema/external_connector_auth_request.rb +22 -0
- data/app/platform_api/schema/external_connector_token.rb +36 -0
- data/app/platform_api/schema/invoice_fetch_result.rb +4 -4
- data/app/platform_api/schema/journal_entry.rb +101 -0
- data/app/platform_api/schema/journal_entry_fetch_result.rb +26 -0
- data/app/platform_api/schema/journal_entry_line.rb +120 -0
- data/app/platform_api/schema/magic_link.rb +8 -0
- data/app/platform_api/schema/magic_link_summary.rb +30 -0
- data/app/platform_api/schema/note.rb +11 -0
- data/app/platform_api/schema/transaction.rb +5 -0
- data/app/platform_api/swagger.json +1901 -325
- data/lib/lockstep_rails/version.rb +1 -1
- metadata +14 -2
@@ -69,6 +69,16 @@ end
|
|
69
69
|
# @format: uuid
|
70
70
|
field :created_user_id
|
71
71
|
|
72
|
+
# The date this note was last modified
|
73
|
+
# @type: string
|
74
|
+
# @format: date-time
|
75
|
+
field :modified, Types::Params::DateTime
|
76
|
+
|
77
|
+
# The ID of the user who last modified this note
|
78
|
+
# @type: string
|
79
|
+
# @format: uuid
|
80
|
+
field :modified_user_id
|
81
|
+
|
72
82
|
# The name of the user who created the note
|
73
83
|
# @type: string
|
74
84
|
field :created_user_name
|
@@ -86,6 +96,7 @@ end
|
|
86
96
|
field :recipient_name
|
87
97
|
|
88
98
|
belongs_to :created_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"created_user_id"}
|
99
|
+
belongs_to :modified_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"modified_user_id"}
|
89
100
|
|
90
101
|
|
91
102
|
end
|