lancer-shared 1.2.348 → 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 +215 -7
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +197 -8
- package/dist/bundle.esm.js.map +1 -1
- package/dist/constants/routes.d.ts +10 -0
- package/dist/schemas/account/bidder-account.d.ts +11 -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
|
@@ -6981,6 +6981,10 @@ const assignDecodoProxyToBidderAccountSchema = z.object({
|
|
|
6981
6981
|
proxyString: z.string().min(1),
|
|
6982
6982
|
country: proxyCountryEnum,
|
|
6983
6983
|
});
|
|
6984
|
+
const assignProxyCheapProxyToBidderAccountSchema = z.object({
|
|
6985
|
+
proxyString: z.string().min(1),
|
|
6986
|
+
country: proxyCountryEnum,
|
|
6987
|
+
});
|
|
6984
6988
|
const reconnectBidderAccountResponseSchema = z.object({
|
|
6985
6989
|
agencyName: z.string(),
|
|
6986
6990
|
photoUrl: z.string(),
|
|
@@ -7284,6 +7288,153 @@ const pickProfileResponseSchema = z.object({
|
|
|
7284
7288
|
matchingKeywords: z.array(z.string()),
|
|
7285
7289
|
});
|
|
7286
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
|
+
|
|
7287
7438
|
const agentGenerateProposalRequestSchema = z.object({
|
|
7288
7439
|
userId: z.string().nullable(),
|
|
7289
7440
|
organizationId: z.string(),
|
|
@@ -7380,6 +7531,7 @@ const billingIntervalEnum = z.enum(['monthly', 'quarterly', 'yearly']);
|
|
|
7380
7531
|
const subscriptionStatusEnum = z.enum([
|
|
7381
7532
|
'active',
|
|
7382
7533
|
'trialing',
|
|
7534
|
+
'archived',
|
|
7383
7535
|
'cancelled',
|
|
7384
7536
|
'paused',
|
|
7385
7537
|
'payment_processing',
|
|
@@ -9092,6 +9244,14 @@ const syncProposalsStatusRequestPayloadSchema = z.object({
|
|
|
9092
9244
|
bidderAccountId: z.string(),
|
|
9093
9245
|
});
|
|
9094
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
|
+
|
|
9095
9255
|
const campaignStatsSchema = z.object({
|
|
9096
9256
|
contacted: z.number(),
|
|
9097
9257
|
viewed: z.number(),
|
|
@@ -9101,6 +9261,16 @@ const campaignStatsSchema = z.object({
|
|
|
9101
9261
|
leadsAnalyzed: z.number(),
|
|
9102
9262
|
leadsFailed: z.number(),
|
|
9103
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
|
+
});
|
|
9104
9274
|
const suitabilityBreakdownSchema = z.object({
|
|
9105
9275
|
lessThan50: z.number(),
|
|
9106
9276
|
between50And60: z.number(),
|
|
@@ -9130,6 +9300,22 @@ const organizationCampaignStatsSchema = z.object({
|
|
|
9130
9300
|
totalStats: campaignStatsSchema,
|
|
9131
9301
|
campaigns: z.array(campaignDetailsSchema),
|
|
9132
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);
|
|
9133
9319
|
const monitoringBidFailureRecordSchema = z.object({
|
|
9134
9320
|
id: z.string(),
|
|
9135
9321
|
eventId: z.string(),
|
|
@@ -9875,13 +10061,6 @@ const systemSchema = objectType({
|
|
|
9875
10061
|
prompts: systemPromptSchema,
|
|
9876
10062
|
});
|
|
9877
10063
|
|
|
9878
|
-
const periodTypeSchema = z.union([
|
|
9879
|
-
z.literal("weekly"),
|
|
9880
|
-
z.literal("monthly"),
|
|
9881
|
-
z.literal("quarterly"),
|
|
9882
|
-
z.literal("yearly"),
|
|
9883
|
-
]);
|
|
9884
|
-
|
|
9885
10064
|
const transactionStripeMetadataSchema = objectType({
|
|
9886
10065
|
subscription: objectType({ id: stringType().nullable() }),
|
|
9887
10066
|
invoice: objectType({ id: stringType().nullable() }),
|
|
@@ -15855,6 +16034,7 @@ const ROUTES = {
|
|
|
15855
16034
|
EVENTS: {
|
|
15856
16035
|
BASE: 'events',
|
|
15857
16036
|
BY_ID: (id) => `events/${id}`,
|
|
16037
|
+
SUITABILITY_COMPLETE_COUNT_LAST_30_DAYS: 'events/suitability-complete-count-last-30-days',
|
|
15858
16038
|
GET_BIDDING_PROCESSING_EVENT_FROM_ANOTHER_CAMPAIGNS: 'events/get-bidding-processing-event-from-another-campaign',
|
|
15859
16039
|
},
|
|
15860
16040
|
JOBS: {
|
|
@@ -15912,6 +16092,7 @@ const ROUTES = {
|
|
|
15912
16092
|
AGENCIES: 'admin/bidder-accounts/agencies',
|
|
15913
16093
|
ASSIGN_IPROYAL_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-iproyal-proxy`,
|
|
15914
16094
|
ASSIGN_DECODO_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-decodo-proxy`,
|
|
16095
|
+
ASSIGN_PROXY_CHEAP_PROXY: (bidderId) => `admin/bidder-accounts/${bidderId}/assign-proxy-cheap-proxy`,
|
|
15915
16096
|
RETRY_CONNECT: (bidderId) => `admin/bidder-accounts/${bidderId}/retry-connect`,
|
|
15916
16097
|
SYNC_PROPOSALS_STATUS: (bidderId) => `admin/bidder-accounts/${bidderId}/sync-proposals-status`,
|
|
15917
16098
|
},
|
|
@@ -15932,6 +16113,7 @@ const ROUTES = {
|
|
|
15932
16113
|
},
|
|
15933
16114
|
DASHBOARD: {
|
|
15934
16115
|
CAMPAIGN_STATS: 'admin/dashboard/campaign-stats',
|
|
16116
|
+
ORGANIZATION_ANALYTICS: 'admin/dashboard/organization-analytics',
|
|
15935
16117
|
BIDDER_FAILURES: 'admin/dashboard/bidder-failures',
|
|
15936
16118
|
MARK_BIDDER_FAILURE_VIEWED: (eventId) => `admin/dashboard/bidder-failures/${eventId}/viewed`,
|
|
15937
16119
|
BIDDER_FAILURE_VIEWS: 'admin/dashboard/bidder-failure-views',
|
|
@@ -15952,6 +16134,9 @@ const ROUTES = {
|
|
|
15952
16134
|
BASE: 'admin/agent',
|
|
15953
16135
|
TEST_JOB_QUALITY: 'admin/agent/test-job-quality',
|
|
15954
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`,
|
|
15955
16140
|
TEST_PROPOSAL: 'admin/agent/test-proposal',
|
|
15956
16141
|
},
|
|
15957
16142
|
UPWORK_INVITATIONS_CONFIG: {
|
|
@@ -16014,6 +16199,10 @@ const ROUTES = {
|
|
|
16014
16199
|
BASE: (id) => `organizations/${id}/members`,
|
|
16015
16200
|
BY_ID: (id, memberId) => `organizations/${id}/members/${memberId}`,
|
|
16016
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
|
+
},
|
|
16017
16206
|
CHECK_PROMO_CODE: (id) => `organizations/${id}/check-promo-code`,
|
|
16018
16207
|
STRIPE_PORTAL: (id) => `organizations/${id}/stripe-portal-session`,
|
|
16019
16208
|
UPDATE_LEADS_STATUS: (id) => `organizations/${id}/update-leads-status`,
|
|
@@ -24934,6 +25123,7 @@ exports.agencyBidProposalDataSchema = agencyBidProposalDataSchema;
|
|
|
24934
25123
|
exports.agentCalculateSuitabilityRequestSchema = agentCalculateSuitabilityRequestSchema;
|
|
24935
25124
|
exports.agentGenerateProposalRequestSchema = agentGenerateProposalRequestSchema;
|
|
24936
25125
|
exports.agentGenerateProposalResponseSchema = agentGenerateProposalResponseSchema;
|
|
25126
|
+
exports.agentMessageSchema = agentMessageSchema;
|
|
24937
25127
|
exports.agentPickSpecialisedProfileRequestSchema = agentPickSpecialisedProfileRequestSchema;
|
|
24938
25128
|
exports.agentPickSpecialisedProfileResponseSchema = agentPickSpecialisedProfileResponseSchema;
|
|
24939
25129
|
exports.agentStatusSchema = agentStatusSchema;
|
|
@@ -24941,6 +25131,7 @@ exports.agentTaskResponseSchema = agentTaskResponseSchema;
|
|
|
24941
25131
|
exports.aiConfigSchema = aiConfigSchema;
|
|
24942
25132
|
exports.alreadyHiredActionEnum = alreadyHiredActionEnum;
|
|
24943
25133
|
exports.assignDecodoProxyToBidderAccountSchema = assignDecodoProxyToBidderAccountSchema;
|
|
25134
|
+
exports.assignProxyCheapProxyToBidderAccountSchema = assignProxyCheapProxyToBidderAccountSchema;
|
|
24944
25135
|
exports.assignRoomTagsRequestBodySchema = assignRoomTagsRequestBodySchema;
|
|
24945
25136
|
exports.bidAsEnum = bidAsEnum;
|
|
24946
25137
|
exports.bidConfigSchema = bidConfigSchema;
|
|
@@ -25111,6 +25302,8 @@ exports.initBrowserException = initBrowserException;
|
|
|
25111
25302
|
exports.insufficeintBoostConnectsActionEnum = insufficeintBoostConnectsActionEnum;
|
|
25112
25303
|
exports.insufficientConnectsActionEnum = insufficientConnectsActionEnum;
|
|
25113
25304
|
exports.insufficientConnectsException = insufficientConnectsException;
|
|
25305
|
+
exports.internalSuitabilityBenchmarkRequestSchema = internalSuitabilityBenchmarkRequestSchema;
|
|
25306
|
+
exports.internalSuitabilityExperimentBenchmarkRequestSchema = internalSuitabilityExperimentBenchmarkRequestSchema;
|
|
25114
25307
|
exports.invalidCredentialsException = invalidCredentialsException;
|
|
25115
25308
|
exports.invalidGoogleOAuthTokenSchema = invalidGoogleOAuthTokenSchema;
|
|
25116
25309
|
exports.invalidJobUrlException = invalidJobUrlException;
|
|
@@ -25161,6 +25354,7 @@ exports.logEventSchema = logEventSchema;
|
|
|
25161
25354
|
exports.loginFailedException = loginFailedException;
|
|
25162
25355
|
exports.loginSchema = loginSchema;
|
|
25163
25356
|
exports.metadataSchema = metadataSchema;
|
|
25357
|
+
exports.minimalSuitabilityKnowledgeBaseSchema = minimalSuitabilityKnowledgeBaseSchema;
|
|
25164
25358
|
exports.monitoringBidFailureRecordSchema = monitoringBidFailureRecordSchema;
|
|
25165
25359
|
exports.multiloginAuthenticationException = multiloginAuthenticationException;
|
|
25166
25360
|
exports.navigationTimeoutException = navigationTimeoutException;
|
|
@@ -25179,6 +25373,9 @@ exports.nuxtStateJobSchema = nuxtStateJobSchema;
|
|
|
25179
25373
|
exports.nuxtStateJobsSearchSchema = nuxtStateJobsSearchSchema;
|
|
25180
25374
|
exports.onboardingSectionSchema = onboardingSectionSchema;
|
|
25181
25375
|
exports.openPageException = openPageException;
|
|
25376
|
+
exports.organizationAnalyticsOverviewItemSchema = organizationAnalyticsOverviewItemSchema;
|
|
25377
|
+
exports.organizationAnalyticsOverviewQuerySchema = organizationAnalyticsOverviewQuerySchema;
|
|
25378
|
+
exports.organizationAnalyticsOverviewResponseSchema = organizationAnalyticsOverviewResponseSchema;
|
|
25182
25379
|
exports.organizationCampaignStatsSchema = organizationCampaignStatsSchema;
|
|
25183
25380
|
exports.organizationMemberRoleEnum = organizationMemberRoleEnum;
|
|
25184
25381
|
exports.organizationMemberSchema = organizationMemberSchema;
|
|
@@ -25284,7 +25481,18 @@ exports.subscriptionSourceEnum = subscriptionSourceEnum;
|
|
|
25284
25481
|
exports.subscriptionStatusEnum = subscriptionStatusEnum;
|
|
25285
25482
|
exports.subscriptionStripeMetadataItemSchema = subscriptionStripeMetadataItemSchema;
|
|
25286
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;
|
|
25287
25491
|
exports.suitabilityCompleteEventMetadataSchema = suitabilityCompleteEventMetadataSchema;
|
|
25492
|
+
exports.suitabilityExperimentBenchmarkPromptSchema = suitabilityExperimentBenchmarkPromptSchema;
|
|
25493
|
+
exports.suitabilityExperimentBenchmarkRequestSchema = suitabilityExperimentBenchmarkRequestSchema;
|
|
25494
|
+
exports.suitabilityExperimentBenchmarkResponseSchema = suitabilityExperimentBenchmarkResponseSchema;
|
|
25495
|
+
exports.suitabilityExperimentBenchmarkResultSchema = suitabilityExperimentBenchmarkResultSchema;
|
|
25288
25496
|
exports.suitabilityFailedEventMetadataSchema = suitabilityFailedEventMetadataSchema;
|
|
25289
25497
|
exports.suitabilityPendingEventMetadataSchema = suitabilityPendingEventMetadataSchema;
|
|
25290
25498
|
exports.suitabilityRatingSchema = suitabilityRatingSchema;
|