Skip to content

Commit 27ca7e3

Browse files
committed
chore: generate docs
1 parent 989b41c commit 27ca7e3

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

docs/classes/Payment.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ <h4>Example:</h4>
502502
<div class="meta">
503503
<p>
504504
Defined in
505-
<a href="../files/src_Models_Payment.js.html#l535"><code>src&#x2F;Models&#x2F;Payment.js:535</code></a>
505+
<a href="../files/src_Models_Payment.js.html#l537"><code>src&#x2F;Models&#x2F;Payment.js:537</code></a>
506506
</p>
507507

508508

docs/data.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@
12321232
},
12331233
{
12341234
"file": "src/Models/Payment.js",
1235-
"line": 535,
1235+
"line": 537,
12361236
"description": "Process a request for direct debit subscribe",
12371237
"itemtype": "method",
12381238
"name": "directDebitSubscribe",

docs/files/src_Models_Payment.js.html

+7-3
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ <h1>src/Models/Payment.js <small>File</small></h1>
586586
accessFeeId: access_fee_id,
587587
voucherCode: voucher_code = &#x27;&#x27;,
588588
brandingId: branding_id,
589+
referrer,
589590
}) {
590591
if (!this.Account.isAuthenticated()) {
591592
errorResponse(401, {
@@ -607,7 +608,8 @@ <h1>src/Models/Payment.js <small>File</small></h1>
607608
access_fee_id,
608609
voucher_code,
609610
payment_method: &#x27;Direct Debit&#x27;,
610-
branding_id
611+
branding_id,
612+
referrer
611613
}),
612614
}
613615
);
@@ -642,7 +644,8 @@ <h1>src/Models/Payment.js <small>File</small></h1>
642644
assetId: item_id,
643645
accessFeeId: access_fee_id,
644646
voucherCode: voucher_code = &#x27;&#x27;,
645-
brandingId: branding_id
647+
brandingId: branding_id,
648+
referrer,
646649
}) {
647650
if (!this.Account.isAuthenticated()) {
648651
errorResponse(401, {
@@ -664,7 +667,8 @@ <h1>src/Models/Payment.js <small>File</small></h1>
664667
access_fee_id,
665668
voucher_code,
666669
payment_method: &#x27;Direct Debit&#x27;,
667-
branding_id
670+
branding_id,
671+
referrer
668672
}),
669673
}
670674
);

docs/files/src_Models_Subscription.js.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ <h1>src/Models/Subscription.js <small>File</small></h1>
107107
* .then(data =&gt; console.log(data));
108108
* @return {Object}
109109
*/
110-
async getSubscriptions(page = 0, limit = 15) {
110+
async getSubscriptions(page = 0, limit = 15, status = &#x27;&#x27;) {
111111
if (!this.Account.isAuthenticated()) {
112112
errorResponse(401, {
113113
code: 401,
@@ -116,7 +116,7 @@ <h1>src/Models/Subscription.js <small>File</small></h1>
116116
}
117117

118118
const response = await fetch(
119-
this.config.API.getSubscriptions(limit, page),
119+
this.config.API.getSubscriptions(limit, page, status),
120120
{
121121
headers: {
122122
Authorization: &#x60;Bearer ${this.Account.getToken().token}&#x60;

0 commit comments

Comments
 (0)