@marcoappio/marco-config 2.0.451 → 2.0.453

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.
Files changed (49) hide show
  1. package/dist/sdk/endpoints/index.d.ts +30 -0
  2. package/dist/sdk/endpoints/index.d.ts.map +1 -1
  3. package/dist/sdk/endpoints/private/draftAttachment/index.d.ts +31 -0
  4. package/dist/sdk/endpoints/private/draftAttachment/index.d.ts.map +1 -0
  5. package/dist/sdk/endpoints/private/draftAttachment/index.js +4 -0
  6. package/dist/sdk/endpoints/private/draftAttachment/uploadDraftAttachment.d.ts +30 -0
  7. package/dist/sdk/endpoints/private/draftAttachment/uploadDraftAttachment.d.ts.map +1 -0
  8. package/dist/sdk/endpoints/private/draftAttachment/uploadDraftAttachment.js +17 -0
  9. package/dist/sdk/endpoints/private/index.d.ts +30 -0
  10. package/dist/sdk/endpoints/private/index.d.ts.map +1 -1
  11. package/dist/sdk/endpoints/private/index.js +2 -0
  12. package/dist/sdk/index.d.ts +30 -0
  13. package/dist/sdk/index.d.ts.map +1 -1
  14. package/dist/types/DraftAttachmentUploadStatus.d.ts +3 -0
  15. package/dist/types/DraftAttachmentUploadStatus.d.ts.map +1 -0
  16. package/dist/types/DraftAttachmentUploadStatus.js +1 -0
  17. package/dist/types/index.d.ts +1 -0
  18. package/dist/types/index.d.ts.map +1 -1
  19. package/dist/types/index.js +1 -0
  20. package/dist/zero/index.d.ts +187 -174
  21. package/dist/zero/index.d.ts.map +1 -1
  22. package/dist/zero/mutatorSchemas/draft.d.ts +2 -12
  23. package/dist/zero/mutatorSchemas/draft.d.ts.map +1 -1
  24. package/dist/zero/mutatorSchemas/draft.js +2 -11
  25. package/dist/zero/mutatorSchemas/index.d.ts +2 -12
  26. package/dist/zero/mutatorSchemas/index.d.ts.map +1 -1
  27. package/dist/zero/mutators/draftMutators/draftMutators.d.ts.map +1 -1
  28. package/dist/zero/mutators/draftMutators/draftMutators.js +2 -16
  29. package/dist/zero/mutators/draftMutators/draftMutators.test.js +2 -41
  30. package/dist/zero/mutators/threadMutators/threadMutators.d.ts +3 -1
  31. package/dist/zero/mutators/threadMutators/threadMutators.d.ts.map +1 -1
  32. package/dist/zero/mutators/threadMutators/threadMutators.js +31 -24
  33. package/dist/zero/mutators/threadMutators/threadMutators.test.js +12 -12
  34. package/dist/zero/queries/getAccounts.d.ts +28 -24
  35. package/dist/zero/queries/getAccounts.d.ts.map +1 -1
  36. package/dist/zero/queries/getContacts.d.ts +27 -24
  37. package/dist/zero/queries/getContacts.d.ts.map +1 -1
  38. package/dist/zero/queries/getDrafts.d.ts +28 -26
  39. package/dist/zero/queries/getDrafts.d.ts.map +1 -1
  40. package/dist/zero/queries/getThreads.d.ts +28 -24
  41. package/dist/zero/queries/getThreads.d.ts.map +1 -1
  42. package/dist/zero/queries/getUser.d.ts +28 -24
  43. package/dist/zero/queries/getUser.d.ts.map +1 -1
  44. package/dist/zero/queries/index.d.ts +27 -24
  45. package/dist/zero/queries/index.d.ts.map +1 -1
  46. package/dist/zero/schema.d.ts +46 -40
  47. package/dist/zero/schema.d.ts.map +1 -1
  48. package/dist/zero/schema.js +5 -4
  49. package/package.json +1 -1
@@ -2,6 +2,36 @@ import type { GenericSchema } from 'valibot';
2
2
  import type { EndpointConfig } from '../../types';
3
3
  export declare const endpoints: {
4
4
  private: {
5
+ draftAttachment: {
6
+ upload: EndpointConfig<"/v1/pv/drafts/:attachmentId/upload", import("valibot").BlobSchema<undefined>, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
7
+ readonly data: import("valibot").ObjectSchema<{
8
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
9
+ }, undefined>;
10
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
11
+ }, undefined>, import("valibot").ObjectSchema<{
12
+ readonly data: import("valibot").ObjectSchema<{
13
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_NOT_FOUND", undefined>;
14
+ }, undefined>;
15
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
16
+ }, undefined>, import("valibot").ObjectSchema<{
17
+ readonly data: import("valibot").ObjectSchema<{
18
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_STATE_INVALID", undefined>;
19
+ }, undefined>;
20
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
21
+ }, undefined>, import("valibot").ObjectSchema<{
22
+ readonly data: import("valibot").ObjectSchema<{
23
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
24
+ readonly issues: import("valibot").ObjectSchema<{
25
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
26
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
27
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
28
+ }, undefined>;
29
+ }, undefined>;
30
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
31
+ }, undefined>, import("valibot").ObjectSchema<{
32
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
33
+ }, undefined>], undefined>>;
34
+ };
5
35
  user: {
6
36
  deleteUser: EndpointConfig<"/v1/pv/user", GenericSchema | undefined, GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
7
37
  readonly data: import("valibot").ObjectSchema<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,qBAAqB,CAAA;AAWtE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGM,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sdk/endpoints/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAE5C,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,qBAAqB,CAAA;AAWtE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGM,CAAA"}
@@ -0,0 +1,31 @@
1
+ export declare const draftAttachment: {
2
+ upload: import("../../../..").EndpointConfig<"/v1/pv/drafts/:attachmentId/upload", import("valibot").BlobSchema<undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
3
+ readonly data: import("valibot").ObjectSchema<{
4
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
5
+ }, undefined>;
6
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
7
+ }, undefined>, import("valibot").ObjectSchema<{
8
+ readonly data: import("valibot").ObjectSchema<{
9
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_NOT_FOUND", undefined>;
10
+ }, undefined>;
11
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
12
+ }, undefined>, import("valibot").ObjectSchema<{
13
+ readonly data: import("valibot").ObjectSchema<{
14
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_STATE_INVALID", undefined>;
15
+ }, undefined>;
16
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
17
+ }, undefined>, import("valibot").ObjectSchema<{
18
+ readonly data: import("valibot").ObjectSchema<{
19
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
20
+ readonly issues: import("valibot").ObjectSchema<{
21
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
22
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
23
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
24
+ }, undefined>;
25
+ }, undefined>;
26
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
27
+ }, undefined>, import("valibot").ObjectSchema<{
28
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
29
+ }, undefined>], undefined>>;
30
+ };
31
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/sdk/endpoints/private/draftAttachment/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAE3B,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { uploadDraftAttachment } from './uploadDraftAttachment';
2
+ export const draftAttachment = {
3
+ upload: uploadDraftAttachment,
4
+ };
@@ -0,0 +1,30 @@
1
+ import * as v from 'valibot';
2
+ export declare const uploadDraftAttachment: import("../../../..").EndpointConfig<"/v1/pv/drafts/:attachmentId/upload", v.BlobSchema<undefined>, v.GenericSchema | undefined, v.UnionSchema<[v.ObjectSchema<{
3
+ readonly data: v.ObjectSchema<{
4
+ readonly code: v.LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
5
+ }, undefined>;
6
+ readonly status: v.LiteralSchema<401, undefined>;
7
+ }, undefined>, v.ObjectSchema<{
8
+ readonly data: v.ObjectSchema<{
9
+ readonly code: v.LiteralSchema<"ATTACHMENT_NOT_FOUND", undefined>;
10
+ }, undefined>;
11
+ readonly status: v.LiteralSchema<404, undefined>;
12
+ }, undefined>, v.ObjectSchema<{
13
+ readonly data: v.ObjectSchema<{
14
+ readonly code: v.LiteralSchema<"ATTACHMENT_STATE_INVALID", undefined>;
15
+ }, undefined>;
16
+ readonly status: v.LiteralSchema<409, undefined>;
17
+ }, undefined>, v.ObjectSchema<{
18
+ readonly data: v.ObjectSchema<{
19
+ readonly code: v.LiteralSchema<"VALIDATION_FAILED", undefined>;
20
+ readonly issues: v.ObjectSchema<{
21
+ readonly nested: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
22
+ readonly other: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
23
+ readonly root: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
24
+ }, undefined>;
25
+ }, undefined>;
26
+ readonly status: v.LiteralSchema<400, undefined>;
27
+ }, undefined>, v.ObjectSchema<{
28
+ readonly status: v.LiteralSchema<200, undefined>;
29
+ }, undefined>], undefined>>;
30
+ //# sourceMappingURL=uploadDraftAttachment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"uploadDraftAttachment.d.ts","sourceRoot":"","sources":["../../../../../src/sdk/endpoints/private/draftAttachment/uploadDraftAttachment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAU5B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAahC,CAAA"}
@@ -0,0 +1,17 @@
1
+ import * as v from 'valibot';
2
+ import { createEndpoint } from '../../../../sdk/endpoints/createEndpointConfig';
3
+ import { attachmentNotFoundErrorSchema, attachmentStateInvalidErrorSchema, authFailedErrorSchema, validationFailedErrorSchema, } from '../../../../sdk/validation/errors';
4
+ export const uploadDraftAttachment = createEndpoint({
5
+ body: v.blob(),
6
+ method: 'POST',
7
+ path: '/v1/pv/drafts/:attachmentId/upload',
8
+ response: v.union([
9
+ authFailedErrorSchema,
10
+ attachmentNotFoundErrorSchema,
11
+ attachmentStateInvalidErrorSchema,
12
+ validationFailedErrorSchema,
13
+ v.object({
14
+ status: v.literal(200),
15
+ }),
16
+ ]),
17
+ });
@@ -1,4 +1,34 @@
1
1
  export declare const privateGroup: {
2
+ draftAttachment: {
3
+ upload: import("../../..").EndpointConfig<"/v1/pv/drafts/:attachmentId/upload", import("valibot").BlobSchema<undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
4
+ readonly data: import("valibot").ObjectSchema<{
5
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
6
+ }, undefined>;
7
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
8
+ }, undefined>, import("valibot").ObjectSchema<{
9
+ readonly data: import("valibot").ObjectSchema<{
10
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_NOT_FOUND", undefined>;
11
+ }, undefined>;
12
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
13
+ }, undefined>, import("valibot").ObjectSchema<{
14
+ readonly data: import("valibot").ObjectSchema<{
15
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_STATE_INVALID", undefined>;
16
+ }, undefined>;
17
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
18
+ }, undefined>, import("valibot").ObjectSchema<{
19
+ readonly data: import("valibot").ObjectSchema<{
20
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
21
+ readonly issues: import("valibot").ObjectSchema<{
22
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
23
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
24
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
25
+ }, undefined>;
26
+ }, undefined>;
27
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
28
+ }, undefined>, import("valibot").ObjectSchema<{
29
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
30
+ }, undefined>], undefined>>;
31
+ };
2
32
  user: {
3
33
  deleteUser: import("../../..").EndpointConfig<"/v1/pv/user", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
4
34
  readonly data: import("valibot").ObjectSchema<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;CAExB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/sdk/endpoints/private/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGxB,CAAA"}
@@ -1,4 +1,6 @@
1
+ import { draftAttachment } from './draftAttachment';
1
2
  import { user } from './user';
2
3
  export const privateGroup = {
4
+ draftAttachment,
3
5
  user,
4
6
  };
@@ -1,6 +1,36 @@
1
1
  export declare const marcoSDK: {
2
2
  endpoints: {
3
3
  private: {
4
+ draftAttachment: {
5
+ upload: import("..").EndpointConfig<"/v1/pv/drafts/:attachmentId/upload", import("valibot").BlobSchema<undefined>, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
6
+ readonly data: import("valibot").ObjectSchema<{
7
+ readonly code: import("valibot").LiteralSchema<"AUTHENTICATION_FAILED", undefined>;
8
+ }, undefined>;
9
+ readonly status: import("valibot").LiteralSchema<401, undefined>;
10
+ }, undefined>, import("valibot").ObjectSchema<{
11
+ readonly data: import("valibot").ObjectSchema<{
12
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_NOT_FOUND", undefined>;
13
+ }, undefined>;
14
+ readonly status: import("valibot").LiteralSchema<404, undefined>;
15
+ }, undefined>, import("valibot").ObjectSchema<{
16
+ readonly data: import("valibot").ObjectSchema<{
17
+ readonly code: import("valibot").LiteralSchema<"ATTACHMENT_STATE_INVALID", undefined>;
18
+ }, undefined>;
19
+ readonly status: import("valibot").LiteralSchema<409, undefined>;
20
+ }, undefined>, import("valibot").ObjectSchema<{
21
+ readonly data: import("valibot").ObjectSchema<{
22
+ readonly code: import("valibot").LiteralSchema<"VALIDATION_FAILED", undefined>;
23
+ readonly issues: import("valibot").ObjectSchema<{
24
+ readonly nested: import("valibot").OptionalSchema<import("valibot").RecordSchema<import("valibot").StringSchema<undefined>, import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>, undefined>, undefined>;
25
+ readonly other: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
26
+ readonly root: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>, undefined>;
27
+ }, undefined>;
28
+ }, undefined>;
29
+ readonly status: import("valibot").LiteralSchema<400, undefined>;
30
+ }, undefined>, import("valibot").ObjectSchema<{
31
+ readonly status: import("valibot").LiteralSchema<200, undefined>;
32
+ }, undefined>], undefined>>;
33
+ };
4
34
  user: {
5
35
  deleteUser: import("..").EndpointConfig<"/v1/pv/user", import("valibot").GenericSchema | undefined, import("valibot").GenericSchema | undefined, import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
6
36
  readonly data: import("valibot").ObjectSchema<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGpB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/sdk/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAGpB,CAAA"}
@@ -0,0 +1,3 @@
1
+ export declare const DRAFT_ATTACHMENT_UPLOAD_STATUSES: readonly ["PENDING", "COMPLETE", "FAILED"];
2
+ export type DraftAttachmentUploadStatus = (typeof DRAFT_ATTACHMENT_UPLOAD_STATUSES)[number];
3
+ //# sourceMappingURL=DraftAttachmentUploadStatus.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DraftAttachmentUploadStatus.d.ts","sourceRoot":"","sources":["../../src/types/DraftAttachmentUploadStatus.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gCAAgC,4CAA6C,CAAA;AAE1F,MAAM,MAAM,2BAA2B,GAAG,CAAC,OAAO,gCAAgC,CAAC,CAAC,MAAM,CAAC,CAAA"}
@@ -0,0 +1 @@
1
+ export const DRAFT_ATTACHMENT_UPLOAD_STATUSES = ['PENDING', 'COMPLETE', 'FAILED'];
@@ -1,4 +1,5 @@
1
1
  export * from './AuthData';
2
+ export * from './DraftAttachmentUploadStatus';
2
3
  export * from './DraftRecipientType';
3
4
  export * from './DraftStatus';
4
5
  export * from './DraftType';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,sBAAsB,CAAA;AACpC,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,YAAY,CAAA;AAC1B,cAAc,wBAAwB,CAAA;AACtC,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,2BAA2B,CAAA;AACzC,cAAc,wBAAwB,CAAA;AACtC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,YAAY,CAAA;AAC1B,cAAc,QAAQ,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAA;AAC1B,cAAc,+BAA+B,CAAA;AAC7C,cAAc,sBAAsB,CAAA;AACpC,cAAc,eAAe,CAAA;AAC7B,cAAc,aAAa,CAAA;AAC3B,cAAc,iBAAiB,CAAA;AAC/B,cAAc,YAAY,CAAA;AAC1B,cAAc,wBAAwB,CAAA;AACtC,cAAc,sBAAsB,CAAA;AACpC,cAAc,mBAAmB,CAAA;AACjC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,2BAA2B,CAAA;AACzC,cAAc,wBAAwB,CAAA;AACtC,cAAc,iBAAiB,CAAA;AAC/B,cAAc,YAAY,CAAA;AAC1B,cAAc,QAAQ,CAAA"}
@@ -1,4 +1,5 @@
1
1
  export * from './AuthData';
2
+ export * from './DraftAttachmentUploadStatus';
2
3
  export * from './DraftRecipientType';
3
4
  export * from './DraftStatus';
4
5
  export * from './DraftType';