@marcoappio/marco-config 2.0.565 → 2.0.566
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/schemas/id.d.ts +64 -0
- package/dist/schemas/id.d.ts.map +1 -0
- package/dist/schemas/id.js +19 -0
- package/dist/schemas/index.d.ts +175 -124
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +2 -0
- package/dist/schemas/models/account.d.ts +13 -13
- package/dist/schemas/models/account.d.ts.map +1 -1
- package/dist/schemas/models/account.js +8 -7
- package/dist/schemas/models/contact.d.ts +2 -2
- package/dist/schemas/models/contact.d.ts.map +1 -1
- package/dist/schemas/models/contact.js +3 -2
- package/dist/schemas/models/draft.d.ts +9 -9
- package/dist/schemas/models/draft.d.ts.map +1 -1
- package/dist/schemas/models/draft.js +8 -7
- package/dist/schemas/models/thread.d.ts +30 -30
- package/dist/schemas/models/thread.d.ts.map +1 -1
- package/dist/schemas/models/thread.js +12 -11
- package/dist/schemas/models/user.d.ts +7 -7
- package/dist/schemas/models/user.d.ts.map +1 -1
- package/dist/schemas/models/user.js +5 -4
- package/dist/schemas/mutators/mutatorSchemas.d.ts +61 -61
- package/dist/schemas/mutators/mutatorSchemas.d.ts.map +1 -1
- package/dist/schemas/mutators/mutatorSchemas.js +49 -48
- package/dist/schemas/pushNotifications.d.ts +2 -2
- package/dist/schemas/pushNotifications.js +3 -3
- package/dist/sdk/endpoints/private/models/account/getAccounts.d.ts +9 -9
- package/dist/sdk/endpoints/private/models/contact/getContacts.d.ts +2 -2
- package/dist/sdk/endpoints/private/models/draft/getDrafts.d.ts +7 -7
- package/dist/sdk/endpoints/private/models/thread/getThread.d.ts +11 -11
- package/dist/sdk/endpoints/private/models/thread/getThreadByMessageId.d.ts +11 -11
- package/dist/sdk/endpoints/private/models/thread/getThreadList.d.ts +4 -4
- package/dist/sdk/endpoints/private/models/thread/getThreads.d.ts +11 -11
- package/dist/sdk/endpoints/private/models/user/getUser.d.ts +4 -4
- package/dist/sdk/endpoints/private/mutations/account/createAccount.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/createAlias.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/createLabel.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/deleteAccount.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/account/deleteAlias.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/deleteLabel.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/renameLabel.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/setAliasName.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/setAliasPrimary.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/setAliasSignature.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigImap.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/account/setConnectionConfigOauth.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/account/setSettings.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/draft/cancelSend.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/draft/createAttachment.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/draft/createDraft.d.ts +4 -4
- package/dist/sdk/endpoints/private/mutations/draft/deleteAttachment.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/draft/deleteDraft.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/draft/replaceContent.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/draft/scheduleSend.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/draft/setEnvelope.d.ts +3 -3
- package/dist/sdk/endpoints/private/mutations/draft/setFrom.d.ts +3 -3
- package/dist/sdk/endpoints/private/mutations/thread/addLabel.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/deleteThreads.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/removeLabel.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setArchive.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setFlagged.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setInbox.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setSeen.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setSnooze.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setSpam.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/thread/setTrash.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/user/createView.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/user/deletePushToken.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/user/deleteView.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/user/setPushToken.d.ts +2 -2
- package/dist/sdk/endpoints/private/mutations/user/setSettingsName.d.ts +1 -1
- package/dist/sdk/endpoints/private/mutations/user/updateView.d.ts +2 -2
- package/dist/types/IMAPSourceLocation.d.ts +3 -2
- package/dist/types/IMAPSourceLocation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { marcoConstants } from './constants';
|
|
2
2
|
export { MARCO_ENV, MarcoEnvironment, marcoPublicConfig } from './marcoPublicConfig';
|
|
3
|
-
export { type Account, type AccountAlias, type AccountLabel, type Contact, type Draft, type DraftAttachment, type DraftBody, marcoSchemas, type Thread, type ThreadMessage, type ThreadMessageAttachment, type ThreadMessageRecipient, type User, type UserPushNotificationToken, type UserView, } from './schemas';
|
|
3
|
+
export { type Account, type AccountAlias, type AccountId, type AccountLabel, type AliasId, type AttachmentId, type Contact, type ContactId, type Draft, type DraftAttachment, type DraftBody, type DraftId, type LabelId, type MessageId, marcoSchemas, type PushNotificationTokenId, type RecipientId, type Thread, type ThreadId, type ThreadMessage, type ThreadMessageAttachment, type ThreadMessageRecipient, type User, type UserId, type UserPushNotificationToken, type UserView, type ViewId, } from './schemas';
|
|
4
4
|
export { marcoSDK } from './sdk';
|
|
5
5
|
export * from './types';
|
|
6
6
|
export { accountUtils, labelUtils, threadsUtils } from './utils';
|
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,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACpF,OAAO,EACL,KAAK,OAAO,EACZ,KAAK,YAAY,EACjB,KAAK,YAAY,EACjB,KAAK,OAAO,EACZ,KAAK,KAAK,EACV,KAAK,eAAe,EACpB,KAAK,SAAS,EACd,YAAY,EACZ,KAAK,MAAM,EACX,KAAK,aAAa,EAClB,KAAK,uBAAuB,EAC5B,KAAK,sBAAsB,EAC3B,KAAK,IAAI,EACT,KAAK,yBAAyB,EAC9B,KAAK,QAAQ,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5C,OAAO,EAAE,SAAS,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAA;AACpF,OAAO,EACL,KAAK,OAAO,EACZ,KAAK,YAAY,EACjB,KAAK,SAAS,EACd,KAAK,YAAY,EACjB,KAAK,OAAO,EACZ,KAAK,YAAY,EACjB,KAAK,OAAO,EACZ,KAAK,SAAS,EACd,KAAK,KAAK,EACV,KAAK,eAAe,EACpB,KAAK,SAAS,EACd,KAAK,OAAO,EACZ,KAAK,OAAO,EACZ,KAAK,SAAS,EACd,YAAY,EACZ,KAAK,uBAAuB,EAC5B,KAAK,WAAW,EAChB,KAAK,MAAM,EACX,KAAK,QAAQ,EACb,KAAK,aAAa,EAClB,KAAK,uBAAuB,EAC5B,KAAK,sBAAsB,EAC3B,KAAK,IAAI,EACT,KAAK,MAAM,EACX,KAAK,yBAAyB,EAC9B,KAAK,QAAQ,EACb,KAAK,MAAM,GACZ,MAAM,WAAW,CAAA;AAClB,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAChC,cAAc,SAAS,CAAA;AACvB,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
export declare const id: {
|
|
3
|
+
accountId: {
|
|
4
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "AccountId">]>, undefined>;
|
|
5
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "AccountId">]>, undefined>;
|
|
6
|
+
};
|
|
7
|
+
aliasId: {
|
|
8
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "AliasId">]>, undefined>;
|
|
9
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "AliasId">]>, undefined>;
|
|
10
|
+
};
|
|
11
|
+
attachmentId: {
|
|
12
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "AttachmentId">]>, undefined>;
|
|
13
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "AttachmentId">]>, undefined>;
|
|
14
|
+
};
|
|
15
|
+
contactId: {
|
|
16
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "ContactId">]>, undefined>;
|
|
17
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "ContactId">]>, undefined>;
|
|
18
|
+
};
|
|
19
|
+
draftId: {
|
|
20
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "DraftId">]>, undefined>;
|
|
21
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "DraftId">]>, undefined>;
|
|
22
|
+
};
|
|
23
|
+
labelId: {
|
|
24
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "LabelId">]>, undefined>;
|
|
25
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "LabelId">]>, undefined>;
|
|
26
|
+
};
|
|
27
|
+
messageId: {
|
|
28
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "MessageId">]>, undefined>;
|
|
29
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "MessageId">]>, undefined>;
|
|
30
|
+
};
|
|
31
|
+
pushNotificationTokenId: {
|
|
32
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "PushNotificationTokenId">]>, undefined>;
|
|
33
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "PushNotificationTokenId">]>, undefined>;
|
|
34
|
+
};
|
|
35
|
+
recipientId: {
|
|
36
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "RecipientId">]>, undefined>;
|
|
37
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "RecipientId">]>, undefined>;
|
|
38
|
+
};
|
|
39
|
+
threadId: {
|
|
40
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "ThreadId">]>, undefined>;
|
|
41
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "ThreadId">]>, undefined>;
|
|
42
|
+
};
|
|
43
|
+
userId: {
|
|
44
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "UserId">]>, undefined>;
|
|
45
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "UserId">]>, undefined>;
|
|
46
|
+
};
|
|
47
|
+
viewId: {
|
|
48
|
+
nullable: (maxLength?: number) => v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "ViewId">]>, undefined>;
|
|
49
|
+
required: (maxLength?: number) => v.NonOptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.NonEmptyAction<string, undefined>, v.MaxLengthAction<string, number, undefined>, v.BrandAction<string, "ViewId">]>, undefined>;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
export type AccountId = v.InferOutput<ReturnType<typeof id.accountId.required>>;
|
|
53
|
+
export type AliasId = v.InferOutput<ReturnType<typeof id.aliasId.required>>;
|
|
54
|
+
export type AttachmentId = v.InferOutput<ReturnType<typeof id.attachmentId.required>>;
|
|
55
|
+
export type ContactId = v.InferOutput<ReturnType<typeof id.contactId.required>>;
|
|
56
|
+
export type DraftId = v.InferOutput<ReturnType<typeof id.draftId.required>>;
|
|
57
|
+
export type LabelId = v.InferOutput<ReturnType<typeof id.labelId.required>>;
|
|
58
|
+
export type MessageId = v.InferOutput<ReturnType<typeof id.messageId.required>>;
|
|
59
|
+
export type PushNotificationTokenId = v.InferOutput<ReturnType<typeof id.pushNotificationTokenId.required>>;
|
|
60
|
+
export type RecipientId = v.InferOutput<ReturnType<typeof id.recipientId.required>>;
|
|
61
|
+
export type ThreadId = v.InferOutput<ReturnType<typeof id.threadId.required>>;
|
|
62
|
+
export type UserId = v.InferOutput<ReturnType<typeof id.userId.required>>;
|
|
63
|
+
export type ViewId = v.InferOutput<ReturnType<typeof id.viewId.required>>;
|
|
64
|
+
//# sourceMappingURL=id.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"id.d.ts","sourceRoot":"","sources":["../../src/schemas/id.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAQ5B,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAad,CAAA;AAED,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC/E,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC3E,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAA;AACrF,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC/E,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC3E,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC3E,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC/E,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC3G,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC,CAAA;AACnF,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,CAAA;AAC7E,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAA;AACzE,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,WAAW,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as v from 'valibot';
|
|
2
|
+
const brandedId = (brand) => ({
|
|
3
|
+
nullable: (maxLength = 255) => v.nullable(v.pipe(v.string(), v.nonEmpty(), v.maxLength(maxLength), v.brand(brand))),
|
|
4
|
+
required: (maxLength = 255) => v.nonOptional(v.pipe(v.string(), v.nonEmpty(), v.maxLength(maxLength), v.brand(brand))),
|
|
5
|
+
});
|
|
6
|
+
export const id = {
|
|
7
|
+
accountId: brandedId('AccountId'),
|
|
8
|
+
aliasId: brandedId('AliasId'),
|
|
9
|
+
attachmentId: brandedId('AttachmentId'),
|
|
10
|
+
contactId: brandedId('ContactId'),
|
|
11
|
+
draftId: brandedId('DraftId'),
|
|
12
|
+
labelId: brandedId('LabelId'),
|
|
13
|
+
messageId: brandedId('MessageId'),
|
|
14
|
+
pushNotificationTokenId: brandedId('PushNotificationTokenId'),
|
|
15
|
+
recipientId: brandedId('RecipientId'),
|
|
16
|
+
threadId: brandedId('ThreadId'),
|
|
17
|
+
userId: brandedId('UserId'),
|
|
18
|
+
viewId: brandedId('ViewId'),
|
|
19
|
+
};
|