ledger_sync-netsuite 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.env.test +14 -0
- data/.github/workflows/gem-workflow.yml +63 -0
- data/.gitignore +20 -0
- data/.overcommit.yml +29 -0
- data/.rubocop.yml +78 -0
- data/.rubocop_todo.yml +25 -0
- data/Gemfile +8 -0
- data/Gemfile.lock +203 -0
- data/README.md +19 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/ledger_sync-netsuite.gemspec +44 -0
- data/lib/ledger_sync/netsuite.rb +13 -0
- data/lib/ledger_sync/netsuite/account/deserializer.rb +21 -0
- data/lib/ledger_sync/netsuite/account/operations/create.rb +26 -0
- data/lib/ledger_sync/netsuite/account/operations/find.rb +26 -0
- data/lib/ledger_sync/netsuite/account/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/account/searcher_deserializer.rb +27 -0
- data/lib/ledger_sync/netsuite/account/serializer.rb +19 -0
- data/lib/ledger_sync/netsuite/check/deserializer.rb +27 -0
- data/lib/ledger_sync/netsuite/check/operations/create.rb +25 -0
- data/lib/ledger_sync/netsuite/check/operations/delete.rb +25 -0
- data/lib/ledger_sync/netsuite/check/operations/find.rb +25 -0
- data/lib/ledger_sync/netsuite/check/operations/update.rb +25 -0
- data/lib/ledger_sync/netsuite/check/searcher.rb +13 -0
- data/lib/ledger_sync/netsuite/check/searcher_deserializer.rb +14 -0
- data/lib/ledger_sync/netsuite/check/serializer.rb +49 -0
- data/lib/ledger_sync/netsuite/check_line_item/deserializer.rb +16 -0
- data/lib/ledger_sync/netsuite/check_line_item/serializer.rb +24 -0
- data/lib/ledger_sync/netsuite/client.rb +186 -0
- data/lib/ledger_sync/netsuite/config.rb +12 -0
- data/lib/ledger_sync/netsuite/currency/deserializer.rb +21 -0
- data/lib/ledger_sync/netsuite/currency/operations/create.rb +23 -0
- data/lib/ledger_sync/netsuite/currency/operations/delete.rb +21 -0
- data/lib/ledger_sync/netsuite/currency/operations/find.rb +25 -0
- data/lib/ledger_sync/netsuite/currency/operations/update.rb +21 -0
- data/lib/ledger_sync/netsuite/currency/serializer.rb +19 -0
- data/lib/ledger_sync/netsuite/customer/deserializer.rb +20 -0
- data/lib/ledger_sync/netsuite/customer/operations/create.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/operations/delete.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/operations/find.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/operations/update.rb +24 -0
- data/lib/ledger_sync/netsuite/customer/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/customer/searcher_deserializer.rb +16 -0
- data/lib/ledger_sync/netsuite/customer/serializer.rb +27 -0
- data/lib/ledger_sync/netsuite/customer_deposit/deserializer.rb +18 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/create.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/delete.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/find.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/operations/update.rb +22 -0
- data/lib/ledger_sync/netsuite/customer_deposit/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/customer_deposit/searcher_deserializer.rb +14 -0
- data/lib/ledger_sync/netsuite/customer_deposit/serializer.rb +23 -0
- data/lib/ledger_sync/netsuite/dashboard_url_helper.rb +26 -0
- data/lib/ledger_sync/netsuite/department/deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/department/operations/create.rb +23 -0
- data/lib/ledger_sync/netsuite/department/operations/delete.rb +23 -0
- data/lib/ledger_sync/netsuite/department/operations/find.rb +23 -0
- data/lib/ledger_sync/netsuite/department/operations/update.rb +23 -0
- data/lib/ledger_sync/netsuite/department/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/department/searcher_deserializer.rb +17 -0
- data/lib/ledger_sync/netsuite/department/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/deserializer.rb +16 -0
- data/lib/ledger_sync/netsuite/error.rb +17 -0
- data/lib/ledger_sync/netsuite/journal_entry/deserializer.rb +29 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/create.rb +24 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/delete.rb +24 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/find.rb +24 -0
- data/lib/ledger_sync/netsuite/journal_entry/operations/update.rb +28 -0
- data/lib/ledger_sync/netsuite/journal_entry/serializer.rb +34 -0
- data/lib/ledger_sync/netsuite/journal_entry_line_item/deserializer.rb +18 -0
- data/lib/ledger_sync/netsuite/journal_entry_line_item/serializer.rb +18 -0
- data/lib/ledger_sync/netsuite/ledger_class/deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/create.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/delete.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/find.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/operations/update.rb +23 -0
- data/lib/ledger_sync/netsuite/ledger_class/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/ledger_class/searcher_deserializer.rb +17 -0
- data/lib/ledger_sync/netsuite/ledger_class/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/location/deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/location/operations/create.rb +19 -0
- data/lib/ledger_sync/netsuite/location/operations/delete.rb +19 -0
- data/lib/ledger_sync/netsuite/location/operations/find.rb +19 -0
- data/lib/ledger_sync/netsuite/location/operations/update.rb +19 -0
- data/lib/ledger_sync/netsuite/location/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/location/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/operation.rb +38 -0
- data/lib/ledger_sync/netsuite/operation/create.rb +56 -0
- data/lib/ledger_sync/netsuite/operation/delete.rb +47 -0
- data/lib/ledger_sync/netsuite/operation/find.rb +68 -0
- data/lib/ledger_sync/netsuite/operation/update.rb +59 -0
- data/lib/ledger_sync/netsuite/record/http_method.rb +31 -0
- data/lib/ledger_sync/netsuite/record/metadata.rb +107 -0
- data/lib/ledger_sync/netsuite/record/parameter.rb +18 -0
- data/lib/ledger_sync/netsuite/record/property.rb +20 -0
- data/lib/ledger_sync/netsuite/reference/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/resource.rb +8 -0
- data/lib/ledger_sync/netsuite/resources/account.rb +41 -0
- data/lib/ledger_sync/netsuite/resources/check.rb +21 -0
- data/lib/ledger_sync/netsuite/resources/check_line_item.rb +13 -0
- data/lib/ledger_sync/netsuite/resources/currency.rb +11 -0
- data/lib/ledger_sync/netsuite/resources/customer.rb +17 -0
- data/lib/ledger_sync/netsuite/resources/customer_deposit.rb +13 -0
- data/lib/ledger_sync/netsuite/resources/department.rb +14 -0
- data/lib/ledger_sync/netsuite/resources/deposit.rb +26 -0
- data/lib/ledger_sync/netsuite/resources/deposit_line_item.rb +23 -0
- data/lib/ledger_sync/netsuite/resources/invoice.rb +26 -0
- data/lib/ledger_sync/netsuite/resources/invoice_line_item.rb +19 -0
- data/lib/ledger_sync/netsuite/resources/item.rb +9 -0
- data/lib/ledger_sync/netsuite/resources/journal_entry.rb +24 -0
- data/lib/ledger_sync/netsuite/resources/journal_entry_line_item.rb +22 -0
- data/lib/ledger_sync/netsuite/resources/ledger_class.rb +14 -0
- data/lib/ledger_sync/netsuite/resources/location.rb +9 -0
- data/lib/ledger_sync/netsuite/resources/subsidiary.rb +10 -0
- data/lib/ledger_sync/netsuite/resources/vendor.rb +21 -0
- data/lib/ledger_sync/netsuite/searcher.rb +64 -0
- data/lib/ledger_sync/netsuite/serializer.rb +11 -0
- data/lib/ledger_sync/netsuite/subsidiary/deserializer.rb +15 -0
- data/lib/ledger_sync/netsuite/subsidiary/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/subsidiary/searcher_deserializer.rb +13 -0
- data/lib/ledger_sync/netsuite/subsidiary/serializer.rb +13 -0
- data/lib/ledger_sync/netsuite/token.rb +156 -0
- data/lib/ledger_sync/netsuite/type/deserializer_active_type.rb +30 -0
- data/lib/ledger_sync/netsuite/type/deserializer_customer_type.rb +33 -0
- data/lib/ledger_sync/netsuite/type/deserializer_entity_type.rb +28 -0
- data/lib/ledger_sync/netsuite/type/deserializer_subsidiary_type.rb +33 -0
- data/lib/ledger_sync/netsuite/vendor/deserializer.rb +28 -0
- data/lib/ledger_sync/netsuite/vendor/operations/create.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/operations/delete.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/operations/find.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/operations/update.rb +25 -0
- data/lib/ledger_sync/netsuite/vendor/searcher.rb +10 -0
- data/lib/ledger_sync/netsuite/vendor/searcher_deserializer.rb +19 -0
- data/lib/ledger_sync/netsuite/vendor/serializer.rb +28 -0
- data/lib/ledger_sync/netsuite/version.rb +17 -0
- data/license.txt +4 -0
- metadata +392 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module LedgerSync
|
4
|
+
module NetSuite
|
5
|
+
class Vendor
|
6
|
+
module Operations
|
7
|
+
class Update < NetSuite::Operation::Update
|
8
|
+
class Contract < LedgerSync::Ledgers::Contract
|
9
|
+
params do
|
10
|
+
required(:external_id).maybe(:string)
|
11
|
+
required(:ledger_id).filled(:string)
|
12
|
+
required(:company_name).filled(:string)
|
13
|
+
required(:display_name).filled(:string)
|
14
|
+
optional(:first_name).maybe(:string)
|
15
|
+
optional(:last_name).maybe(:string)
|
16
|
+
optional(:email).maybe(:string)
|
17
|
+
optional(:phone_number).maybe(:string)
|
18
|
+
required(:subsidiary).filled(:hash, Types::Reference)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module LedgerSync
|
4
|
+
module NetSuite
|
5
|
+
class Vendor
|
6
|
+
class SearcherDeserializer < NetSuite::Deserializer
|
7
|
+
id
|
8
|
+
|
9
|
+
attribute :email
|
10
|
+
|
11
|
+
attribute :company_name,
|
12
|
+
hash_attribute: :companyname
|
13
|
+
|
14
|
+
attribute :phone_number,
|
15
|
+
hash_attribute: :phone
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative '../reference/serializer'
|
4
|
+
|
5
|
+
module LedgerSync
|
6
|
+
module NetSuite
|
7
|
+
class Vendor
|
8
|
+
class Serializer < NetSuite::Serializer
|
9
|
+
attribute :companyName,
|
10
|
+
resource_attribute: :company_name
|
11
|
+
|
12
|
+
attribute :externalId,
|
13
|
+
resource_attribute: :external_id
|
14
|
+
|
15
|
+
attribute :email
|
16
|
+
|
17
|
+
attribute :firstName,
|
18
|
+
resource_attribute: :first_name
|
19
|
+
|
20
|
+
attribute :lastName,
|
21
|
+
resource_attribute: :last_name
|
22
|
+
|
23
|
+
references_one :subsidiary,
|
24
|
+
serializer: Reference::Serializer
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# :nocov:
|
4
|
+
module LedgerSync
|
5
|
+
module NetSuite
|
6
|
+
VERSION = '0.1.1'
|
7
|
+
|
8
|
+
def self.version(args = {})
|
9
|
+
pre = ENV['PRE_RELEASE'] || args.fetch(:pre, false)
|
10
|
+
|
11
|
+
return VERSION unless pre
|
12
|
+
|
13
|
+
"#{VERSION}.pre.#{ENV['TRAVIS_BUILD_NUMBER']}"
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
# :nocov:
|
data/license.txt
ADDED
metadata
ADDED
@@ -0,0 +1,392 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ledger_sync-netsuite
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Modern Treasury
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-04-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: awesome_print
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bump
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 0.9.0
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.9.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: bundler
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.1'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: byebug
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: climate_control
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: coveralls
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.8.23
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 0.8.23
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: factory_bot
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 6.1.0
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 6.1.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rake
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '13.0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '13.0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rspec
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '3.2'
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '3.2'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rubocop
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: webmock
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - ">="
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: dotenv
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: ledger_sync
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - '='
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: 1.8.0
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - '='
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: 1.8.0
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: nokogiri
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: oauth2
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :runtime
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
description: LedgerSync is a simple library that allows you to sync common objects
|
224
|
+
to popular accounting software like QuickBooks Online, NetSuite, NetSuite, etc.
|
225
|
+
email:
|
226
|
+
- ledgersync@moderntreasury.com
|
227
|
+
executables: []
|
228
|
+
extensions: []
|
229
|
+
extra_rdoc_files: []
|
230
|
+
files:
|
231
|
+
- ".env.test"
|
232
|
+
- ".github/workflows/gem-workflow.yml"
|
233
|
+
- ".gitignore"
|
234
|
+
- ".overcommit.yml"
|
235
|
+
- ".rubocop.yml"
|
236
|
+
- ".rubocop_todo.yml"
|
237
|
+
- Gemfile
|
238
|
+
- Gemfile.lock
|
239
|
+
- README.md
|
240
|
+
- Rakefile
|
241
|
+
- bin/console
|
242
|
+
- bin/setup
|
243
|
+
- ledger_sync-netsuite.gemspec
|
244
|
+
- lib/ledger_sync/netsuite.rb
|
245
|
+
- lib/ledger_sync/netsuite/account/deserializer.rb
|
246
|
+
- lib/ledger_sync/netsuite/account/operations/create.rb
|
247
|
+
- lib/ledger_sync/netsuite/account/operations/find.rb
|
248
|
+
- lib/ledger_sync/netsuite/account/searcher.rb
|
249
|
+
- lib/ledger_sync/netsuite/account/searcher_deserializer.rb
|
250
|
+
- lib/ledger_sync/netsuite/account/serializer.rb
|
251
|
+
- lib/ledger_sync/netsuite/check/deserializer.rb
|
252
|
+
- lib/ledger_sync/netsuite/check/operations/create.rb
|
253
|
+
- lib/ledger_sync/netsuite/check/operations/delete.rb
|
254
|
+
- lib/ledger_sync/netsuite/check/operations/find.rb
|
255
|
+
- lib/ledger_sync/netsuite/check/operations/update.rb
|
256
|
+
- lib/ledger_sync/netsuite/check/searcher.rb
|
257
|
+
- lib/ledger_sync/netsuite/check/searcher_deserializer.rb
|
258
|
+
- lib/ledger_sync/netsuite/check/serializer.rb
|
259
|
+
- lib/ledger_sync/netsuite/check_line_item/deserializer.rb
|
260
|
+
- lib/ledger_sync/netsuite/check_line_item/serializer.rb
|
261
|
+
- lib/ledger_sync/netsuite/client.rb
|
262
|
+
- lib/ledger_sync/netsuite/config.rb
|
263
|
+
- lib/ledger_sync/netsuite/currency/deserializer.rb
|
264
|
+
- lib/ledger_sync/netsuite/currency/operations/create.rb
|
265
|
+
- lib/ledger_sync/netsuite/currency/operations/delete.rb
|
266
|
+
- lib/ledger_sync/netsuite/currency/operations/find.rb
|
267
|
+
- lib/ledger_sync/netsuite/currency/operations/update.rb
|
268
|
+
- lib/ledger_sync/netsuite/currency/serializer.rb
|
269
|
+
- lib/ledger_sync/netsuite/customer/deserializer.rb
|
270
|
+
- lib/ledger_sync/netsuite/customer/operations/create.rb
|
271
|
+
- lib/ledger_sync/netsuite/customer/operations/delete.rb
|
272
|
+
- lib/ledger_sync/netsuite/customer/operations/find.rb
|
273
|
+
- lib/ledger_sync/netsuite/customer/operations/update.rb
|
274
|
+
- lib/ledger_sync/netsuite/customer/searcher.rb
|
275
|
+
- lib/ledger_sync/netsuite/customer/searcher_deserializer.rb
|
276
|
+
- lib/ledger_sync/netsuite/customer/serializer.rb
|
277
|
+
- lib/ledger_sync/netsuite/customer_deposit/deserializer.rb
|
278
|
+
- lib/ledger_sync/netsuite/customer_deposit/operations/create.rb
|
279
|
+
- lib/ledger_sync/netsuite/customer_deposit/operations/delete.rb
|
280
|
+
- lib/ledger_sync/netsuite/customer_deposit/operations/find.rb
|
281
|
+
- lib/ledger_sync/netsuite/customer_deposit/operations/update.rb
|
282
|
+
- lib/ledger_sync/netsuite/customer_deposit/searcher.rb
|
283
|
+
- lib/ledger_sync/netsuite/customer_deposit/searcher_deserializer.rb
|
284
|
+
- lib/ledger_sync/netsuite/customer_deposit/serializer.rb
|
285
|
+
- lib/ledger_sync/netsuite/dashboard_url_helper.rb
|
286
|
+
- lib/ledger_sync/netsuite/department/deserializer.rb
|
287
|
+
- lib/ledger_sync/netsuite/department/operations/create.rb
|
288
|
+
- lib/ledger_sync/netsuite/department/operations/delete.rb
|
289
|
+
- lib/ledger_sync/netsuite/department/operations/find.rb
|
290
|
+
- lib/ledger_sync/netsuite/department/operations/update.rb
|
291
|
+
- lib/ledger_sync/netsuite/department/searcher.rb
|
292
|
+
- lib/ledger_sync/netsuite/department/searcher_deserializer.rb
|
293
|
+
- lib/ledger_sync/netsuite/department/serializer.rb
|
294
|
+
- lib/ledger_sync/netsuite/deserializer.rb
|
295
|
+
- lib/ledger_sync/netsuite/error.rb
|
296
|
+
- lib/ledger_sync/netsuite/journal_entry/deserializer.rb
|
297
|
+
- lib/ledger_sync/netsuite/journal_entry/operations/create.rb
|
298
|
+
- lib/ledger_sync/netsuite/journal_entry/operations/delete.rb
|
299
|
+
- lib/ledger_sync/netsuite/journal_entry/operations/find.rb
|
300
|
+
- lib/ledger_sync/netsuite/journal_entry/operations/update.rb
|
301
|
+
- lib/ledger_sync/netsuite/journal_entry/serializer.rb
|
302
|
+
- lib/ledger_sync/netsuite/journal_entry_line_item/deserializer.rb
|
303
|
+
- lib/ledger_sync/netsuite/journal_entry_line_item/serializer.rb
|
304
|
+
- lib/ledger_sync/netsuite/ledger_class/deserializer.rb
|
305
|
+
- lib/ledger_sync/netsuite/ledger_class/operations/create.rb
|
306
|
+
- lib/ledger_sync/netsuite/ledger_class/operations/delete.rb
|
307
|
+
- lib/ledger_sync/netsuite/ledger_class/operations/find.rb
|
308
|
+
- lib/ledger_sync/netsuite/ledger_class/operations/update.rb
|
309
|
+
- lib/ledger_sync/netsuite/ledger_class/searcher.rb
|
310
|
+
- lib/ledger_sync/netsuite/ledger_class/searcher_deserializer.rb
|
311
|
+
- lib/ledger_sync/netsuite/ledger_class/serializer.rb
|
312
|
+
- lib/ledger_sync/netsuite/location/deserializer.rb
|
313
|
+
- lib/ledger_sync/netsuite/location/operations/create.rb
|
314
|
+
- lib/ledger_sync/netsuite/location/operations/delete.rb
|
315
|
+
- lib/ledger_sync/netsuite/location/operations/find.rb
|
316
|
+
- lib/ledger_sync/netsuite/location/operations/update.rb
|
317
|
+
- lib/ledger_sync/netsuite/location/searcher.rb
|
318
|
+
- lib/ledger_sync/netsuite/location/serializer.rb
|
319
|
+
- lib/ledger_sync/netsuite/operation.rb
|
320
|
+
- lib/ledger_sync/netsuite/operation/create.rb
|
321
|
+
- lib/ledger_sync/netsuite/operation/delete.rb
|
322
|
+
- lib/ledger_sync/netsuite/operation/find.rb
|
323
|
+
- lib/ledger_sync/netsuite/operation/update.rb
|
324
|
+
- lib/ledger_sync/netsuite/record/http_method.rb
|
325
|
+
- lib/ledger_sync/netsuite/record/metadata.rb
|
326
|
+
- lib/ledger_sync/netsuite/record/parameter.rb
|
327
|
+
- lib/ledger_sync/netsuite/record/property.rb
|
328
|
+
- lib/ledger_sync/netsuite/reference/serializer.rb
|
329
|
+
- lib/ledger_sync/netsuite/resource.rb
|
330
|
+
- lib/ledger_sync/netsuite/resources/account.rb
|
331
|
+
- lib/ledger_sync/netsuite/resources/check.rb
|
332
|
+
- lib/ledger_sync/netsuite/resources/check_line_item.rb
|
333
|
+
- lib/ledger_sync/netsuite/resources/currency.rb
|
334
|
+
- lib/ledger_sync/netsuite/resources/customer.rb
|
335
|
+
- lib/ledger_sync/netsuite/resources/customer_deposit.rb
|
336
|
+
- lib/ledger_sync/netsuite/resources/department.rb
|
337
|
+
- lib/ledger_sync/netsuite/resources/deposit.rb
|
338
|
+
- lib/ledger_sync/netsuite/resources/deposit_line_item.rb
|
339
|
+
- lib/ledger_sync/netsuite/resources/invoice.rb
|
340
|
+
- lib/ledger_sync/netsuite/resources/invoice_line_item.rb
|
341
|
+
- lib/ledger_sync/netsuite/resources/item.rb
|
342
|
+
- lib/ledger_sync/netsuite/resources/journal_entry.rb
|
343
|
+
- lib/ledger_sync/netsuite/resources/journal_entry_line_item.rb
|
344
|
+
- lib/ledger_sync/netsuite/resources/ledger_class.rb
|
345
|
+
- lib/ledger_sync/netsuite/resources/location.rb
|
346
|
+
- lib/ledger_sync/netsuite/resources/subsidiary.rb
|
347
|
+
- lib/ledger_sync/netsuite/resources/vendor.rb
|
348
|
+
- lib/ledger_sync/netsuite/searcher.rb
|
349
|
+
- lib/ledger_sync/netsuite/serializer.rb
|
350
|
+
- lib/ledger_sync/netsuite/subsidiary/deserializer.rb
|
351
|
+
- lib/ledger_sync/netsuite/subsidiary/searcher.rb
|
352
|
+
- lib/ledger_sync/netsuite/subsidiary/searcher_deserializer.rb
|
353
|
+
- lib/ledger_sync/netsuite/subsidiary/serializer.rb
|
354
|
+
- lib/ledger_sync/netsuite/token.rb
|
355
|
+
- lib/ledger_sync/netsuite/type/deserializer_active_type.rb
|
356
|
+
- lib/ledger_sync/netsuite/type/deserializer_customer_type.rb
|
357
|
+
- lib/ledger_sync/netsuite/type/deserializer_entity_type.rb
|
358
|
+
- lib/ledger_sync/netsuite/type/deserializer_subsidiary_type.rb
|
359
|
+
- lib/ledger_sync/netsuite/vendor/deserializer.rb
|
360
|
+
- lib/ledger_sync/netsuite/vendor/operations/create.rb
|
361
|
+
- lib/ledger_sync/netsuite/vendor/operations/delete.rb
|
362
|
+
- lib/ledger_sync/netsuite/vendor/operations/find.rb
|
363
|
+
- lib/ledger_sync/netsuite/vendor/operations/update.rb
|
364
|
+
- lib/ledger_sync/netsuite/vendor/searcher.rb
|
365
|
+
- lib/ledger_sync/netsuite/vendor/searcher_deserializer.rb
|
366
|
+
- lib/ledger_sync/netsuite/vendor/serializer.rb
|
367
|
+
- lib/ledger_sync/netsuite/version.rb
|
368
|
+
- license.txt
|
369
|
+
homepage: https://www.ledgersync.dev
|
370
|
+
licenses: []
|
371
|
+
metadata: {}
|
372
|
+
post_install_message:
|
373
|
+
rdoc_options: []
|
374
|
+
require_paths:
|
375
|
+
- lib
|
376
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
377
|
+
requirements:
|
378
|
+
- - ">="
|
379
|
+
- !ruby/object:Gem::Version
|
380
|
+
version: 2.5.8
|
381
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
382
|
+
requirements:
|
383
|
+
- - ">="
|
384
|
+
- !ruby/object:Gem::Version
|
385
|
+
version: '0'
|
386
|
+
requirements: []
|
387
|
+
rubyforge_project:
|
388
|
+
rubygems_version: 2.7.6.2
|
389
|
+
signing_key:
|
390
|
+
specification_version: 4
|
391
|
+
summary: Sync common objects to accounting software.
|
392
|
+
test_files: []
|