lancer-shared 1.2.349 → 1.2.350
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/bundle.cjs.js +209 -7
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +192 -8
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +9 -0
- package/dist/schemas/agent/index.d.ts +6 -4
- package/dist/schemas/agent/suitability-benchmark.d.ts +512 -0
- package/dist/schemas/agent/suitability-experiment-benchmark.d.ts +680 -0
- package/dist/schemas/campaign/campaign-analytics.d.ts +24 -24
- package/dist/schemas/campaign/campaign.d.ts +7 -7
- package/dist/schemas/dashboard/index.d.ts +173 -8
- package/dist/schemas/logger/log-event.d.ts +10 -10
- package/dist/schemas/organization/index.d.ts +8 -8
- package/dist/schemas/organization/subscription.d.ts +4 -4
- package/dist/schemas/scraper/scrape-payload.d.ts +11 -11
- package/dist/schemas/time-filter/index.d.ts +1 -1
- package/dist/schemas/usage-event/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -7288,6 +7288,153 @@ const pickProfileResponseSchema = z.object({
|
|
|
7288
7288
|
matchingKeywords: z.array(z.string()),
|
|
7289
7289
|
});
|
|
7290
7290
|
|
|
7291
|
+
const agentMessageSchema = z.object({
|
|
7292
|
+
role: z.string(),
|
|
7293
|
+
content: z.string(),
|
|
7294
|
+
});
|
|
7295
|
+
const suitabilityBenchmarkSourceEventSchema = z.object({
|
|
7296
|
+
eventId: z.string(),
|
|
7297
|
+
timestamp: z.number(),
|
|
7298
|
+
organizationId: z.string(),
|
|
7299
|
+
campaignId: z.string(),
|
|
7300
|
+
leadId: z.string(),
|
|
7301
|
+
leadStatus: leadStatusEnum.nullable(),
|
|
7302
|
+
jobId: z.string(),
|
|
7303
|
+
originalRating: z.number(),
|
|
7304
|
+
originalReason: z.string(),
|
|
7305
|
+
messages: z.array(agentMessageSchema),
|
|
7306
|
+
});
|
|
7307
|
+
const suitabilityBenchmarkRequestSchema = z
|
|
7308
|
+
.object({
|
|
7309
|
+
model: z.string(),
|
|
7310
|
+
from: z.number().int().min(1),
|
|
7311
|
+
to: z.number().int().min(1),
|
|
7312
|
+
temperature: z.number().min(0).max(2).optional(),
|
|
7313
|
+
})
|
|
7314
|
+
.refine(data => data.to >= data.from, {
|
|
7315
|
+
message: '`to` must be greater than or equal to `from`',
|
|
7316
|
+
path: ['to'],
|
|
7317
|
+
});
|
|
7318
|
+
const internalSuitabilityBenchmarkRequestSchema = z.object({
|
|
7319
|
+
model: z.string(),
|
|
7320
|
+
temperature: z.number().min(0).max(2).optional(),
|
|
7321
|
+
events: z.array(suitabilityBenchmarkSourceEventSchema),
|
|
7322
|
+
});
|
|
7323
|
+
const suitabilityBenchmarkOutcomeSchema = z.enum([
|
|
7324
|
+
'falseNegative',
|
|
7325
|
+
'falsePositive',
|
|
7326
|
+
'unchangedQualified',
|
|
7327
|
+
'unchangedDisqualified',
|
|
7328
|
+
'error',
|
|
7329
|
+
]);
|
|
7330
|
+
const suitabilityBenchmarkPromptSchema = z.object({
|
|
7331
|
+
system: z.string().nullable(),
|
|
7332
|
+
user: z.string().nullable(),
|
|
7333
|
+
});
|
|
7334
|
+
const suitabilityBenchmarkResultSchema = z.object({
|
|
7335
|
+
eventId: z.string(),
|
|
7336
|
+
timestamp: z.number(),
|
|
7337
|
+
organizationId: z.string(),
|
|
7338
|
+
campaignId: z.string(),
|
|
7339
|
+
leadId: z.string(),
|
|
7340
|
+
leadStatus: leadStatusEnum.nullable(),
|
|
7341
|
+
jobId: z.string(),
|
|
7342
|
+
originalRating: z.number(),
|
|
7343
|
+
originalReason: z.string(),
|
|
7344
|
+
candidateRawRating: z.number().nullable(),
|
|
7345
|
+
candidateNormalizedRating: z.number().nullable(),
|
|
7346
|
+
candidateReason: z.string().nullable(),
|
|
7347
|
+
candidateModel: z.string().nullable(),
|
|
7348
|
+
candidateProvider: z.string().nullable(),
|
|
7349
|
+
promptTokens: z.number().nullable(),
|
|
7350
|
+
completionTokens: z.number().nullable(),
|
|
7351
|
+
totalCostUsd: z.number().nullable(),
|
|
7352
|
+
outcome: suitabilityBenchmarkOutcomeSchema,
|
|
7353
|
+
error: z.string().nullable(),
|
|
7354
|
+
prompt: suitabilityBenchmarkPromptSchema,
|
|
7355
|
+
});
|
|
7356
|
+
const suitabilityBenchmarkSummarySchema = z.object({
|
|
7357
|
+
from: z.number().int().min(1),
|
|
7358
|
+
to: z.number().int().min(1),
|
|
7359
|
+
requestedLimit: z.number().int().min(0),
|
|
7360
|
+
fetchedEvents: z.number().int().min(0),
|
|
7361
|
+
processedEvents: z.number().int().min(0),
|
|
7362
|
+
totalCostUsd: z.number().min(0),
|
|
7363
|
+
falseNegatives: z.number().int().min(0),
|
|
7364
|
+
falsePositives: z.number().int().min(0),
|
|
7365
|
+
unchangedQualified: z.number().int().min(0),
|
|
7366
|
+
unchangedDisqualified: z.number().int().min(0),
|
|
7367
|
+
errors: z.number().int().min(0),
|
|
7368
|
+
});
|
|
7369
|
+
const suitabilityBenchmarkResponseSchema = z.object({
|
|
7370
|
+
model: z.string(),
|
|
7371
|
+
temperature: z.number().nullable(),
|
|
7372
|
+
summary: suitabilityBenchmarkSummarySchema,
|
|
7373
|
+
results: z.array(suitabilityBenchmarkResultSchema),
|
|
7374
|
+
});
|
|
7375
|
+
|
|
7376
|
+
const minimalSuitabilityKnowledgeBaseSchema = z.object({
|
|
7377
|
+
coreFit: z.string(),
|
|
7378
|
+
hardNoGos: z.string(),
|
|
7379
|
+
capabilities: z.string(),
|
|
7380
|
+
});
|
|
7381
|
+
const suitabilityExperimentBenchmarkRequestSchema = z
|
|
7382
|
+
.object({
|
|
7383
|
+
organizationId: z.string(),
|
|
7384
|
+
organizationProfileId: z.string().optional(),
|
|
7385
|
+
model: z.string(),
|
|
7386
|
+
from: z.number().int().min(1),
|
|
7387
|
+
to: z.number().int().min(1),
|
|
7388
|
+
temperature: z.number().min(0).max(2).optional(),
|
|
7389
|
+
knowledgeBase: minimalSuitabilityKnowledgeBaseSchema,
|
|
7390
|
+
})
|
|
7391
|
+
.refine(data => data.to >= data.from, {
|
|
7392
|
+
message: '`to` must be greater than or equal to `from`',
|
|
7393
|
+
path: ['to'],
|
|
7394
|
+
});
|
|
7395
|
+
const internalSuitabilityExperimentBenchmarkRequestSchema = z.object({
|
|
7396
|
+
model: z.string(),
|
|
7397
|
+
temperature: z.number().min(0).max(2).optional(),
|
|
7398
|
+
knowledgeBase: minimalSuitabilityKnowledgeBaseSchema,
|
|
7399
|
+
events: z.array(suitabilityBenchmarkSourceEventSchema),
|
|
7400
|
+
});
|
|
7401
|
+
const suitabilityExperimentBenchmarkPromptSchema = z.object({
|
|
7402
|
+
system: z.string().nullable(),
|
|
7403
|
+
user: z.string().nullable(),
|
|
7404
|
+
messages: z.array(agentMessageSchema),
|
|
7405
|
+
});
|
|
7406
|
+
const suitabilityExperimentBenchmarkResultSchema = z.object({
|
|
7407
|
+
eventId: z.string(),
|
|
7408
|
+
timestamp: z.number(),
|
|
7409
|
+
organizationId: z.string(),
|
|
7410
|
+
campaignId: z.string(),
|
|
7411
|
+
leadId: z.string(),
|
|
7412
|
+
leadStatus: leadStatusEnum.nullable(),
|
|
7413
|
+
jobId: z.string(),
|
|
7414
|
+
originalRating: z.number(),
|
|
7415
|
+
originalReason: z.string(),
|
|
7416
|
+
candidateRawRating: z.number().nullable(),
|
|
7417
|
+
candidateNormalizedRating: z.number().nullable(),
|
|
7418
|
+
candidateReason: z.string().nullable(),
|
|
7419
|
+
candidateModel: z.string().nullable(),
|
|
7420
|
+
candidateProvider: z.string().nullable(),
|
|
7421
|
+
promptTokens: z.number().nullable(),
|
|
7422
|
+
completionTokens: z.number().nullable(),
|
|
7423
|
+
totalCostUsd: z.number().nullable(),
|
|
7424
|
+
outcome: suitabilityBenchmarkOutcomeSchema,
|
|
7425
|
+
error: z.string().nullable(),
|
|
7426
|
+
baselinePrompt: suitabilityExperimentBenchmarkPromptSchema,
|
|
7427
|
+
experimentalPrompt: suitabilityExperimentBenchmarkPromptSchema,
|
|
7428
|
+
});
|
|
7429
|
+
const suitabilityExperimentBenchmarkResponseSchema = z.object({
|
|
7430
|
+
organizationId: z.string(),
|
|
7431
|
+
organizationProfileId: z.string().nullable(),
|
|
7432
|
+
model: z.string(),
|
|
7433
|
+
temperature: z.number().nullable(),
|
|
7434
|
+
summary: suitabilityBenchmarkSummarySchema,
|
|
7435
|
+
results: z.array(suitabilityExperimentBenchmarkResultSchema),
|
|
7436
|
+
});
|
|
7437
|
+
|
|
7291
7438
|
const agentGenerateProposalRequestSchema = z.object({
|
|
7292
7439
|
userId: z.string().nullable(),
|
|
7293
7440
|
organizationId: z.string(),
|
|
@@ -7384,6 +7531,7 @@ const billingIntervalEnum = z.enum(['monthly', 'quarterly', 'yearly']);
|
|
|
7384
7531
|
const subscriptionStatusEnum = z.enum([
|
|
7385
7532
|
'active',
|
|
7386
7533
|
'trialing',
|
|
7534
|
+
'archived',
|
|
7387
7535
|
'cancelled',
|
|
7388
7536
|
'paused',
|
|
7389
7537
|
'payment_processing',
|
|
@@ -9096,6 +9244,14 @@ const syncProposalsStatusRequestPayloadSchema = z.object({
|
|
|
9096
9244
|
bidderAccountId: z.string(),
|
|
9097
9245
|
});
|
|
9098
9246
|
|
|
9247
|
+
const periodTypeSchema = z.union([
|
|
9248
|
+
z.literal("weekly"),
|
|
9249
|
+
z.literal("monthly"),
|
|
9250
|
+
z.literal("quarterly"),
|
|
9251
|
+
z.literal("yearly"),
|
|
9252
|
+
z.literal("allTime"),
|
|
9253
|
+
]);
|
|
9254
|
+
|
|
9099
9255
|
const campaignStatsSchema = z.object({
|
|
9100
9256
|
contacted: z.number(),
|
|
9101
9257
|
viewed: z.number(),
|
|
@@ -9105,6 +9261,16 @@ const campaignStatsSchema = z.object({
|
|
|
9105
9261
|
leadsAnalyzed: z.number(),
|
|
9106
9262
|
leadsFailed: z.number(),
|
|
9107
9263
|
});
|
|
9264
|
+
const organizationAnalyticsSummaryStatsSchema = z.object({
|
|
9265
|
+
leadsAnalyzed: z.number(),
|
|
9266
|
+
contactedSync: z.number(),
|
|
9267
|
+
viewed: z.number(),
|
|
9268
|
+
replied: z.number(),
|
|
9269
|
+
totalBiddingAmount: z.number(),
|
|
9270
|
+
totalBoostedAmount: z.number(),
|
|
9271
|
+
effectiveBoostedAmount: z.number(),
|
|
9272
|
+
costPerReply: z.number(),
|
|
9273
|
+
});
|
|
9108
9274
|
const suitabilityBreakdownSchema = z.object({
|
|
9109
9275
|
lessThan50: z.number(),
|
|
9110
9276
|
between50And60: z.number(),
|
|
@@ -9134,6 +9300,22 @@ const organizationCampaignStatsSchema = z.object({
|
|
|
9134
9300
|
totalStats: campaignStatsSchema,
|
|
9135
9301
|
campaigns: z.array(campaignDetailsSchema),
|
|
9136
9302
|
});
|
|
9303
|
+
const organizationAnalyticsOverviewQuerySchema = z.object({
|
|
9304
|
+
periodType: periodTypeSchema.default('weekly'),
|
|
9305
|
+
date: z.string(),
|
|
9306
|
+
});
|
|
9307
|
+
const organizationAnalyticsOverviewItemSchema = z.object({
|
|
9308
|
+
organizationId: z.string(),
|
|
9309
|
+
organizationName: z.string(),
|
|
9310
|
+
planId: z.string().nullable(),
|
|
9311
|
+
planName: z.string().nullable(),
|
|
9312
|
+
subscriptionStatus: subscriptionStatusEnum.nullable(),
|
|
9313
|
+
billingInterval: billingIntervalEnum.nullable(),
|
|
9314
|
+
campaignCount: z.number(),
|
|
9315
|
+
activeCampaignCount: z.number(),
|
|
9316
|
+
periodStats: organizationAnalyticsSummaryStatsSchema,
|
|
9317
|
+
});
|
|
9318
|
+
const organizationAnalyticsOverviewResponseSchema = z.array(organizationAnalyticsOverviewItemSchema);
|
|
9137
9319
|
const monitoringBidFailureRecordSchema = z.object({
|
|
9138
9320
|
id: z.string(),
|
|
9139
9321
|
eventId: z.string(),
|
|
@@ -9879,13 +10061,6 @@ const systemSchema = objectType({
|
|
|
9879
10061
|
prompts: systemPromptSchema,
|
|
9880
10062
|
});
|
|
9881
10063
|
|
|
9882
|
-
const periodTypeSchema = z.union([
|
|
9883
|
-
z.literal("weekly"),
|
|
9884
|
-
z.literal("monthly"),
|
|
9885
|
-
z.literal("quarterly"),
|
|
9886
|
-
z.literal("yearly"),
|
|
9887
|
-
]);
|
|
9888
|
-
|
|
9889
10064
|
const transactionStripeMetadataSchema = objectType({
|
|
9890
10065
|
subscription: objectType({ id: stringType().nullable() }),
|
|
9891
10066
|
invoice: objectType({ id: stringType().nullable() }),
|
|
@@ -15859,6 +16034,7 @@ const ROUTES = {
|
|
|
15859
16034
|
EVENTS: {
|
|
15860
16035
|
BASE: 'events',
|
|
15861
16036
|
BY_ID: (id) => `events/${id}`,
|
|
16037
|
+
SUITABILITY_COMPLETE_COUNT_LAST_30_DAYS: 'events/suitability-complete-count-last-30-days',
|
|
15862
16038
|
GET_BIDDING_PROCESSING_EVENT_FROM_ANOTHER_CAMPAIGNS: 'events/get-bidding-processing-event-from-another-campaign',
|
|
15863
16039
|
},
|
|
15864
16040
|
JOBS: {
|
|
@@ -15937,6 +16113,7 @@ const ROUTES = {
|
|
|
15937
16113
|
},
|
|
15938
16114
|
DASHBOARD: {
|
|
15939
16115
|
CAMPAIGN_STATS: 'admin/dashboard/campaign-stats',
|
|
16116
|
+
ORGANIZATION_ANALYTICS: 'admin/dashboard/organization-analytics',
|
|
15940
16117
|
BIDDER_FAILURES: 'admin/dashboard/bidder-failures',
|
|
15941
16118
|
MARK_BIDDER_FAILURE_VIEWED: (eventId) => `admin/dashboard/bidder-failures/${eventId}/viewed`,
|
|
15942
16119
|
BIDDER_FAILURE_VIEWS: 'admin/dashboard/bidder-failure-views',
|
|
@@ -15957,6 +16134,9 @@ const ROUTES = {
|
|
|
15957
16134
|
BASE: 'admin/agent',
|
|
15958
16135
|
TEST_JOB_QUALITY: 'admin/agent/test-job-quality',
|
|
15959
16136
|
TEST_SUITABILITY: 'admin/agent/test-suitability',
|
|
16137
|
+
COMPARE_SUITABILITY: 'admin/agent/compare-suitability',
|
|
16138
|
+
COMPARE_SUITABILITY_EXPERIMENT: 'admin/agent/compare-suitability-experiment',
|
|
16139
|
+
SUITABILITY_EXPERIMENT_KNOWLEDGE_BASE: (organizationId) => `admin/agent/organizations/${organizationId}/suitability-experiment-knowledge-base`,
|
|
15960
16140
|
TEST_PROPOSAL: 'admin/agent/test-proposal',
|
|
15961
16141
|
},
|
|
15962
16142
|
UPWORK_INVITATIONS_CONFIG: {
|
|
@@ -16019,6 +16199,10 @@ const ROUTES = {
|
|
|
16019
16199
|
BASE: (id) => `organizations/${id}/members`,
|
|
16020
16200
|
BY_ID: (id, memberId) => `organizations/${id}/members/${memberId}`,
|
|
16021
16201
|
},
|
|
16202
|
+
ADMIN_EXPERIMENTS: {
|
|
16203
|
+
BASE: (id) => `organizations/${id}/admin-experiments`,
|
|
16204
|
+
SUITABILITY_EXPERIMENT_KNOWLEDGE_BASE: (id) => `organizations/${id}/admin-experiments/suitability-experiment-knowledge-base`,
|
|
16205
|
+
},
|
|
16022
16206
|
CHECK_PROMO_CODE: (id) => `organizations/${id}/check-promo-code`,
|
|
16023
16207
|
STRIPE_PORTAL: (id) => `organizations/${id}/stripe-portal-session`,
|
|
16024
16208
|
UPDATE_LEADS_STATUS: (id) => `organizations/${id}/update-leads-status`,
|
|
@@ -24939,6 +25123,7 @@ exports.agencyBidProposalDataSchema = agencyBidProposalDataSchema;
|
|
|
24939
25123
|
exports.agentCalculateSuitabilityRequestSchema = agentCalculateSuitabilityRequestSchema;
|
|
24940
25124
|
exports.agentGenerateProposalRequestSchema = agentGenerateProposalRequestSchema;
|
|
24941
25125
|
exports.agentGenerateProposalResponseSchema = agentGenerateProposalResponseSchema;
|
|
25126
|
+
exports.agentMessageSchema = agentMessageSchema;
|
|
24942
25127
|
exports.agentPickSpecialisedProfileRequestSchema = agentPickSpecialisedProfileRequestSchema;
|
|
24943
25128
|
exports.agentPickSpecialisedProfileResponseSchema = agentPickSpecialisedProfileResponseSchema;
|
|
24944
25129
|
exports.agentStatusSchema = agentStatusSchema;
|
|
@@ -25117,6 +25302,8 @@ exports.initBrowserException = initBrowserException;
|
|
|
25117
25302
|
exports.insufficeintBoostConnectsActionEnum = insufficeintBoostConnectsActionEnum;
|
|
25118
25303
|
exports.insufficientConnectsActionEnum = insufficientConnectsActionEnum;
|
|
25119
25304
|
exports.insufficientConnectsException = insufficientConnectsException;
|
|
25305
|
+
exports.internalSuitabilityBenchmarkRequestSchema = internalSuitabilityBenchmarkRequestSchema;
|
|
25306
|
+
exports.internalSuitabilityExperimentBenchmarkRequestSchema = internalSuitabilityExperimentBenchmarkRequestSchema;
|
|
25120
25307
|
exports.invalidCredentialsException = invalidCredentialsException;
|
|
25121
25308
|
exports.invalidGoogleOAuthTokenSchema = invalidGoogleOAuthTokenSchema;
|
|
25122
25309
|
exports.invalidJobUrlException = invalidJobUrlException;
|
|
@@ -25167,6 +25354,7 @@ exports.logEventSchema = logEventSchema;
|
|
|
25167
25354
|
exports.loginFailedException = loginFailedException;
|
|
25168
25355
|
exports.loginSchema = loginSchema;
|
|
25169
25356
|
exports.metadataSchema = metadataSchema;
|
|
25357
|
+
exports.minimalSuitabilityKnowledgeBaseSchema = minimalSuitabilityKnowledgeBaseSchema;
|
|
25170
25358
|
exports.monitoringBidFailureRecordSchema = monitoringBidFailureRecordSchema;
|
|
25171
25359
|
exports.multiloginAuthenticationException = multiloginAuthenticationException;
|
|
25172
25360
|
exports.navigationTimeoutException = navigationTimeoutException;
|
|
@@ -25185,6 +25373,9 @@ exports.nuxtStateJobSchema = nuxtStateJobSchema;
|
|
|
25185
25373
|
exports.nuxtStateJobsSearchSchema = nuxtStateJobsSearchSchema;
|
|
25186
25374
|
exports.onboardingSectionSchema = onboardingSectionSchema;
|
|
25187
25375
|
exports.openPageException = openPageException;
|
|
25376
|
+
exports.organizationAnalyticsOverviewItemSchema = organizationAnalyticsOverviewItemSchema;
|
|
25377
|
+
exports.organizationAnalyticsOverviewQuerySchema = organizationAnalyticsOverviewQuerySchema;
|
|
25378
|
+
exports.organizationAnalyticsOverviewResponseSchema = organizationAnalyticsOverviewResponseSchema;
|
|
25188
25379
|
exports.organizationCampaignStatsSchema = organizationCampaignStatsSchema;
|
|
25189
25380
|
exports.organizationMemberRoleEnum = organizationMemberRoleEnum;
|
|
25190
25381
|
exports.organizationMemberSchema = organizationMemberSchema;
|
|
@@ -25290,7 +25481,18 @@ exports.subscriptionSourceEnum = subscriptionSourceEnum;
|
|
|
25290
25481
|
exports.subscriptionStatusEnum = subscriptionStatusEnum;
|
|
25291
25482
|
exports.subscriptionStripeMetadataItemSchema = subscriptionStripeMetadataItemSchema;
|
|
25292
25483
|
exports.subscriptionStripeMetadataSchema = subscriptionStripeMetadataSchema;
|
|
25484
|
+
exports.suitabilityBenchmarkOutcomeSchema = suitabilityBenchmarkOutcomeSchema;
|
|
25485
|
+
exports.suitabilityBenchmarkPromptSchema = suitabilityBenchmarkPromptSchema;
|
|
25486
|
+
exports.suitabilityBenchmarkRequestSchema = suitabilityBenchmarkRequestSchema;
|
|
25487
|
+
exports.suitabilityBenchmarkResponseSchema = suitabilityBenchmarkResponseSchema;
|
|
25488
|
+
exports.suitabilityBenchmarkResultSchema = suitabilityBenchmarkResultSchema;
|
|
25489
|
+
exports.suitabilityBenchmarkSourceEventSchema = suitabilityBenchmarkSourceEventSchema;
|
|
25490
|
+
exports.suitabilityBenchmarkSummarySchema = suitabilityBenchmarkSummarySchema;
|
|
25293
25491
|
exports.suitabilityCompleteEventMetadataSchema = suitabilityCompleteEventMetadataSchema;
|
|
25492
|
+
exports.suitabilityExperimentBenchmarkPromptSchema = suitabilityExperimentBenchmarkPromptSchema;
|
|
25493
|
+
exports.suitabilityExperimentBenchmarkRequestSchema = suitabilityExperimentBenchmarkRequestSchema;
|
|
25494
|
+
exports.suitabilityExperimentBenchmarkResponseSchema = suitabilityExperimentBenchmarkResponseSchema;
|
|
25495
|
+
exports.suitabilityExperimentBenchmarkResultSchema = suitabilityExperimentBenchmarkResultSchema;
|
|
25294
25496
|
exports.suitabilityFailedEventMetadataSchema = suitabilityFailedEventMetadataSchema;
|
|
25295
25497
|
exports.suitabilityPendingEventMetadataSchema = suitabilityPendingEventMetadataSchema;
|
|
25296
25498
|
exports.suitabilityRatingSchema = suitabilityRatingSchema;
|