@loadmill/core 0.3.39 → 0.3.43
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/dist/conf/types.d.ts +5 -0
- package/dist/conf/types.js +6 -1
- package/dist/conf/types.js.map +1 -1
- package/dist/har/index.d.ts +8 -1
- package/dist/har/index.js.map +1 -1
- package/dist/multipart-form-data/form-data-utils.d.ts +19 -0
- package/dist/multipart-form-data/form-data-utils.js +116 -0
- package/dist/multipart-form-data/form-data-utils.js.map +1 -0
- package/dist/multipart-form-data/multipart-text-to-post-form-data.d.ts +2 -0
- package/dist/multipart-form-data/multipart-text-to-post-form-data.js +77 -0
- package/dist/multipart-form-data/multipart-text-to-post-form-data.js.map +1 -0
- package/dist/parameters/index.d.ts +1 -0
- package/dist/parameters/index.js +14 -5
- package/dist/parameters/index.js.map +1 -1
- package/dist/parameters/parameter-functions/crypto.d.ts +10 -0
- package/dist/parameters/parameter-functions/crypto.js +56 -0
- package/dist/parameters/parameter-functions/crypto.js.map +1 -0
- package/dist/parameters/parameter-functions/textual-parameter-functions.d.ts +3 -1
- package/dist/parameters/parameter-functions/textual-parameter-functions.js +38 -5
- package/dist/parameters/parameter-functions/textual-parameter-functions.js.map +1 -1
- package/dist/request/index.d.ts +4 -3
- package/dist/request/index.js +1 -1
- package/dist/request/index.js.map +1 -1
- package/package.json +9 -6
- package/src/conf/types.ts +6 -0
- package/src/har/index.ts +9 -1
- package/src/multipart-form-data/form-data-utils.ts +81 -0
- package/src/multipart-form-data/multipart-text-to-post-form-data.ts +89 -0
- package/src/parameters/index.ts +16 -2
- package/src/parameters/parameter-functions/textual-parameter-functions.ts +45 -7
- package/src/request/index.ts +5 -3
- package/test/har/is-har.spec.js +1 -0
- package/test/multipart-form-data/form-data-utils.spec.ts +121 -0
- package/test/multipart-form-data/resources/multipart-form-data-file-text-content.json +5 -0
- package/test/parameters/parameter-functions.spec.js +2 -0
- package/tsconfig.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mimeType": "multipart/form-data; boundary=---------------------------10453916712809342873442003634",
|
|
3
|
+
"params": [],
|
|
4
|
+
"text": "-----------------------------10453916712809342873442003634\r\nContent-Disposition: form-data; name=\"file\"; filename=\"silk_sonic.jpeg\"\r\nContent-Type: image/jpeg\r\n\r\nÿØÿà\u0000\u0010JFIF\u0000\u0001\u0001\u0000\u0000\u0001\u0000\u0001\u0000\u0000ÿÛ\u0000\u0000\u0005\u0003\u0004\t\t\b\t\t\t\t\t\t\t\t\t\u0005u001c\u0017\t\b\u001a\t\t\u0006\u0018!\u0018\u001a\u001d\u001d\u001f\u001f\u001f\u0007\u000b\"\u0018\"\u001e\u0018\u001c\u001e\u001f\u001e\u0001\u0005\u0005\u0005\b\u0007\b\u000e\b\b\r\u0012\r\u000e\r\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012\u0012R#B?\u00005Ù\r\n-----------------------------10453916712809342873442003634--\r\n"
|
|
5
|
+
}
|