@opexa/portal-sdk 0.0.37 → 0.0.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +98 -93
- package/dist/index.mjs.map +1 -1
- package/dist/sdk/types.d.ts +2 -0
- package/dist/services/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/sdk/types.d.ts
CHANGED
|
@@ -989,6 +989,8 @@ export type ActivityRecordType = UnionAlias<Internal.ActivityRecordType>;
|
|
|
989
989
|
export interface ActivityRecord {
|
|
990
990
|
id: string;
|
|
991
991
|
type: ActivityRecordType;
|
|
992
|
+
domain?: string;
|
|
993
|
+
amount?: number;
|
|
992
994
|
/** @format html */
|
|
993
995
|
details: string;
|
|
994
996
|
dateTimeCreated: Date;
|
package/dist/services/types.d.ts
CHANGED
|
@@ -927,6 +927,8 @@ export type ActivityRecordType = 'REGISTRATION' | 'LOGIN' | 'DEPOSIT' | 'WITHDRA
|
|
|
927
927
|
export interface ActivityRecord {
|
|
928
928
|
id: string;
|
|
929
929
|
type: ActivityRecordType;
|
|
930
|
+
domain?: string | null;
|
|
931
|
+
amount?: Decimal | null;
|
|
930
932
|
details: Html;
|
|
931
933
|
dateTimeCreated: DateString;
|
|
932
934
|
}
|