-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa3275a
commit dfdfd53
Showing
42 changed files
with
418 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/api/resources/businessUserEvents/client/requests/BusinessUserEvent.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flagright from "../../../.."; | ||
|
||
/** | ||
* @example | ||
* { | ||
* timestamp: 1.1, | ||
* userId: "userId" | ||
* } | ||
*/ | ||
export interface BusinessUserEvent { | ||
/** | ||
* Boolean string whether Flagright should allow a Business user event to be applied to a Consumer user with the same user ID. This will converts a Consumer user to a Business user. | ||
*/ | ||
allowUserTypeConversion?: Flagright.BooleanString; | ||
/** Timestamp of the event */ | ||
timestamp: number; | ||
/** Transaction ID the event pertains to */ | ||
userId: string; | ||
/** Unique event ID */ | ||
eventId?: string; | ||
/** Reason for the event or a state change */ | ||
reason?: string; | ||
/** Event description */ | ||
eventDescription?: string; | ||
updatedBusinessUserAttributes?: Flagright.BusinessOptional; | ||
} |
22 changes: 0 additions & 22 deletions
22
src/api/resources/businessUserEvents/client/requests/BusinessUserEventsCreateRequest.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { BusinessUserEventsCreateRequest } from "./BusinessUserEventsCreateRequest"; | ||
export { BusinessUserEvent } from "./BusinessUserEvent"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/api/resources/consumerUserEvents/client/requests/ConsumerUserEvent.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as Flagright from "../../../.."; | ||
|
||
/** | ||
* @example | ||
* { | ||
* timestamp: 1.1, | ||
* userId: "userId" | ||
* } | ||
*/ | ||
export interface ConsumerUserEvent { | ||
/** | ||
* Boolean string whether Flagright should allow a Consumer user event to be applied to a Business user with the same user ID. This will converts a Business user to a Consumer user. | ||
*/ | ||
allowUserTypeConversion?: Flagright.BooleanString; | ||
/** Timestamp of the event */ | ||
timestamp: number; | ||
/** Transaction ID the event pertains to */ | ||
userId: string; | ||
/** Unique event ID */ | ||
eventId?: string; | ||
/** Reason for the event or a state change */ | ||
reason?: string; | ||
/** Event description */ | ||
eventDescription?: string; | ||
updatedConsumerUserAttributes?: Flagright.UserOptional; | ||
} |
22 changes: 0 additions & 22 deletions
22
src/api/resources/consumerUserEvents/client/requests/ConsumerUserEventsCreateRequest.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { ConsumerUserEventsCreateRequest } from "./ConsumerUserEventsCreateRequest"; | ||
export { ConsumerUserEvent } from "./ConsumerUserEvent"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export {}; | ||
export * from "./requests"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { TransactionEvent } from "./TransactionEvent"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.