@go-avro/avro-js 0.0.4-beta.28 → 0.0.4-beta.29

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.
@@ -151,6 +151,7 @@ declare module '../client/QueryClient' {
151
151
  tasks: {
152
152
  id: string;
153
153
  status: string;
154
+ payment_option_id: string;
154
155
  }[];
155
156
  }>>;
156
157
  useCreateProposal(): ReturnType<typeof useMutation<{
@@ -1,3 +1,4 @@
1
+ import { FrequencyType } from "..";
1
2
  export * from "../types/api/_Event";
2
3
  export * from "../types/api/AdditionalCharge";
3
4
  export * from "../types/api/Avro";
@@ -69,6 +70,7 @@ export type TeamSchedule = {
69
70
  schedule: ScheduleItem[];
70
71
  name: string;
71
72
  optimize: boolean;
73
+ frequency: FrequencyType;
72
74
  };
73
75
  export type RouteScheduleConfig = {
74
76
  schedules: TeamSchedule[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@go-avro/avro-js",
3
- "version": "0.0.4-beta.28",
3
+ "version": "0.0.4-beta.29",
4
4
  "description": "JS client for Avro backend integration.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",