Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Change quotes

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
DanielRivers and coderabbitai[bot] authored Apr 4, 2024
1 parent 47df36f commit fc7ac45
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/sdk/utilities/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface GetFlagType {
code: string;
}

export type WebhookSource = "admin" | "api" | "user";
export type WebhookSource = 'admin' | 'api' | 'user';

export interface UserCreatedWebhookEvent {
data: {
Expand All @@ -56,7 +56,7 @@ export interface UserCreatedWebhookEvent {
event_id: string;
source: WebhookSource;
timestamp: string;
type: "user.created";
type: 'user.created';
}

export interface UserUpdatedWebhookEvent {
Expand All @@ -82,7 +82,7 @@ export interface UserUpdatedWebhookEvent {
event_id: string;
source: WebhookSource;
timestamp: string;
type: "user.updated";
type: 'user.updated';
}

export interface UserDeletedWebhookEvent {
Expand All @@ -94,7 +94,7 @@ export interface UserDeletedWebhookEvent {
event_id: string;
source: WebhookSource;
timestamp: string;
type: "user.deleted";
type: 'user.deleted';
}

export interface UserAuthenticatedWebhookEvent {
Expand All @@ -106,7 +106,7 @@ export interface UserAuthenticatedWebhookEvent {
event_id: string;
source: WebhookSource;
timestamp: string;
type: "user.authenticated";
type: 'user.authenticated';
}

export interface UserAuthenticationFailedWebhookEvent {
Expand All @@ -118,7 +118,7 @@ export interface UserAuthenticationFailedWebhookEvent {
event_id: string;
source: WebhookSource;
timestamp: string;
type: "user.authentication_failed";
type: 'user.authentication_failed';
}

export interface AccessRequestCreatedWebhookEvent {
Expand Down

0 comments on commit fc7ac45

Please sign in to comment.