@capillarytech/creatives-library 8.0.241 → 8.0.242-alpha.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 +1 -1
- package/sagas/__tests__/assetPolling.test.js +607 -0
- package/sagas/assetPolling.js +156 -0
- package/services/api.js +16 -0
- package/services/tests/api.test.js +124 -0
- package/translations/en.json +1 -0
- package/utils/assetStatusConstants.js +12 -0
- package/utils/asyncAssetUpload.js +161 -0
- package/utils/tests/asyncAssetUpload.test.js +292 -0
- package/utils/transformerUtils.js +42 -0
- package/v2Components/CapImageUpload/constants.js +2 -0
- package/v2Components/CapImageUpload/index.js +54 -14
- package/v2Components/CapImageUpload/index.scss +4 -1
- package/v2Components/CapImageUpload/messages.js +4 -0
- package/v2Components/CapImageUrlUpload/constants.js +19 -0
- package/v2Components/CapImageUrlUpload/index.js +455 -0
- package/v2Components/CapImageUrlUpload/index.scss +35 -0
- package/v2Components/CapImageUrlUpload/messages.js +47 -0
- package/v2Containers/App/constants.js +5 -0
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +1 -0
- package/v2Containers/CreativesContainer/SlideBoxContent.js +57 -2
- package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -0
- package/v2Containers/CreativesContainer/constants.js +2 -0
- package/v2Containers/CreativesContainer/index.js +152 -0
- package/v2Containers/CreativesContainer/messages.js +4 -0
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +3 -0
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +2 -0
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +25 -0
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +18 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +46 -0
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +4 -0
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +8 -0
- package/v2Containers/Templates/ChannelTypeIllustration.js +13 -1
- package/v2Containers/Templates/_templates.scss +203 -0
- package/v2Containers/Templates/actions.js +2 -1
- package/v2Containers/Templates/constants.js +1 -0
- package/v2Containers/Templates/index.js +273 -30
- package/v2Containers/Templates/messages.js +24 -0
- package/v2Containers/Templates/reducer.js +2 -0
- package/v2Containers/Templates/tests/index.test.js +10 -0
- package/v2Containers/TemplatesV2/index.js +3 -2
- package/v2Containers/TemplatesV2/messages.js +4 -0
- package/v2Containers/WebPush/Create/components/ButtonForm.js +175 -0
- package/v2Containers/WebPush/Create/components/ButtonItem.js +101 -0
- package/v2Containers/WebPush/Create/components/ButtonList.js +144 -0
- package/v2Containers/WebPush/Create/components/_buttons.scss +246 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonForm.test.js +554 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonItem.test.js +607 -0
- package/v2Containers/WebPush/Create/components/tests/ButtonList.test.js +633 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonForm.test.js.snap +666 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonItem.test.js.snap +74 -0
- package/v2Containers/WebPush/Create/components/tests/__snapshots__/ButtonList.test.js.snap +80 -0
- package/v2Containers/WebPush/Create/index.js +1755 -0
- package/v2Containers/WebPush/Create/index.scss +123 -0
- package/v2Containers/WebPush/Create/messages.js +199 -0
- package/v2Containers/WebPush/Create/preview/DevicePreviewContent.js +241 -0
- package/v2Containers/WebPush/Create/preview/NotificationContainer.js +290 -0
- package/v2Containers/WebPush/Create/preview/PreviewContent.js +81 -0
- package/v2Containers/WebPush/Create/preview/PreviewControls.js +240 -0
- package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +23 -0
- package/v2Containers/WebPush/Create/preview/WebPushPreview.js +144 -0
- package/v2Containers/WebPush/Create/preview/assets/Light.svg +53 -0
- package/v2Containers/WebPush/Create/preview/assets/Top.svg +5 -0
- package/v2Containers/WebPush/Create/preview/assets/chrome-icon.png +0 -0
- package/v2Containers/WebPush/Create/preview/assets/edge-icon.png +0 -0
- package/v2Containers/WebPush/Create/preview/assets/firefox-icon.svg +106 -0
- package/v2Containers/WebPush/Create/preview/assets/iOS.svg +26 -0
- package/v2Containers/WebPush/Create/preview/assets/opera-icon.svg +18 -0
- package/v2Containers/WebPush/Create/preview/assets/safari-icon.svg +29 -0
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +44 -0
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +110 -0
- package/v2Containers/WebPush/Create/preview/components/IOSHeader.js +45 -0
- package/v2Containers/WebPush/Create/preview/components/NotificationExpandedContent.js +72 -0
- package/v2Containers/WebPush/Create/preview/components/NotificationHeader.js +55 -0
- package/v2Containers/WebPush/Create/preview/components/WindowsChromeExpanded.js +70 -0
- package/v2Containers/WebPush/Create/preview/components/tests/AndroidMobileExpanded.test.js +512 -0
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +77 -0
- package/v2Containers/WebPush/Create/preview/config/notificationMappings.js +527 -0
- package/v2Containers/WebPush/Create/preview/constants.js +162 -0
- package/v2Containers/WebPush/Create/preview/notification-container.scss +104 -0
- package/v2Containers/WebPush/Create/preview/preview.scss +409 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-chrome.scss +300 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-edge.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-firefox.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-mobile-opera.scss +12 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-chrome.scss +303 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-edge.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-firefox.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_android-tablet-opera.scss +11 -0
- package/v2Containers/WebPush/Create/preview/styles/_base.scss +188 -0
- package/v2Containers/WebPush/Create/preview/styles/_ios.scss +106 -0
- package/v2Containers/WebPush/Create/preview/styles/_ipados.scss +107 -0
- package/v2Containers/WebPush/Create/preview/styles/_macos-chrome.scss +75 -0
- package/v2Containers/WebPush/Create/preview/styles/_windows-chrome.scss +174 -0
- package/v2Containers/WebPush/Create/preview/tests/DevicePreviewContent.test.js +909 -0
- package/v2Containers/WebPush/Create/preview/tests/NotificationContainer.test.js +1077 -0
- package/v2Containers/WebPush/Create/preview/tests/PreviewControls.test.js +723 -0
- package/v2Containers/WebPush/Create/preview/tests/WebPushPreview.test.js +943 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/DevicePreviewContent.test.js.snap +128 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/NotificationContainer.test.js.snap +121 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/PreviewControls.test.js.snap +144 -0
- package/v2Containers/WebPush/Create/preview/tests/__snapshots__/WebPushPreview.test.js.snap +127 -0
- package/v2Containers/WebPush/Create/utils/urlValidation.js +116 -0
- package/v2Containers/WebPush/Create/utils/urlValidation.test.js +449 -0
- package/v2Containers/WebPush/actions.js +60 -0
- package/v2Containers/WebPush/constants.js +108 -0
- package/v2Containers/WebPush/index.js +2 -0
- package/v2Containers/WebPush/reducer.js +104 -0
- package/v2Containers/WebPush/sagas.js +119 -0
- package/v2Containers/WebPush/selectors.js +65 -0
- package/v2Containers/WebPush/tests/reducer.test.js +863 -0
- package/v2Containers/WebPush/tests/sagas.test.js +566 -0
- package/v2Containers/WebPush/tests/selectors.test.js +960 -0
- package/v2Containers/Whatsapp/constants.js +9 -0
- package/v2Containers/Whatsapp/reducer.js +34 -5
- package/v2Containers/Whatsapp/sagas.js +61 -10
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +132 -0
- package/v2Containers/Whatsapp/tests/reducer.test.js +188 -0
- package/v2Containers/Whatsapp/tests/saga.test.js +420 -7
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/*
|
|
2
|
+
*
|
|
3
|
+
* WebPush reducer
|
|
4
|
+
*
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { fromJS } from "immutable";
|
|
8
|
+
import * as types from "./constants";
|
|
9
|
+
|
|
10
|
+
const initialState = fromJS({
|
|
11
|
+
createTemplateInProgress: false,
|
|
12
|
+
response: {},
|
|
13
|
+
createTemplateErrorMessage: "",
|
|
14
|
+
editTemplateInProgress: false,
|
|
15
|
+
editResponse: {},
|
|
16
|
+
editTemplateErrorMessage: "",
|
|
17
|
+
uploadedAssetData: {},
|
|
18
|
+
uploadAssetSuccess: false,
|
|
19
|
+
assetUploading: false,
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
export function webPushReducer(state = initialState, action) {
|
|
23
|
+
// Handle null or undefined action
|
|
24
|
+
if (!action || typeof action !== 'object') {
|
|
25
|
+
return state;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
switch (action.type) {
|
|
29
|
+
case types.DEFAULT_ACTION:
|
|
30
|
+
return state;
|
|
31
|
+
case types.CREATE_TEMPLATE_REQUEST:
|
|
32
|
+
return state
|
|
33
|
+
.set("createTemplateInProgress", true)
|
|
34
|
+
.set("createTemplateError", false)
|
|
35
|
+
.set("createTemplateErrorMessage", fromJS(""));
|
|
36
|
+
case types.CREATE_TEMPLATE_SUCCESS:
|
|
37
|
+
return state
|
|
38
|
+
.set("createTemplateInProgress", false)
|
|
39
|
+
.set("response", action.data)
|
|
40
|
+
.set(
|
|
41
|
+
"createTemplateError",
|
|
42
|
+
action.statusCode !== undefined && action.statusCode > 300
|
|
43
|
+
);
|
|
44
|
+
case types.CREATE_TEMPLATE_FAILURE:
|
|
45
|
+
return state
|
|
46
|
+
.set("createTemplateInProgress", false)
|
|
47
|
+
.set("createTemplateError", true)
|
|
48
|
+
.set("createTemplateErrorMessage", fromJS(action.error));
|
|
49
|
+
case types.CLEAR_CREATE_RESPONSE_REQUEST:
|
|
50
|
+
return state.set("response", {});
|
|
51
|
+
case types.EDIT_TEMPLATE_REQUEST:
|
|
52
|
+
return state
|
|
53
|
+
.set("editTemplateInProgress", true)
|
|
54
|
+
.set("editTemplateError", false)
|
|
55
|
+
.set("editTemplateErrorMessage", fromJS(""));
|
|
56
|
+
case types.EDIT_TEMPLATE_SUCCESS:
|
|
57
|
+
return state
|
|
58
|
+
.set("editTemplateInProgress", false)
|
|
59
|
+
.set("editResponse", action.data)
|
|
60
|
+
.set(
|
|
61
|
+
"editTemplateError",
|
|
62
|
+
action.statusCode !== undefined && action.statusCode > 300
|
|
63
|
+
);
|
|
64
|
+
case types.EDIT_TEMPLATE_FAILURE:
|
|
65
|
+
return state
|
|
66
|
+
.set("editTemplateInProgress", false)
|
|
67
|
+
.set("editTemplateError", true)
|
|
68
|
+
.set("editTemplateErrorMessage", fromJS(action.error || action.errorMsg || ""));
|
|
69
|
+
case types.CLEAR_EDIT_RESPONSE_REQUEST:
|
|
70
|
+
return state.set("editResponse", {});
|
|
71
|
+
case types.UPLOAD_WEBPUSH_ASSET_REQUEST:
|
|
72
|
+
return state.set("uploadAssetSuccess", false).set("assetUploading", true);
|
|
73
|
+
case types.UPLOAD_WEBPUSH_ASSET_SUCCESS:
|
|
74
|
+
return state
|
|
75
|
+
.set(
|
|
76
|
+
"uploadAssetSuccess",
|
|
77
|
+
action.statusCode !== undefined &&
|
|
78
|
+
action.statusCode !== "" &&
|
|
79
|
+
action.statusCode < 300,
|
|
80
|
+
)
|
|
81
|
+
.set("assetUploading", false)
|
|
82
|
+
.set(
|
|
83
|
+
action.templateType !== undefined
|
|
84
|
+
? `uploadedAssetData${action.templateType}`
|
|
85
|
+
: "uploadedAssetData",
|
|
86
|
+
action.data,
|
|
87
|
+
);
|
|
88
|
+
case types.UPLOAD_WEBPUSH_ASSET_FAILURE:
|
|
89
|
+
return state
|
|
90
|
+
.set("uploadAssetSuccess", false)
|
|
91
|
+
.set("assetUploading", false);
|
|
92
|
+
case types.CLEAR_WEBPUSH_ASSET:
|
|
93
|
+
return state.delete(
|
|
94
|
+
action.templateType !== undefined
|
|
95
|
+
? `uploadedAssetData${action.templateType}`
|
|
96
|
+
: "uploadedAssetData",
|
|
97
|
+
);
|
|
98
|
+
default:
|
|
99
|
+
return state;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export default webPushReducer;
|
|
104
|
+
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import {
|
|
2
|
+
call, put, takeLatest, all,
|
|
3
|
+
} from 'redux-saga/effects';
|
|
4
|
+
import * as Api from '../../services/api';
|
|
5
|
+
import * as types from './constants';
|
|
6
|
+
|
|
7
|
+
export function* createTemplate({ template, callback, meta }) {
|
|
8
|
+
let errorMsg;
|
|
9
|
+
try {
|
|
10
|
+
const result = yield call(Api.createWebPushTemplate, template);
|
|
11
|
+
if (result.status && result.status.code >= 400) {
|
|
12
|
+
errorMsg = result.message;
|
|
13
|
+
throw errorMsg;
|
|
14
|
+
}
|
|
15
|
+
if (result.message) {
|
|
16
|
+
errorMsg = result.message;
|
|
17
|
+
}
|
|
18
|
+
// Merge meta into response if provided
|
|
19
|
+
const responseWithMeta = meta ? { ...result.response, meta } : result.response;
|
|
20
|
+
if (callback) {
|
|
21
|
+
yield call(callback, responseWithMeta);
|
|
22
|
+
}
|
|
23
|
+
yield put({
|
|
24
|
+
type: types.CREATE_TEMPLATE_SUCCESS,
|
|
25
|
+
data: responseWithMeta,
|
|
26
|
+
statusCode: result.status ? result.status.code : '',
|
|
27
|
+
errorMsg,
|
|
28
|
+
});
|
|
29
|
+
} catch (error) {
|
|
30
|
+
yield put({ type: types.CREATE_TEMPLATE_FAILURE, error, errorMsg });
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function* clearCreateResponse() {
|
|
35
|
+
yield put({ type: types.CLEAR_CREATE_RESPONSE_SUCCESS });
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function* editTemplate({ template, callback }) {
|
|
39
|
+
let errorMsg;
|
|
40
|
+
try {
|
|
41
|
+
const result = yield call(Api.createWebPushTemplate, template);
|
|
42
|
+
if (result.status && result.status.code >= 400) {
|
|
43
|
+
errorMsg = result.message;
|
|
44
|
+
throw errorMsg;
|
|
45
|
+
}
|
|
46
|
+
if (result.message) {
|
|
47
|
+
errorMsg = result.message;
|
|
48
|
+
}
|
|
49
|
+
if (callback) {
|
|
50
|
+
callback(result.response, errorMsg);
|
|
51
|
+
}
|
|
52
|
+
yield put({
|
|
53
|
+
type: types.EDIT_TEMPLATE_SUCCESS,
|
|
54
|
+
data: result.response,
|
|
55
|
+
statusCode: result.status ? result.status.code : '',
|
|
56
|
+
errorMsg,
|
|
57
|
+
});
|
|
58
|
+
} catch (error) {
|
|
59
|
+
yield put({ type: types.EDIT_TEMPLATE_FAILURE, error, errorMsg });
|
|
60
|
+
if (callback) {
|
|
61
|
+
callback(null, errorMsg);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function* clearEditResponse() {
|
|
67
|
+
yield put({ type: types.CLEAR_EDIT_RESPONSE_SUCCESS });
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function* uploadWebPushAsset({ file, assetType, fileParams, templateType }) {
|
|
71
|
+
try {
|
|
72
|
+
const result = yield call(Api.uploadFile, {
|
|
73
|
+
file,
|
|
74
|
+
assetType,
|
|
75
|
+
fileParams,
|
|
76
|
+
});
|
|
77
|
+
yield put({
|
|
78
|
+
type: types.UPLOAD_WEBPUSH_ASSET_SUCCESS,
|
|
79
|
+
data: result?.response?.asset,
|
|
80
|
+
statusCode: result?.status?.code || '',
|
|
81
|
+
templateType,
|
|
82
|
+
});
|
|
83
|
+
} catch (error) {
|
|
84
|
+
yield put({ type: types.UPLOAD_WEBPUSH_ASSET_FAILURE, error });
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export function* watchCreateTemplate() {
|
|
89
|
+
yield takeLatest(types.CREATE_TEMPLATE_REQUEST, createTemplate);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function* watchClearCreateResponse() {
|
|
93
|
+
yield takeLatest(types.CLEAR_CREATE_RESPONSE_REQUEST, clearCreateResponse);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export function* watchEditTemplate() {
|
|
97
|
+
yield takeLatest(types.EDIT_TEMPLATE_REQUEST, editTemplate);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export function* watchClearEditResponse() {
|
|
101
|
+
yield takeLatest(types.CLEAR_EDIT_RESPONSE_REQUEST, clearEditResponse);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export function* watchUploadWebPushAsset() {
|
|
105
|
+
yield takeLatest(
|
|
106
|
+
types.UPLOAD_WEBPUSH_ASSET_REQUEST,
|
|
107
|
+
uploadWebPushAsset,
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export default function* webPushSagas() {
|
|
112
|
+
yield all([
|
|
113
|
+
watchCreateTemplate(),
|
|
114
|
+
watchClearCreateResponse(),
|
|
115
|
+
watchEditTemplate(),
|
|
116
|
+
watchClearEditResponse(),
|
|
117
|
+
watchUploadWebPushAsset(),
|
|
118
|
+
]);
|
|
119
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { createSelector } from 'reselect';
|
|
2
|
+
import { fromJS } from 'immutable';
|
|
3
|
+
|
|
4
|
+
// Selectors for WebPush
|
|
5
|
+
const selectWebPushDomain = () => (state) => state.get('webPush') || fromJS({});
|
|
6
|
+
|
|
7
|
+
const makeSelectWebPush = () => createSelector(
|
|
8
|
+
selectWebPushDomain(),
|
|
9
|
+
(substate) => substate.toJS()
|
|
10
|
+
);
|
|
11
|
+
|
|
12
|
+
const makeSelectCreateError = () => createSelector(
|
|
13
|
+
selectWebPushDomain(),
|
|
14
|
+
(dimensionState) => dimensionState.get('createTemplateErrorMessage') || ""
|
|
15
|
+
);
|
|
16
|
+
|
|
17
|
+
const makeSelectCreateTemplateInProgress = () => createSelector(
|
|
18
|
+
selectWebPushDomain(),
|
|
19
|
+
(substate) => substate.get('createTemplateInProgress') || false
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
const makeSelectEditTemplateInProgress = () => createSelector(
|
|
23
|
+
selectWebPushDomain(),
|
|
24
|
+
(substate) => substate.get('editTemplateInProgress') || false
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
const makeSelectEditError = () => createSelector(
|
|
28
|
+
selectWebPushDomain(),
|
|
29
|
+
(dimensionState) => dimensionState.get('editTemplateErrorMessage') || ""
|
|
30
|
+
);
|
|
31
|
+
|
|
32
|
+
const makeSelectUploadedAssetData = (templateType) => createSelector(
|
|
33
|
+
selectWebPushDomain(),
|
|
34
|
+
(substate) => {
|
|
35
|
+
// Compute the key based on templateType (matches reducer logic)
|
|
36
|
+
const key = templateType !== undefined
|
|
37
|
+
? `uploadedAssetData${templateType}`
|
|
38
|
+
: 'uploadedAssetData';
|
|
39
|
+
|
|
40
|
+
const uploadedAssetData = substate.get(key);
|
|
41
|
+
|
|
42
|
+
if (!uploadedAssetData) {
|
|
43
|
+
return {};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Safe: handle both Immutable and plain JS values
|
|
47
|
+
// If it's Immutable, convert to JS; if already plain JS, return as-is
|
|
48
|
+
if (uploadedAssetData && typeof uploadedAssetData.toJS === 'function') {
|
|
49
|
+
return uploadedAssetData.toJS();
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Already plain JS object (from reducer storing action.data directly)
|
|
53
|
+
return uploadedAssetData;
|
|
54
|
+
}
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
export {
|
|
58
|
+
makeSelectWebPush,
|
|
59
|
+
makeSelectCreateError,
|
|
60
|
+
makeSelectCreateTemplateInProgress,
|
|
61
|
+
makeSelectEditTemplateInProgress,
|
|
62
|
+
makeSelectEditError,
|
|
63
|
+
makeSelectUploadedAssetData,
|
|
64
|
+
};
|
|
65
|
+
|