@atlaskit/media-client 33.1.0 → 33.1.1
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/media-client
|
|
2
2
|
|
|
3
|
+
## 33.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#154915](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/154915)
|
|
8
|
+
[`f5aa2998ecd93`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f5aa2998ecd93) -
|
|
9
|
+
Fixing internal type import
|
|
10
|
+
|
|
3
11
|
## 33.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -2,14 +2,14 @@ import { type AuthProvider } from '@atlaskit/media-core';
|
|
|
2
2
|
import { type MediaFileArtifacts } from '@atlaskit/media-state';
|
|
3
3
|
import { MediaStore as MediaApi, type MediaStoreCopyFileWithTokenParams, type TouchedFiles, type TouchFileDescriptor } from '../media-store';
|
|
4
4
|
import { type GetFileOptions } from '../../models/file-state';
|
|
5
|
-
import { MediaItemDetails, type MediaFile } from '../../models/media';
|
|
5
|
+
import { type MediaItemDetails, type MediaFile } from '../../models/media';
|
|
6
6
|
import { type UploadableFile, type UploadableFileUpfrontIds } from '../../uploader';
|
|
7
7
|
import { type UploadController } from '../../upload-controller';
|
|
8
8
|
import { type MediaSubscribable } from '../../utils/mediaSubscribable';
|
|
9
9
|
import { type Dimensions } from '../../utils/getDimensionsFromBlob';
|
|
10
10
|
import { type MediaTraceContext } from '@atlaskit/media-common';
|
|
11
11
|
import { type FilePreview, type FileState, type MediaStore } from '@atlaskit/media-state';
|
|
12
|
-
import { UploadArtifactParams } from '../media-store/types';
|
|
12
|
+
import { type UploadArtifactParams } from '../media-store/types';
|
|
13
13
|
export type { FileFetcherErrorAttributes, FileFetcherErrorReason } from './error';
|
|
14
14
|
export { isFileFetcherError, FileFetcherError } from './error';
|
|
15
15
|
export interface CopySourceFile {
|
|
@@ -2,14 +2,14 @@ import { type AuthProvider } from '@atlaskit/media-core';
|
|
|
2
2
|
import { type MediaFileArtifacts } from '@atlaskit/media-state';
|
|
3
3
|
import { MediaStore as MediaApi, type MediaStoreCopyFileWithTokenParams, type TouchedFiles, type TouchFileDescriptor } from '../media-store';
|
|
4
4
|
import { type GetFileOptions } from '../../models/file-state';
|
|
5
|
-
import { MediaItemDetails, type MediaFile } from '../../models/media';
|
|
5
|
+
import { type MediaItemDetails, type MediaFile } from '../../models/media';
|
|
6
6
|
import { type UploadableFile, type UploadableFileUpfrontIds } from '../../uploader';
|
|
7
7
|
import { type UploadController } from '../../upload-controller';
|
|
8
8
|
import { type MediaSubscribable } from '../../utils/mediaSubscribable';
|
|
9
9
|
import { type Dimensions } from '../../utils/getDimensionsFromBlob';
|
|
10
10
|
import { type MediaTraceContext } from '@atlaskit/media-common';
|
|
11
11
|
import { type FilePreview, type FileState, type MediaStore } from '@atlaskit/media-state';
|
|
12
|
-
import { UploadArtifactParams } from '../media-store/types';
|
|
12
|
+
import { type UploadArtifactParams } from '../media-store/types';
|
|
13
13
|
export type { FileFetcherErrorAttributes, FileFetcherErrorReason } from './error';
|
|
14
14
|
export { isFileFetcherError, FileFetcherError } from './error';
|
|
15
15
|
export interface CopySourceFile {
|