diff --git a/docs/event_definitions/Nonprofit/Transaction.ts b/docs/event_definitions/Nonprofit/Transaction.ts index 791c003f..d4a1331d 100644 --- a/docs/event_definitions/Nonprofit/Transaction.ts +++ b/docs/event_definitions/Nonprofit/Transaction.ts @@ -1,9 +1,9 @@ // License: LGPL-3.0-or-later -import type { Amount, HoudiniObject, IdType, HoudID } from "../common"; +import type { Amount, HoudiniObject, IdType, HouID } from "../common"; import type Nonprofit from './'; -export interface Transaction extends HoudiniObject { +export interface Transaction extends HoudiniObject { amount: Amount; nonprofit: IdType | Nonprofit; object: 'transaction'; diff --git a/docs/event_definitions/common.ts b/docs/event_definitions/common.ts index 413a42ac..11b19a22 100644 --- a/docs/event_definitions/common.ts +++ b/docs/event_definitions/common.ts @@ -9,7 +9,7 @@ export type IdType = number; /** * an identifier for HoudiniObjects which is unique among all HoudiniObjects. */ -export type HoudID = string; +export type HouID = string; /** * Describes a monetary value in the minimum unit for this current. Corresponds to Money class in @@ -60,7 +60,7 @@ export type RecurrenceRule = { * Every object controlled by the Houdini event publisher must meet this standard interface * and will inherit from it. */ -export interface HoudiniObject { +export interface HoudiniObject { /** * An IdType which unique which uniquely identifies this object * from all other similar objects @@ -73,7 +73,7 @@ export interface HoudiniObject { } -type HoudiniObjectOfAllIds = HoudiniObject | HoudiniObject; +type HoudiniObjectOfAllIds = HoudiniObject | HoudiniObject; /** * An event published by Houdini * @@ -90,9 +90,9 @@ export interface HoudiniEvent