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:
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
export class BillingSyncConfigApi extends BaseResponse {
|
||||
billingSyncKey: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
export class CardApi extends BaseResponse {
|
||||
cardholderName: string;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
export class IdentityApi extends BaseResponse {
|
||||
title: string;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
import { LoginUriApi } from "./login-uri.api";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
export class PermissionsApi extends BaseResponse {
|
||||
accessEventLogs: boolean;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
export class SendFileApi extends BaseResponse {
|
||||
id: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseResponse } from "../response/baseResponse";
|
||||
import { BaseResponse } from "../response/base.response";
|
||||
|
||||
export class SendTextApi extends BaseResponse {
|
||||
text: string;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user