@opexa/portal-sdk 0.0.19 → 0.0.20
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/sdk/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/sdk/types.d.ts
CHANGED
|
@@ -667,9 +667,9 @@ export interface GCashWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
|
667
667
|
recipientMobileNumber: string;
|
|
668
668
|
}
|
|
669
669
|
export interface MayaWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
670
|
-
type: '
|
|
670
|
+
type: 'MAYA_APP';
|
|
671
671
|
bank?: never;
|
|
672
|
-
recipientMobileNumber
|
|
672
|
+
recipientMobileNumber?: never;
|
|
673
673
|
}
|
|
674
674
|
export type WithdrawalRecord = ManualWithdrawalRecord | BankWithdrawalRecord | GCashWithdrawalRecord | MayaWithdrawalRecord;
|
|
675
675
|
export interface WithdrawalRecordsInput extends Internal.WithdrawalRecordsQueryVariables {
|