Skip to content

Commit

Permalink
Automatic upgrade of the SDK. Build #373948.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk.wellnessliving committed Nov 14, 2024
1 parent ae495dd commit 82e5434
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 11 deletions.
14 changes: 14 additions & 0 deletions WellnessLiving/Core/Passport/Login/SignOut/SignOutModel.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace WellnessLiving\Core\Passport\Login\SignOut;

use WellnessLiving\WlModelAbstract;

/**
* Signs user out.
*/
class SignOutModel extends WlModelAbstract
{
}

?>
26 changes: 17 additions & 9 deletions WellnessLiving/Wl/Purchase/Receipt/PurchaseReceiptModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class PurchaseReceiptModel extends WlModelAbstract
* @get result
* @var array
*/
public $a_account_rest;
public $a_account_rest = [];

/**
* Information about the business.
Expand Down Expand Up @@ -102,7 +102,7 @@ class PurchaseReceiptModel extends WlModelAbstract
* @get result
* @var array
*/
public $a_business;
public $a_business = [];

/**
* Payment transaction information. Every element has the following keys:
Expand Down Expand Up @@ -130,7 +130,7 @@ class PurchaseReceiptModel extends WlModelAbstract
* @get result
* @var array
*/
public $a_card;
public $a_card = [];

/**
* Information about the customer.
Expand Down Expand Up @@ -164,7 +164,7 @@ class PurchaseReceiptModel extends WlModelAbstract
* @get result
* @var array
*/
public $a_customer;
public $a_customer = [];

/**
* A list of payment methods for the current purchase. Every element has the following keys:
Expand Down Expand Up @@ -192,7 +192,7 @@ class PurchaseReceiptModel extends WlModelAbstract
* @get result
* @var array
*/
public $a_pay_method;
public $a_pay_method = [];

/**
* Complete information about price information for the purchase.
Expand Down Expand Up @@ -250,7 +250,7 @@ class PurchaseReceiptModel extends WlModelAbstract
* @get result
* @var array
*/
public $a_price;
public $a_price = [];

/**
* A list of purchase items. Every element has the following keys:
Expand Down Expand Up @@ -341,12 +341,18 @@ class PurchaseReceiptModel extends WlModelAbstract
* <dd>
* The description of the purchase item.
* </dd>
* <dt>
* string <var>url_print</var>
* </dt>
* <dd>
* The URL to print. Only available if the purchase item is a coupon (gift card).
* </dd>
* </dl>
*
* @get result
* @var array[]
*/
public $a_purchase_item;
public $a_purchase_item = [];

/**
* The local date of the purchase in MySQL format.
Expand All @@ -373,8 +379,10 @@ class PurchaseReceiptModel extends WlModelAbstract
public $html_receipt;

/**
* Whether the print receipt URL requires authentication. If `true`, the URL contains a token that temporarily
* allows access to the print receipt without a login. `false` otherwise.
* Whether {@link PurchaseReceiptModel::$url_print} and {@link PurchaseReceiptModel::$url_print_receipt} require authentication.
*
* If `true`, the URL contains a token that allows temporary access to the page without logging in. If 'false', the
* page requires authentication.
*
* @get get
* @var bool
Expand Down
2 changes: 1 addition & 1 deletion WellnessLiving/Wl/Quiz/QuizElementModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class QuizElementModel extends WlModelAbstract
public $k_business = '';

/**
* Business type key.
* Business type key. Used only for forms in the system business.
*
* `null` if not initialized.
*
Expand Down
2 changes: 1 addition & 1 deletion WellnessLiving/WlModelRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class WlModelRequest
/**
* SDK version number.
*/
const VERSION='20241113.373612';
const VERSION='20241114.373948';

/**
* A list of headers for the API request. See {@link CURLOPT_HTTPHEADER}.
Expand Down

0 comments on commit 82e5434

Please sign in to comment.