gotransverse-tract-api 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: abe8d19384301bd7663cb312e9cda29e2335b0f5
4
- data.tar.gz: 784e54101184228e29cba4f3bd1285e9a2e8b4a7
3
+ metadata.gz: 3a07eebad0bf14c4ee4ca40bb2b1298338fcc84d
4
+ data.tar.gz: 28b9857a17c735b77bfe54b218b30dfc7081a866
5
5
  SHA512:
6
- metadata.gz: b83013ea5c8414ac68fa15df2a4e6268b579a2a5d46fbf7d07e39ce6b126794dc58dc3407bf868a1d51a0bc0151c08cbd0621334373b93780c473a42670c222b
7
- data.tar.gz: 11ad087f4da2132796056ffcaf2cbff7680a28d8fffb11deb860914b5741604611dd1ac007e500440ed45d2fa200a0b5be289ce117220caf831edd7db7de3b7d
6
+ metadata.gz: be6f3b7711059b8430b8fff9fd5785dd8eae61d7aeecc3d3f7e64f216885f320b73506e5ba3d1ae62627d8976c12e8408ba3d959834eb0da98d9d2afdb746231
7
+ data.tar.gz: 29bc8060789411373ad58355c1d77fccb8a67c2c3da1276e8e16be0ca1650ad84b8e354af86c2488a8c7f81b5282dd0542aaf75df6097fdf128c112ed1110bd1
@@ -17,6 +17,7 @@ require "gotransverse-tract-api/billing_account/scheduled_charge"
17
17
 
18
18
  require "gotransverse-tract-api/general/system_setting"
19
19
 
20
+ require "gotransverse-tract-api/general_ledger/general_ledger"
20
21
  require "gotransverse-tract-api/general_ledger/gl_account"
21
22
  require "gotransverse-tract-api/general_ledger/gl_account_category"
22
23
  require "gotransverse-tract-api/general_ledger/gl_accounting_entry"
@@ -30,7 +31,7 @@ require "gotransverse-tract-api/order/order_item"
30
31
  require "gotransverse-tract-api/order/order_item_charge"
31
32
  require "gotransverse-tract-api/order/organization"
32
33
  require "gotransverse-tract-api/order/party_category"
33
- require "gotransverse-tract-api/order/person"
34
+ require "gotransverse-tract-api/order/people"
34
35
  require "gotransverse-tract-api/order/product_relation"
35
36
  require "gotransverse-tract-api/order/renewal_order"
36
37
  require "gotransverse-tract-api/order/sales_order"
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class AdjustmentReason
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class BillingAccount
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class CustomField
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class CustomFieldValue
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class Reason
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class RecurringPayment
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class Refund
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class ScheduledCharge
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class SystemSetting
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -0,0 +1,15 @@
1
+ module GoTransverseTractApi
2
+
3
+ module GeneralLedger
4
+
5
+ class GeneralLedger
6
+
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
11
+ end
12
+
13
+ end
14
+
15
+ end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class Agreement
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class BillCycle
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class BillingAccountCategory
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class Organization
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -0,0 +1,15 @@
1
+ module GoTransverseTractApi
2
+
3
+ module Order
4
+
5
+ class People
6
+
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
11
+ end
12
+
13
+ end
14
+
15
+ end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class PriceList
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class Product
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  #
8
12
  # @param {Long} eid
9
13
  #
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class ProductCategory
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -4,6 +4,10 @@ module GoTransverseTractApi
4
4
 
5
5
  class ServiceResourceCategory
6
6
 
7
+ def self.find_all
8
+ GoTransverseTractApi.get_response_for(self.class)
9
+ end
10
+
7
11
  end
8
12
 
9
13
  end
@@ -1,6 +1,6 @@
1
1
  module GoTransverseTractApi
2
2
 
3
- VERSION = "0.0.4"
3
+ VERSION = "0.0.5"
4
4
  TARGET_API_VERSION = "1.19"
5
5
 
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gotransverse-tract-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julien DeFrance
@@ -99,6 +99,7 @@ files:
99
99
  - lib/gotransverse-tract-api/billing_account/scheduled_charge.rb
100
100
  - lib/gotransverse-tract-api/configuration.rb
101
101
  - lib/gotransverse-tract-api/general/system_setting.rb
102
+ - lib/gotransverse-tract-api/general_ledger/general_ledger.rb
102
103
  - lib/gotransverse-tract-api/general_ledger/gl_account.rb
103
104
  - lib/gotransverse-tract-api/general_ledger/gl_account_category.rb
104
105
  - lib/gotransverse-tract-api/general_ledger/gl_accounting_entry.rb
@@ -111,7 +112,7 @@ files:
111
112
  - lib/gotransverse-tract-api/order/order_item_charge.rb
112
113
  - lib/gotransverse-tract-api/order/organization.rb
113
114
  - lib/gotransverse-tract-api/order/party_category.rb
114
- - lib/gotransverse-tract-api/order/person.rb
115
+ - lib/gotransverse-tract-api/order/people.rb
115
116
  - lib/gotransverse-tract-api/order/product_relation.rb
116
117
  - lib/gotransverse-tract-api/order/renewal_order.rb
117
118
  - lib/gotransverse-tract-api/order/sales_order.rb
@@ -1,11 +0,0 @@
1
- module GoTransverseTractApi
2
-
3
- module Order
4
-
5
- class Person
6
-
7
- end
8
-
9
- end
10
-
11
- end