@webex/plugin-attachment-actions 2.59.3-next.1 → 2.59.4
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/.eslintrc.js +6 -6
- package/README.md +41 -41
- package/babel.config.js +3 -3
- package/dist/attachmentActions.js +196 -196
- package/dist/attachmentActions.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/jest.config.js +3 -3
- package/package.json +20 -21
- package/process +1 -1
- package/src/attachmentActions.js +317 -317
- package/src/index.js +14 -14
- package/test/integration/spec/attachmentActions.js +324 -324
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["require","_webexCore","_attachmentActions","_interopRequireDefault","registerPlugin","AttachmentActions","_default","exports","default"],"sources":["index.js"],"sourcesContent":["/*!\
|
|
1
|
+
{"version":3,"names":["require","_webexCore","_attachmentActions","_interopRequireDefault","registerPlugin","AttachmentActions","_default","exports","default"],"sources":["index.js"],"sourcesContent":["/*!\n * Copyright (c) 2015-2017 Cisco Systems, Inc. See LICENSE file.\n */\n\nimport '@webex/internal-plugin-conversation'; // decrypt mercury activities\nimport '@webex/internal-plugin-mercury';\n\nimport {registerPlugin} from '@webex/webex-core';\n\nimport AttachmentActions from './attachmentActions';\n\nregisterPlugin('attachmentActions', AttachmentActions);\n\nexport default AttachmentActions;\n"],"mappings":";;;;;;;;AAIAA,OAAA;AACAA,OAAA;AAEA,IAAAC,UAAA,GAAAD,OAAA;AAEA,IAAAE,kBAAA,GAAAC,sBAAA,CAAAH,OAAA;AATA;AACA;AACA;;AAE8C;;AAO9C,IAAAI,yBAAc,EAAC,mBAAmB,EAAEC,0BAAiB,CAAC;AAAC,IAAAC,QAAA,GAExCD,0BAAiB;AAAAE,OAAA,CAAAC,OAAA,GAAAF,QAAA"}
|
package/jest.config.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
const config = require('@webex/jest-config-legacy');
|
|
2
|
-
|
|
3
|
-
module.exports = config;
|
|
1
|
+
const config = require('@webex/jest-config-legacy');
|
|
2
|
+
|
|
3
|
+
module.exports = config;
|
package/package.json
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webex/plugin-attachment-actions",
|
|
3
|
+
"version": "2.59.4",
|
|
3
4
|
"description": "",
|
|
4
5
|
"license": "MIT",
|
|
5
6
|
"contributors": [
|
|
@@ -22,22 +23,21 @@
|
|
|
22
23
|
]
|
|
23
24
|
},
|
|
24
25
|
"dependencies": {
|
|
25
|
-
"@webex/common": "
|
|
26
|
-
"@webex/internal-plugin-conversation": "
|
|
27
|
-
"@webex/internal-plugin-mercury": "
|
|
28
|
-
"@webex/plugin-logger": "
|
|
29
|
-
"@webex/plugin-messages": "
|
|
30
|
-
"@webex/plugin-people": "
|
|
31
|
-
"@webex/test-helper-chai": "
|
|
32
|
-
"@webex/test-helper-test-users": "
|
|
33
|
-
"@webex/webex-core": "
|
|
26
|
+
"@webex/common": "2.59.4",
|
|
27
|
+
"@webex/internal-plugin-conversation": "2.59.4",
|
|
28
|
+
"@webex/internal-plugin-mercury": "2.59.4",
|
|
29
|
+
"@webex/plugin-logger": "2.59.4",
|
|
30
|
+
"@webex/plugin-messages": "2.59.4",
|
|
31
|
+
"@webex/plugin-people": "2.59.4",
|
|
32
|
+
"@webex/test-helper-chai": "2.59.4",
|
|
33
|
+
"@webex/test-helper-test-users": "2.59.4",
|
|
34
|
+
"@webex/webex-core": "2.59.4",
|
|
34
35
|
"debug": "^4.3.4",
|
|
35
36
|
"lodash": "^4.17.21"
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
39
|
"build": "yarn build:src",
|
|
39
40
|
"build:src": "webex-legacy-tools build -dest \"./dist\" -src \"./src\" -js -ts -maps",
|
|
40
|
-
"deploy:npm": "yarn npm publish",
|
|
41
41
|
"test": "yarn test:style && yarn test:unit && yarn test:integration && yarn test:browser",
|
|
42
42
|
"test:browser": "webex-legacy-tools test --integration --unit --runner karma",
|
|
43
43
|
"test:integration": "webex-legacy-tools test --integration --runner mocha",
|
|
@@ -46,16 +46,15 @@
|
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@babel/core": "^7.17.10",
|
|
49
|
-
"@webex/babel-config-legacy": "
|
|
50
|
-
"@webex/eslint-config-legacy": "
|
|
51
|
-
"@webex/jest-config-legacy": "
|
|
52
|
-
"@webex/legacy-tools": "
|
|
53
|
-
"@webex/test-helper-chai": "
|
|
54
|
-
"@webex/test-helper-mocha": "
|
|
55
|
-
"@webex/test-helper-mock-webex": "
|
|
56
|
-
"@webex/test-helper-test-users": "
|
|
49
|
+
"@webex/babel-config-legacy": "2.59.4",
|
|
50
|
+
"@webex/eslint-config-legacy": "2.59.4",
|
|
51
|
+
"@webex/jest-config-legacy": "2.59.4",
|
|
52
|
+
"@webex/legacy-tools": "2.59.4",
|
|
53
|
+
"@webex/test-helper-chai": "2.59.4",
|
|
54
|
+
"@webex/test-helper-mocha": "2.59.4",
|
|
55
|
+
"@webex/test-helper-mock-webex": "2.59.4",
|
|
56
|
+
"@webex/test-helper-test-users": "2.59.4",
|
|
57
57
|
"eslint": "^8.24.0",
|
|
58
58
|
"prettier": "^2.7.1"
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
}
|
|
59
|
+
}
|
|
60
|
+
}
|
package/process
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = {browser: true};
|
|
1
|
+
module.exports = {browser: true};
|