@go-avro/avro-js 0.0.68 → 0.0.70
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/client/QueryClient.d.ts +3 -3
- package/dist/client/hooks/routes.js +21 -3
- package/dist/types/api.d.ts +9 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Socket } from 'socket.io-client';
|
|
2
2
|
import { InfiniteData, QueryClient, UseInfiniteQueryResult, useMutation, UseQueryResult } from '@tanstack/react-query';
|
|
3
3
|
import { AuthManager } from '../auth/AuthManager';
|
|
4
|
-
import { _Event, ActiveSessionSummary, ApiInfo, Avro, Bill, BillInsightData, Break, Chat, CheckIn, Company, EventUpdatePayload, FinancialInsightData, RevenueInsightData, Job, EventInsightData, LoginResponse, Message, Plan, Route, ServiceMonth, Session, Team, User, UserCompanyAssociation, Skill, Group, Label, RouteScheduleConfig, CatalogItem, Payout, Prepayment, Timecard, TimecardActionType, TimecardStatus } from '../types/api';
|
|
4
|
+
import { _Event, ActiveSessionSummary, ApiInfo, Avro, Bill, BillInsightData, Break, Chat, CheckIn, Company, EventUpdatePayload, FinancialInsightData, RevenueInsightData, Job, EventInsightData, LoginResponse, Message, Plan, Route, ServiceMonth, Session, Team, User, UserCompanyAssociation, Skill, Group, Label, RouteScheduleConfig, RouteWritePayload, CatalogItem, Payout, Prepayment, Timecard, TimecardActionType, TimecardStatus } from '../types/api';
|
|
5
5
|
import { AuthState, Tokens } from '../types/auth';
|
|
6
6
|
import { CancelToken, ClientId, RetryStrategy } from '../types/client';
|
|
7
7
|
import { StandardError } from '../types/error';
|
|
@@ -304,7 +304,7 @@ declare module '../client/QueryClient' {
|
|
|
304
304
|
useCreateRoute(): ReturnType<typeof useMutation<{
|
|
305
305
|
id: string;
|
|
306
306
|
}, StandardError, {
|
|
307
|
-
routeData:
|
|
307
|
+
routeData: RouteWritePayload;
|
|
308
308
|
}>>;
|
|
309
309
|
useCreateTeam(): ReturnType<typeof useMutation<{
|
|
310
310
|
id: string;
|
|
@@ -457,7 +457,7 @@ declare module '../client/QueryClient' {
|
|
|
457
457
|
msg: string;
|
|
458
458
|
}, StandardError, {
|
|
459
459
|
routeId: string;
|
|
460
|
-
updates:
|
|
460
|
+
updates: RouteWritePayload;
|
|
461
461
|
}>>;
|
|
462
462
|
useUpdateEvents(): ReturnType<typeof useMutation<void, StandardError, {
|
|
463
463
|
events: (_Event & {
|
|
@@ -49,7 +49,7 @@ AvroQueryClient.prototype.useCreateRoute = function () {
|
|
|
49
49
|
headers: { 'Content-Type': 'application/json' },
|
|
50
50
|
});
|
|
51
51
|
},
|
|
52
|
-
onMutate: async ({ routeData }) => {
|
|
52
|
+
onMutate: async ({ routeData: { optimize: _optimize, ...routeData } }) => {
|
|
53
53
|
await queryClient.cancelQueries({ queryKey: ['routes'] });
|
|
54
54
|
const previousRoutes = queryClient.getQueryData(['routes']);
|
|
55
55
|
queryClient.setQueriesData({ queryKey: ['routes'] }, (oldData) => {
|
|
@@ -90,6 +90,24 @@ AvroQueryClient.prototype.useCreateRoute = function () {
|
|
|
90
90
|
queryClient.setQueryData(['routes'], context.previousRoutes);
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
+
onSettled: () => {
|
|
94
|
+
queryClient.setQueriesData({ queryKey: ['routes'] }, (oldData) => {
|
|
95
|
+
if (!oldData)
|
|
96
|
+
return oldData;
|
|
97
|
+
if (oldData.pages) {
|
|
98
|
+
return {
|
|
99
|
+
...oldData,
|
|
100
|
+
pages: oldData.pages
|
|
101
|
+
.map((page) => page.filter((r) => r.id !== 'temp-id'))
|
|
102
|
+
.filter((page) => page.length > 0),
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
if (Array.isArray(oldData)) {
|
|
106
|
+
return oldData.filter((r) => r.id !== 'temp-id');
|
|
107
|
+
}
|
|
108
|
+
return oldData;
|
|
109
|
+
});
|
|
110
|
+
},
|
|
93
111
|
});
|
|
94
112
|
};
|
|
95
113
|
AvroQueryClient.prototype.useScheduleRoutes = function () {
|
|
@@ -113,14 +131,14 @@ AvroQueryClient.prototype.useScheduleRoutes = function () {
|
|
|
113
131
|
AvroQueryClient.prototype.useUpdateRoute = function () {
|
|
114
132
|
const queryClient = this.getQueryClient();
|
|
115
133
|
return useMutation({
|
|
116
|
-
mutationFn: async ({ routeId, updates }) => {
|
|
134
|
+
mutationFn: async ({ routeId, updates, }) => {
|
|
117
135
|
return this.put({
|
|
118
136
|
path: `/route/${routeId}`,
|
|
119
137
|
data: JSON.stringify(updates),
|
|
120
138
|
headers: { 'Content-Type': 'application/json' },
|
|
121
139
|
});
|
|
122
140
|
},
|
|
123
|
-
onMutate: async ({ routeId, updates }) => {
|
|
141
|
+
onMutate: async ({ routeId, updates: { optimize: _optimize, ...updates } }) => {
|
|
124
142
|
await queryClient.cancelQueries({ queryKey: ['routes', routeId] });
|
|
125
143
|
await queryClient.cancelQueries({ queryKey: ['routes'] });
|
|
126
144
|
const previousRoute = queryClient.getQueryData(['routes', routeId]);
|
package/dist/types/api.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { FrequencyType } from '..';
|
|
2
2
|
import { _Event } from '../types/api/_Event';
|
|
3
|
+
import { Route } from '../types/api/Route';
|
|
3
4
|
export * from '../types/api/_Event';
|
|
4
5
|
export * from '../types/api/AdditionalCharge';
|
|
5
6
|
export * from '../types/api/Avro';
|
|
@@ -241,6 +242,14 @@ export interface EventUserUpdate {
|
|
|
241
242
|
time_started?: number | null;
|
|
242
243
|
time_ended?: number | null;
|
|
243
244
|
}
|
|
245
|
+
/**
|
|
246
|
+
* Route create/update payload. `optimize` explicitly requests an
|
|
247
|
+
* optimizer run on this save; `is_optimized` itself is server-owned
|
|
248
|
+
* (true only when the current order came from the optimizer).
|
|
249
|
+
*/
|
|
250
|
+
export type RouteWritePayload = Partial<Omit<Route, 'is_optimized'>> & {
|
|
251
|
+
optimize?: boolean;
|
|
252
|
+
};
|
|
244
253
|
/** Event update payload: _Event fields, but users use the wire shape. */
|
|
245
254
|
export type EventUpdatePayload = Partial<Omit<_Event, 'users'>> & {
|
|
246
255
|
users?: EventUserUpdate[];
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const AVRO_JS_VERSION = "0.0.
|
|
1
|
+
export declare const AVRO_JS_VERSION = "0.0.70";
|
package/dist/version.js
CHANGED