1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[SM-288] Rename requests and responses to follow naming convention (#3806)

This commit is contained in:
Oscar Hinton
2022-10-18 19:01:42 +02:00
committed by GitHub
parent c2df5c608e
commit cf2d3f5382
375 changed files with 868 additions and 1054 deletions

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class BillingSyncConfigApi extends BaseResponse {
billingSyncKey: string;

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class CardApi extends BaseResponse {
cardholderName: string;

View File

@@ -1,6 +1,6 @@
import { FieldType } from "../../enums/fieldType";
import { LinkedIdType } from "../../enums/linkedIdType";
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class FieldApi extends BaseResponse {
name: string;

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class IdentityApi extends BaseResponse {
title: string;

View File

@@ -1,5 +1,5 @@
import { UriMatchType } from "../../enums/uriMatchType";
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class LoginUriApi extends BaseResponse {
uri: string;

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
import { LoginUriApi } from "./login-uri.api";

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class PermissionsApi extends BaseResponse {
accessEventLogs: boolean;

View File

@@ -1,5 +1,5 @@
import { ScimProviderType } from "../../enums/scimProviderType";
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class ScimConfigApi extends BaseResponse {
enabled: boolean;

View File

@@ -1,5 +1,5 @@
import { SecureNoteType } from "../../enums/secureNoteType";
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class SecureNoteApi extends BaseResponse {
type: SecureNoteType;

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class SendFileApi extends BaseResponse {
id: string;

View File

@@ -1,4 +1,4 @@
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
export class SendTextApi extends BaseResponse {
text: string;

View File

@@ -5,7 +5,7 @@ import {
Saml2SigningBehavior,
SsoType,
} from "../../enums/ssoEnums";
import { BaseResponse } from "../response/baseResponse";
import { BaseResponse } from "../response/base.response";
import { SsoConfigView } from "../view/sso-config.view";
export class SsoConfigApi extends BaseResponse {