@kl1/contracts 1.3.47 → 1.3.49

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.
@@ -159,18 +159,26 @@ export declare const CsatPreferencesSchema: z.ZodNullable<z.ZodOptional<z.ZodObj
159
159
  scaleOptions: z.ZodArray<z.ZodObject<{
160
160
  value: z.ZodString;
161
161
  label: z.ZodNullable<z.ZodOptional<z.ZodString>>;
162
+ color: z.ZodNullable<z.ZodOptional<z.ZodString>>;
163
+ style: z.ZodNullable<z.ZodOptional<z.ZodString>>;
162
164
  }, "strip", z.ZodTypeAny, {
163
165
  value: string;
164
166
  label?: string | null | undefined;
167
+ color?: string | null | undefined;
168
+ style?: string | null | undefined;
165
169
  }, {
166
170
  value: string;
167
171
  label?: string | null | undefined;
172
+ color?: string | null | undefined;
173
+ style?: string | null | undefined;
168
174
  }>, "many">;
169
175
  }, "strip", z.ZodTypeAny, {
170
176
  headline: string;
171
177
  scaleOptions: {
172
178
  value: string;
173
179
  label?: string | null | undefined;
180
+ color?: string | null | undefined;
181
+ style?: string | null | undefined;
174
182
  }[];
175
183
  image?: string | null | undefined;
176
184
  }, {
@@ -178,6 +186,8 @@ export declare const CsatPreferencesSchema: z.ZodNullable<z.ZodOptional<z.ZodObj
178
186
  scaleOptions: {
179
187
  value: string;
180
188
  label?: string | null | undefined;
189
+ color?: string | null | undefined;
190
+ style?: string | null | undefined;
181
191
  }[];
182
192
  image?: string | null | undefined;
183
193
  }>>>;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/channel/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,uJAa5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,uDAGlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8ChC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;IAYrB,CAAC;AAEd;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+DxB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../src/channel/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,uJAa5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,uDAGlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8ChC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAcrB,CAAC;AAEd;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+DxB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;EAG9B,CAAC"}
@@ -24597,7 +24597,7 @@ export declare const apiContract: {
24597
24597
  error?: any;
24598
24598
  }>;
24599
24599
  };
24600
- path: "ms/cx-logs";
24600
+ path: "ms/cxs/cx-logs";
24601
24601
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24602
24602
  'x-tenant': import("zod").ZodString;
24603
24603
  'x-service-token': import("zod").ZodString;
@@ -10590,7 +10590,7 @@ export declare const cxLogContract: {
10590
10590
  error?: any;
10591
10591
  }>;
10592
10592
  };
10593
- path: "ms/cx-logs";
10593
+ path: "ms/cxs/cx-logs";
10594
10594
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
10595
10595
  'x-tenant': z.ZodString;
10596
10596
  'x-service-token': z.ZodString;
package/dist/index.js CHANGED
@@ -318,7 +318,9 @@ var CsatPreferencesSchema = import_zod6.default.object({
318
318
  scaleOptions: import_zod6.default.array(
319
319
  import_zod6.default.object({
320
320
  value: import_zod6.default.string(),
321
- label: import_zod6.default.string().optional().nullable()
321
+ label: import_zod6.default.string().optional().nullable(),
322
+ color: import_zod6.default.string().optional().nullable(),
323
+ style: import_zod6.default.string().optional().nullable()
322
324
  })
323
325
  )
324
326
  }).optional().nullable();
@@ -4245,7 +4247,7 @@ var cxLogContract = (0, import_core12.initContract)().router(
4245
4247
  {
4246
4248
  findAll: {
4247
4249
  method: "GET",
4248
- path: "/cx-logs",
4250
+ path: "/cxs/cx-logs",
4249
4251
  headers: DefaultHeaderSchema,
4250
4252
  responses: {
4251
4253
  200: DefaultSuccessResponseSchema.extend({