ordering-ui-react-native 0.21.72-release → 0.21.73-release
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/package.json
CHANGED
|
@@ -53,7 +53,8 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
|
|
|
53
53
|
actions,
|
|
54
54
|
orderTitle,
|
|
55
55
|
appTitle,
|
|
56
|
-
loadMessages
|
|
56
|
+
loadMessages,
|
|
57
|
+
notificationApp
|
|
57
58
|
} = props;
|
|
58
59
|
|
|
59
60
|
const theme = useTheme();
|
|
@@ -594,6 +595,7 @@ export const OrderDetailsUI = (props: OrderDetailsParams) => {
|
|
|
594
595
|
messages={messages}
|
|
595
596
|
order={order}
|
|
596
597
|
setMessages={setMessages}
|
|
598
|
+
notificationApp={notificationApp}
|
|
597
599
|
/>
|
|
598
600
|
</OModal>
|
|
599
601
|
|
|
@@ -415,7 +415,8 @@ export interface OrderDetailsParams {
|
|
|
415
415
|
orderTitle?: any;
|
|
416
416
|
forceUpdate?: number;
|
|
417
417
|
getPermissions?: any
|
|
418
|
-
loadMessages?: any
|
|
418
|
+
loadMessages?: any;
|
|
419
|
+
notificationApp?: string
|
|
419
420
|
}
|
|
420
421
|
export interface ProductItemAccordionParams {
|
|
421
422
|
isCartPending?: boolean;
|
|
@@ -451,6 +452,7 @@ export interface MessagesParams {
|
|
|
451
452
|
sendMessage?: any;
|
|
452
453
|
canRead?: any;
|
|
453
454
|
setCanRead?: any;
|
|
455
|
+
notificationApp?: string
|
|
454
456
|
handleSend?: () => {};
|
|
455
457
|
setImage?: (image: string | null) => {};
|
|
456
458
|
setMessage?: (comment: string) => {};
|