@project-sunbird/collection-editor-react 0.1.5 → 0.1.6

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,9 +1,12 @@
1
1
  export declare function checkDialCode(dialCode: string): Promise<unknown>;
2
2
  export declare function linkDialCode(contentId: string, dialCode: string): Promise<unknown>;
3
- export declare function reserveDialcodes(contentId: string, count: number): Promise<string>;
3
+ export declare function reserveDialcodes(contentId: string, count: number): Promise<{
4
+ processId: string;
5
+ reservedDialcodes: Record<string, unknown>;
6
+ }>;
4
7
  export declare function getDialcodeProcessStatus(processId: string): Promise<{
5
8
  status: string;
6
- zipFileName?: string;
9
+ url?: string;
7
10
  dialcodes?: Array<{
8
11
  identifier: string;
9
12
  }>;