* feat: add subscription manager to handle subscription sharing * fix(services): add missing methods to the interface * fix(services): add subscription manager specs * feat(snjs): add subscriptions e2e tests * fix(snjs): add wait in subscription cancelling test * fix(snjs): checking for canceled invitations in tests * fix(snjs): add e2e test for restored limit of subscription invitations * chore(lint): fix linter issues
13 lines
718 B
TypeScript
13 lines
718 B
TypeScript
import { HttpRequestParams } from './HttpRequestParams'
|
|
import { HttpResponse } from './HttpResponse'
|
|
|
|
export interface HttpServiceInterface {
|
|
setHost(host: string): void
|
|
setAuthorizationToken(authorizationToken: string): void
|
|
get(path: string, params?: HttpRequestParams, authentication?: string): Promise<HttpResponse>
|
|
post(path: string, params?: HttpRequestParams, authentication?: string): Promise<HttpResponse>
|
|
put(path: string, params?: HttpRequestParams, authentication?: string): Promise<HttpResponse>
|
|
patch(path: string, params: HttpRequestParams, authentication?: string): Promise<HttpResponse>
|
|
delete(path: string, params?: HttpRequestParams, authentication?: string): Promise<HttpResponse>
|
|
}
|