gantri-components 2.135.0-beta.1 → 2.135.0-beta.3

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.
@@ -3,5 +3,5 @@ export interface EnvironmentVarsDef {
3
3
  CLOUDINARY_ENVIRONMENT: EnvironmentDef;
4
4
  }
5
5
  export declare const environment: {
6
- CLOUDINARY_ENVIRONMENT: string;
6
+ CLOUDINARY_ENVIRONMENT: EnvironmentDef;
7
7
  };
@@ -1,7 +1,12 @@
1
1
  import { EnvironmentDef } from '../../../../global';
2
2
  import { DirectoryName } from '../../../get-folder-structure';
3
3
  import { GetFileUrlArgs } from '../../get-file-url.types';
4
- export declare const getCloudinaryPrefix: <Directory extends DirectoryName>(props: {
4
+ export declare const getGantriCloudName: (env: EnvironmentDef | undefined) => "gantri" | "gantri-staging" | "gantri-dev";
5
+ export declare const getCloudinaryPrefixFolders: (props: {
6
+ assetType: 'image' | 'video' | 'raw';
7
+ env: EnvironmentDef | undefined;
8
+ }) => string;
9
+ export declare const getCloudinaryPrefixPath: <Directory extends DirectoryName>(props: {
5
10
  env: EnvironmentDef | undefined;
6
11
  fileType: GetFileUrlArgs<Directory>["fileType"];
7
12
  isRawFile: boolean | undefined;