gantri-components 2.161.0-beta.2 → 2.162.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gantri-components",
3
- "version": "2.161.0-beta.2",
3
+ "version": "2.162.0",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "umd": "dist/index.umd.js",
@@ -1,2 +0,0 @@
1
- import { GetOrganizationsQuotesArgs, OrganizationsQuotesFileType } from './get-organizations-path.types';
2
- export declare const getOrganizationsQuotesPath: (args: GetOrganizationsQuotesArgs<OrganizationsQuotesFileType>) => string;
@@ -1,11 +0,0 @@
1
- export type OrganizationsQuotesFileType = 'pdf' | 'product';
2
- interface OrganizationsQuotesRootLevel {
3
- quoteId: number;
4
- }
5
- interface OrganizationsQuotesArgs<FileType extends OrganizationsQuotesFileType, Identifiers extends Record<string, any>> {
6
- directory: 'organizations-quotes';
7
- fileType: FileType;
8
- identifiers: Identifiers;
9
- }
10
- export type GetOrganizationsQuotesArgs<FileType extends OrganizationsQuotesFileType> = FileType extends 'pdf' | 'product' ? OrganizationsQuotesArgs<FileType, OrganizationsQuotesRootLevel> : never;
11
- export {};
@@ -1 +0,0 @@
1
- export * from './get-organizations-path';