videomail-client 11.0.2 → 11.0.3
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/cjs/index.cjs
CHANGED
|
@@ -10649,7 +10649,7 @@ var __webpack_exports__ = {};
|
|
|
10649
10649
|
var client = __webpack_require__("./node_modules/superagent/lib/client.js");
|
|
10650
10650
|
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
|
|
10651
10651
|
var package_namespaceObject = {
|
|
10652
|
-
rE: "11.0.
|
|
10652
|
+
rE: "11.0.3"
|
|
10653
10653
|
};
|
|
10654
10654
|
var defined = __webpack_require__("./node_modules/defined/index.js");
|
|
10655
10655
|
var defined_default = /*#__PURE__*/ __webpack_require__.n(defined);
|
package/dist/esm/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EmailAddress } from "./EmailAddress";
|
|
2
2
|
interface DeliveryReport {
|
|
3
|
-
userKey
|
|
3
|
+
userKey: string | false;
|
|
4
4
|
}
|
|
5
|
-
type DeliveryRecord = Record<EmailAddress, DeliveryReport
|
|
5
|
+
type DeliveryRecord = Record<EmailAddress, DeliveryReport>;
|
|
6
6
|
export default DeliveryRecord;
|
|
@@ -77,37 +77,37 @@ declare class Form extends Despot {
|
|
|
77
77
|
width?: number | undefined | undefined;
|
|
78
78
|
sentTo?: {
|
|
79
79
|
[x: string]: {
|
|
80
|
-
userKey?: string |
|
|
80
|
+
userKey?: string | false;
|
|
81
81
|
} | undefined;
|
|
82
82
|
};
|
|
83
83
|
sentCc?: {
|
|
84
84
|
[x: string]: {
|
|
85
|
-
userKey?: string |
|
|
85
|
+
userKey?: string | false;
|
|
86
86
|
} | undefined;
|
|
87
87
|
};
|
|
88
88
|
sentBcc?: {
|
|
89
89
|
[x: string]: {
|
|
90
|
-
userKey?: string |
|
|
90
|
+
userKey?: string | false;
|
|
91
91
|
} | undefined;
|
|
92
92
|
};
|
|
93
93
|
rejectedTo?: {
|
|
94
94
|
[x: string]: {
|
|
95
|
-
userKey?: string |
|
|
95
|
+
userKey?: string | false;
|
|
96
96
|
} | undefined;
|
|
97
97
|
};
|
|
98
98
|
rejectedCc?: {
|
|
99
99
|
[x: string]: {
|
|
100
|
-
userKey?: string |
|
|
100
|
+
userKey?: string | false;
|
|
101
101
|
} | undefined;
|
|
102
102
|
};
|
|
103
103
|
rejectedBcc?: {
|
|
104
104
|
[x: string]: {
|
|
105
|
-
userKey?: string |
|
|
105
|
+
userKey?: string | false;
|
|
106
106
|
} | undefined;
|
|
107
107
|
};
|
|
108
108
|
accepted?: {
|
|
109
109
|
[x: string]: {
|
|
110
|
-
userKey?: string |
|
|
110
|
+
userKey?: string | false;
|
|
111
111
|
} | undefined;
|
|
112
112
|
};
|
|
113
113
|
};
|
|
@@ -173,37 +173,37 @@ declare class Form extends Despot {
|
|
|
173
173
|
width?: number | undefined | undefined;
|
|
174
174
|
sentTo?: {
|
|
175
175
|
[x: string]: {
|
|
176
|
-
userKey?: string |
|
|
176
|
+
userKey?: string | false;
|
|
177
177
|
} | undefined;
|
|
178
178
|
};
|
|
179
179
|
sentCc?: {
|
|
180
180
|
[x: string]: {
|
|
181
|
-
userKey?: string |
|
|
181
|
+
userKey?: string | false;
|
|
182
182
|
} | undefined;
|
|
183
183
|
};
|
|
184
184
|
sentBcc?: {
|
|
185
185
|
[x: string]: {
|
|
186
|
-
userKey?: string |
|
|
186
|
+
userKey?: string | false;
|
|
187
187
|
} | undefined;
|
|
188
188
|
};
|
|
189
189
|
rejectedTo?: {
|
|
190
190
|
[x: string]: {
|
|
191
|
-
userKey?: string |
|
|
191
|
+
userKey?: string | false;
|
|
192
192
|
} | undefined;
|
|
193
193
|
};
|
|
194
194
|
rejectedCc?: {
|
|
195
195
|
[x: string]: {
|
|
196
|
-
userKey?: string |
|
|
196
|
+
userKey?: string | false;
|
|
197
197
|
} | undefined;
|
|
198
198
|
};
|
|
199
199
|
rejectedBcc?: {
|
|
200
200
|
[x: string]: {
|
|
201
|
-
userKey?: string |
|
|
201
|
+
userKey?: string | false;
|
|
202
202
|
} | undefined;
|
|
203
203
|
};
|
|
204
204
|
accepted?: {
|
|
205
205
|
[x: string]: {
|
|
206
|
-
userKey?: string |
|
|
206
|
+
userKey?: string | false;
|
|
207
207
|
} | undefined;
|
|
208
208
|
};
|
|
209
209
|
};
|
package/dist/umd/index.js
CHANGED
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
var client = __webpack_require__("./node_modules/superagent/lib/client.js");
|
|
177
177
|
var client_default = /*#__PURE__*/ __webpack_require__.n(client);
|
|
178
178
|
var package_namespaceObject = {
|
|
179
|
-
rE: "11.0.
|
|
179
|
+
rE: "11.0.3"
|
|
180
180
|
};
|
|
181
181
|
var defined = __webpack_require__("./node_modules/defined/index.js");
|
|
182
182
|
var defined_default = /*#__PURE__*/ __webpack_require__.n(defined);
|