@deliverart/sdk-js-point-of-sale 0.0.1
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/.changeset/config.json +11 -0
- package/.github/workflows/workflow.yml +47 -0
- package/.prettierrc +7 -0
- package/README.md +3 -0
- package/dist/index.cjs +304 -0
- package/dist/index.d.cts +4020 -0
- package/dist/index.d.ts +4020 -0
- package/dist/index.js +251 -0
- package/eslint.config.js +41 -0
- package/package.json +46 -0
- package/src/index.ts +3 -0
- package/src/models.ts +110 -0
- package/src/requests/CreatePointOfSale.ts +36 -0
- package/src/requests/DeletePointOfSale.ts +27 -0
- package/src/requests/GetPointOfSaleDetails.ts +30 -0
- package/src/requests/GetPointOfSales.ts +61 -0
- package/src/requests/UpdatePointOfSale.ts +35 -0
- package/src/requests/index.ts +5 -0
- package/src/types.ts +13 -0
- package/tsconfig.json +15 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
|
|
3
|
+
"changelog": "@changesets/cli/changelog",
|
|
4
|
+
"commit": false,
|
|
5
|
+
"fixed": [],
|
|
6
|
+
"linked": [],
|
|
7
|
+
"access": "restricted",
|
|
8
|
+
"baseBranch": "main",
|
|
9
|
+
"updateInternalDependencies": "patch",
|
|
10
|
+
"ignore": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
release:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
|
|
17
|
+
- uses: pnpm/action-setup@v2
|
|
18
|
+
with:
|
|
19
|
+
version: 8
|
|
20
|
+
|
|
21
|
+
- uses: actions/setup-node@v4
|
|
22
|
+
with:
|
|
23
|
+
node-version: '20'
|
|
24
|
+
registry-url: 'https://registry.npmjs.org'
|
|
25
|
+
always-auth: true
|
|
26
|
+
env:
|
|
27
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
28
|
+
|
|
29
|
+
- name: Install deps
|
|
30
|
+
run: pnpm install
|
|
31
|
+
|
|
32
|
+
- name: Build
|
|
33
|
+
run: pnpm build
|
|
34
|
+
|
|
35
|
+
- name: Create version and changelog
|
|
36
|
+
run: pnpx @changesets/cli version
|
|
37
|
+
|
|
38
|
+
- name: Publish to NPM
|
|
39
|
+
run: pnpx @changesets/cli publish
|
|
40
|
+
env:
|
|
41
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
42
|
+
|
|
43
|
+
- name: Push updated versions and changelogs
|
|
44
|
+
uses: EndBug/add-and-commit@v9
|
|
45
|
+
with:
|
|
46
|
+
message: 'chore(release): version bump'
|
|
47
|
+
add: '.'
|
package/.prettierrc
ADDED
package/README.md
ADDED
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,304 @@
|
|
|
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 index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
|
+
CreatePointOfSale: () => CreatePointOfSale,
|
|
24
|
+
DeletePointOfSale: () => DeletePointOfSale,
|
|
25
|
+
GetPointOfSaleDetails: () => GetPointOfSaleDetails,
|
|
26
|
+
GetPointOfSales: () => GetPointOfSales,
|
|
27
|
+
UpdatePointOfSale: () => UpdatePointOfSale,
|
|
28
|
+
createPointOfSaleInputSchema: () => createPointOfSaleInputSchema,
|
|
29
|
+
createPointOfSaleResponseSchema: () => createPointOfSaleResponseSchema,
|
|
30
|
+
deletePointOfSaleInputSchema: () => deletePointOfSaleInputSchema,
|
|
31
|
+
deletePointOfSaleResponseSchema: () => deletePointOfSaleResponseSchema,
|
|
32
|
+
deliveryTimeSettingSchema: () => deliveryTimeSettingSchema,
|
|
33
|
+
getCompaniesInputSchema: () => getCompaniesInputSchema,
|
|
34
|
+
getCompaniesQuerySchema: () => getCompaniesQuerySchema,
|
|
35
|
+
getCompaniesResponseSchema: () => getCompaniesResponseSchema,
|
|
36
|
+
getPointOfSaleDetailsInputSchema: () => getPointOfSaleDetailsInputSchema,
|
|
37
|
+
getPointOfSaleDetailsResponseSchema: () => getPointOfSaleDetailsResponseSchema,
|
|
38
|
+
pointOfSaleAutoAcceptOrderValues: () => pointOfSaleAutoAcceptOrderValues,
|
|
39
|
+
pointOfSaleCapabilities: () => pointOfSaleCapabilities,
|
|
40
|
+
pointOfSaleCapabilitySchema: () => pointOfSaleCapabilitySchema,
|
|
41
|
+
pointOfSaleDetailsSchema: () => pointOfSaleDetailsSchema,
|
|
42
|
+
pointOfSaleIntervalValues: () => pointOfSaleIntervalValues,
|
|
43
|
+
pointOfSaleOpeningStatusSchema: () => pointOfSaleOpeningStatusSchema,
|
|
44
|
+
pointOfSaleOpeningStatuses: () => pointOfSaleOpeningStatuses,
|
|
45
|
+
pointOfSaleSchema: () => pointOfSaleSchema,
|
|
46
|
+
pointOfSaleUserRoleSchema: () => pointOfSaleUserRoleSchema,
|
|
47
|
+
pointOfSaleUserRoles: () => pointOfSaleUserRoles,
|
|
48
|
+
timeSettingSchema: () => timeSettingSchema,
|
|
49
|
+
updatePointOfSaleInputSchema: () => updatePointOfSaleInputSchema,
|
|
50
|
+
updatePointOfSaleResponseSchema: () => updatePointOfSaleResponseSchema,
|
|
51
|
+
userPointOfSaleSchema: () => userPointOfSaleSchema,
|
|
52
|
+
writableCreatePointOfSaleSchema: () => writableCreatePointOfSaleSchema,
|
|
53
|
+
writablePointOfSaleSchema: () => writablePointOfSaleSchema
|
|
54
|
+
});
|
|
55
|
+
module.exports = __toCommonJS(index_exports);
|
|
56
|
+
|
|
57
|
+
// src/models.ts
|
|
58
|
+
var import_sdk_js_global_types = require("@deliverart/sdk-js-global-types");
|
|
59
|
+
var import_zod2 = require("zod");
|
|
60
|
+
|
|
61
|
+
// src/types.ts
|
|
62
|
+
var import_zod = require("zod");
|
|
63
|
+
var pointOfSaleOpeningStatuses = ["OPEN", "CLOSED"];
|
|
64
|
+
var pointOfSaleOpeningStatusSchema = import_zod.z.enum(pointOfSaleOpeningStatuses);
|
|
65
|
+
var pointOfSaleCapabilities = ["DELIVERY_OPTIMIZATION"];
|
|
66
|
+
var pointOfSaleCapabilitySchema = import_zod.z.enum(pointOfSaleCapabilities);
|
|
67
|
+
var pointOfSaleUserRoles = ["ROLE_ADMIN", "ROLE_READER"];
|
|
68
|
+
var pointOfSaleUserRoleSchema = import_zod.z.enum(pointOfSaleUserRoles);
|
|
69
|
+
|
|
70
|
+
// src/models.ts
|
|
71
|
+
var timeSettingSchema = import_zod2.z.object({
|
|
72
|
+
dayOfWeek: import_sdk_js_global_types.dayOfWeekSchema,
|
|
73
|
+
times: import_zod2.z.object({
|
|
74
|
+
startTime: import_zod2.z.string().regex(/^\d{2}:\d{2}$/),
|
|
75
|
+
endTime: import_zod2.z.string().regex(/^\d{2}:\d{2}$/)
|
|
76
|
+
}).array()
|
|
77
|
+
});
|
|
78
|
+
var deliveryTimeSettingSchema = import_zod2.z.object({
|
|
79
|
+
dayOfWeek: import_sdk_js_global_types.dayOfWeekSchema,
|
|
80
|
+
times: import_zod2.z.object({
|
|
81
|
+
startTime: import_zod2.z.string().regex(/^\d{2}:\d{2}$/),
|
|
82
|
+
endTime: import_zod2.z.string().regex(/^\d{2}:\d{2}$/),
|
|
83
|
+
availableCouriers: import_zod2.z.number().nonnegative()
|
|
84
|
+
}).array()
|
|
85
|
+
});
|
|
86
|
+
var pointOfSaleSchema = import_zod2.z.object({
|
|
87
|
+
id: import_zod2.z.string(),
|
|
88
|
+
name: import_zod2.z.string(),
|
|
89
|
+
address: import_sdk_js_global_types.addressSchema,
|
|
90
|
+
timezone: import_zod2.z.string(),
|
|
91
|
+
location: import_zod2.z.object({
|
|
92
|
+
latitude: import_zod2.z.number(),
|
|
93
|
+
longitude: import_zod2.z.number()
|
|
94
|
+
}),
|
|
95
|
+
capabilities: pointOfSaleCapabilitySchema.array(),
|
|
96
|
+
openingStatus: pointOfSaleOpeningStatusSchema,
|
|
97
|
+
createdAt: import_sdk_js_global_types.datetimeSchema,
|
|
98
|
+
updatedAt: import_sdk_js_global_types.datetimeSchema
|
|
99
|
+
});
|
|
100
|
+
var userPointOfSaleSchema = import_zod2.z.object({
|
|
101
|
+
pointOfSale: pointOfSaleSchema,
|
|
102
|
+
role: pointOfSaleUserRoleSchema
|
|
103
|
+
});
|
|
104
|
+
var pointOfSaleIntervalValues = [5, 10, 15, 20, 30, 60];
|
|
105
|
+
var pointOfSaleAutoAcceptOrderValues = [0, 5, 10, 15];
|
|
106
|
+
var pointOfSaleDetailsSchema = pointOfSaleSchema.extend({
|
|
107
|
+
company: import_zod2.z.string().regex(
|
|
108
|
+
/^\/companies\/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/
|
|
109
|
+
),
|
|
110
|
+
settings: import_zod2.z.object({
|
|
111
|
+
menuLocales: import_zod2.z.any().array(),
|
|
112
|
+
deliveryTimesInterval: import_zod2.z.number().positive().refine((value) => pointOfSaleIntervalValues.includes(value)),
|
|
113
|
+
takeAwayTimesInterval: import_zod2.z.number().positive().refine((value) => pointOfSaleIntervalValues.includes(value)),
|
|
114
|
+
numberMinutesToPrecessFirstOrder: import_zod2.z.number().positive(),
|
|
115
|
+
numberMinutesTimeChangeTolerance: import_zod2.z.number().positive(),
|
|
116
|
+
maxCountableItemsPerBundle: import_zod2.z.number().positive(),
|
|
117
|
+
maxOrdersPerBundle: import_zod2.z.number().positive(),
|
|
118
|
+
preventOrderTakingIfTheMaxCountableItemsExceeded: import_zod2.z.boolean(),
|
|
119
|
+
numberMinutesBeforeAutoAcceptOrder: import_zod2.z.number().nonnegative().refine((value) => pointOfSaleAutoAcceptOrderValues.includes(value))
|
|
120
|
+
}),
|
|
121
|
+
openingTimeSettings: timeSettingSchema.array(),
|
|
122
|
+
deliveryTimeSettings: deliveryTimeSettingSchema.array(),
|
|
123
|
+
takeAwayTimeSettings: timeSettingSchema.array(),
|
|
124
|
+
numberOfCouriers: import_zod2.z.number().nonnegative()
|
|
125
|
+
});
|
|
126
|
+
var writablePointOfSaleSchema = pointOfSaleDetailsSchema.pick({
|
|
127
|
+
name: true,
|
|
128
|
+
address: true,
|
|
129
|
+
timezone: true,
|
|
130
|
+
settings: true,
|
|
131
|
+
openingTimeSettings: true,
|
|
132
|
+
deliveryTimeSettings: true,
|
|
133
|
+
takeAwayTimeSettings: true,
|
|
134
|
+
capabilities: true,
|
|
135
|
+
openingStatus: true
|
|
136
|
+
});
|
|
137
|
+
var writableCreatePointOfSaleSchema = import_zod2.z.object({
|
|
138
|
+
...writablePointOfSaleSchema.shape,
|
|
139
|
+
...pointOfSaleDetailsSchema.pick({
|
|
140
|
+
company: true
|
|
141
|
+
}).shape
|
|
142
|
+
});
|
|
143
|
+
|
|
144
|
+
// src/requests/CreatePointOfSale.ts
|
|
145
|
+
var import_sdk_js_core = require("@deliverart/sdk-js-core");
|
|
146
|
+
var createPointOfSaleInputSchema = writableCreatePointOfSaleSchema.required();
|
|
147
|
+
var createPointOfSaleResponseSchema = pointOfSaleDetailsSchema;
|
|
148
|
+
var CreatePointOfSale = class extends import_sdk_js_core.AbstractApiRequest {
|
|
149
|
+
method = "POST";
|
|
150
|
+
contentType = "application/json";
|
|
151
|
+
accept = "application/json";
|
|
152
|
+
inputSchema = createPointOfSaleInputSchema;
|
|
153
|
+
outputSchema = createPointOfSaleResponseSchema;
|
|
154
|
+
querySchema = void 0;
|
|
155
|
+
headersSchema = void 0;
|
|
156
|
+
constructor(input) {
|
|
157
|
+
super(input);
|
|
158
|
+
}
|
|
159
|
+
getPath() {
|
|
160
|
+
return "/point_of_sales";
|
|
161
|
+
}
|
|
162
|
+
};
|
|
163
|
+
|
|
164
|
+
// src/requests/DeletePointOfSale.ts
|
|
165
|
+
var import_sdk_js_core2 = require("@deliverart/sdk-js-core");
|
|
166
|
+
var import_zod3 = require("zod");
|
|
167
|
+
var deletePointOfSaleInputSchema = import_zod3.z.undefined();
|
|
168
|
+
var deletePointOfSaleResponseSchema = import_zod3.z.undefined();
|
|
169
|
+
var DeletePointOfSale = class extends import_sdk_js_core2.AbstractApiRequest {
|
|
170
|
+
method = "DELETE";
|
|
171
|
+
contentType = "application/json";
|
|
172
|
+
accept = "application/json";
|
|
173
|
+
inputSchema = deletePointOfSaleInputSchema;
|
|
174
|
+
outputSchema = deletePointOfSaleResponseSchema;
|
|
175
|
+
querySchema = void 0;
|
|
176
|
+
headersSchema = void 0;
|
|
177
|
+
pointOfSaleId;
|
|
178
|
+
constructor(pointOfSaleId) {
|
|
179
|
+
super();
|
|
180
|
+
this.pointOfSaleId = pointOfSaleId;
|
|
181
|
+
}
|
|
182
|
+
getPath() {
|
|
183
|
+
return `/point_of_sales/${this.pointOfSaleId}`;
|
|
184
|
+
}
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
// src/requests/GetPointOfSaleDetails.ts
|
|
188
|
+
var import_sdk_js_core3 = require("@deliverart/sdk-js-core");
|
|
189
|
+
var import_zod4 = require("zod");
|
|
190
|
+
var getPointOfSaleDetailsInputSchema = import_zod4.z.undefined();
|
|
191
|
+
var getPointOfSaleDetailsResponseSchema = pointOfSaleDetailsSchema;
|
|
192
|
+
var GetPointOfSaleDetails = class extends import_sdk_js_core3.AbstractApiRequest {
|
|
193
|
+
method = "GET";
|
|
194
|
+
contentType = "application/json";
|
|
195
|
+
accept = "application/json";
|
|
196
|
+
inputSchema = getPointOfSaleDetailsInputSchema;
|
|
197
|
+
outputSchema = getPointOfSaleDetailsResponseSchema;
|
|
198
|
+
querySchema = void 0;
|
|
199
|
+
headersSchema = void 0;
|
|
200
|
+
pointOfSaleId;
|
|
201
|
+
constructor(pointOfSaleId) {
|
|
202
|
+
super();
|
|
203
|
+
this.pointOfSaleId = pointOfSaleId;
|
|
204
|
+
}
|
|
205
|
+
getPath() {
|
|
206
|
+
return `/point_of_sales/${this.pointOfSaleId}`;
|
|
207
|
+
}
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
// src/requests/GetPointOfSales.ts
|
|
211
|
+
var import_sdk_js_core4 = require("@deliverart/sdk-js-core");
|
|
212
|
+
var import_sdk_js_global_types2 = require("@deliverart/sdk-js-global-types");
|
|
213
|
+
var import_zod5 = require("zod");
|
|
214
|
+
var getCompaniesQuerySchema = import_zod5.z.object({
|
|
215
|
+
name: import_zod5.z.string().optional(),
|
|
216
|
+
openingStatus: pointOfSaleOpeningStatusSchema.optional(),
|
|
217
|
+
"integrationActivationRequests.connectionId": import_zod5.z.string().optional(),
|
|
218
|
+
"address.city": import_zod5.z.string().optional(),
|
|
219
|
+
"address.postalCode": import_zod5.z.string().optional(),
|
|
220
|
+
"order[name]": import_sdk_js_global_types2.sortDirSchema.optional(),
|
|
221
|
+
"order[createdAt]": import_sdk_js_global_types2.sortDirSchema.optional(),
|
|
222
|
+
"order[updatedAt]": import_sdk_js_global_types2.sortDirSchema.optional(),
|
|
223
|
+
page: import_zod5.z.coerce.number().optional()
|
|
224
|
+
});
|
|
225
|
+
var getCompaniesResponseSchema = (0, import_sdk_js_global_types2.createPaginatedSchema)(pointOfSaleSchema);
|
|
226
|
+
var getCompaniesInputSchema = import_zod5.z.undefined();
|
|
227
|
+
var GetPointOfSales = class extends import_sdk_js_core4.AbstractApiRequest {
|
|
228
|
+
method = "GET";
|
|
229
|
+
contentType = "application/json";
|
|
230
|
+
accept = "application/json";
|
|
231
|
+
inputSchema = getCompaniesInputSchema;
|
|
232
|
+
outputSchema = getCompaniesResponseSchema;
|
|
233
|
+
querySchema = getCompaniesQuerySchema;
|
|
234
|
+
headersSchema = void 0;
|
|
235
|
+
constructor(options) {
|
|
236
|
+
super(void 0, options);
|
|
237
|
+
}
|
|
238
|
+
getPath() {
|
|
239
|
+
return "/point_of_sales";
|
|
240
|
+
}
|
|
241
|
+
parseResponse(data, rawResponse) {
|
|
242
|
+
const pointOfSales = import_zod5.z.array(pointOfSaleSchema).parse(data);
|
|
243
|
+
return this.validateOutput({
|
|
244
|
+
data: pointOfSales,
|
|
245
|
+
pagination: (0, import_sdk_js_global_types2.responseToPagination)(rawResponse)
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
// src/requests/UpdatePointOfSale.ts
|
|
251
|
+
var import_sdk_js_core5 = require("@deliverart/sdk-js-core");
|
|
252
|
+
var updatePointOfSaleInputSchema = writablePointOfSaleSchema.partial();
|
|
253
|
+
var updatePointOfSaleResponseSchema = pointOfSaleDetailsSchema;
|
|
254
|
+
var UpdatePointOfSale = class extends import_sdk_js_core5.AbstractApiRequest {
|
|
255
|
+
method = "PATCH";
|
|
256
|
+
contentType = "application/merge-patch+json";
|
|
257
|
+
accept = "application/json";
|
|
258
|
+
inputSchema = updatePointOfSaleInputSchema;
|
|
259
|
+
outputSchema = updatePointOfSaleResponseSchema;
|
|
260
|
+
querySchema = void 0;
|
|
261
|
+
headersSchema = void 0;
|
|
262
|
+
pointOfSaleId;
|
|
263
|
+
constructor(pointOfSaleId, input) {
|
|
264
|
+
super(input);
|
|
265
|
+
this.pointOfSaleId = pointOfSaleId;
|
|
266
|
+
}
|
|
267
|
+
getPath() {
|
|
268
|
+
return `/point_of_sales/${this.pointOfSaleId}`;
|
|
269
|
+
}
|
|
270
|
+
};
|
|
271
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
272
|
+
0 && (module.exports = {
|
|
273
|
+
CreatePointOfSale,
|
|
274
|
+
DeletePointOfSale,
|
|
275
|
+
GetPointOfSaleDetails,
|
|
276
|
+
GetPointOfSales,
|
|
277
|
+
UpdatePointOfSale,
|
|
278
|
+
createPointOfSaleInputSchema,
|
|
279
|
+
createPointOfSaleResponseSchema,
|
|
280
|
+
deletePointOfSaleInputSchema,
|
|
281
|
+
deletePointOfSaleResponseSchema,
|
|
282
|
+
deliveryTimeSettingSchema,
|
|
283
|
+
getCompaniesInputSchema,
|
|
284
|
+
getCompaniesQuerySchema,
|
|
285
|
+
getCompaniesResponseSchema,
|
|
286
|
+
getPointOfSaleDetailsInputSchema,
|
|
287
|
+
getPointOfSaleDetailsResponseSchema,
|
|
288
|
+
pointOfSaleAutoAcceptOrderValues,
|
|
289
|
+
pointOfSaleCapabilities,
|
|
290
|
+
pointOfSaleCapabilitySchema,
|
|
291
|
+
pointOfSaleDetailsSchema,
|
|
292
|
+
pointOfSaleIntervalValues,
|
|
293
|
+
pointOfSaleOpeningStatusSchema,
|
|
294
|
+
pointOfSaleOpeningStatuses,
|
|
295
|
+
pointOfSaleSchema,
|
|
296
|
+
pointOfSaleUserRoleSchema,
|
|
297
|
+
pointOfSaleUserRoles,
|
|
298
|
+
timeSettingSchema,
|
|
299
|
+
updatePointOfSaleInputSchema,
|
|
300
|
+
updatePointOfSaleResponseSchema,
|
|
301
|
+
userPointOfSaleSchema,
|
|
302
|
+
writableCreatePointOfSaleSchema,
|
|
303
|
+
writablePointOfSaleSchema
|
|
304
|
+
});
|