@posx/core 5.5.92 → 5.5.94
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/build/index.d.ts +4 -4
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -962,10 +962,6 @@ declare module '@posx/core/services/app.service' {
|
|
|
962
962
|
private renderPrintCommand;
|
|
963
963
|
}
|
|
964
964
|
|
|
965
|
-
}
|
|
966
|
-
declare module '@posx/core/services/invoice.merge.test' {
|
|
967
|
-
export {};
|
|
968
|
-
|
|
969
965
|
}
|
|
970
966
|
declare module '@posx/core/services/invoice.service' {
|
|
971
967
|
import { IAppRemoteService, AppRemoteService } from '@posx/core/services/abstract.service';
|
|
@@ -1898,6 +1894,8 @@ declare module '@posx/core/types/config.type' {
|
|
|
1898
1894
|
cache: ICache;
|
|
1899
1895
|
storage: {
|
|
1900
1896
|
pricing_lookup_keys: string[];
|
|
1897
|
+
pay_in_reasons: string[];
|
|
1898
|
+
pay_out_reasons: string[];
|
|
1901
1899
|
};
|
|
1902
1900
|
}
|
|
1903
1901
|
export class AppConfig extends AppCoreModel implements IAppConfig {
|
|
@@ -1905,6 +1903,8 @@ declare module '@posx/core/types/config.type' {
|
|
|
1905
1903
|
cache: Cache;
|
|
1906
1904
|
storage: {
|
|
1907
1905
|
pricing_lookup_keys: any[];
|
|
1906
|
+
pay_in_reasons: any[];
|
|
1907
|
+
pay_out_reasons: any[];
|
|
1908
1908
|
};
|
|
1909
1909
|
constructor();
|
|
1910
1910
|
}
|