diff --git a/es/components/AbstractComponents.d.ts b/es/components/AbstractComponents.d.ts index edb15ee0..852d9e50 100644 --- a/es/components/AbstractComponents.d.ts +++ b/es/components/AbstractComponents.d.ts @@ -66,14 +66,14 @@ declare const Detail: (props: ReactComponentProps; title?: string | undefined; bordered?: boolean | undefined; - layout?: "vertical" | "horizontal" | undefined; + layout?: "horizontal" | "vertical" | undefined; }>) => React.ReactElement; declare const Upsert: (props: ReactComponentProps; entity: T; attributes: OakAbsAttrUpsertDef[]; data: EntityDict[T]["Schema"]; - layout: "vertical" | "horizontal"; + layout: "horizontal" | "vertical"; mode: "default" | "card"; }>) => React.ReactElement; export { FilterPanel, List, ListPro, Detail, Upsert, ReactComponentProps, ColumnProps, RowWithActions, OakExtraActionProps, OakAbsAttrDef, onActionFnDef, }; diff --git a/es/components/pay/detail/index.d.ts b/es/components/pay/detail/index.d.ts index 1a602cd0..d0dfe55b 100644 --- a/es/components/pay/detail/index.d.ts +++ b/es/components/pay/detail/index.d.ts @@ -9,7 +9,7 @@ declare const _default: (props: import("oak-frontend-base").ReactComponentProps< goBackable: boolean; disableAutoPay: boolean; closeWhenFailure: boolean; - mode: "frontend" | "backend"; + mode: "backend" | "frontend"; autoSuccessAt: boolean; disableClose: boolean; }>) => React.ReactElement; diff --git a/es/oak-app-domain/Message/_baseSchema.d.ts b/es/oak-app-domain/Message/_baseSchema.d.ts index 8078320e..e8ea7c92 100644 --- a/es/oak-app-domain/Message/_baseSchema.d.ts +++ b/es/oak-app-domain/Message/_baseSchema.d.ts @@ -13,6 +13,9 @@ export type Router = { type MessageRestriction = { systemIds?: string[]; channels?: Array; + disableRouter?: { + [key: Channel]: boolean; + }; }; type Channels = Channel[]; export type OpSchema = EntityShape & { diff --git a/es/utils/payClazz/WechatPay/index.d.ts b/es/utils/payClazz/WechatPay/index.d.ts index ce1d041a..eeba2b4b 100644 --- a/es/utils/payClazz/WechatPay/index.d.ts +++ b/es/utils/payClazz/WechatPay/index.d.ts @@ -1,4 +1,4 @@ import WechatPay from './WechatPay'; import WechatPayDebug from './WechatPay.debug'; -declare const _default: typeof WechatPay | typeof WechatPayDebug; +declare const _default: typeof WechatPayDebug | typeof WechatPay; export default _default; diff --git a/es/utils/shipClazz/WechatMpShip/index.d.ts b/es/utils/shipClazz/WechatMpShip/index.d.ts index 745c595a..8c0f6aff 100644 --- a/es/utils/shipClazz/WechatMpShip/index.d.ts +++ b/es/utils/shipClazz/WechatMpShip/index.d.ts @@ -1,3 +1,3 @@ -import WechatMpShip from './WechatMpShip'; -declare const _default: typeof WechatMpShip; +import WechatMpShipDebug from './WechatMpShip.debug'; +declare const _default: typeof WechatMpShipDebug; export default _default; diff --git a/lib/oak-app-domain/Message/_baseSchema.d.ts b/lib/oak-app-domain/Message/_baseSchema.d.ts index 8078320e..e8ea7c92 100644 --- a/lib/oak-app-domain/Message/_baseSchema.d.ts +++ b/lib/oak-app-domain/Message/_baseSchema.d.ts @@ -13,6 +13,9 @@ export type Router = { type MessageRestriction = { systemIds?: string[]; channels?: Array; + disableRouter?: { + [key: Channel]: boolean; + }; }; type Channels = Channel[]; export type OpSchema = EntityShape & {