btrz-api-client 5.187.0 → 5.189.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.js CHANGED
@@ -114,6 +114,7 @@ function createInventory(_ref) {
114
114
  seatClasses: require("./endpoints/inventory/seatclasses.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
115
115
  segmentsInformation: require("./endpoints/inventory/segments-information.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
116
116
  mitTerminalsSettings: require("./endpoints/inventory/mit-terminal-settings.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
117
+ financingCosts: require("./endpoints/inventory/financing-costs.js")({ client: client, internalAuthTokenProvider: internalAuthTokenProvider }),
117
118
  __test: {
118
119
  client: client
119
120
  }
@@ -0,0 +1,89 @@
1
+ "use strict";
2
+
3
+ var _require = require("./../endpoints_helpers.js"),
4
+ authorizationHeaders = _require.authorizationHeaders;
5
+
6
+ function financingCostsFactory(_ref) {
7
+ var client = _ref.client,
8
+ internalAuthTokenProvider = _ref.internalAuthTokenProvider;
9
+
10
+ function all(_ref2) {
11
+ var token = _ref2.token,
12
+ jwtToken = _ref2.jwtToken,
13
+ _ref2$query = _ref2.query,
14
+ query = _ref2$query === undefined ? {} : _ref2$query,
15
+ headers = _ref2.headers;
16
+
17
+ return client.get("/financing-costs", {
18
+ params: query,
19
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
20
+ });
21
+ }
22
+
23
+ function get(_ref3) {
24
+ var id = _ref3.id,
25
+ token = _ref3.token,
26
+ headers = _ref3.headers,
27
+ jwtToken = _ref3.jwtToken;
28
+
29
+ return client.get("/financing-costs/" + id, {
30
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
31
+ });
32
+ }
33
+
34
+ function create(_ref4) {
35
+ var jwtToken = _ref4.jwtToken,
36
+ token = _ref4.token,
37
+ financingCost = _ref4.financingCost,
38
+ headers = _ref4.headers;
39
+
40
+ return client({
41
+ url: "/financing-costs",
42
+ method: "post",
43
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
44
+ data: {
45
+ financingCost: financingCost
46
+ }
47
+ });
48
+ }
49
+
50
+ function remove(_ref5) {
51
+ var jwtToken = _ref5.jwtToken,
52
+ id = _ref5.id,
53
+ token = _ref5.token,
54
+ headers = _ref5.headers;
55
+
56
+ return client({
57
+ url: "/financing-costs/" + id,
58
+ method: "delete",
59
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
60
+ });
61
+ }
62
+
63
+ function update(_ref6) {
64
+ var jwtToken = _ref6.jwtToken,
65
+ token = _ref6.token,
66
+ id = _ref6.id,
67
+ financingCost = _ref6.financingCost,
68
+ headers = _ref6.headers;
69
+
70
+ return client({
71
+ url: "/financing-costs/" + id,
72
+ method: "put",
73
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers }),
74
+ data: {
75
+ financingCost: financingCost
76
+ }
77
+ });
78
+ }
79
+
80
+ return {
81
+ all: all,
82
+ get: get,
83
+ create: create,
84
+ update: update,
85
+ remove: remove
86
+ };
87
+ }
88
+
89
+ module.exports = financingCostsFactory;
@@ -9,18 +9,20 @@ function scheduleGroupsFactory(_ref) {
9
9
 
10
10
  function all(_ref2) {
11
11
  var token = _ref2.token,
12
+ jwtToken = _ref2.jwtToken,
12
13
  _ref2$query = _ref2.query,
13
14
  query = _ref2$query === undefined ? {} : _ref2$query,
14
15
  headers = _ref2.headers;
15
16
 
16
17
  return client.get("/schedule-groups", {
17
18
  params: query,
18
- headers: authorizationHeaders({ token: token, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
19
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
19
20
  });
20
21
  }
21
22
 
22
23
  function get(_ref3) {
23
24
  var token = _ref3.token,
25
+ jwtToken = _ref3.jwtToken,
24
26
  scheduleGroupId = _ref3.scheduleGroupId,
25
27
  _ref3$query = _ref3.query,
26
28
  query = _ref3$query === undefined ? {} : _ref3$query,
@@ -28,7 +30,7 @@ function scheduleGroupsFactory(_ref) {
28
30
 
29
31
  return client.get("/schedule-groups/" + scheduleGroupId, {
30
32
  params: query,
31
- headers: authorizationHeaders({ token: token, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
33
+ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider, headers: headers })
32
34
  });
33
35
  }
34
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "btrz-api-client",
3
- "version": "5.187.0",
3
+ "version": "5.189.0",
4
4
  "description": "Api client for Betterez endpoints",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/client.js CHANGED
@@ -101,6 +101,7 @@ function createInventory({baseURL, headers, timeout, overrideFn, internalAuthTok
101
101
  seatClasses: require("./endpoints/inventory/seatclasses.js")({client, internalAuthTokenProvider}),
102
102
  segmentsInformation: require("./endpoints/inventory/segments-information.js")({client, internalAuthTokenProvider}),
103
103
  mitTerminalsSettings: require("./endpoints/inventory/mit-terminal-settings.js")({client, internalAuthTokenProvider}),
104
+ financingCosts: require("./endpoints/inventory/financing-costs.js")({client, internalAuthTokenProvider}),
104
105
  __test: {
105
106
  client
106
107
  }
@@ -0,0 +1,63 @@
1
+ const {
2
+ authorizationHeaders
3
+ } = require("./../endpoints_helpers.js");
4
+
5
+ function financingCostsFactory({client, internalAuthTokenProvider}) {
6
+ function all({
7
+ token,
8
+ jwtToken,
9
+ query = {},
10
+ headers
11
+ }) {
12
+ return client.get("/financing-costs", {
13
+ params: query,
14
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
15
+ });
16
+ }
17
+
18
+ function get({id, token, headers, jwtToken}) {
19
+ return client.get(`/financing-costs/${id}`, {
20
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
21
+ });
22
+ }
23
+
24
+ function create({jwtToken, token, financingCost, headers}) {
25
+ return client({
26
+ url: "/financing-costs",
27
+ method: "post",
28
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
29
+ data: {
30
+ financingCost
31
+ }
32
+ });
33
+ }
34
+
35
+ function remove({jwtToken, id, token, headers}) {
36
+ return client({
37
+ url: `/financing-costs/${id}`,
38
+ method: "delete",
39
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
40
+ });
41
+ }
42
+
43
+ function update({jwtToken, token, id, financingCost, headers}) {
44
+ return client({
45
+ url: `/financing-costs/${id}`,
46
+ method: "put",
47
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers}),
48
+ data: {
49
+ financingCost
50
+ }
51
+ });
52
+ }
53
+
54
+ return {
55
+ all,
56
+ get,
57
+ create,
58
+ update,
59
+ remove
60
+ };
61
+ }
62
+
63
+ module.exports = financingCostsFactory;
@@ -1,17 +1,17 @@
1
1
  const {authorizationHeaders} = require("./../endpoints_helpers.js");
2
2
 
3
3
  function scheduleGroupsFactory({client, internalAuthTokenProvider}) {
4
- function all({token, query = {}, headers}) {
4
+ function all({token, jwtToken, query = {}, headers}) {
5
5
  return client.get("/schedule-groups", {
6
6
  params: query,
7
- headers: authorizationHeaders({token, internalAuthTokenProvider, headers})
7
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
8
8
  });
9
9
  }
10
10
 
11
- function get({token, scheduleGroupId, query = {}, headers}) {
11
+ function get({token, jwtToken, scheduleGroupId, query = {}, headers}) {
12
12
  return client.get(`/schedule-groups/${scheduleGroupId}`, {
13
13
  params: query,
14
- headers: authorizationHeaders({token, internalAuthTokenProvider, headers})
14
+ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider, headers})
15
15
  });
16
16
  }
17
17
 
@@ -0,0 +1,66 @@
1
+ const {
2
+ axiosMock, expectRequest
3
+ } = require("./../../test-helpers.js");
4
+ const api = require("./../../../src/client.js").createApiClient({baseURL: "http://test.com"});
5
+
6
+ describe("inventory/financing-costs", () => {
7
+ const token = "I owe you a token";
8
+ const jwtToken = "I owe you a JWT token";
9
+
10
+ afterEach(() => {
11
+ axiosMock.reset();
12
+ });
13
+
14
+ it("should create a financing cost", () => {
15
+ axiosMock.onPost("/financing-costs").reply(expectRequest({statusCode: 200, token, jwtToken}));
16
+ return api.inventory.financingCosts.create({
17
+ jwtToken,
18
+ token,
19
+ financingCost: {
20
+ name: "My financingCost"
21
+ }
22
+ });
23
+ });
24
+
25
+ it("should get all financing costs", () => {
26
+ axiosMock.onGet("/financing-costs").reply(expectRequest({statusCode: 200, token, jwtToken}));
27
+ return api.inventory.financingCosts.all({
28
+ jwtToken,
29
+ token,
30
+ query: {}
31
+ });
32
+ });
33
+
34
+ it("should update a financing cost", () => {
35
+ const id = "1234";
36
+ axiosMock.onPut(`/financing-costs/${id}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
37
+ return api.inventory.financingCosts.update({
38
+ jwtToken,
39
+ token,
40
+ id,
41
+ financingCost: {
42
+ name: "My Updated financing costs"
43
+ }
44
+ });
45
+ });
46
+
47
+ it("should get a financing cost", () => {
48
+ const id = "1234";
49
+ axiosMock.onGet(`/financing-costs/${id}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
50
+ return api.inventory.financingCosts.get({
51
+ jwtToken,
52
+ token,
53
+ id
54
+ });
55
+ });
56
+
57
+ it("should delete a financing cost", () => {
58
+ const id = "1234";
59
+ axiosMock.onDelete(`/financing-costs/${id}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
60
+ return api.inventory.financingCosts.remove({
61
+ jwtToken,
62
+ token,
63
+ id
64
+ });
65
+ });
66
+ });
@@ -10,16 +10,17 @@ describe("inventory/schedule-groups", () => {
10
10
  });
11
11
 
12
12
  it("should list Schedule Groups", () => {
13
- axiosMock.onGet("/schedule-groups").reply(expectRequest({statusCode: 200, token}));
14
- return api.inventory.scheduleGroups.all({token});
13
+ axiosMock.onGet("/schedule-groups").reply(expectRequest({statusCode: 200, token, jwtToken}));
14
+ return api.inventory.scheduleGroups.all({token, jwtToken});
15
15
  });
16
16
 
17
17
 
18
18
  it("should get a Schedule Group", () => {
19
19
  const scheduleGroupId = "5ad7804216b426412c19f06f";
20
- axiosMock.onGet(`/schedule-groups/${scheduleGroupId}`).reply(expectRequest({statusCode: 200, token}));
20
+ axiosMock.onGet(`/schedule-groups/${scheduleGroupId}`).reply(expectRequest({statusCode: 200, token, jwtToken}));
21
21
  return api.inventory.scheduleGroups.get({
22
22
  token,
23
+ jwtToken,
23
24
  scheduleGroupId
24
25
  });
25
26
  });
@@ -15,6 +15,7 @@ describe("inventory/schedule-groups", () => {
15
15
  it("should get an Schedule Group", () => {
16
16
  return api.inventory.scheduleGroups.get({
17
17
  token,
18
+ jwtToken,
18
19
  scheduleGroupId
19
20
  })
20
21
  .then(({status, data}) => {
package/types/client.d.ts CHANGED
@@ -1225,13 +1225,15 @@ export function createApiClient(options: {
1225
1225
  }) => any;
1226
1226
  };
1227
1227
  scheduleGroups: {
1228
- all: ({ token, query, headers }: {
1228
+ all: ({ token, jwtToken, query, headers }: {
1229
1229
  token: any;
1230
+ jwtToken: any;
1230
1231
  query?: {};
1231
1232
  headers: any;
1232
1233
  }) => any;
1233
- get: ({ token, scheduleGroupId, query, headers }: {
1234
+ get: ({ token, jwtToken, scheduleGroupId, query, headers }: {
1234
1235
  token: any;
1236
+ jwtToken: any;
1235
1237
  scheduleGroupId: any;
1236
1238
  query?: {};
1237
1239
  headers: any;
@@ -1662,6 +1664,39 @@ export function createApiClient(options: {
1662
1664
  headers: any;
1663
1665
  }) => any;
1664
1666
  };
1667
+ financingCosts: {
1668
+ all: ({ token, jwtToken, query, headers }: {
1669
+ token: any;
1670
+ jwtToken: any;
1671
+ query?: {};
1672
+ headers: any;
1673
+ }) => any;
1674
+ get: ({ id, token, headers, jwtToken }: {
1675
+ id: any;
1676
+ token: any;
1677
+ headers: any;
1678
+ jwtToken: any;
1679
+ }) => any;
1680
+ create: ({ jwtToken, token, financingCost, headers }: {
1681
+ jwtToken: any;
1682
+ token: any;
1683
+ financingCost: any;
1684
+ headers: any;
1685
+ }) => any;
1686
+ update: ({ jwtToken, token, id, financingCost, headers }: {
1687
+ jwtToken: any;
1688
+ token: any;
1689
+ id: any;
1690
+ financingCost: any;
1691
+ headers: any;
1692
+ }) => any;
1693
+ remove: ({ jwtToken, id, token, headers }: {
1694
+ jwtToken: any;
1695
+ id: any;
1696
+ token: any;
1697
+ headers: any;
1698
+ }) => any;
1699
+ };
1665
1700
  __test: {
1666
1701
  client: axios.AxiosInstance;
1667
1702
  };
@@ -1824,12 +1859,7 @@ export function createApiClient(options: {
1824
1859
  };
1825
1860
  dynamicForms: {
1826
1861
  fields: {
1827
- get({ token, jwtToken, dynamicFormFieldId, headers }?: {
1828
- token: any;
1829
- jwtToken: any;
1830
- dynamicFormFieldId: any;
1831
- headers: any;
1832
- }): any;
1862
+ get({ token, jwtToken, dynamicFormFieldId, headers }?: {}): any;
1833
1863
  all({ token, jwtToken, query, headers }: {
1834
1864
  token: any;
1835
1865
  jwtToken: any;
@@ -2531,12 +2561,7 @@ export function createApiClient(options: {
2531
2561
  }) => any;
2532
2562
  };
2533
2563
  users: {
2534
- get: ({ token, jwtToken, id, headers }?: {
2535
- token: any;
2536
- jwtToken: any;
2537
- id: any;
2538
- headers: any;
2539
- }) => any;
2564
+ get: ({ token, jwtToken, id, headers }?: {}) => any;
2540
2565
  all: ({ token, jwtToken, query, headers }: {
2541
2566
  token: any;
2542
2567
  jwtToken: any;
@@ -2836,7 +2861,7 @@ export function createApiClient(options: {
2836
2861
  create: ({ token, jwtToken, cancelData, headers }: {
2837
2862
  token: string;
2838
2863
  jwtToken: string;
2839
- cancelData: import("./endpoints/sales/cancellations.js").CancelSetData;
2864
+ cancelData: CancelSetData;
2840
2865
  headers: any;
2841
2866
  }) => Promise<any>;
2842
2867
  };
@@ -3665,7 +3690,7 @@ export function createApiClient(options: {
3665
3690
  jwtToken: any;
3666
3691
  phoneNumberData?: {};
3667
3692
  headers: any;
3668
- }): any; /** @type {import("axios").AxiosRequestConfig} */
3693
+ }): any;
3669
3694
  };
3670
3695
  sms: {
3671
3696
  create({ token, jwtToken, smsMsg, headers }: {
@@ -4,12 +4,7 @@ declare function dynamicFormsFactory({ client, internalAuthTokenProvider }: {
4
4
  internalAuthTokenProvider: any;
5
5
  }): {
6
6
  fields: {
7
- get({ token, jwtToken, dynamicFormFieldId, headers }?: {
8
- token: any;
9
- jwtToken: any;
10
- dynamicFormFieldId: any;
11
- headers: any;
12
- }): any;
7
+ get({ token, jwtToken, dynamicFormFieldId, headers }?: {}): any;
13
8
  all({ token, jwtToken, query, headers }: {
14
9
  token: any;
15
10
  jwtToken: any;
@@ -3,12 +3,7 @@ declare function usersFactory({ client, internalAuthTokenProvider }: {
3
3
  client: any;
4
4
  internalAuthTokenProvider: any;
5
5
  }): {
6
- get: ({ token, jwtToken, id, headers }?: {
7
- token: any;
8
- jwtToken: any;
9
- id: any;
10
- headers: any;
11
- }) => any;
6
+ get: ({ token, jwtToken, id, headers }?: {}) => any;
12
7
  all: ({ token, jwtToken, query, headers }: {
13
8
  token: any;
14
9
  jwtToken: any;
@@ -0,0 +1,37 @@
1
+ export = financingCostsFactory;
2
+ declare function financingCostsFactory({ client, internalAuthTokenProvider }: {
3
+ client: any;
4
+ internalAuthTokenProvider: any;
5
+ }): {
6
+ all: ({ token, jwtToken, query, headers }: {
7
+ token: any;
8
+ jwtToken: any;
9
+ query?: {};
10
+ headers: any;
11
+ }) => any;
12
+ get: ({ id, token, headers, jwtToken }: {
13
+ id: any;
14
+ token: any;
15
+ headers: any;
16
+ jwtToken: any;
17
+ }) => any;
18
+ create: ({ jwtToken, token, financingCost, headers }: {
19
+ jwtToken: any;
20
+ token: any;
21
+ financingCost: any;
22
+ headers: any;
23
+ }) => any;
24
+ update: ({ jwtToken, token, id, financingCost, headers }: {
25
+ jwtToken: any;
26
+ token: any;
27
+ id: any;
28
+ financingCost: any;
29
+ headers: any;
30
+ }) => any;
31
+ remove: ({ jwtToken, id, token, headers }: {
32
+ jwtToken: any;
33
+ id: any;
34
+ token: any;
35
+ headers: any;
36
+ }) => any;
37
+ };
@@ -3,13 +3,15 @@ declare function scheduleGroupsFactory({ client, internalAuthTokenProvider }: {
3
3
  client: any;
4
4
  internalAuthTokenProvider: any;
5
5
  }): {
6
- all: ({ token, query, headers }: {
6
+ all: ({ token, jwtToken, query, headers }: {
7
7
  token: any;
8
+ jwtToken: any;
8
9
  query?: {};
9
10
  headers: any;
10
11
  }) => any;
11
- get: ({ token, scheduleGroupId, query, headers }: {
12
+ get: ({ token, jwtToken, scheduleGroupId, query, headers }: {
12
13
  token: any;
14
+ jwtToken: any;
13
15
  scheduleGroupId: any;
14
16
  query?: {};
15
17
  headers: any;
@@ -1179,13 +1179,15 @@ declare const _exports: {
1179
1179
  }) => any;
1180
1180
  };
1181
1181
  scheduleGroups: {
1182
- all: ({ token, query, headers }: {
1182
+ all: ({ token, jwtToken, query, headers }: {
1183
1183
  token: any;
1184
+ jwtToken: any;
1184
1185
  query?: {};
1185
1186
  headers: any;
1186
1187
  }) => any;
1187
- get: ({ token, scheduleGroupId, query, headers }: {
1188
+ get: ({ token, jwtToken, scheduleGroupId, query, headers }: {
1188
1189
  token: any;
1190
+ jwtToken: any;
1189
1191
  scheduleGroupId: any;
1190
1192
  query?: {};
1191
1193
  headers: any;
@@ -1616,6 +1618,39 @@ declare const _exports: {
1616
1618
  headers: any;
1617
1619
  }) => any;
1618
1620
  };
1621
+ financingCosts: {
1622
+ all: ({ token, jwtToken, query, headers }: {
1623
+ token: any;
1624
+ jwtToken: any;
1625
+ query?: {};
1626
+ headers: any;
1627
+ }) => any;
1628
+ get: ({ id, token, headers, jwtToken }: {
1629
+ id: any;
1630
+ token: any;
1631
+ headers: any;
1632
+ jwtToken: any;
1633
+ }) => any;
1634
+ create: ({ jwtToken, token, financingCost, headers }: {
1635
+ jwtToken: any;
1636
+ token: any;
1637
+ financingCost: any;
1638
+ headers: any;
1639
+ }) => any;
1640
+ update: ({ jwtToken, token, id, financingCost, headers }: {
1641
+ jwtToken: any;
1642
+ token: any;
1643
+ id: any;
1644
+ financingCost: any;
1645
+ headers: any;
1646
+ }) => any;
1647
+ remove: ({ jwtToken, id, token, headers }: {
1648
+ jwtToken: any;
1649
+ id: any;
1650
+ token: any;
1651
+ headers: any;
1652
+ }) => any;
1653
+ };
1619
1654
  __test: {
1620
1655
  client: import("axios").AxiosInstance;
1621
1656
  };
@@ -1778,12 +1813,7 @@ declare const _exports: {
1778
1813
  };
1779
1814
  dynamicForms: {
1780
1815
  fields: {
1781
- get({ token, jwtToken, dynamicFormFieldId, headers }?: {
1782
- token: any;
1783
- jwtToken: any;
1784
- dynamicFormFieldId: any;
1785
- headers: any;
1786
- }): any;
1816
+ get({ token, jwtToken, dynamicFormFieldId, headers }?: {}): any;
1787
1817
  all({ token, jwtToken, query, headers }: {
1788
1818
  token: any;
1789
1819
  jwtToken: any;
@@ -2485,12 +2515,7 @@ declare const _exports: {
2485
2515
  }) => any;
2486
2516
  };
2487
2517
  users: {
2488
- get: ({ token, jwtToken, id, headers }?: {
2489
- token: any;
2490
- jwtToken: any;
2491
- id: any;
2492
- headers: any;
2493
- }) => any;
2518
+ get: ({ token, jwtToken, id, headers }?: {}) => any;
2494
2519
  all: ({ token, jwtToken, query, headers }: {
2495
2520
  token: any;
2496
2521
  jwtToken: any;
@@ -2790,7 +2815,7 @@ declare const _exports: {
2790
2815
  create: ({ token, jwtToken, cancelData, headers }: {
2791
2816
  token: string;
2792
2817
  jwtToken: string;
2793
- cancelData: import("./endpoints/sales/cancellations.js").CancelSetData;
2818
+ cancelData: CancelSetData;
2794
2819
  headers: any;
2795
2820
  }) => Promise<any>;
2796
2821
  };