@dodobrands/pos-receipts-plugin-contracts 5.12.8
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/CHANGELOG.md +180 -0
- package/LICENSE +201 -0
- package/dist/index.cjs +93 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +445 -0
- package/dist/index.d.ts +445 -0
- package/dist/index.js +61 -0
- package/dist/index.js.map +1 -0
- package/examples/example-1.json +93 -0
- package/examples/example-2.json +115 -0
- package/examples/example-3.json +115 -0
- package/examples/example-4.json +139 -0
- package/examples/example-5.1.json +130 -0
- package/examples/example-5.2.json +139 -0
- package/examples/example-6.json +81 -0
- package/examples/example-7.json +76 -0
- package/examples/readme.md +45 -0
- package/package.json +47 -0
- package/readme.md +18 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 5.12.6
|
|
4
|
+
|
|
5
|
+
Added product GTIN for Kazakhstan
|
|
6
|
+
|
|
7
|
+
## 5.12.5
|
|
8
|
+
|
|
9
|
+
Added Base64Data to Receipt Image property
|
|
10
|
+
|
|
11
|
+
## 5.12.4
|
|
12
|
+
|
|
13
|
+
Added Image property to receipt model
|
|
14
|
+
|
|
15
|
+
## 5.12.3
|
|
16
|
+
|
|
17
|
+
Added marking codes types for Armenia and Uzbekistan
|
|
18
|
+
|
|
19
|
+
## 5.12.2
|
|
20
|
+
|
|
21
|
+
Change `gtinCode: number` `gtinCode: string` in `BelarusMarkingCodes`
|
|
22
|
+
|
|
23
|
+
## 5.12.1
|
|
24
|
+
|
|
25
|
+
Add `gtinCode: number` to `BelarusMarkingCodes`
|
|
26
|
+
|
|
27
|
+
## 5.12.0
|
|
28
|
+
|
|
29
|
+
Added flag without paper to Z-report
|
|
30
|
+
|
|
31
|
+
## 5.11.0
|
|
32
|
+
|
|
33
|
+
Added Belarus marking scan codes
|
|
34
|
+
|
|
35
|
+
## 5.10.0
|
|
36
|
+
|
|
37
|
+
Added ILogger interface from @dodobrands/frontlogger
|
|
38
|
+
|
|
39
|
+
## 5.9.0
|
|
40
|
+
|
|
41
|
+
Added `RoundedCashAmount` to `OrderPrice`
|
|
42
|
+
|
|
43
|
+
## 5.7.1
|
|
44
|
+
|
|
45
|
+
Exported types which was not exported after removing webpack
|
|
46
|
+
|
|
47
|
+
## 5.7.0
|
|
48
|
+
|
|
49
|
+
Added `OrganizationInfo` to `CashRegisterSettings`
|
|
50
|
+
|
|
51
|
+
## 5.6.0
|
|
52
|
+
|
|
53
|
+
Migrated to `tsc` instead of Webpack
|
|
54
|
+
|
|
55
|
+
## 5.5.0
|
|
56
|
+
|
|
57
|
+
Added `DigitalReceiptNotificationPreference` property to `PrintParams`
|
|
58
|
+
|
|
59
|
+
## 5.4.2
|
|
60
|
+
|
|
61
|
+
Added `OwnerType` enum to `UzbekistanProductData`
|
|
62
|
+
|
|
63
|
+
## 5.4.1
|
|
64
|
+
|
|
65
|
+
Added `ownerType`, `units` and `barcode` fields to `UzbekistanProductData`
|
|
66
|
+
|
|
67
|
+
## 5.4.0
|
|
68
|
+
|
|
69
|
+
Added `UzbekistanProductData` to `Product` in `Receipt`
|
|
70
|
+
|
|
71
|
+
## 5.3.0
|
|
72
|
+
|
|
73
|
+
Added `PaymentType` property to `PreviousReceipt`
|
|
74
|
+
|
|
75
|
+
## 5.2.0
|
|
76
|
+
|
|
77
|
+
Added excise information to ProductData in Receipt.
|
|
78
|
+
|
|
79
|
+
## 5.1.2
|
|
80
|
+
|
|
81
|
+
Added NFR and tech radar links to the readme.
|
|
82
|
+
|
|
83
|
+
## 5.1.1
|
|
84
|
+
|
|
85
|
+
Added `CashRegisterOutput` property to `PreviousReceipt`
|
|
86
|
+
|
|
87
|
+
## 5.1.0
|
|
88
|
+
|
|
89
|
+
Add Kiosk to the OrderSource enum.
|
|
90
|
+
|
|
91
|
+
## 5.0.1
|
|
92
|
+
|
|
93
|
+
Added: self-generated documentation using typedoc (deployed to github pages)
|
|
94
|
+
|
|
95
|
+
- github workflow added
|
|
96
|
+
- typescript version update
|
|
97
|
+
- ts-node version update
|
|
98
|
+
|
|
99
|
+
## 5.0.0
|
|
100
|
+
|
|
101
|
+
Added additional contracts required for the launch in Russia.
|
|
102
|
+
|
|
103
|
+
- Added cashbox identifier to `InitializationOptions`
|
|
104
|
+
- Added isPrintingPaperReceiptsDisabled to `InitializationOptions`
|
|
105
|
+
- Renamed `Bonus` property to `AwardedBonus` in `Receipt.Loyalty`
|
|
106
|
+
- Added `DeliveryDate` and `OrderType` properties in `Receipt.Order`
|
|
107
|
+
|
|
108
|
+
## 4.2.0
|
|
109
|
+
|
|
110
|
+
Added contracts required for the launch in Russia.
|
|
111
|
+
|
|
112
|
+
- Added `printText` method to implement
|
|
113
|
+
- Switched to `PaymentTypeEnum` from `PaymentType`
|
|
114
|
+
- `PaymentType` is now deprecated and will be removed later
|
|
115
|
+
- Added `OrderSource` enum to receipt object
|
|
116
|
+
- Added cashier information
|
|
117
|
+
- Added country and business support
|
|
118
|
+
- Added marking codes support
|
|
119
|
+
- Added loyalty program support
|
|
120
|
+
- Added department timezone offset information when plugin is initialized
|
|
121
|
+
|
|
122
|
+
## 4.1.0
|
|
123
|
+
|
|
124
|
+
Added `pos` type to `DigitalReceiptViewType`
|
|
125
|
+
|
|
126
|
+
## 4.0.0
|
|
127
|
+
|
|
128
|
+
Added `PreviousReceipt.Identifier`.
|
|
129
|
+
Changed `PreviousReceipt.Id` to be `number | null` instead of `string | number | null`.
|
|
130
|
+
|
|
131
|
+
## 3.0.0
|
|
132
|
+
|
|
133
|
+
Changed `PrintedFiscalReceipt.id` to be `string`, not `number`.
|
|
134
|
+
Changed `PrintedRefundReceipt.id` to be `string`, not `number`.
|
|
135
|
+
Changed `PreviousReceipt.Id` to be `string | number | null` instead of `number | null`.
|
|
136
|
+
Updated examples.
|
|
137
|
+
|
|
138
|
+
## 2.4.0
|
|
139
|
+
|
|
140
|
+
Changed request for `handleSale` and `handleRefund` methods of methods of `ICashRegister` interface.
|
|
141
|
+
|
|
142
|
+
## 2.3.0
|
|
143
|
+
|
|
144
|
+
Added digital receipt to `PrintedNonFiscalReceipt` contract.
|
|
145
|
+
|
|
146
|
+
## 2.2.0
|
|
147
|
+
|
|
148
|
+
Added actual address of the store to `Receipt` contract.
|
|
149
|
+
|
|
150
|
+
## 2.1.0
|
|
151
|
+
|
|
152
|
+
Added `IDigitalReceipt` interface in root typings list, added optional field `digitalReceipt` to `PrintedReceipt` and `PrintedRefundReceipt`.
|
|
153
|
+
|
|
154
|
+
## 2.0.0
|
|
155
|
+
|
|
156
|
+
Added cashier name to `ICashRegister.makeZReport` method.
|
|
157
|
+
|
|
158
|
+
## 1.3.1
|
|
159
|
+
|
|
160
|
+
Supported re-imports for cashCollection interfaces from `index.ts`.
|
|
161
|
+
|
|
162
|
+
## 1.3.0
|
|
163
|
+
|
|
164
|
+
Added methods for cash collection in `ICashRegister`: `withdrawCash`, `depositCash`.
|
|
165
|
+
|
|
166
|
+
## 1.2.0
|
|
167
|
+
|
|
168
|
+
Add `InitializationOptions` interface in root typings list.
|
|
169
|
+
|
|
170
|
+
## 1.1.0
|
|
171
|
+
|
|
172
|
+
Add `CashRegisterSettings` interface in root typings list.
|
|
173
|
+
|
|
174
|
+
## 1.0.1
|
|
175
|
+
|
|
176
|
+
Fix a type to enable optional fields.
|
|
177
|
+
|
|
178
|
+
## 1.0.0
|
|
179
|
+
|
|
180
|
+
Add a non-optional `getSettings` method to ICashRegister.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
|
|
20
|
+
// src/index.ts
|
|
21
|
+
var src_exports = {};
|
|
22
|
+
__export(src_exports, {
|
|
23
|
+
Business: () => Business,
|
|
24
|
+
DigitalReceiptNotificationPreference: () => DigitalReceiptNotificationPreference,
|
|
25
|
+
OrderSource: () => OrderSource,
|
|
26
|
+
OrderType: () => OrderType,
|
|
27
|
+
OwnerType: () => OwnerType,
|
|
28
|
+
PaymentType: () => PaymentType
|
|
29
|
+
});
|
|
30
|
+
module.exports = __toCommonJS(src_exports);
|
|
31
|
+
|
|
32
|
+
// ../../shared/pos-plugins-shared-models/dist/index.js
|
|
33
|
+
var Business = /* @__PURE__ */ ((Business2) => {
|
|
34
|
+
Business2["DodoPizza"] = `dodoPizza`;
|
|
35
|
+
Business2["Drinkit"] = `drinkit`;
|
|
36
|
+
Business2["Doner42"] = `doner42`;
|
|
37
|
+
return Business2;
|
|
38
|
+
})(Business || {});
|
|
39
|
+
|
|
40
|
+
// src/CountrySpecificData.ts
|
|
41
|
+
var OwnerType = /* @__PURE__ */ ((OwnerType2) => {
|
|
42
|
+
OwnerType2[OwnerType2["Resail"] = 0] = "Resail";
|
|
43
|
+
OwnerType2[OwnerType2["OwnProduction"] = 1] = "OwnProduction";
|
|
44
|
+
OwnerType2[OwnerType2["Service"] = 2] = "Service";
|
|
45
|
+
return OwnerType2;
|
|
46
|
+
})(OwnerType || {});
|
|
47
|
+
|
|
48
|
+
// src/PrintParams.ts
|
|
49
|
+
var DigitalReceiptNotificationPreference = /* @__PURE__ */ ((DigitalReceiptNotificationPreference2) => {
|
|
50
|
+
DigitalReceiptNotificationPreference2["NotSpecified"] = `NotSpecified`;
|
|
51
|
+
DigitalReceiptNotificationPreference2["None"] = `None`;
|
|
52
|
+
DigitalReceiptNotificationPreference2["Email"] = `Email`;
|
|
53
|
+
DigitalReceiptNotificationPreference2["PhoneSms"] = `PhoneSms`;
|
|
54
|
+
return DigitalReceiptNotificationPreference2;
|
|
55
|
+
})(DigitalReceiptNotificationPreference || {});
|
|
56
|
+
|
|
57
|
+
// src/Receipt.ts
|
|
58
|
+
var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
59
|
+
OrderType2[OrderType2["Delivery"] = 1] = "Delivery";
|
|
60
|
+
OrderType2[OrderType2["Pickup"] = 2] = "Pickup";
|
|
61
|
+
OrderType2[OrderType2["Stationary"] = 3] = "Stationary";
|
|
62
|
+
OrderType2[OrderType2["PersonalFood"] = 4] = "PersonalFood";
|
|
63
|
+
OrderType2[OrderType2["ShopWindowSupply"] = 5] = "ShopWindowSupply";
|
|
64
|
+
return OrderType2;
|
|
65
|
+
})(OrderType || {});
|
|
66
|
+
var OrderSource = /* @__PURE__ */ ((OrderSource2) => {
|
|
67
|
+
OrderSource2[OrderSource2["Telephone"] = 0] = "Telephone";
|
|
68
|
+
OrderSource2[OrderSource2["Site"] = 1] = "Site";
|
|
69
|
+
OrderSource2[OrderSource2["Restaurant"] = 2] = "Restaurant";
|
|
70
|
+
OrderSource2[OrderSource2["DefectOrder"] = 3] = "DefectOrder";
|
|
71
|
+
OrderSource2[OrderSource2["Mobile"] = 4] = "Mobile";
|
|
72
|
+
OrderSource2[OrderSource2["Pizzeria"] = 5] = "Pizzeria";
|
|
73
|
+
OrderSource2[OrderSource2["Aggregator"] = 6] = "Aggregator";
|
|
74
|
+
OrderSource2[OrderSource2["Kiosk"] = 7] = "Kiosk";
|
|
75
|
+
return OrderSource2;
|
|
76
|
+
})(OrderSource || {});
|
|
77
|
+
var PaymentType = /* @__PURE__ */ ((PaymentType2) => {
|
|
78
|
+
PaymentType2[PaymentType2["Cash"] = 0] = "Cash";
|
|
79
|
+
PaymentType2[PaymentType2["BankCard"] = 1] = "BankCard";
|
|
80
|
+
PaymentType2[PaymentType2["InternetAcquiring"] = 2] = "InternetAcquiring";
|
|
81
|
+
PaymentType2[PaymentType2["Aggregator"] = 3] = "Aggregator";
|
|
82
|
+
return PaymentType2;
|
|
83
|
+
})(PaymentType || {});
|
|
84
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
85
|
+
0 && (module.exports = {
|
|
86
|
+
Business,
|
|
87
|
+
DigitalReceiptNotificationPreference,
|
|
88
|
+
OrderSource,
|
|
89
|
+
OrderType,
|
|
90
|
+
OwnerType,
|
|
91
|
+
PaymentType
|
|
92
|
+
});
|
|
93
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../../../shared/pos-plugins-shared-models/src/Business.ts","../../../shared/pos-plugins-shared-models/src/Country.ts","../src/CountrySpecificData.ts","../src/PrintParams.ts","../src/Receipt.ts"],"sourcesContent":["export { Business } from '@dodobrands/pos-plugins-shared-models';\nexport { Country, CountryIsoCode } from '@dodobrands/pos-plugins-shared-models';\n\nexport * from './cashCollection/DepositCashOptions';\nexport * from './cashCollection/Money';\nexport * from './cashCollection/WithdrawCashOptions';\nexport * from './CashRegisterSettings';\nexport * from './CountrySpecificData';\nexport * from './HandleRefundRequest';\nexport * from './HandleSaleRequest';\nexport * from './ICashRegister';\nexport * from './IDigitalReceipt';\nexport * from './InitializationOptions';\nexport * from './MakeZReportOptions';\nexport * from './PrintedReceipt';\nexport * from './PrintedRefundReceipt';\nexport * from './PrintParams';\nexport * from './PrintTextOptions';\nexport * from './Receipt';\nexport * from './Taxpayer';\n","/**\n * Enum with supported business types.\n */\nexport enum Business {\n\t/**\n\t * Dodo Pizza business.\n\t */\n\tDodoPizza = `dodoPizza`,\n\t/**\n\t * Drinkit business.\n\t */\n\tDrinkit = `drinkit`,\n\t/**\n\t * Doner42 business.\n\t */\n\tDoner42 = `doner42`,\n}\n","/**\n * Country model\n */\nexport interface Country {\n\tcode: CountryIsoCode;\n}\n\n/** Country code based on [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1_numeric)\n * @example 643, 705, 566\n */\nexport type CountryIsoCode = number;\n\nexport enum KnownCountryCodes {\n\tBelarus = 112,\n\tKazakhstan = 398,\n\tRussia = 643,\n\tUzbekistan = 860,\n}\n","export type ProductSpecificData = UzbekistanProductData | KazakhstanProductData | null;\n\nexport interface UzbekistanProductData {\n\t/** Identification code of products and services for Uzbekistan */\n\tikpu: string;\n\t/** 0 - resail; 1 - own production; 2 - service */\n\townerType?: OwnerType;\n\t/** code of measurement type */\n\tunits: string;\n\t/** related with ikpu */\n\tbarcode: string;\n}\n\nexport enum OwnerType {\n\tResail = 0,\n\tOwnProduction = 1,\n\tService = 2,\n}\n\nexport interface KazakhstanProductData {\n\t/** Identification code of products */\n\tgtin?: string;\n\tntin?: string;\n}\n","export interface PrintParams {\n\t/** Has true value when receipt was sent to plugin in background for building Digital version of receipt */\n\tWithoutPaper: boolean;\n\tDigitalReceiptNotificationPreference: DigitalReceiptNotificationPreference;\n}\n\n/** The way we can notify the client about the receipt for the accepted order. */\nexport enum DigitalReceiptNotificationPreference {\n\t/** Client did not specify how they want to receive digital receipt. Default value. Should be set as `NotSpecified` when the receipt is expected to be NOT digital. */\n\tNotSpecified = `NotSpecified`,\n\t/** Client selected 'I don't want a receipt' */\n\tNone = `None`,\n\t/** Client selected 'I want the receipt on my email' */\n\tEmail = `Email`,\n\t/** Client selected 'I want the receipt link by phone via SMS' */\n\tPhoneSms = `PhoneSms`,\n}\n","/* eslint-disable @typescript-eslint/no-magic-numbers */\nimport { type KazakhstanProductData, type UzbekistanProductData } from './CountrySpecificData';\nimport { type Taxpayer } from './Taxpayer';\n\nexport interface Receipt {\n\t/** Order for this receipt */\n\tOrder: Order;\n\t/** Customer information */\n\tCustomer: Customer;\n\t/** Taxpayer information */\n\tTaxpayer: Taxpayer;\n\t/** Cash register from which the receipt is printed */\n\tCashRegister: CashRegister;\n\t/** Previous receipts that were printed for this order, including refunds */\n\tPreviousReceipts: PreviousReceipt[];\n\t/** Information about the organization that printed the receipt */\n\tOrganization: Organization;\n\t/** Information about the store in which the purchase is occurring */\n\tStore: Store;\n\n\t/** Information needed for the loyalty program. */\n\tLoyalty?: Loyalty;\n\n\t/** Cash from the customer (if paid in cash) */\n\tCashFromCustomer: number;\n\n\t/** Information about the person taking the order. */\n\tCashier?: Cashier;\n\n\t/** Url of the image to print on the receipt. */\n\tImage?: Image;\n}\n\nexport interface Cashier {\n\t/** Cashier name */\n\tName: string;\n\n\t/** Cashier INN in russia and its analogues in other countries. */\n\tTaxIdentificationNumber?: string;\n}\n\nexport interface Image {\n\t/** Url of the image to print on the receipt. */\n\tUrl?: string;\n\n\t/** Image data in base64 format. (ONLY FOR RUSSIA ATOL) */\n\tBase64Data?: string;\n}\n\nexport interface Loyalty {\n\t/** Customer Phone number */\n\tPhoneNumber: string;\n\t/** Amount of the bonus points awarded for the loyalty program. */\n\tAwardedBonus: number;\n}\n\nexport interface Order {\n\t/** Internal order identifier */\n\tId: string;\n\t/** Order number seen by customers (e.g. \"1-3\") */\n\tNumber: string; // from OrderNumber\n\t/** Current time in ISO 8601 format (e.g. \"2021-04-30T10:50:00.0000000+04:00\") */\n\tCreateDate: string;\n\t/** Products in cart */\n\tProducts: Product[];\n\tPrice: OrderPrice;\n\t/** @deprecated Please switch to PaymentTypeEnum. */\n\tPaymentType: 'Cash' | 'BankCard';\n\tPaymentTypeEnum: PaymentType;\n\tOrderSource: OrderSource;\n\n\t/** Current time in ISO 8601 format (e.g. \"2021-04-30T10:50:00.0000000+04:00\") */\n\tDeliveryDate?: string;\n\tOrderType: OrderType;\n}\n\nexport enum OrderType {\n\tDelivery = 1,\n\tPickup = 2,\n\tStationary = 3,\n\tPersonalFood = 4,\n\tShopWindowSupply = 5,\n}\n\n/** Shows the source from where the order has been taken. */\nexport enum OrderSource {\n\tTelephone = 0,\n\tSite = 1,\n\tRestaurant = 2,\n\tDefectOrder = 3,\n\tMobile = 4,\n\t/** Shift manager order from call center. */\n\tPizzeria = 5,\n\tAggregator = 6,\n\tKiosk = 7,\n}\n\n/** Shows how the order has been paid. Please expect frequent updates in the future. */\nexport enum PaymentType {\n\tCash = 0,\n\tBankCard = 1,\n\tInternetAcquiring = 2,\n\tAggregator = 3,\n}\n\nexport interface OrderPrice {\n\t/** The total price of the order (how much the customer actually paid) */\n\tTotalPrice: number;\n\t/** Total discount for the entire order (excluding discounts for individual products in the order) */\n\tDiscount: number;\n\t/** Rounded cash amount the customer pays for an order (if paid in cash). Used only in countries with special rules for rounding cash */\n\tRoundedCashAmount?: number;\n}\n\nexport interface Product {\n\t/** Internal product identifier */\n\tId: string;\n\t/** The product's name */\n\tName: string;\n\t/** The quantity of this product in the order */\n\tQuantity: number;\n\tPricePerProduct: ProductPrice;\n\t/** List of ingredients removed from the product */\n\tRemovedIngredients: string[];\n\t/** Additional ingredients added to the product */\n\tAddedIngredients: AddedIngredient[];\n\n\t/** The marking data used in some countries to pass scanned barcode value to the cash register. */\n\tMarking?: MarkingCodes;\n\n\t/** The product excise information */\n\tExcise?: {\n\t\tisExcise: boolean;\n\t};\n\n\t/** Additional data that can be defined for specific country */\n\tCountrySpecific?: {\n\t\tUzbekistan?: UzbekistanProductData;\n\t\tKazakhstan?: KazakhstanProductData;\n\t};\n}\n\nexport interface ProductPrice {\n\t/** Price for 1 product excluding discount but with added ingredients */\n\tPrice: number;\n\t/** Discount for 1 product (excluding the discount for the entire order) */\n\tDiscount: number;\n\tTaxes: Tax[];\n}\n\nexport interface Tax {\n\t/** Type of tax: value added or sales */\n\tType: 'VAT' | 'Sales' | 'Unknown';\n\t/** Rate in percents */\n\tRate: number;\n\t// TODO add later: Value: number\n}\n\nexport interface AddedIngredient {\n\t/** Ingredient name */\n\tName: string;\n\t/** The amount of ingredients added in portions */\n\tQuantity: number;\n\t/** Ingredient price added to the product */\n\tPrice: number;\n}\n\nexport interface Customer {\n\t/** The name of the customer that he gave to the cashier */\n\tName: string;\n\t/** Customer's mailing address, which he set in his personal account */\n\tEmail: string | null;\n\t/** Any additional identifiers, e.g. customer's Tax Identification Number */\n\tIdentifiers: { [index: string]: string };\n}\n\nexport interface CashRegister {\n\t/** Internal cash register identifier */\n\tUUId: string;\n\t/** */\n\tNumber: string;\n\t/** To calculate or not to calculate VAT */\n\tShouldCalculateTax: boolean;\n}\n\nexport interface PreviousReceipt {\n\t/** ID of the receipt returned by the POS printer. `null` if a print error has occurred. It is temporary field. Then it will be removed. Use `Identifier` instead of `Id` */\n\tId: number | null;\n\t/** Printed receipt type: sales receipt or refund receipt */\n\tType: 'Sell' | 'Refund';\n\t/** Date in format ISO 8601 (e.g. 2021-04-30T10:50:00.0000000+04:00) */\n\tPrintDateTime: string;\n\t/** ID of the receipt returned by the POS printer */\n\tIdentifier: string | null;\n\n\tCashboxId: string;\n\n\t/** Data returned by cash register after printing receipt */\n\tCashRegisterOutput?: string;\n\t/** Previous receipt payment type */\n\tPaymentType: PaymentType;\n}\n\nexport interface Organization {\n\t/** Full name of the organization */\n\tName: string;\n\t/** Legal address */\n\tAddress: string;\n\t/** Organization payment details */\n\tRequisites: { [index: string]: string };\n}\n\nexport interface Store {\n\t/** Actual address */\n\tAddress: string;\n}\n\ntype RussiaMarkingCode = {\n\t/** Russian country iso code */\n\tcountry: 643;\n\t/** In Russia it's the string of digits, letters, special symbols and group separator. */\n\tmarkingCode: string;\n};\n\ntype BelarusMarkingCodes = {\n\t/** Belarus country iso code */\n\tcountry: 112;\n\t/** Маркировка унифицированными контрольными знаками (УКЗ) */\n\tukzCode?: string;\n\t/** Маркировка средствами идентификации (СИ) */\n\tsiCode?: string;\n\t/** Маркировка с использованием штрихкода GTIN */\n\tgtinCode?: string;\n};\n\ntype ArmeniaMarkingCode = {\n\t/** Armenia country iso code */\n\tcountry: 51;\n\t/** In Armenia it's the string of digits letters, special symbols and group separator. */\n\tmarkingCode: string;\n};\n\ntype UzbekistanMarkingCode = {\n\t/** Uzbekistan country iso code */\n\tcountry: 860;\n\t/** In Uzbekistan it's the string of digits letters, special symbols and group separator. */\n\tmarkingCode: string;\n};\n\nexport type MarkingCodes =\n\t| RussiaMarkingCode\n\t| BelarusMarkingCodes\n\t| ArmeniaMarkingCode\n\t| UzbekistanMarkingCode\n\t| undefined;\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACGO,IAAK,WAAL,kBAAKA,cAAL;AAINA,YAAA,WAAA,IAAY;AAIZA,YAAA,SAAA,IAAU;AAIVA,YAAA,SAAA,IAAU;AAZC,SAAAA;AAAA,GAAA,YAAA,CAAA,CAAA;;;AEUL,IAAK,YAAL,kBAAKC,eAAL;AACN,EAAAA,sBAAA,YAAS,KAAT;AACA,EAAAA,sBAAA,mBAAgB,KAAhB;AACA,EAAAA,sBAAA,aAAU,KAAV;AAHW,SAAAA;AAAA,GAAA;;;ACNL,IAAK,uCAAL,kBAAKC,0CAAL;AAEN,EAAAA,sCAAA,kBAAe;AAEf,EAAAA,sCAAA,UAAO;AAEP,EAAAA,sCAAA,WAAQ;AAER,EAAAA,sCAAA,cAAW;AARA,SAAAA;AAAA,GAAA;;;ACqEL,IAAK,YAAL,kBAAKC,eAAL;AACN,EAAAA,sBAAA,cAAW,KAAX;AACA,EAAAA,sBAAA,YAAS,KAAT;AACA,EAAAA,sBAAA,gBAAa,KAAb;AACA,EAAAA,sBAAA,kBAAe,KAAf;AACA,EAAAA,sBAAA,sBAAmB,KAAnB;AALW,SAAAA;AAAA,GAAA;AASL,IAAK,cAAL,kBAAKC,iBAAL;AACN,EAAAA,0BAAA,eAAY,KAAZ;AACA,EAAAA,0BAAA,UAAO,KAAP;AACA,EAAAA,0BAAA,gBAAa,KAAb;AACA,EAAAA,0BAAA,iBAAc,KAAd;AACA,EAAAA,0BAAA,YAAS,KAAT;AAEA,EAAAA,0BAAA,cAAW,KAAX;AACA,EAAAA,0BAAA,gBAAa,KAAb;AACA,EAAAA,0BAAA,WAAQ,KAAR;AATW,SAAAA;AAAA,GAAA;AAaL,IAAK,cAAL,kBAAKC,iBAAL;AACN,EAAAA,0BAAA,UAAO,KAAP;AACA,EAAAA,0BAAA,cAAW,KAAX;AACA,EAAAA,0BAAA,uBAAoB,KAApB;AACA,EAAAA,0BAAA,gBAAa,KAAb;AAJW,SAAAA;AAAA,GAAA;","names":["Business","OwnerType","DigitalReceiptNotificationPreference","OrderType","OrderSource","PaymentType"]}
|