@atlaskit/media-client 37.2.8 → 37.2.9
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 +6 -0
- package/dist/cjs/client/file-fetcher/index.js +2 -2
- package/dist/cjs/client/media-client.js +2 -2
- package/dist/cjs/client/mobile-upload.js +2 -2
- package/dist/es2019/client/file-fetcher/index.js +1 -1
- package/dist/es2019/client/media-client.js +1 -1
- package/dist/es2019/client/mobile-upload.js +1 -1
- package/dist/esm/client/file-fetcher/index.js +1 -1
- package/dist/esm/client/media-client.js +1 -1
- package/dist/esm/client/mobile-upload.js +1 -1
- package/dist/types/client/events.d.ts +1 -1
- package/dist/types/client/file-fetcher/index.d.ts +3 -2
- package/dist/types/client/media-client.d.ts +1 -1
- package/dist/types/client/media-store/MediaStore.d.ts +1 -1
- package/dist/types/client/media-store/types.d.ts +1 -1
- package/dist/types/client/mobile-upload.d.ts +1 -1
- package/dist/types/file-streams-cache.d.ts +1 -1
- package/dist/types/models/artifacts.d.ts +1 -1
- package/dist/types/models/errors/index.d.ts +1 -1
- package/dist/types/models/file-state.d.ts +1 -1
- package/dist/types/models/item.d.ts +1 -1
- package/dist/types/models/media.d.ts +1 -1
- package/dist/types/models/mobile-upload.d.ts +1 -1
- package/dist/types/utils/createMediaSubject.d.ts +1 -1
- package/dist/types/utils/mediaSubscribable/fromObservable.d.ts +1 -1
- package/dist/types/utils/mediaSubscribable/toPromise.d.ts +1 -1
- package/dist/types/utils/mediaSubscribable/types.d.ts +1 -1
- package/dist/types/utils/mobileUpload/helpers.d.ts +1 -1
- package/dist/types/utils/mobileUpload/stateMachine/index.d.ts +1 -1
- package/dist/types/utils/mobileUpload/stateMachine/types.d.ts +1 -1
- package/dist/types/utils/overrideMediaTypeIfUnknown.d.ts +1 -1
- package/dist/types/utils/shouldFetchRemoteFileStates.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -47,7 +47,7 @@ var _mediaTypeUtils = require("@atlaskit/media-common/mediaTypeUtils");
|
|
|
47
47
|
var _shouldFetchRemoteFileStates = require("../../utils/shouldFetchRemoteFileStates");
|
|
48
48
|
var _polling = require("../../utils/polling");
|
|
49
49
|
var _detectEmptyFile = require("../../utils/detectEmptyFile");
|
|
50
|
-
var
|
|
50
|
+
var _mediaStore2 = require("@atlaskit/media-state/media-store");
|
|
51
51
|
var _createCopyIntentRegisterationBatcher = require("../../utils/createCopyIntentRegisterationBatcher");
|
|
52
52
|
var _helpers = require("../../utils/request/helpers");
|
|
53
53
|
var _errors = require("../../models/errors");
|
|
@@ -62,7 +62,7 @@ var isCopyDestinationWithToken = function isCopyDestinationWithToken(token) {
|
|
|
62
62
|
var FileFetcherImpl = exports.FileFetcherImpl = /*#__PURE__*/function () {
|
|
63
63
|
function FileFetcherImpl(mediaApi) {
|
|
64
64
|
var _this = this;
|
|
65
|
-
var store = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
65
|
+
var store = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _mediaStore2.mediaStore;
|
|
66
66
|
(0, _classCallCheck2.default)(this, FileFetcherImpl);
|
|
67
67
|
(0, _defineProperty2.default)(this, "getErrorFileState", function (error, id, occurrenceKey) {
|
|
68
68
|
if ((0, _errors.isCommonMediaClientError)(error)) {
|
|
@@ -15,7 +15,7 @@ var _mediaCore = require("@atlaskit/media-core");
|
|
|
15
15
|
var _mediaStore = require("./media-store");
|
|
16
16
|
var _fileFetcher = require("./file-fetcher");
|
|
17
17
|
var _stargateClient = require("./stargate-client");
|
|
18
|
-
var
|
|
18
|
+
var _mediaStore2 = require("@atlaskit/media-state/media-store");
|
|
19
19
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
20
20
|
var MediaClient = exports.MediaClient = /*#__PURE__*/function () {
|
|
21
21
|
// mobile upload is lazily loaded
|
|
@@ -23,7 +23,7 @@ var MediaClient = exports.MediaClient = /*#__PURE__*/function () {
|
|
|
23
23
|
// Deprecated value introduced for backward compatibility with Context
|
|
24
24
|
|
|
25
25
|
function MediaClient(mediaClientConfig) {
|
|
26
|
-
var store = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
26
|
+
var store = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _mediaStore2.mediaStore;
|
|
27
27
|
var mediaApi = arguments.length > 2 ? arguments[2] : undefined;
|
|
28
28
|
(0, _classCallCheck2.default)(this, MediaClient);
|
|
29
29
|
this.mediaClientConfig = mediaClientConfig;
|
|
@@ -9,14 +9,14 @@ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/cl
|
|
|
9
9
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
10
10
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
11
|
var _mediaCommon = require("@atlaskit/media-common");
|
|
12
|
-
var
|
|
12
|
+
var _mediaStore = require("@atlaskit/media-state/media-store");
|
|
13
13
|
var _fileStreamsCache = require("../file-streams-cache");
|
|
14
14
|
var _createFileDataLoader = require("../utils/createFileDataLoader");
|
|
15
15
|
var _mobileUpload = require("../utils/mobileUpload");
|
|
16
16
|
var MobileUploadImpl = exports.MobileUploadImpl = /*#__PURE__*/function () {
|
|
17
17
|
function MobileUploadImpl(mediaApi) {
|
|
18
18
|
var _this = this;
|
|
19
|
-
var store = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
19
|
+
var store = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _mediaStore.mediaStore;
|
|
20
20
|
(0, _classCallCheck2.default)(this, MobileUploadImpl);
|
|
21
21
|
(0, _defineProperty2.default)(this, "getErrorFileState", function (error, id, occurrenceKey) {
|
|
22
22
|
return typeof error === 'string' ? {
|
|
@@ -25,7 +25,7 @@ import { getMediaTypeFromMimeType } from '@atlaskit/media-common/mediaTypeUtils'
|
|
|
25
25
|
import { shouldFetchRemoteFileStates } from '../../utils/shouldFetchRemoteFileStates';
|
|
26
26
|
import { PollingFunction } from '../../utils/polling';
|
|
27
27
|
import { isEmptyFile } from '../../utils/detectEmptyFile';
|
|
28
|
-
import { mediaStore } from '@atlaskit/media-state';
|
|
28
|
+
import { mediaStore } from '@atlaskit/media-state/media-store';
|
|
29
29
|
import { createCopyIntentRegisterationBatcher } from '../../utils/createCopyIntentRegisterationBatcher';
|
|
30
30
|
import { defaultShouldRetryError } from '../../utils/request/helpers';
|
|
31
31
|
import { isCommonMediaClientError, CommonMediaClientError, fromCommonMediaClientError } from '../../models/errors';
|
|
@@ -3,7 +3,7 @@ import { ChunkHashAlgorithm } from '@atlaskit/media-core';
|
|
|
3
3
|
import { MediaStore as MediaApi } from './media-store';
|
|
4
4
|
import { FileFetcherImpl } from './file-fetcher';
|
|
5
5
|
import { StargateClient } from './stargate-client';
|
|
6
|
-
import { mediaStore } from '@atlaskit/media-state';
|
|
6
|
+
import { mediaStore } from '@atlaskit/media-state/media-store';
|
|
7
7
|
export class MediaClient {
|
|
8
8
|
// mobile upload is lazily loaded
|
|
9
9
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
import { getMediaTypeFromMimeType } from '@atlaskit/media-common';
|
|
3
|
-
import { mediaStore } from '@atlaskit/media-state';
|
|
3
|
+
import { mediaStore } from '@atlaskit/media-state/media-store';
|
|
4
4
|
import { getFileStreamsCache } from '../file-streams-cache';
|
|
5
5
|
import { createFileDataloader } from '../utils/createFileDataLoader';
|
|
6
6
|
import { createServicesCache, createMobileUploadStateMachine, createMobileUploadService, createMobileFileStateSubject } from '../utils/mobileUpload';
|
|
@@ -31,7 +31,7 @@ import { getMediaTypeFromMimeType } from '@atlaskit/media-common/mediaTypeUtils'
|
|
|
31
31
|
import { shouldFetchRemoteFileStates } from '../../utils/shouldFetchRemoteFileStates';
|
|
32
32
|
import { PollingFunction } from '../../utils/polling';
|
|
33
33
|
import { isEmptyFile } from '../../utils/detectEmptyFile';
|
|
34
|
-
import { mediaStore } from '@atlaskit/media-state';
|
|
34
|
+
import { mediaStore } from '@atlaskit/media-state/media-store';
|
|
35
35
|
import { createCopyIntentRegisterationBatcher } from '../../utils/createCopyIntentRegisterationBatcher';
|
|
36
36
|
import { defaultShouldRetryError } from '../../utils/request/helpers';
|
|
37
37
|
import { isCommonMediaClientError, CommonMediaClientError, fromCommonMediaClientError } from '../../models/errors';
|
|
@@ -7,7 +7,7 @@ import { ChunkHashAlgorithm } from '@atlaskit/media-core';
|
|
|
7
7
|
import { MediaStore as MediaApi } from './media-store';
|
|
8
8
|
import { FileFetcherImpl } from './file-fetcher';
|
|
9
9
|
import { StargateClient } from './stargate-client';
|
|
10
|
-
import { mediaStore } from '@atlaskit/media-state';
|
|
10
|
+
import { mediaStore } from '@atlaskit/media-state/media-store';
|
|
11
11
|
export var MediaClient = /*#__PURE__*/function () {
|
|
12
12
|
// mobile upload is lazily loaded
|
|
13
13
|
|
|
@@ -2,7 +2,7 @@ import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
|
2
2
|
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
import { getMediaTypeFromMimeType } from '@atlaskit/media-common';
|
|
5
|
-
import { mediaStore } from '@atlaskit/media-state';
|
|
5
|
+
import { mediaStore } from '@atlaskit/media-state/media-store';
|
|
6
6
|
import { getFileStreamsCache } from '../file-streams-cache';
|
|
7
7
|
import { createFileDataloader } from '../utils/createFileDataLoader';
|
|
8
8
|
import { createServicesCache, createMobileUploadStateMachine, createMobileUploadService, createMobileFileStateSubject } from '../utils/mobileUpload';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type AuthProvider } from '@atlaskit/media-core';
|
|
2
2
|
import { type MediaTraceContext } from '@atlaskit/media-common';
|
|
3
|
-
import {
|
|
3
|
+
import type { MediaFileArtifacts } from '@atlaskit/media-state/file-state';
|
|
4
4
|
import { MediaStore as MediaApi, type MediaStoreCopyFileWithTokenParams, type TouchedFiles, type TouchFileDescriptor } from '../media-store';
|
|
5
5
|
import { type GetFileOptions } from '../../models/file-state';
|
|
6
6
|
import { type MediaItemDetails, type MediaFile } from '../../models/media';
|
|
@@ -8,7 +8,8 @@ import { type UploadableFile, type UploadableFileUpfrontIds } from '../../upload
|
|
|
8
8
|
import { type UploadController } from '../../upload-controller';
|
|
9
9
|
import { type MediaSubscribable } from '../../utils/mediaSubscribable';
|
|
10
10
|
import { type Dimensions } from '../../utils/getDimensionsFromBlob';
|
|
11
|
-
import {
|
|
11
|
+
import type { FilePreview, FileState } from '@atlaskit/media-state/file-state';
|
|
12
|
+
import { type MediaStore } from '@atlaskit/media-state/media-store';
|
|
12
13
|
import { type UploadArtifactParams } from '../media-store/types';
|
|
13
14
|
export type { FileFetcherErrorAttributes, FileFetcherErrorReason } from './error';
|
|
14
15
|
export { isFileFetcherError, FileFetcherError } from './error';
|
|
@@ -5,7 +5,7 @@ import { type FileFetcher } from './file-fetcher';
|
|
|
5
5
|
import { type UploadEventPayloadMap, type EventPayloadListener } from './events';
|
|
6
6
|
import { StargateClient } from './stargate-client';
|
|
7
7
|
import { type MobileUpload } from '../models/mobile-upload';
|
|
8
|
-
import { type MediaStore } from '@atlaskit/media-state';
|
|
8
|
+
import { type MediaStore } from '@atlaskit/media-state/media-store';
|
|
9
9
|
export declare class MediaClient {
|
|
10
10
|
readonly mediaClientConfig: MediaClientConfig;
|
|
11
11
|
private readonly store;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type AuthContext, type MediaApiConfig, type Auth } from '@atlaskit/media-core';
|
|
2
2
|
import { type MediaTraceContext } from '@atlaskit/media-common';
|
|
3
|
-
import {
|
|
3
|
+
import type { MediaFileArtifacts } from '@atlaskit/media-state/file-state';
|
|
4
4
|
import type { ItemsPayload, ImageMetadata, MediaStoreResponse, MediaStoreTouchFileParams, TouchFileDescriptor, MediaStoreTouchFileBody, RejectedTouchFile, MediaStoreRequestOptions, MediaStoreCreateFileFromUploadParams, MediaStoreCreateFileFromUploadBody, MediaStoreGetFileParams, MediaStoreGetFileImageParams, MediaStoreCopyFileWithTokenBody, MediaStoreCopyFileWithTokenParams, AppendChunksToUploadRequestBody, TouchedFiles, MediaApi, CopyFileParams } from './types';
|
|
5
5
|
import { type MediaFile, type MediaUpload } from '../../models/media';
|
|
6
6
|
import { ChunkHashAlgorithm } from '@atlaskit/media-core';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Auth, type AsapBasedAuth, type AuthContext, type ClientAltBasedAuth } from '@atlaskit/media-core';
|
|
2
2
|
import { type SSR, type MediaTraceContext } from '@atlaskit/media-common';
|
|
3
|
-
import {
|
|
3
|
+
import type { MediaFileArtifacts } from '@atlaskit/media-state/file-state';
|
|
4
4
|
import { type MediaItemDetails, type MediaFile, type MediaUpload } from '../../models/media';
|
|
5
5
|
import { type ClientOptions, type RequestHeaders, type RequestMethod, type RequestParams, type RequestMetadata } from '../../utils/request/types';
|
|
6
6
|
import { type ChunkHashAlgorithm } from '@atlaskit/media-core';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type MediaStore } from '@atlaskit/media-state';
|
|
1
|
+
import { type MediaStore } from '@atlaskit/media-state/media-store';
|
|
2
2
|
import { type MobileUpload, type MobileUploadStartEvent, type MobileUploadProgressEvent, type MobileUploadEndEvent, type MobileUploadErrorEvent } from '../models/mobile-upload';
|
|
3
3
|
import { type MediaStore as MediaApi } from './media-store';
|
|
4
4
|
export declare class MobileUploadImpl implements MobileUpload {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type LRUMap } from 'lru_map';
|
|
2
2
|
import { type ReplaySubject } from 'rxjs/ReplaySubject';
|
|
3
|
-
import {
|
|
3
|
+
import type { FileState } from '@atlaskit/media-state/file-state';
|
|
4
4
|
export declare class StreamsCache<T> {
|
|
5
5
|
private readonly streams;
|
|
6
6
|
constructor(streams: LRUMap<string, ReplaySubject<T>>);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { MediaFileArtifacts } from '@atlaskit/media-state/file-state';
|
|
2
2
|
export declare const getArtifactUrl: (artifacts: MediaFileArtifacts, prop: keyof MediaFileArtifacts) => string | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ErrorFileState } from '@atlaskit/media-state';
|
|
1
|
+
import type { ErrorFileState } from '@atlaskit/media-state/file-state';
|
|
2
2
|
import type { MediaClientError, MediaClientErrorAttributes, MediaClientErrorReason, MediaClientErrorMetadata } from './types';
|
|
3
3
|
export type { MediaClientError, MediaClientErrorReason, MediaClientErrorAttributes } from './types';
|
|
4
4
|
export { isMediaClientError, getMediaClientErrorReason } from './helpers';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type FileStatus as CommonFileStatus } from '@atlaskit/media-common';
|
|
2
2
|
import { type MediaStoreResponse } from '../client/media-store';
|
|
3
3
|
import { type MediaItemDetails, type MediaFile } from './media';
|
|
4
|
-
import {
|
|
4
|
+
import type { FilePreview, FileState, ErrorFileState, UploadingFileState, ProcessingFileState, ProcessedFileState, ProcessingFailedState, MediaFileArtifacts } from '@atlaskit/media-state/file-state';
|
|
5
5
|
export type FileStatus = CommonFileStatus;
|
|
6
6
|
export interface PreviewOptions {
|
|
7
7
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type MediaType } from './media';
|
|
2
|
-
import {
|
|
2
|
+
import type { ProcessingFailReason } from '@atlaskit/media-state/file-state';
|
|
3
3
|
export type MediaItemType = 'file' | 'external-image';
|
|
4
4
|
export interface FileItem {
|
|
5
5
|
type: 'file';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type MediaTraceContext, type MediaType } from '@atlaskit/media-common';
|
|
2
|
-
import {
|
|
2
|
+
import type { MediaFileArtifacts, ProcessingFailReason } from '@atlaskit/media-state/file-state';
|
|
3
3
|
export type MediaFileProcessingStatus = 'pending' | 'succeeded' | 'failed';
|
|
4
4
|
export type { MediaType } from '@atlaskit/media-common';
|
|
5
5
|
export declare const isPreviewableType: (type: MediaType) => boolean;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ReplaySubject } from 'rxjs/ReplaySubject';
|
|
2
|
-
import {
|
|
2
|
+
import type { FileState } from '@atlaskit/media-state/file-state';
|
|
3
3
|
export declare function createMediaSubject<T extends FileState>(initialState?: T | Error): ReplaySubject<T>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ReplaySubject } from 'rxjs/ReplaySubject';
|
|
2
|
-
import {
|
|
2
|
+
import type { FileState } from '@atlaskit/media-state/file-state';
|
|
3
3
|
import { type MediaSubscribable } from './types';
|
|
4
4
|
export declare function fromObservable(observable: ReplaySubject<FileState>): MediaSubscribable;
|
|
5
5
|
export declare function createMediaSubscribable(item?: FileState | Error): MediaSubscribable;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Subscription } from 'rxjs/Subscription';
|
|
2
2
|
import { type MediaSubscribable } from './types';
|
|
3
|
-
import {
|
|
3
|
+
import type { FileState } from '@atlaskit/media-state/file-state';
|
|
4
4
|
/**
|
|
5
5
|
* This is a helper to transform the first value emitted by an MediaSubscribable into a Promise.
|
|
6
6
|
*
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type Dataloader from 'dataloader';
|
|
2
2
|
import { ReplaySubject } from 'rxjs/ReplaySubject';
|
|
3
3
|
import { type Interpreter } from 'xstate';
|
|
4
|
-
import {
|
|
4
|
+
import type { FileState } from '@atlaskit/media-state/file-state';
|
|
5
5
|
import { type DataloaderKey, type DataloaderResult } from '../createFileDataLoader';
|
|
6
6
|
import { type StateMachineContext, type StateMachineEvent, type StateMachineTypestate } from './stateMachine/types';
|
|
7
7
|
export declare const createMobileFileStateSubject: (service: Interpreter<StateMachineContext, any, StateMachineEvent, StateMachineTypestate>) => ReplaySubject<FileState>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type DataLoader from 'dataloader';
|
|
2
2
|
import { type Interpreter, type StateMachine } from 'xstate';
|
|
3
|
-
import {
|
|
3
|
+
import type { UploadingFileState } from '@atlaskit/media-state/file-state';
|
|
4
4
|
import { type DataloaderKey, type DataloaderResult } from '../../createFileDataLoader';
|
|
5
5
|
import { type StateMachineContext, type StateMachineEvent, type StateMachineSchema, type StateMachineTypestate } from './types';
|
|
6
6
|
export declare const createMobileUploadStateMachine: (dataloader: DataLoader<DataloaderKey, DataloaderResult>, initialState: UploadingFileState, collectionName?: string) => StateMachine<StateMachineContext, any, StateMachineEvent, StateMachineTypestate>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type StateSchema } from 'xstate';
|
|
2
|
-
import {
|
|
2
|
+
import type { FileState, UploadingFileState, ProcessingFileState, ProcessedFileState, ErrorFileState, ProcessingFailedState } from '@atlaskit/media-state/file-state';
|
|
3
3
|
export type StateMachineContext = {
|
|
4
4
|
currentFileState: FileState;
|
|
5
5
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { FileState } from '@atlaskit/media-state/file-state';
|
|
2
2
|
import { type MediaType } from '../models/media';
|
|
3
3
|
export declare const overrideMediaTypeIfUnknown: (fileState: FileState, mediaType?: MediaType) => {
|
|
4
4
|
mediaType?: MediaType;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-client",
|
|
3
|
-
"version": "37.2.
|
|
3
|
+
"version": "37.2.9",
|
|
4
4
|
"description": "Media API Web Client Library",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@atlaskit/chunkinator": "^8.0.0",
|
|
26
26
|
"@atlaskit/media-common": "^14.3.0",
|
|
27
27
|
"@atlaskit/platform-feature-flags": "^2.0.0",
|
|
28
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
28
|
+
"@atlaskit/tmp-editor-statsig": "^128.0.0",
|
|
29
29
|
"@babel/runtime": "^7.0.0",
|
|
30
30
|
"dataloader": "^2.1.0",
|
|
31
31
|
"deep-equal": "^1.0.1",
|