btrz-api-client 5.147.0 → 5.149.0
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/lib/client-standalone-min.js +1 -1
- package/lib/endpoints/accounts/users.js +15 -0
- package/lib/endpoints/operations/manifest.js +180 -165
- package/package.json +1 -1
- package/src/endpoints/accounts/users.js +8 -0
- package/src/endpoints/operations/manifest.js +10 -0
- package/test/endpoints/accounts/users.js +14 -0
- package/test/endpoints/operations/manifest.test.js +14 -0
- package/types/client.d.ts +14 -0
- package/types/constants.d.ts +1 -1
- package/types/endpoints/accounts/users.d.ts +8 -0
- package/types/endpoints/operations/manifest.d.ts +6 -0
- package/types/initializedClient.d.ts +14 -0
- package/types/productionDefaults.d.ts +2 -2
|
@@ -104,6 +104,12 @@ declare function manifestFactory({ client, internalAuthTokenProvider }: {
|
|
|
104
104
|
manifestId: any;
|
|
105
105
|
data: any;
|
|
106
106
|
}) => any;
|
|
107
|
+
createDispatchReporting: ({ token, jwtToken, headers, data }: {
|
|
108
|
+
token: any;
|
|
109
|
+
jwtToken: any;
|
|
110
|
+
headers: any;
|
|
111
|
+
data: any;
|
|
112
|
+
}) => any;
|
|
107
113
|
checkIn: {
|
|
108
114
|
create({ token, jwtToken, query, headers, data, manifestId, legFromId }: {
|
|
109
115
|
token: any;
|
|
@@ -2285,6 +2285,14 @@ declare const _exports: {
|
|
|
2285
2285
|
sequence: any;
|
|
2286
2286
|
headers: any;
|
|
2287
2287
|
}): any;
|
|
2288
|
+
update({ jwtToken, token, userId, sequenceId, sequence, headers }: {
|
|
2289
|
+
jwtToken: any;
|
|
2290
|
+
token: any;
|
|
2291
|
+
userId: any;
|
|
2292
|
+
sequenceId: any;
|
|
2293
|
+
sequence: any;
|
|
2294
|
+
headers: any;
|
|
2295
|
+
}): any;
|
|
2288
2296
|
};
|
|
2289
2297
|
};
|
|
2290
2298
|
__test: {
|
|
@@ -2784,6 +2792,12 @@ declare const _exports: {
|
|
|
2784
2792
|
manifestId: any;
|
|
2785
2793
|
data: any;
|
|
2786
2794
|
}) => any;
|
|
2795
|
+
createDispatchReporting: ({ token, jwtToken, headers, data }: {
|
|
2796
|
+
token: any;
|
|
2797
|
+
jwtToken: any;
|
|
2798
|
+
headers: any;
|
|
2799
|
+
data: any;
|
|
2800
|
+
}) => any;
|
|
2787
2801
|
checkIn: {
|
|
2788
2802
|
create({ token, jwtToken, query, headers, data, manifestId, legFromId }: {
|
|
2789
2803
|
token: any;
|