lancer-shared 1.2.246 → 1.2.247

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.
@@ -8429,6 +8429,10 @@ const getSamplesRequestSchema = z.object({
8429
8429
  campaignId: z.string(),
8430
8430
  leadIds: z.array(z.string()),
8431
8431
  });
8432
+ const updateSampleSchema = z.object({
8433
+ id: z.string(),
8434
+ label: labelEnum,
8435
+ });
8432
8436
 
8433
8437
  const gcpMetadataSchema = objectType({
8434
8438
  instanceName: stringType(),
@@ -15030,6 +15034,7 @@ const ROUTES = {
15030
15034
  SAMPLE: (id) => `admin/golden-dataset/${id}`,
15031
15035
  CREATE_SAMPLE: 'admin/golden-dataset/create',
15032
15036
  GET_SAMPLES: 'admin/golden-dataset/get-samples',
15037
+ UPDATE_SAMPLE: 'admin/golden-dataset/update',
15033
15038
  },
15034
15039
  AGENT: {
15035
15040
  BASE: 'admin/agent',
@@ -24159,6 +24164,7 @@ exports.updateChatbotSchema = updateChatbotSchema;
24159
24164
  exports.updateLeadStatusSchema = updateLeadStatusSchema;
24160
24165
  exports.updateOrganizationLeadsStatusPayloadSchema = updateOrganizationLeadsStatusPayloadSchema;
24161
24166
  exports.updateOrganizationProfileSchema = updateOrganizationProfileSchema;
24167
+ exports.updateSampleSchema = updateSampleSchema;
24162
24168
  exports.updateScraperAccountSchema = updateScraperAccountSchema;
24163
24169
  exports.updateSuitableLeadNotificationBodySchema = updateSuitableLeadNotificationBodySchema;
24164
24170
  exports.updateSuitableLeadNotificationType = updateSuitableLeadNotificationType;