@marcoappio/marco-config 2.0.115 → 2.0.117
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/clients/account.d.ts +1 -0
- package/dist/clients/account.d.ts.map +1 -1
- package/dist/clients/account.js +1 -0
- package/dist/clients/index.d.ts +1 -0
- package/dist/clients/index.d.ts.map +1 -1
- 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
|
@@ -11,6 +11,7 @@ export declare const account: {
|
|
|
11
11
|
readonly status: v.EnumSchema<typeof IMAPPasswordConfigStatus, undefined>;
|
|
12
12
|
}, undefined>, undefined>;
|
|
13
13
|
readonly labels: v.ArraySchema<v.ObjectSchema<{
|
|
14
|
+
readonly id: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
14
15
|
readonly name: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
15
16
|
readonly path: v.NonOptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
16
17
|
}, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAG5B,OAAO,EAAE,wBAAwB,EAAe,MAAM,qBAAqB,CAAA;AAS3E,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/clients/account.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAG5B,OAAO,EAAE,wBAAwB,EAAe,MAAM,qBAAqB,CAAA;AAS3E,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCG,CAAA"}
|
package/dist/clients/account.js
CHANGED
|
@@ -13,6 +13,7 @@ export const account = {
|
|
|
13
13
|
id: marcoSchemas.string.required(),
|
|
14
14
|
imapPasswordConfig: v.nullable(imapPasswordConfig),
|
|
15
15
|
labels: v.array(v.object({
|
|
16
|
+
id: marcoSchemas.string.required(),
|
|
16
17
|
name: marcoSchemas.string.required(),
|
|
17
18
|
path: marcoSchemas.string.required(),
|
|
18
19
|
})),
|
package/dist/clients/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare const marcoClients: {
|
|
|
10
10
|
readonly status: import("valibot").EnumSchema<typeof import("../types").IMAPPasswordConfigStatus, undefined>;
|
|
11
11
|
}, undefined>, undefined>;
|
|
12
12
|
readonly labels: import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
13
|
+
readonly id: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
13
14
|
readonly name: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
14
15
|
readonly path: import("valibot").NonOptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").StringSchema<undefined>, import("valibot").NonEmptyAction<string, undefined>, import("valibot").MaxLengthAction<string, 255, undefined>]>, undefined>;
|
|
15
16
|
}, undefined>, undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/clients/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/clients/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIc,CAAA"}
|
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