@open-tender/cloud 0.1.66 → 0.1.67
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.
|
@@ -2,7 +2,7 @@ import { AppState } from '../../app';
|
|
|
2
2
|
import { Thanx, RequestError, RequestStatus } from '@open-tender/types';
|
|
3
3
|
export interface CustomerThanxState {
|
|
4
4
|
thanx: Thanx | null;
|
|
5
|
-
error:
|
|
5
|
+
error: RequestError;
|
|
6
6
|
loading: RequestStatus;
|
|
7
7
|
}
|
|
8
8
|
export declare enum CustomerThanxActionType {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { AppState } from '../../app';
|
|
2
|
-
import { RequestError, RequestStatus } from '@open-tender/types';
|
|
2
|
+
import { RequestError, RequestStatus, TPLS } from '@open-tender/types';
|
|
3
3
|
export interface CustomerTplsState {
|
|
4
|
-
tpls:
|
|
5
|
-
error:
|
|
4
|
+
tpls: TPLS | null;
|
|
5
|
+
error: RequestError;
|
|
6
6
|
loading: RequestStatus;
|
|
7
7
|
}
|
|
8
8
|
export declare enum CustomerTplsActionType {
|
|
9
9
|
FetchCustomerTpls = "customer/fetchCustomerTpls"
|
|
10
10
|
}
|
|
11
|
-
export declare const fetchCustomerTpls: import("@reduxjs/toolkit").AsyncThunk<
|
|
11
|
+
export declare const fetchCustomerTpls: import("@reduxjs/toolkit").AsyncThunk<TPLS, void, {
|
|
12
12
|
state: AppState;
|
|
13
13
|
rejectValue: RequestError;
|
|
14
14
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
|
@@ -2,7 +2,7 @@ import { AppState } from '../../app';
|
|
|
2
2
|
import { Thanx, RequestError, RequestStatus } from '@open-tender/types';
|
|
3
3
|
export interface CustomerThanxState {
|
|
4
4
|
thanx: Thanx | null;
|
|
5
|
-
error:
|
|
5
|
+
error: RequestError;
|
|
6
6
|
loading: RequestStatus;
|
|
7
7
|
}
|
|
8
8
|
export declare enum CustomerThanxActionType {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { AppState } from '../../app';
|
|
2
|
-
import { RequestError, RequestStatus } from '@open-tender/types';
|
|
2
|
+
import { RequestError, RequestStatus, TPLS } from '@open-tender/types';
|
|
3
3
|
export interface CustomerTplsState {
|
|
4
|
-
tpls:
|
|
5
|
-
error:
|
|
4
|
+
tpls: TPLS | null;
|
|
5
|
+
error: RequestError;
|
|
6
6
|
loading: RequestStatus;
|
|
7
7
|
}
|
|
8
8
|
export declare enum CustomerTplsActionType {
|
|
9
9
|
FetchCustomerTpls = "customer/fetchCustomerTpls"
|
|
10
10
|
}
|
|
11
|
-
export declare const fetchCustomerTpls: import("@reduxjs/toolkit").AsyncThunk<
|
|
11
|
+
export declare const fetchCustomerTpls: import("@reduxjs/toolkit").AsyncThunk<TPLS, void, {
|
|
12
12
|
state: AppState;
|
|
13
13
|
rejectValue: RequestError;
|
|
14
14
|
dispatch?: import("redux").Dispatch<import("redux").AnyAction> | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-tender/cloud",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.67",
|
|
4
4
|
"description": "A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our cloud-based Order API.",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"typescript": "^4.8.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@open-tender/types": "^0.2.
|
|
53
|
-
"@open-tender/utils": "^0.1.
|
|
52
|
+
"@open-tender/types": "^0.2.59",
|
|
53
|
+
"@open-tender/utils": "^0.1.129",
|
|
54
54
|
"@reduxjs/toolkit": "^1.8.5",
|
|
55
55
|
"react": "^18.2.0"
|
|
56
56
|
},
|