@tap-payments/os-micro-frontend-shared 0.1.233 → 0.1.234
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/build/constants/apps.d.ts +11 -0
- package/build/constants/apps.js +11 -0
- package/package.json +1 -1
|
@@ -918,6 +918,17 @@ export declare const APP_CODES: {
|
|
|
918
918
|
};
|
|
919
919
|
terminals: {
|
|
920
920
|
code: string;
|
|
921
|
+
services: {
|
|
922
|
+
create: {
|
|
923
|
+
code: string;
|
|
924
|
+
};
|
|
925
|
+
view: {
|
|
926
|
+
code: string;
|
|
927
|
+
};
|
|
928
|
+
update: {
|
|
929
|
+
code: string;
|
|
930
|
+
};
|
|
931
|
+
};
|
|
921
932
|
};
|
|
922
933
|
};
|
|
923
934
|
export declare const APP_DIMENSIONS: {
|
package/build/constants/apps.js
CHANGED
|
@@ -360,6 +360,17 @@ export const APP_CODES = {
|
|
|
360
360
|
},
|
|
361
361
|
terminals: {
|
|
362
362
|
code: 'TERMINALS',
|
|
363
|
+
services: {
|
|
364
|
+
create: {
|
|
365
|
+
code: 'CREATE',
|
|
366
|
+
},
|
|
367
|
+
view: {
|
|
368
|
+
code: 'VIEW',
|
|
369
|
+
},
|
|
370
|
+
update: {
|
|
371
|
+
code: 'UPDATE',
|
|
372
|
+
},
|
|
373
|
+
},
|
|
363
374
|
},
|
|
364
375
|
};
|
|
365
376
|
export const APP_DIMENSIONS = {
|
package/package.json
CHANGED