-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
78 changed files
with
84 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import APIInterface from "./APIInterface.js"; | ||
import type { Logger } from "winston"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { createHash, timingSafeEqual } from "node:crypto"; | ||
import AbstractAPI, { AbstractAPIParameters } from "../../API/AbstractAPI.js"; | ||
import GraphRequest, { | ||
GraphRequestCreateParameters, | ||
|
@@ -14,7 +16,6 @@ import { MediaID, WhatsAppPhoneNumberID } from "../../ID.js"; | |
import { DeleteMediaResponse } from "../../Media/DeleteMedia.js"; | ||
import MediaURL from "../../Media/MediaURL.js"; | ||
import { CloudOutgoingMediaResponse } from "../../Media/OutgoingMedia/CloudOutgoingMedia.js"; | ||
import { createHash, timingSafeEqual } from "node:crypto"; | ||
|
||
export interface UploadMediaOptions { | ||
phoneNumberID: WhatsAppPhoneNumberID; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import AbstractAPI, { AbstractAPIParameters } from "../../API/AbstractAPI.js"; | ||
import EndpointType from "../../API/EndpointType.js"; | ||
import GraphRequest, { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,11 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { createHmac } from "node:crypto"; | ||
import AbstractAPI from "../../API/AbstractAPI.js"; | ||
import { EventNotificationType } from "../../EventNotification/index.js"; | ||
import CloudAPIWebhookError from "./CloudWebhookAPIError.js"; | ||
import { createHmac } from "node:crypto"; | ||
|
||
export interface IncomingRequest { | ||
query: Record<string, string>; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { randomBytes } from "node:crypto"; | ||
import AbstractAPI, { AbstractAPIParameters } from "../API/AbstractAPI.js"; | ||
import CloudAPIMedia from "./CloudAPIMedia/index.js"; | ||
import CloudAPIMessage, { | ||
CloudAPIMessageParameters, | ||
} from "./CloudAPIMessage/index.js"; | ||
import CloudAPIWebhook from "./CloudAPIWebhook/index.js"; | ||
import { randomBytes } from "node:crypto"; | ||
|
||
export interface WhatsAppAPIParameters extends AbstractAPIParameters {} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import Error, { ErrorMessage } from "./index.js"; | ||
|
||
export default interface EventNotificationError extends Error { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import Error, { ErrorMessage } from "./index.js"; | ||
|
||
export default interface IncomingMessageError extends Error { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import Error from "./index.js"; | ||
|
||
export default interface OutgoingMessageError extends Error { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { WhatsAppPhoneNumberID } from "../ID.js"; | ||
|
||
export default interface EventNotificationMetadata { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { AccountID, MessageID } from "../ID.js"; | ||
|
||
export enum EventNotificationStatusReason { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import EventNotificationError from "../Error/EventNotificationError.js"; | ||
import { AccountID } from "../ID.js"; | ||
import CloudIncomingAudioMessage from "../Message/Audio/AudioMessage/CloudIncomingAudioMessage.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { MediaID } from "../ID.js"; | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { OutgoingMediaResponse } from "./index.js"; | ||
|
||
export interface CloudOutgoingMediaResponse extends OutgoingMediaResponse {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import { MediaID } from "../../ID.js"; | ||
|
||
export interface OutgoingMediaResponse { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudIncomingMessage from "../../IncomingMessage/CloudIncomingMessage.js"; | ||
import IncomingMessageType from "../../MessageType/IncomingMessageType.js"; | ||
import CloudIncomingMessageAudio from "../MessageAudio/CloudIncomingMessageAudio.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageType from "../../MessageType/OutgoingMessageType.js"; | ||
import CloudOutgoingMessage from "../../OutgoingMessage/CloudOutgoingMessage.js"; | ||
import CloudOutgoingMessageAudio from "../MessageAudio/CloudOutgoingMessageAudio.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudIncomingMessageMedia from "../../MessageMedia/CloudIncomingMessageMedia.js"; | ||
import IncomingMessageAudio from "./IncomingMessageAudio.js"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudOutgoingMessageMedia from "../../MessageMedia/CloudOutgoingMessageMedia.js"; | ||
|
||
export default interface CloudOutgoingMessageAudio | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageType from "../../MessageType/OutgoingMessageType.js"; | ||
import CloudOutgoingMessage from "../../OutgoingMessage/CloudOutgoingMessage.js"; | ||
import CloudOutgoingMessageContact from "../MessageContact/CloudOutgoingMessageContact.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageContact from "./OutgoingMessageContact.js"; | ||
|
||
export default interface CloudOutgoingMessageContact | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageContact from "./index.js"; | ||
|
||
export default interface OutgoingMessageContact extends MessageContact {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
import { PhoneNumber, AccountID } from "../../../ID.js"; | ||
|
||
import { AccountID, PhoneNumber } from "../../../ID.js"; | ||
|
||
type MessageContactDetailType = | ||
| "HOME" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudIncomingMessage from "../../IncomingMessage/CloudIncomingMessage.js"; | ||
import IncomingMessageType from "../../MessageType/IncomingMessageType.js"; | ||
import CloudIncomingMessageDocument from "../MessageDocument/Incoming/CloudIncomingMessageDocument.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageType from "../../MessageType/OutgoingMessageType.js"; | ||
import CloudOutgoingMessage from "../../OutgoingMessage/CloudOutgoingMessage.js"; | ||
import CloudOutgoingMessageDocument from "../MessageDocument/Outgoing/CloudOutgoingMessageDocument.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudIncomingMessageMedia from "../../../MessageMedia/CloudIncomingMessageMedia.js"; | ||
import IncomingMessageDocument from "../Incoming/IncomingMessageDocument.js"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageDocument from "../index.js"; | ||
|
||
export default interface IncomingMessageDocument extends MessageDocument { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudOutgoingMessageMedia from "../../../MessageMedia/CloudOutgoingMessageMedia.js"; | ||
import OutgoingMessageDocument from "./OutgoingMessageDocument.js"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageDocument from "../index.js"; | ||
|
||
export default interface OutgoingMessageDocument extends MessageDocument {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudIncomingMessage from "../../IncomingMessage/CloudIncomingMessage.js"; | ||
import IncomingMessageType from "../../MessageType/IncomingMessageType.js"; | ||
import CloudIncomingMessageImage from "../MessageImage/Incoming/CloudIncomingMessageImage.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageType from "../../MessageType/OutgoingMessageType.js"; | ||
import CloudOutgoingMessage from "../../OutgoingMessage/CloudOutgoingMessage.js"; | ||
import CloudOutgoingMessageImage from "../MessageImage/Outgoing/CloudOutgoingMessageImage.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudIncomingMessageMedia from "../../../MessageMedia/CloudIncomingMessageMedia.js"; | ||
import IncomingMessageImage from "../Incoming/IncomingMessageImage.js"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageImage from "../index.js"; | ||
|
||
export default interface IncomingMessageImage extends MessageImage { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import CloudOutgoingMessageMedia from "../../../MessageMedia/CloudOutgoingMessageMedia.js"; | ||
import OutgoingMessageImage from "./OutgoingMessageImage.js"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageImage from "../index.js"; | ||
|
||
export default interface OutgoingMessageImage extends MessageImage {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import IncomingMessageType from "../MessageType/IncomingMessageType.js"; | ||
import IncomingMessage from "./index.js"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,14 +6,15 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import IncomingMessageError from "../../Error/IncomingMessageError.js"; | ||
import { AccountID, MessageID } from "../../ID.js"; | ||
import Message from "../index.js"; | ||
import CloudIncomingMessageContext from "../MessageContext/CloudIncomingMessageContext.js"; | ||
import CloudIncomingMessageIdentity from "../MessageIdentity/CloudIncomingMessageIdentity.js"; | ||
import CloudIncomingMessageReferral from "../MessageReferral/CloudIncomingMessageReferral.js"; | ||
import CloudIncomingMessageSystem from "../MessageSystem/CloudIncomingMessageSystem.js"; | ||
import IncomingMessageType from "../MessageType/IncomingMessageType.js"; | ||
import Message from "../index.js"; | ||
|
||
export default interface IncomingMessage< | ||
MessageType extends IncomingMessageType, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageType from "../../MessageType/OutgoingMessageType.js"; | ||
import CloudOutgoingMessage from "../../OutgoingMessage/CloudOutgoingMessage.js"; | ||
import CloudOutgoingMessageInteractive from "../MessageInteractive/Outgoing/CloudOutgoingMessageInteractive.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageInteractive from "./OutgoingMessageInteractive.js"; | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageInteractive from "../index.js"; | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageType from "../../MessageType/OutgoingMessageType.js"; | ||
import CloudOutgoingMessage from "../../OutgoingMessage/CloudOutgoingMessage.js"; | ||
import CloudOutgoingMessageLocation from "../MessageLocation/Outgoing/CloudOutgoingMessageLocation.js"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import OutgoingMessageLocation from "../Outgoing/OutgoingMessageLocation.js"; | ||
|
||
export default interface CloudOutgoingMessageLocation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import MessageLocation from "../index.js"; | ||
|
||
export default interface OutgoingMessageLocation extends MessageLocation {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
* @author Dom Webber <[email protected]> | ||
* @see https://greatdetail.com | ||
*/ | ||
|
||
import IncomingMessageContext from "./IncomingMessageContext.js"; | ||
|
||
export default interface CloudIncomingMessageContext | ||
|
Oops, something went wrong.