btrz-api-client 5.149.0 → 5.151.0
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.
- package/lib/client-standalone-min.js +3 -3
- package/lib/client.js +1 -0
- package/lib/endpoints/btrzpay/datalogic.js +48 -0
- package/lib/endpoints/inventory/taxes.js +68 -1
- package/package.json +1 -1
- package/src/client.js +1 -0
- package/src/endpoints/btrzpay/datalogic.js +30 -0
- package/src/endpoints/inventory/taxes.js +41 -2
- package/test/endpoints/btrzpay/datalogicPayments.tests.js +35 -0
- package/types/client.d.ts +53 -0
- package/types/constants.d.ts +1 -1
- package/types/endpoints/btrzpay/datalogic.d.ts +24 -0
- package/types/endpoints/inventory/taxes.d.ts +33 -0
- package/types/initializedClient.d.ts +53 -0
- package/types/productionDefaults.d.ts +2 -2
package/lib/client.js
CHANGED
|
@@ -430,6 +430,7 @@ function createBtrzPay(_ref13) {
|
|
|
430
430
|
squareTerminals: require("./endpoints/btrzpay/square.js").squareTerminalsFactory({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
431
431
|
squareWebhooks: require("./endpoints/btrzpay/square.js").squareWebhooksFactory({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
432
432
|
oxxo: require("./endpoints/btrzpay/oxxo.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
433
|
+
datalogic: require("./endpoints/btrzpay/datalogic.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
|
|
433
434
|
__test: {
|
|
434
435
|
client: client
|
|
435
436
|
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _require = require("./../endpoints_helpers"),
|
|
4
|
+
authorizationHeaders = _require.authorizationHeaders;
|
|
5
|
+
|
|
6
|
+
function datalogicFactory(_ref) {
|
|
7
|
+
var client = _ref.client,
|
|
8
|
+
internalAuthTokenProvider = _ref.internalAuthTokenProvider;
|
|
9
|
+
|
|
10
|
+
var payments = {
|
|
11
|
+
all: function all(_ref2) {
|
|
12
|
+
var token = _ref2.token,
|
|
13
|
+
jwtToken = _ref2.jwtToken,
|
|
14
|
+
headers = _ref2.headers,
|
|
15
|
+
query = _ref2.query,
|
|
16
|
+
internalAuthTokenProvider = _ref2.internalAuthTokenProvider;
|
|
17
|
+
|
|
18
|
+
return client({
|
|
19
|
+
url: "/datalogic/payments",
|
|
20
|
+
params: query,
|
|
21
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
22
|
+
});
|
|
23
|
+
},
|
|
24
|
+
update: function update(_ref3) {
|
|
25
|
+
var token = _ref3.token,
|
|
26
|
+
jwtToken = _ref3.jwtToken,
|
|
27
|
+
headers = _ref3.headers,
|
|
28
|
+
query = _ref3.query,
|
|
29
|
+
referenceNumber = _ref3.referenceNumber,
|
|
30
|
+
data = _ref3.data,
|
|
31
|
+
internalAuthTokenProvider = _ref3.internalAuthTokenProvider;
|
|
32
|
+
|
|
33
|
+
return client({
|
|
34
|
+
url: "/datalogic/payments/" + referenceNumber,
|
|
35
|
+
method: "post",
|
|
36
|
+
params: query,
|
|
37
|
+
data: data,
|
|
38
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
return {
|
|
44
|
+
payments: payments
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
module.exports = datalogicFactory;
|
|
@@ -62,11 +62,78 @@ function taxesFactory(_ref) {
|
|
|
62
62
|
});
|
|
63
63
|
}
|
|
64
64
|
|
|
65
|
+
var exceptions = {
|
|
66
|
+
create: function create(_ref6) {
|
|
67
|
+
var jwtToken = _ref6.jwtToken,
|
|
68
|
+
token = _ref6.token,
|
|
69
|
+
taxException = _ref6.taxException,
|
|
70
|
+
headers = _ref6.headers;
|
|
71
|
+
|
|
72
|
+
return client({
|
|
73
|
+
url: "/taxes/exceptions",
|
|
74
|
+
method: "post",
|
|
75
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
|
|
76
|
+
data: taxException
|
|
77
|
+
});
|
|
78
|
+
},
|
|
79
|
+
update: function update(_ref7) {
|
|
80
|
+
var jwtToken = _ref7.jwtToken,
|
|
81
|
+
token = _ref7.token,
|
|
82
|
+
taxExceptionId = _ref7.taxExceptionId,
|
|
83
|
+
taxException = _ref7.taxException,
|
|
84
|
+
headers = _ref7.headers;
|
|
85
|
+
|
|
86
|
+
return client({
|
|
87
|
+
url: "/taxes/exceptions/" + taxExceptionId,
|
|
88
|
+
method: "put",
|
|
89
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
|
|
90
|
+
data: taxException
|
|
91
|
+
});
|
|
92
|
+
},
|
|
93
|
+
get: function get(_ref8) {
|
|
94
|
+
var jwtToken = _ref8.jwtToken,
|
|
95
|
+
token = _ref8.token,
|
|
96
|
+
taxExceptionId = _ref8.taxExceptionId,
|
|
97
|
+
headers = _ref8.headers;
|
|
98
|
+
|
|
99
|
+
return client({
|
|
100
|
+
url: "/taxes/exceptions/" + taxExceptionId,
|
|
101
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
102
|
+
});
|
|
103
|
+
},
|
|
104
|
+
all: function all(_ref9) {
|
|
105
|
+
var jwtToken = _ref9.jwtToken,
|
|
106
|
+
token = _ref9.token,
|
|
107
|
+
_ref9$query = _ref9.query,
|
|
108
|
+
query = _ref9$query === undefined ? {} : _ref9$query,
|
|
109
|
+
headers = _ref9.headers;
|
|
110
|
+
|
|
111
|
+
return client({
|
|
112
|
+
url: "/taxes/exceptions",
|
|
113
|
+
params: query,
|
|
114
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
115
|
+
});
|
|
116
|
+
},
|
|
117
|
+
delete: function _delete(_ref10) {
|
|
118
|
+
var jwtToken = _ref10.jwtToken,
|
|
119
|
+
token = _ref10.token,
|
|
120
|
+
taxExceptionId = _ref10.taxExceptionId,
|
|
121
|
+
headers = _ref10.headers;
|
|
122
|
+
|
|
123
|
+
return client({
|
|
124
|
+
url: "/taxes/exceptions/" + taxExceptionId,
|
|
125
|
+
method: "delete",
|
|
126
|
+
headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
|
|
65
131
|
return {
|
|
66
132
|
all: all,
|
|
67
133
|
get: get,
|
|
68
134
|
create: create,
|
|
69
|
-
update: update
|
|
135
|
+
update: update,
|
|
136
|
+
exceptions: exceptions
|
|
70
137
|
};
|
|
71
138
|
}
|
|
72
139
|
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -333,6 +333,7 @@ function createBtrzPay({baseURL, headers, timeout, overrideFn, internalAuthToken
|
|
|
333
333
|
squareTerminals: require("./endpoints/btrzpay/square.js").squareTerminalsFactory({client, internalAuthTokenProvider}),
|
|
334
334
|
squareWebhooks: require("./endpoints/btrzpay/square.js").squareWebhooksFactory({client, internalAuthTokenProvider}),
|
|
335
335
|
oxxo: require("./endpoints/btrzpay/oxxo.js")({client, internalAuthTokenProvider}),
|
|
336
|
+
datalogic: require("./endpoints/btrzpay/datalogic.js")({client, internalAuthTokenProvider}),
|
|
336
337
|
__test: {
|
|
337
338
|
client
|
|
338
339
|
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const {
|
|
2
|
+
authorizationHeaders
|
|
3
|
+
} = require("./../endpoints_helpers");
|
|
4
|
+
|
|
5
|
+
function datalogicFactory({client, internalAuthTokenProvider}) {
|
|
6
|
+
const payments = {
|
|
7
|
+
all({token, jwtToken, headers, query, internalAuthTokenProvider}) {
|
|
8
|
+
return client({
|
|
9
|
+
url: "/datalogic/payments",
|
|
10
|
+
params: query,
|
|
11
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
12
|
+
});
|
|
13
|
+
},
|
|
14
|
+
update({token, jwtToken, headers, query, referenceNumber, data, internalAuthTokenProvider}) {
|
|
15
|
+
return client({
|
|
16
|
+
url: `/datalogic/payments/${referenceNumber}`,
|
|
17
|
+
method: "post",
|
|
18
|
+
params: query,
|
|
19
|
+
data,
|
|
20
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
return {
|
|
26
|
+
payments
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
module.exports = datalogicFactory;
|
|
@@ -34,13 +34,52 @@ function taxesFactory({client, internalAuthTokenProvider}) {
|
|
|
34
34
|
});
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
+
const exceptions = {
|
|
38
|
+
create({jwtToken, token, taxException, headers}) {
|
|
39
|
+
return client({
|
|
40
|
+
url: "/taxes/exceptions",
|
|
41
|
+
method: "post",
|
|
42
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
|
|
43
|
+
data: taxException
|
|
44
|
+
});
|
|
45
|
+
},
|
|
46
|
+
update({jwtToken, token, taxExceptionId, taxException, headers}) {
|
|
47
|
+
return client({
|
|
48
|
+
url: `/taxes/exceptions/${taxExceptionId}`,
|
|
49
|
+
method: "put",
|
|
50
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
|
|
51
|
+
data: taxException
|
|
52
|
+
});
|
|
53
|
+
},
|
|
54
|
+
get({jwtToken, token, taxExceptionId, headers}) {
|
|
55
|
+
return client({
|
|
56
|
+
url: `/taxes/exceptions/${taxExceptionId}`,
|
|
57
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
58
|
+
});
|
|
59
|
+
},
|
|
60
|
+
all({jwtToken, token, query = {}, headers}) {
|
|
61
|
+
return client({
|
|
62
|
+
url: "/taxes/exceptions",
|
|
63
|
+
params: query,
|
|
64
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
65
|
+
});
|
|
66
|
+
},
|
|
67
|
+
delete({jwtToken, token, taxExceptionId, headers}) {
|
|
68
|
+
return client({
|
|
69
|
+
url: `/taxes/exceptions/${taxExceptionId}`,
|
|
70
|
+
method: "delete",
|
|
71
|
+
headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
|
|
37
76
|
return {
|
|
38
77
|
all,
|
|
39
78
|
get,
|
|
40
79
|
create,
|
|
41
|
-
update
|
|
80
|
+
update,
|
|
81
|
+
exceptions
|
|
42
82
|
};
|
|
43
|
-
|
|
44
83
|
}
|
|
45
84
|
|
|
46
85
|
module.exports = taxesFactory;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const {
|
|
2
|
+
axiosMock, expectRequest
|
|
3
|
+
} = require("../../test-helpers");
|
|
4
|
+
const api = require("../../../src/client").createApiClient({
|
|
5
|
+
baseURL: "http://test.com"
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
describe("btrz-pay/datalogic/payments", () => {
|
|
9
|
+
const referenceNumber = "1234-1234-1234-1234";
|
|
10
|
+
const internalAuthTokenProvider = {
|
|
11
|
+
getToken: () => {
|
|
12
|
+
return "internalToken";
|
|
13
|
+
}
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
afterEach(() => {
|
|
17
|
+
axiosMock.reset();
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
it("should get a list of payments", () => {
|
|
21
|
+
axiosMock.onGet("/datalogic/payments").reply(expectRequest({
|
|
22
|
+
statusCode: 200,
|
|
23
|
+
internalAuthTokenProvider,
|
|
24
|
+
withoutApiKey: true,
|
|
25
|
+
jwtToken: "internal_auth_token",
|
|
26
|
+
query: {referenceNumber}
|
|
27
|
+
}));
|
|
28
|
+
|
|
29
|
+
return api.btrzpay.datalogic.payments.all({
|
|
30
|
+
internalAuthTokenProvider,
|
|
31
|
+
jwtToken: "internal_auth_token",
|
|
32
|
+
query: {referenceNumber}
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
});
|
package/types/client.d.ts
CHANGED
|
@@ -386,6 +386,39 @@ export function createApiClient(options: {
|
|
|
386
386
|
tax: any;
|
|
387
387
|
headers: any;
|
|
388
388
|
}) => any;
|
|
389
|
+
exceptions: {
|
|
390
|
+
create({ jwtToken, token, taxException, headers }: {
|
|
391
|
+
jwtToken: any;
|
|
392
|
+
token: any;
|
|
393
|
+
taxException: any;
|
|
394
|
+
headers: any;
|
|
395
|
+
}): any;
|
|
396
|
+
update({ jwtToken, token, taxExceptionId, taxException, headers }: {
|
|
397
|
+
jwtToken: any;
|
|
398
|
+
token: any;
|
|
399
|
+
taxExceptionId: any;
|
|
400
|
+
taxException: any;
|
|
401
|
+
headers: any;
|
|
402
|
+
}): any;
|
|
403
|
+
get({ jwtToken, token, taxExceptionId, headers }: {
|
|
404
|
+
jwtToken: any;
|
|
405
|
+
token: any;
|
|
406
|
+
taxExceptionId: any;
|
|
407
|
+
headers: any;
|
|
408
|
+
}): any;
|
|
409
|
+
all({ jwtToken, token, query, headers }: {
|
|
410
|
+
jwtToken: any;
|
|
411
|
+
token: any;
|
|
412
|
+
query?: {};
|
|
413
|
+
headers: any;
|
|
414
|
+
}): any;
|
|
415
|
+
delete({ jwtToken, token, taxExceptionId, headers }: {
|
|
416
|
+
jwtToken: any;
|
|
417
|
+
token: any;
|
|
418
|
+
taxExceptionId: any;
|
|
419
|
+
headers: any;
|
|
420
|
+
}): any;
|
|
421
|
+
};
|
|
389
422
|
};
|
|
390
423
|
seatmaps: {
|
|
391
424
|
all: ({ token, query, headers }: {
|
|
@@ -3754,6 +3787,26 @@ export function createApiClient(options: {
|
|
|
3754
3787
|
}): any;
|
|
3755
3788
|
};
|
|
3756
3789
|
};
|
|
3790
|
+
datalogic: {
|
|
3791
|
+
payments: {
|
|
3792
|
+
all({ token, jwtToken, headers, query, internalAuthTokenProvider }: {
|
|
3793
|
+
token: any;
|
|
3794
|
+
jwtToken: any;
|
|
3795
|
+
headers: any;
|
|
3796
|
+
query: any;
|
|
3797
|
+
internalAuthTokenProvider: any;
|
|
3798
|
+
}): any;
|
|
3799
|
+
update({ token, jwtToken, headers, query, referenceNumber, data, internalAuthTokenProvider }: {
|
|
3800
|
+
token: any;
|
|
3801
|
+
jwtToken: any;
|
|
3802
|
+
headers: any;
|
|
3803
|
+
query: any;
|
|
3804
|
+
referenceNumber: any;
|
|
3805
|
+
data: any;
|
|
3806
|
+
internalAuthTokenProvider: any;
|
|
3807
|
+
}): any;
|
|
3808
|
+
};
|
|
3809
|
+
};
|
|
3757
3810
|
__test: {
|
|
3758
3811
|
client: axios.AxiosInstance;
|
|
3759
3812
|
};
|
package/types/constants.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const INTERNAL_AUTH_TOKEN_SYMBOL: string;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export = datalogicFactory;
|
|
2
|
+
declare function datalogicFactory({ client, internalAuthTokenProvider }: {
|
|
3
|
+
client: any;
|
|
4
|
+
internalAuthTokenProvider: any;
|
|
5
|
+
}): {
|
|
6
|
+
payments: {
|
|
7
|
+
all({ token, jwtToken, headers, query, internalAuthTokenProvider }: {
|
|
8
|
+
token: any;
|
|
9
|
+
jwtToken: any;
|
|
10
|
+
headers: any;
|
|
11
|
+
query: any;
|
|
12
|
+
internalAuthTokenProvider: any;
|
|
13
|
+
}): any;
|
|
14
|
+
update({ token, jwtToken, headers, query, referenceNumber, data, internalAuthTokenProvider }: {
|
|
15
|
+
token: any;
|
|
16
|
+
jwtToken: any;
|
|
17
|
+
headers: any;
|
|
18
|
+
query: any;
|
|
19
|
+
referenceNumber: any;
|
|
20
|
+
data: any;
|
|
21
|
+
internalAuthTokenProvider: any;
|
|
22
|
+
}): any;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -27,4 +27,37 @@ declare function taxesFactory({ client, internalAuthTokenProvider }: {
|
|
|
27
27
|
tax: any;
|
|
28
28
|
headers: any;
|
|
29
29
|
}) => any;
|
|
30
|
+
exceptions: {
|
|
31
|
+
create({ jwtToken, token, taxException, headers }: {
|
|
32
|
+
jwtToken: any;
|
|
33
|
+
token: any;
|
|
34
|
+
taxException: any;
|
|
35
|
+
headers: any;
|
|
36
|
+
}): any;
|
|
37
|
+
update({ jwtToken, token, taxExceptionId, taxException, headers }: {
|
|
38
|
+
jwtToken: any;
|
|
39
|
+
token: any;
|
|
40
|
+
taxExceptionId: any;
|
|
41
|
+
taxException: any;
|
|
42
|
+
headers: any;
|
|
43
|
+
}): any;
|
|
44
|
+
get({ jwtToken, token, taxExceptionId, headers }: {
|
|
45
|
+
jwtToken: any;
|
|
46
|
+
token: any;
|
|
47
|
+
taxExceptionId: any;
|
|
48
|
+
headers: any;
|
|
49
|
+
}): any;
|
|
50
|
+
all({ jwtToken, token, query, headers }: {
|
|
51
|
+
jwtToken: any;
|
|
52
|
+
token: any;
|
|
53
|
+
query?: {};
|
|
54
|
+
headers: any;
|
|
55
|
+
}): any;
|
|
56
|
+
delete({ jwtToken, token, taxExceptionId, headers }: {
|
|
57
|
+
jwtToken: any;
|
|
58
|
+
token: any;
|
|
59
|
+
taxExceptionId: any;
|
|
60
|
+
headers: any;
|
|
61
|
+
}): any;
|
|
62
|
+
};
|
|
30
63
|
};
|
|
@@ -340,6 +340,39 @@ declare const _exports: {
|
|
|
340
340
|
tax: any;
|
|
341
341
|
headers: any;
|
|
342
342
|
}) => any;
|
|
343
|
+
exceptions: {
|
|
344
|
+
create({ jwtToken, token, taxException, headers }: {
|
|
345
|
+
jwtToken: any;
|
|
346
|
+
token: any;
|
|
347
|
+
taxException: any;
|
|
348
|
+
headers: any;
|
|
349
|
+
}): any;
|
|
350
|
+
update({ jwtToken, token, taxExceptionId, taxException, headers }: {
|
|
351
|
+
jwtToken: any;
|
|
352
|
+
token: any;
|
|
353
|
+
taxExceptionId: any;
|
|
354
|
+
taxException: any;
|
|
355
|
+
headers: any;
|
|
356
|
+
}): any;
|
|
357
|
+
get({ jwtToken, token, taxExceptionId, headers }: {
|
|
358
|
+
jwtToken: any;
|
|
359
|
+
token: any;
|
|
360
|
+
taxExceptionId: any;
|
|
361
|
+
headers: any;
|
|
362
|
+
}): any;
|
|
363
|
+
all({ jwtToken, token, query, headers }: {
|
|
364
|
+
jwtToken: any;
|
|
365
|
+
token: any;
|
|
366
|
+
query?: {};
|
|
367
|
+
headers: any;
|
|
368
|
+
}): any;
|
|
369
|
+
delete({ jwtToken, token, taxExceptionId, headers }: {
|
|
370
|
+
jwtToken: any;
|
|
371
|
+
token: any;
|
|
372
|
+
taxExceptionId: any;
|
|
373
|
+
headers: any;
|
|
374
|
+
}): any;
|
|
375
|
+
};
|
|
343
376
|
};
|
|
344
377
|
seatmaps: {
|
|
345
378
|
all: ({ token, query, headers }: {
|
|
@@ -3708,6 +3741,26 @@ declare const _exports: {
|
|
|
3708
3741
|
}): any;
|
|
3709
3742
|
};
|
|
3710
3743
|
};
|
|
3744
|
+
datalogic: {
|
|
3745
|
+
payments: {
|
|
3746
|
+
all({ token, jwtToken, headers, query, internalAuthTokenProvider }: {
|
|
3747
|
+
token: any;
|
|
3748
|
+
jwtToken: any;
|
|
3749
|
+
headers: any;
|
|
3750
|
+
query: any;
|
|
3751
|
+
internalAuthTokenProvider: any;
|
|
3752
|
+
}): any;
|
|
3753
|
+
update({ token, jwtToken, headers, query, referenceNumber, data, internalAuthTokenProvider }: {
|
|
3754
|
+
token: any;
|
|
3755
|
+
jwtToken: any;
|
|
3756
|
+
headers: any;
|
|
3757
|
+
query: any;
|
|
3758
|
+
referenceNumber: any;
|
|
3759
|
+
data: any;
|
|
3760
|
+
internalAuthTokenProvider: any;
|
|
3761
|
+
}): any;
|
|
3762
|
+
};
|
|
3763
|
+
};
|
|
3711
3764
|
__test: {
|
|
3712
3765
|
client: import("axios").AxiosInstance;
|
|
3713
3766
|
};
|