lockstep_rails 0.3.68 → 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_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 -2
- 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 +28 -27
- data/app/platform_api/schema/transaction.rb +5 -0
- data/app/platform_api/swagger.json +2455 -1019
- data/lib/lockstep_rails/version.rb +1 -1
- metadata +14 -2
@@ -5,38 +5,38 @@ def self.id_ref
|
|
5
5
|
nil
|
6
6
|
end
|
7
7
|
|
8
|
-
# The unique ID of this record, automatically assigned by Lockstep when this record is
|
8
|
+
# The unique ID of this record, automatically assigned by Lockstep when this record is
|
9
9
|
# added to the Lockstep platform.
|
10
10
|
# @type: string
|
11
11
|
# @format: uuid
|
12
12
|
field :note_id
|
13
13
|
|
14
|
-
# The GroupKey uniquely identifies a single Lockstep Platform account. All records for this
|
15
|
-
# account will share the same GroupKey value. GroupKey values cannot be changed once created.
|
16
|
-
#
|
14
|
+
# The GroupKey uniquely identifies a single Lockstep Platform account. All records for this
|
15
|
+
# account will share the same GroupKey value. GroupKey values cannot be changed once created.
|
16
|
+
#
|
17
17
|
# For more information, see [Accounts and GroupKeys](https://developer.lockstep.io/docs/accounts-and-groupkeys).
|
18
18
|
# @type: string
|
19
19
|
# @format: uuid
|
20
20
|
field :group_key
|
21
21
|
|
22
|
-
# A Note is connected to an existing item within the Lockstep Platform by the fields `TableKey` and
|
23
|
-
# `ObjectKey`. For example, a Note connected to Invoice 12345 would have a `TableKey` value of
|
24
|
-
# `Invoice` and an `ObjectKey` value of `12345`.
|
25
|
-
#
|
26
|
-
# The `TableKey` value contains the name of the table within the Lockstep Platform to which this metadata
|
27
|
-
# is connected.
|
28
|
-
#
|
22
|
+
# A Note is connected to an existing item within the Lockstep Platform by the fields `TableKey` and
|
23
|
+
# `ObjectKey`. For example, a Note connected to Invoice 12345 would have a `TableKey` value of
|
24
|
+
# `Invoice` and an `ObjectKey` value of `12345`.
|
25
|
+
#
|
26
|
+
# The `TableKey` value contains the name of the table within the Lockstep Platform to which this metadata
|
27
|
+
# is connected.
|
28
|
+
#
|
29
29
|
# For more information, see [linking metadata to an object](https://developer.lockstep.io/docs/custom-fields#linking-metadata-to-an-object).
|
30
30
|
# @type: string
|
31
31
|
field :table_key
|
32
32
|
|
33
|
-
# A Note is connected to an existing item within the Lockstep Platform by the fields `TableKey` and
|
34
|
-
# `ObjectKey`. For example, a Note connected to Invoice 12345 would have a `TableKey` value of
|
35
|
-
# `Invoice` and an `ObjectKey` value of `12345`.
|
36
|
-
#
|
37
|
-
# The `ObjectKey` value contains the primary key of the record within the Lockstep Platform to which this
|
38
|
-
# metadata is connected.
|
39
|
-
#
|
33
|
+
# A Note is connected to an existing item within the Lockstep Platform by the fields `TableKey` and
|
34
|
+
# `ObjectKey`. For example, a Note connected to Invoice 12345 would have a `TableKey` value of
|
35
|
+
# `Invoice` and an `ObjectKey` value of `12345`.
|
36
|
+
#
|
37
|
+
# The `ObjectKey` value contains the primary key of the record within the Lockstep Platform to which this
|
38
|
+
# metadata is connected.
|
39
|
+
#
|
40
40
|
# For more information, see [linking metadata to an object](https://developer.lockstep.io/docs/custom-fields#linking-metadata-to-an-object).
|
41
41
|
# @type: string
|
42
42
|
# @format: uuid
|
@@ -50,10 +50,10 @@ end
|
|
50
50
|
# @type: string
|
51
51
|
field :note_type
|
52
52
|
|
53
|
-
# A flag indicating whether this Note is archived (also known as hidden or deleted). When you call
|
54
|
-
# [ArchiveNote](https://developer.lockstep.io/reference/delete_api-v1-notes-id) this field will
|
55
|
-
# be set to true.
|
56
|
-
#
|
53
|
+
# A flag indicating whether this Note is archived (also known as hidden or deleted). When you call
|
54
|
+
# [ArchiveNote](https://developer.lockstep.io/reference/delete_api-v1-notes-id) this field will
|
55
|
+
# be set to true.
|
56
|
+
#
|
57
57
|
# You should avoid displaying Notes with the IsArchived field set to true in your user interface.
|
58
58
|
# @type: boolean
|
59
59
|
field :is_archived
|
@@ -63,7 +63,7 @@ end
|
|
63
63
|
# @format: date-time
|
64
64
|
field :created, Types::Params::DateTime
|
65
65
|
|
66
|
-
# The unique ID of the [UserAccount](https://developer.lockstep.io/docs/useraccountmodel) of the user
|
66
|
+
# The unique ID of the [UserAccount](https://developer.lockstep.io/docs/useraccountmodel) of the user
|
67
67
|
# who created this Note.
|
68
68
|
# @type: string
|
69
69
|
# @format: uuid
|
@@ -83,9 +83,9 @@ end
|
|
83
83
|
# @type: string
|
84
84
|
field :created_user_name
|
85
85
|
|
86
|
-
# The AppEnrollmentId of the application that imported this record. For accounts
|
87
|
-
# with more than one financial system connected, this field identifies the originating
|
88
|
-
# financial system that produced this record. This value is null if this record
|
86
|
+
# The AppEnrollmentId of the application that imported this record. For accounts
|
87
|
+
# with more than one financial system connected, this field identifies the originating
|
88
|
+
# financial system that produced this record. This value is null if this record
|
89
89
|
# was not loaded from an external ERP or financial system.
|
90
90
|
# @type: string
|
91
91
|
# @format: uuid
|
@@ -98,4 +98,5 @@ end
|
|
98
98
|
belongs_to :created_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"created_user_id"}
|
99
99
|
belongs_to :modified_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"modified_user_id"}
|
100
100
|
|
101
|
-
|
101
|
+
|
102
|
+
end
|