@openlettermarketing/olc-react-sdk 2.0.2-beta.8 → 2.0.2

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.
@@ -26,5 +26,4 @@ export declare const SET_CUSTOM_UTMS = "SET_CUSTOM_UTMS";
26
26
  export declare const CLEAR_QR_FIELDS = "CLEAR_QR_FIELDS";
27
27
  export declare const SET_IS_QR = "SET_IS_QR";
28
28
  export declare const SET_BLOCK_COLOR = "SET_BLOCK_COLOR";
29
- export declare const SET_PAGE_COUNT = "SET_PAGE_COUNT";
30
29
  export declare const CLEAR_REDUX: string;
@@ -82,11 +82,4 @@ declare const searchAndAdvanceChange: (name: string, value: any) => (dispatch: A
82
82
  * @throws {object} - The error response if there is an error.
83
83
  */
84
84
  declare const getAllTemplateCategories: () => Promise<any>;
85
- /**
86
- * Sets the page count for the current template.
87
- *
88
- * @param {number} count - The number of pages.
89
- * @returns {Function} - The thunk function.
90
- */
91
- declare const setPageCount: (count: number) => (dispatch: AppDispatch) => void;
92
- export { uploadTemplate, getAllTemplatesByTab, searchAndAdvanceChange, clearAllTemplates, selectProduct, selectPostCard, clearTemplateFields, loadFormDataToStore, uploadFile, downloadProof, envelopeProof, getAllTemplateCategories, setPageCount };
85
+ export { uploadTemplate, getAllTemplatesByTab, searchAndAdvanceChange, clearAllTemplates, selectProduct, selectPostCard, clearTemplateFields, loadFormDataToStore, uploadFile, downloadProof, envelopeProof, getAllTemplateCategories };
@@ -57,7 +57,6 @@ export interface TemplateState {
57
57
  offerPercentage: string | null;
58
58
  blockColor: string;
59
59
  hireDesignerForm: any;
60
- pageCount: number;
61
60
  }
62
61
  declare const templateReducer: (state: TemplateState | undefined, { type, payload }: {
63
62
  type: string;
@@ -44,5 +44,5 @@ interface Store {
44
44
  };
45
45
  }
46
46
  export declare const addIdentifierAreaToProfessionalWindow: (store: Store) => void;
47
- export declare const addIdentifierAreaToProfessionalNonWindow: (store: Store, pageIndex?: number) => void;
47
+ export declare const addIdentifierAreaToProfessionalNonWindow: (store: Store) => void;
48
48
  export {};
@@ -1,3 +1,3 @@
1
1
  import { Store } from "./types";
2
- export declare const addSafetyBordersToNonWindowProfessioanl: (store: Store, pageIndex?: number) => void;
3
- export declare const addSafetyBordersToWindowProfessioanl: (store: Store, pageIndex?: number) => void;
2
+ export declare const addSafetyBordersToNonWindowProfessioanl: (store: Store) => void;
3
+ export declare const addSafetyBordersToWindowProfessioanl: (store: Store) => void;
@@ -1 +1 @@
1
- export const SDK_VERSION: "2.0.2-beta.8";
1
+ export const SDK_VERSION: "2.0.2";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@openlettermarketing/olc-react-sdk",
3
3
  "private": false,
4
- "version": "2.0.2-beta.8",
4
+ "version": "2.0.2",
5
5
  "type": "module",
6
6
  "description": "Simplify template builder integration for any product.",
7
7
  "main": "build/index.js",
@@ -1,3 +0,0 @@
1
- import React from 'react';
2
- declare const del: (props: any) => React.JSX.Element;
3
- export default del;