bt-core-app 2.0.255 → 2.0.257
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.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -804,7 +804,7 @@ declare interface DeleteOptions_2 extends StorePathOptions, DoActionOptions {
|
|
|
804
804
|
|
|
805
805
|
export declare interface DemoApiGroup {
|
|
806
806
|
defaultFilter?: <T>(list: T[], ownerID?: string) => T[];
|
|
807
|
-
defaultFilterProp?: string;
|
|
807
|
+
defaultFilterProp?: 'buyerID' | 'courierID' | 'companyAccountID' | 'sellerID' | string;
|
|
808
808
|
nav?: string | string[];
|
|
809
809
|
path?: string;
|
|
810
810
|
data?: any[];
|
|
@@ -2842,7 +2842,7 @@ export declare type WithBuyerID<T> = {
|
|
|
2842
2842
|
} & T;
|
|
2843
2843
|
|
|
2844
2844
|
export declare type WithCompanyID<T> = {
|
|
2845
|
-
|
|
2845
|
+
companyAccountID?: string;
|
|
2846
2846
|
} & T;
|
|
2847
2847
|
|
|
2848
2848
|
export declare type WithCourierID<T> = {
|
package/package.json
CHANGED