minerva-plexus-csd 1.1.2 → 1.1.4

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/dist/index.d.ts CHANGED
@@ -274,10 +274,6 @@ export declare const minervaLocales: {
274
274
  };
275
275
  };
276
276
 
277
- declare interface Props {
278
- serviceTicketingNoUSer: boolean;
279
- }
280
-
281
277
  declare type ServiceContextType = {
282
278
  service: string;
283
279
  setService: (service: string) => void;
@@ -298,7 +294,12 @@ export declare const setApiConfig: (config: {
298
294
 
299
295
  export declare const setAssetsBasePath: (path: string) => void;
300
296
 
301
- export declare const TicketingComponent: default_2.FC<Props>;
297
+ export declare const TicketingComponent: default_2.FC<TicketingComponentProps>;
298
+
299
+ declare interface TicketingComponentProps {
300
+ selectedConversationId: string | undefined;
301
+ serviceTicketingNoUSer: boolean;
302
+ }
302
303
 
303
304
  export declare const useApiConfig: () => ApiConfigType;
304
305