@compassdigital/sdk.typescript 4.199.0 → 4.200.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/interface/menu.d.ts +34 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +34 -0
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -728,6 +728,7 @@ export interface DraftItemDTO {
|
|
|
728
728
|
name?: string;
|
|
729
729
|
name_on_receipt?: string;
|
|
730
730
|
name_on_kds?: string;
|
|
731
|
+
name_on_pos?: string;
|
|
731
732
|
label?: string;
|
|
732
733
|
description?: string;
|
|
733
734
|
reporting?: Record<string, any>;
|
|
@@ -852,6 +853,7 @@ export interface DraftModifierDTO {
|
|
|
852
853
|
name?: string;
|
|
853
854
|
name_on_receipt?: string;
|
|
854
855
|
name_on_kds?: string;
|
|
856
|
+
name_on_pos?: string;
|
|
855
857
|
label?: string;
|
|
856
858
|
description?: string;
|
|
857
859
|
price?: number;
|
|
@@ -1290,6 +1292,7 @@ export interface PublishedItemDTO {
|
|
|
1290
1292
|
name?: string;
|
|
1291
1293
|
name_on_receipt?: string;
|
|
1292
1294
|
name_on_kds?: string;
|
|
1295
|
+
name_on_pos?: string;
|
|
1293
1296
|
label?: string;
|
|
1294
1297
|
description?: string;
|
|
1295
1298
|
price?: number;
|
|
@@ -1378,6 +1381,7 @@ export interface PublishedModifierDTO {
|
|
|
1378
1381
|
name?: string;
|
|
1379
1382
|
name_on_receipt?: string;
|
|
1380
1383
|
name_on_kds?: string;
|
|
1384
|
+
name_on_pos?: string;
|
|
1381
1385
|
label?: string;
|
|
1382
1386
|
description?: string;
|
|
1383
1387
|
price?: number;
|
|
@@ -1658,6 +1662,7 @@ export interface DraftItemEntityDTO {
|
|
|
1658
1662
|
name: string;
|
|
1659
1663
|
name_on_receipt?: string;
|
|
1660
1664
|
name_on_kds?: string;
|
|
1665
|
+
name_on_pos?: string;
|
|
1661
1666
|
label?: string;
|
|
1662
1667
|
description?: string;
|
|
1663
1668
|
reporting: ReportingMetadataDTO;
|
|
@@ -1710,6 +1715,7 @@ export interface DraftModifierEntityDTO {
|
|
|
1710
1715
|
name: string;
|
|
1711
1716
|
name_on_receipt?: string;
|
|
1712
1717
|
name_on_kds?: string;
|
|
1718
|
+
name_on_pos?: string;
|
|
1713
1719
|
label?: string;
|
|
1714
1720
|
description?: string;
|
|
1715
1721
|
price: number;
|
|
@@ -5287,6 +5293,7 @@ export interface PostMenuV3DraftItemBody {
|
|
|
5287
5293
|
name: string;
|
|
5288
5294
|
name_on_receipt?: string;
|
|
5289
5295
|
name_on_kds?: string;
|
|
5296
|
+
name_on_pos?: string;
|
|
5290
5297
|
label?: string;
|
|
5291
5298
|
description?: string;
|
|
5292
5299
|
reporting: ReportingMetadataDTO;
|
|
@@ -5367,6 +5374,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
5367
5374
|
name?: string;
|
|
5368
5375
|
name_on_receipt?: string;
|
|
5369
5376
|
name_on_kds?: string;
|
|
5377
|
+
name_on_pos?: string;
|
|
5370
5378
|
label?: string;
|
|
5371
5379
|
description?: string;
|
|
5372
5380
|
reporting?: ReportingMetadataDTO;
|
|
@@ -5486,6 +5494,7 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
5486
5494
|
name: string;
|
|
5487
5495
|
name_on_receipt?: string;
|
|
5488
5496
|
name_on_kds?: string;
|
|
5497
|
+
name_on_pos?: string;
|
|
5489
5498
|
label?: string;
|
|
5490
5499
|
description?: string;
|
|
5491
5500
|
reporting: ReportingMetadataDTO;
|
|
@@ -5596,6 +5605,7 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
5596
5605
|
name?: string;
|
|
5597
5606
|
name_on_receipt?: string;
|
|
5598
5607
|
name_on_kds?: string;
|
|
5608
|
+
name_on_pos?: string;
|
|
5599
5609
|
label?: string;
|
|
5600
5610
|
description?: string;
|
|
5601
5611
|
reporting?: ReportingMetadataDTO;
|
|
@@ -6735,6 +6745,7 @@ export interface PostMenuV3DraftModifierBody {
|
|
|
6735
6745
|
name: string;
|
|
6736
6746
|
name_on_receipt?: string;
|
|
6737
6747
|
name_on_kds?: string;
|
|
6748
|
+
name_on_pos?: string;
|
|
6738
6749
|
label?: string;
|
|
6739
6750
|
description?: string;
|
|
6740
6751
|
price: number;
|
|
@@ -6811,6 +6822,7 @@ export interface PatchMenuV3DraftModifierBody {
|
|
|
6811
6822
|
name?: string;
|
|
6812
6823
|
name_on_receipt?: string;
|
|
6813
6824
|
name_on_kds?: string;
|
|
6825
|
+
name_on_pos?: string;
|
|
6814
6826
|
label?: string;
|
|
6815
6827
|
description?: string;
|
|
6816
6828
|
price?: number;
|
|
@@ -6926,6 +6938,7 @@ export type PostMenuV3DraftModifiersBody = {
|
|
|
6926
6938
|
name: string;
|
|
6927
6939
|
name_on_receipt?: string;
|
|
6928
6940
|
name_on_kds?: string;
|
|
6941
|
+
name_on_pos?: string;
|
|
6929
6942
|
label?: string;
|
|
6930
6943
|
description?: string;
|
|
6931
6944
|
price: number;
|
|
@@ -7032,6 +7045,7 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
|
7032
7045
|
name?: string;
|
|
7033
7046
|
name_on_receipt?: string;
|
|
7034
7047
|
name_on_kds?: string;
|
|
7048
|
+
name_on_pos?: string;
|
|
7035
7049
|
label?: string;
|
|
7036
7050
|
description?: string;
|
|
7037
7051
|
price?: number;
|
|
@@ -8442,6 +8456,7 @@ export interface PostMenuV4ItemBody {
|
|
|
8442
8456
|
name: string;
|
|
8443
8457
|
name_on_receipt?: string;
|
|
8444
8458
|
name_on_kds?: string;
|
|
8459
|
+
name_on_pos?: string;
|
|
8445
8460
|
label?: string;
|
|
8446
8461
|
description?: string;
|
|
8447
8462
|
reporting: ReportingMetadataDTO;
|
|
@@ -8492,6 +8507,7 @@ export interface PostMenuV4ItemResponse {
|
|
|
8492
8507
|
name: string;
|
|
8493
8508
|
name_on_receipt?: string;
|
|
8494
8509
|
name_on_kds?: string;
|
|
8510
|
+
name_on_pos?: string;
|
|
8495
8511
|
label?: string;
|
|
8496
8512
|
description?: string;
|
|
8497
8513
|
reporting: ReportingMetadataDTO;
|
|
@@ -8544,6 +8560,7 @@ export type PostMenuV4ItemsBulkCreateBody = {
|
|
|
8544
8560
|
name: string;
|
|
8545
8561
|
name_on_receipt?: string;
|
|
8546
8562
|
name_on_kds?: string;
|
|
8563
|
+
name_on_pos?: string;
|
|
8547
8564
|
label?: string;
|
|
8548
8565
|
description?: string;
|
|
8549
8566
|
reporting: ReportingMetadataDTO;
|
|
@@ -8615,6 +8632,7 @@ export interface GetMenuV4ItemResponse {
|
|
|
8615
8632
|
name: string;
|
|
8616
8633
|
name_on_receipt?: string;
|
|
8617
8634
|
name_on_kds?: string;
|
|
8635
|
+
name_on_pos?: string;
|
|
8618
8636
|
label?: string;
|
|
8619
8637
|
description?: string;
|
|
8620
8638
|
reporting: ReportingMetadataDTO;
|
|
@@ -8673,6 +8691,7 @@ export interface PatchMenuV4ItemBody {
|
|
|
8673
8691
|
name?: string;
|
|
8674
8692
|
name_on_receipt?: string;
|
|
8675
8693
|
name_on_kds?: string;
|
|
8694
|
+
name_on_pos?: string;
|
|
8676
8695
|
label?: string;
|
|
8677
8696
|
description?: string;
|
|
8678
8697
|
reporting?: ReportingMetadataDTO;
|
|
@@ -8722,6 +8741,7 @@ export interface PatchMenuV4ItemResponse {
|
|
|
8722
8741
|
name: string;
|
|
8723
8742
|
name_on_receipt?: string;
|
|
8724
8743
|
name_on_kds?: string;
|
|
8744
|
+
name_on_pos?: string;
|
|
8725
8745
|
label?: string;
|
|
8726
8746
|
description?: string;
|
|
8727
8747
|
reporting: ReportingMetadataDTO;
|
|
@@ -8782,6 +8802,7 @@ export interface DeleteMenuV4ItemResponse {
|
|
|
8782
8802
|
name: string;
|
|
8783
8803
|
name_on_receipt?: string;
|
|
8784
8804
|
name_on_kds?: string;
|
|
8805
|
+
name_on_pos?: string;
|
|
8785
8806
|
label?: string;
|
|
8786
8807
|
description?: string;
|
|
8787
8808
|
reporting: ReportingMetadataDTO;
|
|
@@ -8834,6 +8855,7 @@ export interface PatchMenuV4ItemsBulkUpdateBody {
|
|
|
8834
8855
|
name?: string;
|
|
8835
8856
|
name_on_receipt?: string;
|
|
8836
8857
|
name_on_kds?: string;
|
|
8858
|
+
name_on_pos?: string;
|
|
8837
8859
|
label?: string;
|
|
8838
8860
|
description?: string;
|
|
8839
8861
|
reporting?: ReportingMetadataDTO;
|
|
@@ -8893,6 +8915,7 @@ export interface PatchMenuV4ItemsBulkPriceUpdateBody {
|
|
|
8893
8915
|
name?: string;
|
|
8894
8916
|
name_on_receipt?: string;
|
|
8895
8917
|
name_on_kds?: string;
|
|
8918
|
+
name_on_pos?: string;
|
|
8896
8919
|
label?: string;
|
|
8897
8920
|
description?: string;
|
|
8898
8921
|
reporting?: ReportingMetadataDTO;
|
|
@@ -8953,6 +8976,7 @@ export interface PostMenuV4ItemDuplicateBody {
|
|
|
8953
8976
|
name?: string;
|
|
8954
8977
|
name_on_receipt?: string;
|
|
8955
8978
|
name_on_kds?: string;
|
|
8979
|
+
name_on_pos?: string;
|
|
8956
8980
|
label?: string;
|
|
8957
8981
|
description?: string;
|
|
8958
8982
|
reporting?: ReportingMetadataDTO;
|
|
@@ -9002,6 +9026,7 @@ export interface PostMenuV4ItemDuplicateResponse {
|
|
|
9002
9026
|
name: string;
|
|
9003
9027
|
name_on_receipt?: string;
|
|
9004
9028
|
name_on_kds?: string;
|
|
9029
|
+
name_on_pos?: string;
|
|
9005
9030
|
label?: string;
|
|
9006
9031
|
description?: string;
|
|
9007
9032
|
reporting: ReportingMetadataDTO;
|
|
@@ -9141,6 +9166,7 @@ export interface PostMenuV4ModifierBody {
|
|
|
9141
9166
|
name: string;
|
|
9142
9167
|
name_on_receipt?: string;
|
|
9143
9168
|
name_on_kds?: string;
|
|
9169
|
+
name_on_pos?: string;
|
|
9144
9170
|
label?: string;
|
|
9145
9171
|
description?: string;
|
|
9146
9172
|
price: number;
|
|
@@ -9186,6 +9212,7 @@ export interface PostMenuV4ModifierResponse {
|
|
|
9186
9212
|
name: string;
|
|
9187
9213
|
name_on_receipt?: string;
|
|
9188
9214
|
name_on_kds?: string;
|
|
9215
|
+
name_on_pos?: string;
|
|
9189
9216
|
label?: string;
|
|
9190
9217
|
description?: string;
|
|
9191
9218
|
price: number;
|
|
@@ -9248,6 +9275,7 @@ export interface GetMenuV4ModifierResponse {
|
|
|
9248
9275
|
name: string;
|
|
9249
9276
|
name_on_receipt?: string;
|
|
9250
9277
|
name_on_kds?: string;
|
|
9278
|
+
name_on_pos?: string;
|
|
9251
9279
|
label?: string;
|
|
9252
9280
|
description?: string;
|
|
9253
9281
|
price: number;
|
|
@@ -9301,6 +9329,7 @@ export interface PatchMenuV4ModifierBody {
|
|
|
9301
9329
|
name?: string;
|
|
9302
9330
|
name_on_receipt?: string;
|
|
9303
9331
|
name_on_kds?: string;
|
|
9332
|
+
name_on_pos?: string;
|
|
9304
9333
|
label?: string;
|
|
9305
9334
|
description?: string;
|
|
9306
9335
|
price?: number;
|
|
@@ -9346,6 +9375,7 @@ export interface PatchMenuV4ModifierResponse {
|
|
|
9346
9375
|
name: string;
|
|
9347
9376
|
name_on_receipt?: string;
|
|
9348
9377
|
name_on_kds?: string;
|
|
9378
|
+
name_on_pos?: string;
|
|
9349
9379
|
label?: string;
|
|
9350
9380
|
description?: string;
|
|
9351
9381
|
price: number;
|
|
@@ -9402,6 +9432,7 @@ export interface DeleteMenuV4ModifierResponse {
|
|
|
9402
9432
|
name: string;
|
|
9403
9433
|
name_on_receipt?: string;
|
|
9404
9434
|
name_on_kds?: string;
|
|
9435
|
+
name_on_pos?: string;
|
|
9405
9436
|
label?: string;
|
|
9406
9437
|
description?: string;
|
|
9407
9438
|
price: number;
|
|
@@ -9452,6 +9483,7 @@ export interface PostMenuV4ModifierDuplicateBody {
|
|
|
9452
9483
|
name?: string;
|
|
9453
9484
|
name_on_receipt?: string;
|
|
9454
9485
|
name_on_kds?: string;
|
|
9486
|
+
name_on_pos?: string;
|
|
9455
9487
|
label?: string;
|
|
9456
9488
|
description?: string;
|
|
9457
9489
|
price?: number;
|
|
@@ -9497,6 +9529,7 @@ export interface PostMenuV4ModifierDuplicateResponse {
|
|
|
9497
9529
|
name: string;
|
|
9498
9530
|
name_on_receipt?: string;
|
|
9499
9531
|
name_on_kds?: string;
|
|
9532
|
+
name_on_pos?: string;
|
|
9500
9533
|
label?: string;
|
|
9501
9534
|
description?: string;
|
|
9502
9535
|
price: number;
|
|
@@ -9549,6 +9582,7 @@ export interface PatchMenuV4ModifiersBulkUpdateBody {
|
|
|
9549
9582
|
name?: string;
|
|
9550
9583
|
name_on_receipt?: string;
|
|
9551
9584
|
name_on_kds?: string;
|
|
9585
|
+
name_on_pos?: string;
|
|
9552
9586
|
label?: string;
|
|
9553
9587
|
description?: string;
|
|
9554
9588
|
price?: number;
|