gantri-components 2.161.0-beta.1 → 2.161.0-beta.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.
- package/dist/helpers/get-folder-structure/helpers/get-organizations-quotes-path/get-organizations-path.d.ts +2 -0
- package/dist/helpers/get-folder-structure/helpers/get-organizations-quotes-path/get-organizations-path.types.d.ts +2 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type OrganizationsQuotesFileType = 'product';
|
|
1
|
+
export type OrganizationsQuotesFileType = 'pdf' | 'product';
|
|
2
2
|
interface OrganizationsQuotesRootLevel {
|
|
3
3
|
quoteId: number;
|
|
4
4
|
}
|
|
@@ -7,5 +7,5 @@ interface OrganizationsQuotesArgs<FileType extends OrganizationsQuotesFileType,
|
|
|
7
7
|
fileType: FileType;
|
|
8
8
|
identifiers: Identifiers;
|
|
9
9
|
}
|
|
10
|
-
export type GetOrganizationsQuotesArgs<FileType extends OrganizationsQuotesFileType> = FileType extends 'product' ? OrganizationsQuotesArgs<FileType, OrganizationsQuotesRootLevel> : never;
|
|
10
|
+
export type GetOrganizationsQuotesArgs<FileType extends OrganizationsQuotesFileType> = FileType extends 'pdf' | 'product' ? OrganizationsQuotesArgs<FileType, OrganizationsQuotesRootLevel> : never;
|
|
11
11
|
export {};
|