feat(ci): Add GitHub Actions workflows for CI/CD
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import * as plugins from './interfaces.plugins.js';
|
||||
|
||||
export interface IRequest_GetSocialSession extends plugins.typedrequestInterfaces.implementsTR<
|
||||
plugins.typedrequestInterfaces.ITypedRequest,
|
||||
IRequest_GetSocialSession
|
||||
> {
|
||||
export interface IRequest_GetSocialSession
|
||||
extends plugins.typedrequestInterfaces.implementsTR<
|
||||
plugins.typedrequestInterfaces.ITypedRequest,
|
||||
IRequest_GetSocialSession
|
||||
> {
|
||||
method: 'getSocialSession';
|
||||
request: {
|
||||
existingSessionId?: string;
|
||||
@@ -13,24 +14,26 @@ export interface IRequest_GetSocialSession extends plugins.typedrequestInterface
|
||||
};
|
||||
}
|
||||
|
||||
export interface IRequest_AttachProfileId extends plugins.typedrequestInterfaces.implementsTR<
|
||||
plugins.typedrequestInterfaces.ITypedRequest,
|
||||
IRequest_AttachProfileId
|
||||
> {
|
||||
method: 'attachProfileId';
|
||||
request: {
|
||||
sessionId: string;
|
||||
profileId: string;
|
||||
};
|
||||
response: {
|
||||
newSessionId: string;
|
||||
};
|
||||
export interface IRequest_AttachProfileId
|
||||
extends plugins.typedrequestInterfaces.implementsTR<
|
||||
plugins.typedrequestInterfaces.ITypedRequest,
|
||||
IRequest_AttachProfileId
|
||||
> {
|
||||
method: 'attachProfileId';
|
||||
request: {
|
||||
sessionId: string;
|
||||
profileId: string;
|
||||
};
|
||||
response: {
|
||||
newSessionId: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface IRequest_GetConversations extends plugins.typedrequestInterfaces.implementsTR<
|
||||
plugins.typedrequestInterfaces.ITypedRequest,
|
||||
IRequest_GetConversations
|
||||
> {
|
||||
export interface IRequest_GetConversations
|
||||
extends plugins.typedrequestInterfaces.implementsTR<
|
||||
plugins.typedrequestInterfaces.ITypedRequest,
|
||||
IRequest_GetConversations
|
||||
> {
|
||||
method: 'getConversations';
|
||||
request: {
|
||||
sessionId: string;
|
||||
|
||||
Reference in New Issue
Block a user