@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.js CHANGED
@@ -39,6 +39,7 @@ __export(src_exports, {
39
39
  commentActivityContract: () => commentActivityContract,
40
40
  commentContract: () => commentContract,
41
41
  companyContract: () => companyContract,
42
+ contactContract: () => contactContract,
42
43
  cxLogContract: () => cxLogContract,
43
44
  dashboardContract: () => dashboardContract,
44
45
  evaluateFormContract: () => evaluateFormContract,
@@ -2768,6 +2769,19 @@ var contactContract = (0, import_core10.initContract)().router(
2768
2769
  422: DefaultUnprocessibleSchema
2769
2770
  },
2770
2771
  summary: "Get a contact by id"
2772
+ },
2773
+ getExportContacts: {
2774
+ method: "GET",
2775
+ path: "/export",
2776
+ query: ContactContractValidationSchema.getAll.request,
2777
+ responses: {
2778
+ 200: null,
2779
+ 400: import_zod41.default.object({
2780
+ message: import_zod41.default.string()
2781
+ }),
2782
+ 401: DefaultUnauthorizedSchema,
2783
+ 404: DefaultNotFoundSchema
2784
+ }
2771
2785
  }
2772
2786
  },
2773
2787
  {
@@ -6119,6 +6133,7 @@ var telephonyContract = (0, import_core36.initContract)().router({
6119
6133
  commentActivityContract,
6120
6134
  commentContract,
6121
6135
  companyContract,
6136
+ contactContract,
6122
6137
  cxLogContract,
6123
6138
  dashboardContract,
6124
6139
  evaluateFormContract,