btrz-api-client 7.2.2 → 7.4.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/shifts.js +20 -0
- package/lib/endpoints/operations/manifest.js +164 -149
- package/package.json +1 -1
- package/src/endpoints/accounts/shifts.js +14 -0
- package/src/endpoints/operations/manifest.js +12 -0
- package/test/endpoints/accounts/shifts.test.js +10 -0
- package/test/endpoints/operations/manifest.test.js +21 -0
- package/types/client.d.ts +15 -0
- package/types/endpoints/accounts/shifts.d.ts +9 -0
- package/types/endpoints/operations/manifest.d.ts +6 -0
- package/types/initializedClient.d.ts +15 -0
|
@@ -2495,6 +2495,15 @@ declare const _exports: {
|
|
|
2495
2495
|
headers: any;
|
|
2496
2496
|
query: any;
|
|
2497
2497
|
}) => any;
|
|
2498
|
+
requiresAgencyShiftClosure: {
|
|
2499
|
+
put({ token, jwtToken, shiftId, headers, shiftData }: {
|
|
2500
|
+
token: any;
|
|
2501
|
+
jwtToken: any;
|
|
2502
|
+
shiftId: any;
|
|
2503
|
+
headers: any;
|
|
2504
|
+
shiftData: any;
|
|
2505
|
+
}): any;
|
|
2506
|
+
};
|
|
2498
2507
|
payments: {
|
|
2499
2508
|
get({ token, jwtToken, shiftId, headers }: {
|
|
2500
2509
|
token: any;
|
|
@@ -3344,6 +3353,12 @@ declare const _exports: {
|
|
|
3344
3353
|
headers: any;
|
|
3345
3354
|
data: any;
|
|
3346
3355
|
}) => any;
|
|
3356
|
+
statusBulkUpdate: ({ token, jwtToken, data, headers }: {
|
|
3357
|
+
token: any;
|
|
3358
|
+
jwtToken: any;
|
|
3359
|
+
data: any;
|
|
3360
|
+
headers: any;
|
|
3361
|
+
}) => any;
|
|
3347
3362
|
checkIn: {
|
|
3348
3363
|
create({ token, jwtToken, query, headers, data, manifestId, legFromId }: {
|
|
3349
3364
|
token: any;
|