@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.
@@ -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;
@@ -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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opexa/portal-sdk",
3
3
  "type": "module",
4
- "version": "0.0.37",
4
+ "version": "0.0.38",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "typings": "dist/index.d.ts",