moxiworks_platform 0.10.0 → 0.10.1

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: 7b5b401acac755297329d154e1052471cb6825a7
4
- data.tar.gz: 48d102c5dcec45b751f5880259b47a55d11dec1c
3
+ metadata.gz: 82b5c85cf1bfe190344e072b8d07a22f7e83e1ef
4
+ data.tar.gz: 169e7df98ab8afbcc2194a7fbbec5711abad3b5a
5
5
  SHA512:
6
- metadata.gz: 1234822529a1438cb604a3512cda3ec93b55dd784d572613973cee1f28a7c5054507ac7691fae2e1b2bbaf07b896ab28810541d96987398785fec35c54a5a383
7
- data.tar.gz: 6e77d0aba5cd6a3a9503e570b3ead31c30c7b4c45075ea96932b448c52158083b25832eb7589467ebffd020872004077cee8b3a2209794b71ea599266607d367
6
+ metadata.gz: 9e988313ba11d00ccea908ba028b5d9b8a43ca2363be9d3d3b6512b2442bea96bbfaadd66135bc4149e4e2bf90482951f73475e925da48a94ba85ec0559713a4
7
+ data.tar.gz: 844c67fbda0d00b1cf5a5728552063693822e3631edc034b37ab49d583fcbbe3953c60b322a3fe795d35d583b3eacddd3fc8444992d801ab3d62189dbafcc537
@@ -271,13 +271,13 @@ module MoxiworksPlatform
271
271
  # @option opts [String] :moxi_works_agent_id *REQUIRED* The Moxi Works Agent ID for the agent to which this transaction is to be associated
272
272
  # @option opts [String] :moxi_works_contact_id *REQUIRED* The unique identifier for the Contact on the Moxi Works Platform. Either moxi_works_contact_id or partner_contact_id is required when creating BuyerTransaction objects
273
273
  # @option opts [String] :partner_contact_id *REQUIRED* Your system's unique id for associated contact. should already have been created in Moxi Works Platform. If the Contact was not created by your system, use the moxi_works_contact_id attribute. Either moxi_works_contact_id or partner_contact_id is required when creating BuyerTransaction objects
274
+ # @option opts [String] :transaction_name *REQUIRED* short description of the transaction meaningful to the agent
274
275
  #
275
276
  # -- Either moxi_works_contact_id or partner_contact_id must be
276
277
  # populated; however, you should only populate one of these attributes.
277
278
  #
278
279
  # optional BuyerTransaction parameters
279
280
  #
280
- # @option opts [String] :name short description of the transaction meaningful to the agent
281
281
  # @option opts [String] :notes human readable notes associated with the transaction meaningful to the agent
282
282
  # @option opts [String] :address street address of the property associated with the transaction
283
283
  # @option opts [String] :city city of the property associated with the transaction
@@ -427,7 +427,7 @@ module MoxiworksPlatform
427
427
  #
428
428
  # optional BuyerTransaction parameters
429
429
  #
430
- # @option opts [String] :name short description of the transaction meaningful to the agent
430
+ # @option opts [String] :transaction_name short description of the transaction meaningful to the agent
431
431
  # @option opts [String] :notes human readable notes associated with the transaction meaningful to the agent
432
432
  # @option opts [String] :address street address of the property associated with the transaction
433
433
  # @option opts [String] :city city of the property associated with the transaction
@@ -507,7 +507,7 @@ module MoxiworksPlatform
507
507
  #
508
508
  # optional BuyerTransaction parameters
509
509
  #
510
- # @option opts [String] :name short description of the transaction
510
+ # @option opts [String] :transaction_name short description of the transaction
511
511
  # @option opts [String] :description longer description of the transaction
512
512
  # @option opts [Integer] :due_at Unix timestamp representing the due date
513
513
  # @option opts [Integer] :duration Length of time in minutes that the transaction should take
@@ -247,7 +247,7 @@ module MoxiworksPlatform
247
247
  #
248
248
  # optional SellerTransaction parameters
249
249
  #
250
- # @option opts [String] :name short description of the transaction meaningful to the agent
250
+ # @option opts [String] :transaction_name short description of the transaction meaningful to the agent
251
251
  # @option opts [String] :notes human readable notes associated with the transaction meaningful to the agent
252
252
  # @option opts [String] :address street address of the property associated with the transaction
253
253
  # @option opts [String] :city city of the property associated with the transaction
@@ -389,7 +389,7 @@ module MoxiworksPlatform
389
389
  #
390
390
  # optional SellerTransaction parameters
391
391
  #
392
- # @option opts [String] :name short description of the transaction meaningful to the agent
392
+ # @option opts [String] :transaction_name short description of the transaction meaningful to the agent
393
393
  # @option opts [String] :notes human readable notes associated with the transaction meaningful to the agent
394
394
  # @option opts [String] :address street address of the property associated with the transaction
395
395
  # @option opts [String] :city city of the property associated with the transaction
@@ -460,10 +460,10 @@ module MoxiworksPlatform
460
460
  # @option opts [String] :moxi_works_agent_id *REQUIRED* The Moxi Works Agent ID for the agent to which this transaction is to be associated
461
461
  # @option opts [String] :moxi_works_transaction_id *REQUIRED* The Moxi Works Platform unique ID for this transaction.
462
462
  # @option opts [String] :partner_contact_id *REQUIRED* Your system's unique ID for the Contact for whom this SellerTransaction is to be associated.
463
+ # @option opts [String] :transaction_name *REQUIRED* short description of the transaction meaningful to the agent
463
464
  #
464
465
  # optional SellerTransaction parameters
465
466
  #
466
- # @option opts [String] :name short description of the transaction
467
467
  # @option opts [String] :description longer description of the transaction
468
468
  # @option opts [Integer] :due_at Unix timestamp representing the due date
469
469
  # @option opts [Integer] :duration Length of time in minutes that the transaction should take
@@ -1,3 +1,3 @@
1
1
  module MoxiworksPlatform
2
- VERSION = '0.10.0'
2
+ VERSION = '0.10.1'
3
3
  end
data/publish_docs.sh CHANGED
@@ -12,7 +12,7 @@ cd doc
12
12
 
13
13
  for i in `ls`
14
14
  do
15
- mv ../$i /tmp/$i
15
+ rm -r ../$i
16
16
  mv $i ../$i
17
17
  done
18
18
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moxiworks_platform
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tres Wong-Godfrey
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-12-15 00:00:00.000000000 Z
11
+ date: 2017-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler