@soma-vertical-web/multi-lib 1.0.3 → 1.0.5

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.
@@ -1,5 +1,5 @@
1
1
  import { ISessionContext, SessionProviderProps } from '../../types/contexts/contexts/session';
2
2
 
3
- declare const SessionProvider: ({ children, AUTH_TOKEN_COOKIE, }: SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
3
+ declare const SessionProvider: ({ children, AUTH_TOKEN_COOKIE, accountName }: SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
4
4
  declare const useSession: () => ISessionContext;
5
5
  export { SessionProvider, useSession };
@@ -117,7 +117,7 @@ export declare const contexts: {
117
117
  };
118
118
  session: {
119
119
  hook: () => import('../types/contexts/contexts/session').ISessionContext;
120
- provider: ({ children, AUTH_TOKEN_COOKIE, }: import('../types/contexts/contexts/session').SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
120
+ provider: ({ children, AUTH_TOKEN_COOKIE, accountName }: import('../types/contexts/contexts/session').SessionProviderProps) => import("react/jsx-runtime").JSX.Element;
121
121
  };
122
122
  ui: {
123
123
  hook: () => import('../types/contexts/contexts/cart').UIContextProps;
@@ -13,5 +13,5 @@ type SchemaType = yup.InferType<typeof schemaAttachments>;
13
13
  /**
14
14
  * Attach marketing and open text field data to a shopping cart.
15
15
  */
16
- export declare function postOrderFormAttachOrderFormData({ apiUrl, body, fetchOptions }: FetchFunctionsProps<SchemaType>): Promise<any>;
16
+ export declare function postOrderFormAttachOrderFormData({ apiUrl, body, fetchOptions, extraData }: FetchFunctionsProps<SchemaType>): Promise<any>;
17
17
  export {};