curtain-web-api 1.0.81 → 1.0.82
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.
|
@@ -346,6 +346,9 @@ export class CurtainWebAPI {
|
|
|
346
346
|
if ("expiry_duration" in sessionData) {
|
|
347
347
|
form.append("expiry_duration", sessionData["expiry_duration"].toString());
|
|
348
348
|
}
|
|
349
|
+
if ("name" in sessionData) {
|
|
350
|
+
form.append("name", sessionData["name"]);
|
|
351
|
+
}
|
|
349
352
|
if (encryption.encrypted) {
|
|
350
353
|
form.append("encrypted", "True");
|
|
351
354
|
}
|
package/package.json
CHANGED
|
@@ -545,6 +545,10 @@ export class CurtainWebAPI {
|
|
|
545
545
|
form.append("expiry_duration", sessionData["expiry_duration"].toString())
|
|
546
546
|
}
|
|
547
547
|
|
|
548
|
+
if ("name" in sessionData) {
|
|
549
|
+
form.append("name", sessionData["name"])
|
|
550
|
+
}
|
|
551
|
+
|
|
548
552
|
if (encryption.encrypted) {
|
|
549
553
|
form.append("encrypted", "True")
|
|
550
554
|
} else {
|