@marcoappio/marco-config 2.0.115 → 2.0.116
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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/types/ContactAssociationType.d.ts +8 -0
- package/dist/types/ContactAssociationType.d.ts.map +1 -0
- package/dist/types/ContactAssociationType.js +8 -0
- package/dist/types/IMAPPasswordConfigStatus.d.ts +0 -7
- package/dist/types/IMAPPasswordConfigStatus.d.ts.map +1 -1
- package/dist/types/IMAPPasswordConfigStatus.js +0 -8
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { marcoClients } from './clients';
|
|
2
2
|
export { marcoPublicConfig, MARCO_ENV, MarcoEnvironment } from './marcoPublicConfig';
|
|
3
3
|
export { marcoSDK } from './sdk';
|
|
4
|
-
export { MarcoWSEvent, MarcoClient, MarcoWSSyncPoke, EndpointConfig, EndpointError, EndpointResponse, IMAPPasswordConfigStatus } from './types';
|
|
4
|
+
export { ContactAssociationType, MarcoWSEvent, MarcoClient, MarcoWSSyncPoke, EndpointConfig, EndpointError, EndpointResponse, IMAPPasswordConfigStatus } from './types';
|
|
5
5
|
export { marcoSchemas } from './schemas';
|
|
6
6
|
export { marcoWS } from './ws';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AACxC,OAAO,EAAE,iBAAiB,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACpF,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,gBAAgB,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AACxC,OAAO,EAAE,iBAAiB,EAAE,SAAS,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AACpF,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,OAAO,EAAE,sBAAsB,EAAE,YAAY,EAAE,WAAW,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,EAAE,gBAAgB,EAAE,wBAAwB,EAAE,MAAM,SAAS,CAAA;AACvK,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AACxC,OAAO,EAAE,OAAO,EAAE,MAAM,MAAM,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { marcoClients } from './clients';
|
|
2
2
|
export { marcoPublicConfig, MARCO_ENV } from './marcoPublicConfig';
|
|
3
3
|
export { marcoSDK } from './sdk';
|
|
4
|
-
export { IMAPPasswordConfigStatus } from './types';
|
|
4
|
+
export { ContactAssociationType, IMAPPasswordConfigStatus } from './types';
|
|
5
5
|
export { marcoSchemas } from './schemas';
|
|
6
6
|
export { marcoWS } from './ws';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContactAssociationType.d.ts","sourceRoot":"","sources":["../../src/types/ContactAssociationType.ts"],"names":[],"mappings":"AAAA,oBAAY,sBAAsB;IAChC,GAAG,QAAQ;IACX,EAAE,OAAO;IACT,IAAI,SAAS;IACb,QAAQ,aAAa;IACrB,EAAE,OAAO;CACV"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export var ContactAssociationType;
|
|
2
|
+
(function (ContactAssociationType) {
|
|
3
|
+
ContactAssociationType["BCC"] = "BCC";
|
|
4
|
+
ContactAssociationType["CC"] = "CC";
|
|
5
|
+
ContactAssociationType["FROM"] = "FROM";
|
|
6
|
+
ContactAssociationType["REPLY_TO"] = "REPLY_TO";
|
|
7
|
+
ContactAssociationType["TO"] = "TO";
|
|
8
|
+
})(ContactAssociationType || (ContactAssociationType = {}));
|
|
@@ -3,11 +3,4 @@ export declare enum IMAPPasswordConfigStatus {
|
|
|
3
3
|
CONNECTED = "CONNECTED",
|
|
4
4
|
CONNECTION_FAILED = "CONNECTION_FAILED"
|
|
5
5
|
}
|
|
6
|
-
export declare enum ContactAssociationType {
|
|
7
|
-
BCC = "BCC",
|
|
8
|
-
CC = "CC",
|
|
9
|
-
FROM = "FROM",
|
|
10
|
-
REPLY_TO = "REPLY_TO",
|
|
11
|
-
TO = "TO"
|
|
12
|
-
}
|
|
13
6
|
//# sourceMappingURL=IMAPPasswordConfigStatus.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMAPPasswordConfigStatus.d.ts","sourceRoot":"","sources":["../../src/types/IMAPPasswordConfigStatus.ts"],"names":[],"mappings":"AAAA,oBAAY,wBAAwB;IAClC,mBAAmB,wBAAwB;IAC3C,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;CACxC
|
|
1
|
+
{"version":3,"file":"IMAPPasswordConfigStatus.d.ts","sourceRoot":"","sources":["../../src/types/IMAPPasswordConfigStatus.ts"],"names":[],"mappings":"AAAA,oBAAY,wBAAwB;IAClC,mBAAmB,wBAAwB;IAC3C,SAAS,cAAc;IACvB,iBAAiB,sBAAsB;CACxC"}
|
|
@@ -4,11 +4,3 @@ export var IMAPPasswordConfigStatus;
|
|
|
4
4
|
IMAPPasswordConfigStatus["CONNECTED"] = "CONNECTED";
|
|
5
5
|
IMAPPasswordConfigStatus["CONNECTION_FAILED"] = "CONNECTION_FAILED";
|
|
6
6
|
})(IMAPPasswordConfigStatus || (IMAPPasswordConfigStatus = {}));
|
|
7
|
-
export var ContactAssociationType;
|
|
8
|
-
(function (ContactAssociationType) {
|
|
9
|
-
ContactAssociationType["BCC"] = "BCC";
|
|
10
|
-
ContactAssociationType["CC"] = "CC";
|
|
11
|
-
ContactAssociationType["FROM"] = "FROM";
|
|
12
|
-
ContactAssociationType["REPLY_TO"] = "REPLY_TO";
|
|
13
|
-
ContactAssociationType["TO"] = "TO";
|
|
14
|
-
})(ContactAssociationType || (ContactAssociationType = {}));
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,eAAe,CAAA;AAC7B,cAAc,MAAM,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAA;AACxC,cAAc,YAAY,CAAA;AAC1B,cAAc,4BAA4B,CAAA;AAC1C,cAAc,eAAe,CAAA;AAC7B,cAAc,MAAM,CAAA"}
|
package/dist/types/index.js
CHANGED