@kl1/contracts 1.2.75-uat → 1.2.77-uat

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
@@ -2645,7 +2645,7 @@ var channelContract = (0, import_core7.initContract)().router(
2645
2645
  },
2646
2646
  disconnect: {
2647
2647
  method: "POST",
2648
- path: "/disconnect/:channelId",
2648
+ path: "ms/disconnect/:channelId",
2649
2649
  pathParams: import_zod41.default.object({
2650
2650
  channelId: import_zod41.default.string().uuid()
2651
2651
  }),
@@ -2660,7 +2660,7 @@ var channelContract = (0, import_core7.initContract)().router(
2660
2660
  },
2661
2661
  delete: {
2662
2662
  method: "DELETE",
2663
- path: "/delete/:channelId",
2663
+ path: "ms/delete/:channelId",
2664
2664
  pathParams: import_zod41.default.object({
2665
2665
  channelId: import_zod41.default.string().uuid()
2666
2666
  }),
@@ -2675,7 +2675,7 @@ var channelContract = (0, import_core7.initContract)().router(
2675
2675
  },
2676
2676
  rename: {
2677
2677
  method: "POST",
2678
- path: "/rename/:channelId",
2678
+ path: "ms/rename/:channelId",
2679
2679
  pathParams: import_zod41.default.object({
2680
2680
  channelId: import_zod41.default.string().uuid()
2681
2681
  }),
@@ -2692,7 +2692,7 @@ var channelContract = (0, import_core7.initContract)().router(
2692
2692
  },
2693
2693
  reconnect: {
2694
2694
  method: "POST",
2695
- path: "/reconnect/:channelId",
2695
+ path: "ms/reconnect/:channelId",
2696
2696
  pathParams: import_zod41.default.object({
2697
2697
  channelId: import_zod41.default.string().uuid()
2698
2698
  }),
@@ -2707,7 +2707,7 @@ var channelContract = (0, import_core7.initContract)().router(
2707
2707
  },
2708
2708
  relogin: {
2709
2709
  method: "POST",
2710
- path: "/relogin",
2710
+ path: "ms/relogin",
2711
2711
  responses: {
2712
2712
  200: DefaultSuccessResponseSchema.extend({
2713
2713
  channel: ChannelSchema
@@ -2719,7 +2719,7 @@ var channelContract = (0, import_core7.initContract)().router(
2719
2719
  },
2720
2720
  checknewTenant: {
2721
2721
  method: "GET",
2722
- path: "/check-new-tenant",
2722
+ path: "ms/check-new-tenant",
2723
2723
  responses: {
2724
2724
  200: DefaultSuccessResponseSchema.extend({
2725
2725
  data: tenantCheckedSchema
@@ -2730,7 +2730,7 @@ var channelContract = (0, import_core7.initContract)().router(
2730
2730
  },
2731
2731
  updateNewTenant: {
2732
2732
  method: "PATCH",
2733
- path: "/update-new-tenant",
2733
+ path: "ms/update-new-tenant",
2734
2734
  responses: {
2735
2735
  200: DefaultSuccessResponseSchema.extend({
2736
2736
  message: import_zod41.default.string()
@@ -2771,7 +2771,7 @@ var channelContract = (0, import_core7.initContract)().router(
2771
2771
  },
2772
2772
  {
2773
2773
  baseHeaders: DefaultHeaderSchema,
2774
- pathPrefix: "ms/channel"
2774
+ pathPrefix: "channel"
2775
2775
  }
2776
2776
  );
2777
2777
  var channelFacebookFeedContract = (0, import_core7.initContract)().router(