@kl1/contracts 1.0.60 → 1.0.61

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/index.mjs CHANGED
@@ -2708,6 +2708,19 @@ var contactContract = initContract10().router(
2708
2708
  422: DefaultUnprocessibleSchema
2709
2709
  },
2710
2710
  summary: "Get a contact by id"
2711
+ },
2712
+ getExportContacts: {
2713
+ method: "GET",
2714
+ path: "/export",
2715
+ query: ContactContractValidationSchema.getAll.request,
2716
+ responses: {
2717
+ 200: null,
2718
+ 400: z41.object({
2719
+ message: z41.string()
2720
+ }),
2721
+ 401: DefaultUnauthorizedSchema,
2722
+ 404: DefaultNotFoundSchema
2723
+ }
2711
2724
  }
2712
2725
  },
2713
2726
  {
@@ -6058,6 +6071,7 @@ export {
6058
6071
  commentActivityContract,
6059
6072
  commentContract,
6060
6073
  companyContract,
6074
+ contactContract,
6061
6075
  cxLogContract,
6062
6076
  dashboardContract,
6063
6077
  evaluateFormContract,