lancer-shared 1.2.30 → 1.2.31
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/schemas/agent/index.d.ts +94 -18
- package/package.json +1 -1
- package/dist/constants/collections.d.ts +0 -13
- package/dist/constants/organization.d.ts +0 -2
- package/dist/schemas/campaign/campaign-integrations.d.ts +0 -87
- package/dist/schemas/campaign/campaign-job-count.d.ts +0 -2
- package/dist/schemas/chat-message/chat-message.d.ts +0 -31
- package/dist/schemas/chat-message/index.d.ts +0 -1
- package/dist/schemas/config/agency-config.d.ts +0 -17
- package/dist/schemas/config/index.d.ts +0 -1
- package/dist/schemas/job-filters/index.d.ts +0 -1
- package/dist/schemas/job-filters/job-filters.d.ts +0 -241
- package/dist/schemas/lead/lead-note.d.ts +0 -83
- package/dist/schemas/lead/nuxt.d.ts +0 -1664
- package/dist/schemas/organization/organization.d.ts +0 -144
- package/dist/types/account/account-status.d.ts +0 -3
- package/dist/types/account/bidder-account.d.ts +0 -7
- package/dist/types/account/index.d.ts +0 -3
- package/dist/types/account/scraper-account.d.ts +0 -5
- package/dist/types/bid/bid-result.d.ts +0 -5
- package/dist/types/bid/bid.d.ts +0 -9
- package/dist/types/bid/index.d.ts +0 -2
- package/dist/types/campaign/campaign-analytics.d.ts +0 -7
- package/dist/types/campaign/campaign-expenses.d.ts +0 -3
- package/dist/types/campaign/campaign-integrations.d.ts +0 -6
- package/dist/types/campaign/campaign-job-count.d.ts +0 -4
- package/dist/types/chat-message/chat-message.d.ts +0 -4
- package/dist/types/chat-message/index.d.ts +0 -1
- package/dist/types/config/agency-config.d.ts +0 -4
- package/dist/types/config/index.d.ts +0 -1
- package/dist/types/index.d.ts +0 -15
- package/dist/types/job/index.d.ts +0 -48
- package/dist/types/job/job-note.d.ts +0 -10
- package/dist/types/job/job-status.d.ts +0 -5
- package/dist/types/job/nuxt.d.ts +0 -4
- package/dist/types/job-filters/index.d.ts +0 -1
- package/dist/types/job-filters/job-filters.d.ts +0 -4
- package/dist/types/logger/index.d.ts +0 -1
- package/dist/types/saved-search/index.d.ts +0 -6
- package/dist/types/scraper/index.d.ts +0 -2
- package/dist/types/scraper/scrape-payload.d.ts +0 -10
- package/dist/types/scraper/scrape-result.d.ts +0 -8
- package/dist/types/shared.d.ts +0 -8
- package/dist/types/time-filter/index.d.ts +0 -3
- package/dist/types/transaction/index.d.ts +0 -4
- package/dist/types/usage/index.d.ts +0 -6
- package/dist/types/user/index.d.ts +0 -15
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const bidConfigSchema: z.ZodObject<{
|
|
3
|
-
agencyName: z.ZodNullable<z.ZodString>;
|
|
4
|
-
bidderId: z.ZodNullable<z.ZodString>;
|
|
5
|
-
contractorName: z.ZodNullable<z.ZodString>;
|
|
6
|
-
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
7
|
-
}, "strip", z.ZodTypeAny, {
|
|
8
|
-
agencyName: string | null;
|
|
9
|
-
contractorName: string | null;
|
|
10
|
-
bidderId: string | null;
|
|
11
|
-
specialisedProfile: string | null;
|
|
12
|
-
}, {
|
|
13
|
-
agencyName: string | null;
|
|
14
|
-
contractorName: string | null;
|
|
15
|
-
bidderId: string | null;
|
|
16
|
-
specialisedProfile: string | null;
|
|
17
|
-
}>;
|
|
18
|
-
export declare const organizationTypeSchema: z.ZodEnum<["agency", "freelancer"]>;
|
|
19
|
-
export declare const organizationSchema: z.ZodObject<{
|
|
20
|
-
id: z.ZodString;
|
|
21
|
-
name: z.ZodString;
|
|
22
|
-
type: z.ZodEnum<["agency", "freelancer"]>;
|
|
23
|
-
bidConfig: z.ZodObject<{
|
|
24
|
-
agencyName: z.ZodNullable<z.ZodString>;
|
|
25
|
-
bidderId: z.ZodNullable<z.ZodString>;
|
|
26
|
-
contractorName: z.ZodNullable<z.ZodString>;
|
|
27
|
-
specialisedProfile: z.ZodNullable<z.ZodString>;
|
|
28
|
-
}, "strip", z.ZodTypeAny, {
|
|
29
|
-
agencyName: string | null;
|
|
30
|
-
contractorName: string | null;
|
|
31
|
-
bidderId: string | null;
|
|
32
|
-
specialisedProfile: string | null;
|
|
33
|
-
}, {
|
|
34
|
-
agencyName: string | null;
|
|
35
|
-
contractorName: string | null;
|
|
36
|
-
bidderId: string | null;
|
|
37
|
-
specialisedProfile: string | null;
|
|
38
|
-
}>;
|
|
39
|
-
createdAt: z.ZodDate;
|
|
40
|
-
updatedAt: z.ZodDate;
|
|
41
|
-
}, "strip", z.ZodTypeAny, {
|
|
42
|
-
id: string;
|
|
43
|
-
type: "agency" | "freelancer";
|
|
44
|
-
createdAt: Date;
|
|
45
|
-
updatedAt: Date;
|
|
46
|
-
name: string;
|
|
47
|
-
bidConfig: {
|
|
48
|
-
agencyName: string | null;
|
|
49
|
-
contractorName: string | null;
|
|
50
|
-
bidderId: string | null;
|
|
51
|
-
specialisedProfile: string | null;
|
|
52
|
-
};
|
|
53
|
-
}, {
|
|
54
|
-
id: string;
|
|
55
|
-
type: "agency" | "freelancer";
|
|
56
|
-
createdAt: Date;
|
|
57
|
-
updatedAt: Date;
|
|
58
|
-
name: string;
|
|
59
|
-
bidConfig: {
|
|
60
|
-
agencyName: string | null;
|
|
61
|
-
contractorName: string | null;
|
|
62
|
-
bidderId: string | null;
|
|
63
|
-
specialisedProfile: string | null;
|
|
64
|
-
};
|
|
65
|
-
}>;
|
|
66
|
-
export declare const aiConfigSchema: z.ZodObject<{
|
|
67
|
-
suitabilityRules: z.ZodNullable<z.ZodString>;
|
|
68
|
-
coverLetterRules: z.ZodNullable<z.ZodString>;
|
|
69
|
-
questionRules: z.ZodNullable<z.ZodString>;
|
|
70
|
-
}, "strip", z.ZodTypeAny, {
|
|
71
|
-
suitabilityRules: string | null;
|
|
72
|
-
questionRules: string | null;
|
|
73
|
-
coverLetterRules: string | null;
|
|
74
|
-
}, {
|
|
75
|
-
suitabilityRules: string | null;
|
|
76
|
-
questionRules: string | null;
|
|
77
|
-
coverLetterRules: string | null;
|
|
78
|
-
}>;
|
|
79
|
-
export declare const knowledgeBaseSchema: z.ZodObject<{
|
|
80
|
-
about: z.ZodString;
|
|
81
|
-
caseStudies: z.ZodString;
|
|
82
|
-
}, "strip", z.ZodTypeAny, {
|
|
83
|
-
about: string;
|
|
84
|
-
caseStudies: string;
|
|
85
|
-
}, {
|
|
86
|
-
about: string;
|
|
87
|
-
caseStudies: string;
|
|
88
|
-
}>;
|
|
89
|
-
export declare const organizationSettingsSchema: z.ZodObject<{
|
|
90
|
-
aiConfig: z.ZodObject<{
|
|
91
|
-
suitabilityRules: z.ZodNullable<z.ZodString>;
|
|
92
|
-
coverLetterRules: z.ZodNullable<z.ZodString>;
|
|
93
|
-
questionRules: z.ZodNullable<z.ZodString>;
|
|
94
|
-
}, "strip", z.ZodTypeAny, {
|
|
95
|
-
suitabilityRules: string | null;
|
|
96
|
-
questionRules: string | null;
|
|
97
|
-
coverLetterRules: string | null;
|
|
98
|
-
}, {
|
|
99
|
-
suitabilityRules: string | null;
|
|
100
|
-
questionRules: string | null;
|
|
101
|
-
coverLetterRules: string | null;
|
|
102
|
-
}>;
|
|
103
|
-
knowledgeBase: z.ZodObject<{
|
|
104
|
-
about: z.ZodString;
|
|
105
|
-
caseStudies: z.ZodString;
|
|
106
|
-
}, "strip", z.ZodTypeAny, {
|
|
107
|
-
about: string;
|
|
108
|
-
caseStudies: string;
|
|
109
|
-
}, {
|
|
110
|
-
about: string;
|
|
111
|
-
caseStudies: string;
|
|
112
|
-
}>;
|
|
113
|
-
}, "strip", z.ZodTypeAny, {
|
|
114
|
-
aiConfig: {
|
|
115
|
-
suitabilityRules: string | null;
|
|
116
|
-
questionRules: string | null;
|
|
117
|
-
coverLetterRules: string | null;
|
|
118
|
-
};
|
|
119
|
-
knowledgeBase: {
|
|
120
|
-
about: string;
|
|
121
|
-
caseStudies: string;
|
|
122
|
-
};
|
|
123
|
-
}, {
|
|
124
|
-
aiConfig: {
|
|
125
|
-
suitabilityRules: string | null;
|
|
126
|
-
questionRules: string | null;
|
|
127
|
-
coverLetterRules: string | null;
|
|
128
|
-
};
|
|
129
|
-
knowledgeBase: {
|
|
130
|
-
about: string;
|
|
131
|
-
caseStudies: string;
|
|
132
|
-
};
|
|
133
|
-
}>;
|
|
134
|
-
export interface Organization extends z.infer<typeof organizationSchema> {
|
|
135
|
-
}
|
|
136
|
-
export interface AiConfig extends z.infer<typeof aiConfigSchema> {
|
|
137
|
-
}
|
|
138
|
-
export interface KnowledgeBase extends z.infer<typeof knowledgeBaseSchema> {
|
|
139
|
-
}
|
|
140
|
-
export interface OrganizationSettings extends z.infer<typeof organizationSettingsSchema> {
|
|
141
|
-
}
|
|
142
|
-
export interface BidConfig extends z.infer<typeof bidConfigSchema> {
|
|
143
|
-
}
|
|
144
|
-
export type OrganizationType = z.infer<typeof organizationTypeSchema>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { createBidderAccountSchema, updateBidderAccountSchema, bidderAccountProvider, bidderAccountSchema } from '../../schemas';
|
|
3
|
-
export interface BidderAccount extends z.infer<typeof bidderAccountSchema> {
|
|
4
|
-
}
|
|
5
|
-
export type BidderAccountProvider = z.infer<typeof bidderAccountProvider>;
|
|
6
|
-
export type CreateBidderAccount = z.infer<typeof createBidderAccountSchema>;
|
|
7
|
-
export type UpdateBidderAccount = z.infer<typeof updateBidderAccountSchema>;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { createScraperAccountSchema, updateScraperAccountSchema, scraperAccountSchema } from '../../schemas';
|
|
3
|
-
export type ScraperAccount = z.infer<typeof scraperAccountSchema>;
|
|
4
|
-
export type CreateScraperAccount = z.infer<typeof createScraperAccountSchema>;
|
|
5
|
-
export type UpdateScraperAccount = z.infer<typeof updateScraperAccountSchema>;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { bidSuccessSchema, bidFailedSchema } from '../../schemas/bid/bid-result';
|
|
3
|
-
export type BidSuccess = z.infer<typeof bidSuccessSchema>;
|
|
4
|
-
export type BidFailed = z.infer<typeof bidFailedSchema>;
|
|
5
|
-
export type BidResult = BidSuccess | BidFailed;
|
package/dist/types/bid/bid.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { agencyBidPayloadSchema, agencyBidProposalDataSchema, bidDtoSchema, bidPayloadProposalDataSchema, bidPayloadSchema, freelancerBidPayloadSchema, freelancerBidProposalDataSchema } from '../../schemas/bid';
|
|
3
|
-
export type BidPayload = z.infer<typeof bidPayloadSchema>;
|
|
4
|
-
export type BidProposalData = z.infer<typeof bidPayloadProposalDataSchema>;
|
|
5
|
-
export type AgencyBidPayload = z.infer<typeof agencyBidPayloadSchema>;
|
|
6
|
-
export type FreelancerBidPayload = z.infer<typeof freelancerBidPayloadSchema>;
|
|
7
|
-
export type AgencyBidProposalData = z.infer<typeof agencyBidProposalDataSchema>;
|
|
8
|
-
export type FreelancerBidProposalData = z.infer<typeof freelancerBidProposalDataSchema>;
|
|
9
|
-
export type BidDto = z.infer<typeof bidDtoSchema>;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { campaignActivityCreateSchema, campaignActivitySchema, campaignAnalyticsResponseSchema, campaignAnalyticsStatsSchema } from "../../schemas";
|
|
3
|
-
export type CampaignAnalyticsStats = z.infer<typeof campaignAnalyticsStatsSchema>;
|
|
4
|
-
export type CampaignAnalyticsResponse = z.infer<typeof campaignAnalyticsResponseSchema>;
|
|
5
|
-
export type CampaignActivity = z.infer<typeof campaignActivitySchema>;
|
|
6
|
-
export interface CampaignActivityCreateSchema extends z.infer<typeof campaignActivityCreateSchema> {
|
|
7
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
2
|
-
import { campaignIntegrationsSchema, updateCampaignIntegrationsSchema } from '../../schemas';
|
|
3
|
-
export interface CampaignIntegrations extends z.infer<typeof campaignIntegrationsSchema> {
|
|
4
|
-
}
|
|
5
|
-
export interface UpdateCampaignIntegrations extends z.infer<typeof updateCampaignIntegrationsSchema> {
|
|
6
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './chat-message';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './agency-config';
|
package/dist/types/index.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export * from "./chat-message";
|
|
2
|
-
export * from "./job";
|
|
3
|
-
export * from "./saved-search";
|
|
4
|
-
export * from "./user";
|
|
5
|
-
export * from "./job-filters";
|
|
6
|
-
export * from "./campaign";
|
|
7
|
-
export * from "./scraper";
|
|
8
|
-
export * from "./config";
|
|
9
|
-
export * from "./logger";
|
|
10
|
-
export * from "./account";
|
|
11
|
-
export * from "./bid";
|
|
12
|
-
export * from "./time-filter";
|
|
13
|
-
export * from "./shared";
|
|
14
|
-
export * from "./usage";
|
|
15
|
-
export * from "./transaction";
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { bidRangeSchema, clientInfoSchema, clientReviewSchema, jobActivityDeltaSchema, jobActivityOffsetEnum, jobActivityOffsetHours, jobActivitySchema, jobActivitySnapshotSchema, jobActivityUpdateSchema, jobListingSchema, jobSkillsSchema, leadResponseSchema, leadSchema, metadataSchema, questionAnswerPairSchema, upworkJobSchema, vendorQualificationSchema } from "../../schemas";
|
|
3
|
-
import { SavedSearch } from "../saved-search";
|
|
4
|
-
import { LeadNote } from "./job-note";
|
|
5
|
-
import { LeadAgentStatus, LeadStatus } from "./job-status";
|
|
6
|
-
export interface Job extends z.infer<typeof upworkJobSchema> {
|
|
7
|
-
clientInfo: ClientInfo | null;
|
|
8
|
-
metadata: JobMetadata | null;
|
|
9
|
-
skills: JobSkill[] | null;
|
|
10
|
-
vendorQualifications: VendorQualifications | null;
|
|
11
|
-
}
|
|
12
|
-
export interface QuestionAnswerPair extends z.infer<typeof questionAnswerPairSchema> {
|
|
13
|
-
}
|
|
14
|
-
export interface Lead extends z.infer<typeof leadSchema> {
|
|
15
|
-
clientInfo: ClientInfo | null;
|
|
16
|
-
metadata: JobMetadata | null;
|
|
17
|
-
skills: JobSkill[] | null;
|
|
18
|
-
vendorQualifications: VendorQualifications | null;
|
|
19
|
-
notes: LeadNote[] | null;
|
|
20
|
-
questionAnswerPairs: QuestionAnswerPair[] | null;
|
|
21
|
-
agentStatus: LeadAgentStatus;
|
|
22
|
-
leadStatus: LeadStatus;
|
|
23
|
-
}
|
|
24
|
-
export interface LeadResponse extends z.infer<typeof leadResponseSchema> {
|
|
25
|
-
leads: Lead[];
|
|
26
|
-
}
|
|
27
|
-
export type JobWithSavedSearch = Lead & {
|
|
28
|
-
savedSearch?: SavedSearch | null;
|
|
29
|
-
};
|
|
30
|
-
export type JobListing = z.infer<typeof jobListingSchema>;
|
|
31
|
-
export type JobSkill = z.infer<typeof jobSkillsSchema>;
|
|
32
|
-
export type VendorQualifications = z.infer<typeof vendorQualificationSchema>;
|
|
33
|
-
export type ClientInfo = z.infer<typeof clientInfoSchema>;
|
|
34
|
-
export type JobMetadata = z.infer<typeof metadataSchema>;
|
|
35
|
-
export type ClientReview = z.infer<typeof clientReviewSchema>;
|
|
36
|
-
export type JobBidRange = z.infer<typeof bidRangeSchema>;
|
|
37
|
-
export type JobActivity = z.infer<typeof jobActivitySchema>;
|
|
38
|
-
export type JobActivityOffset = z.infer<typeof jobActivityOffsetEnum>;
|
|
39
|
-
export type JobActivityOffsetHour = (typeof jobActivityOffsetHours)[number];
|
|
40
|
-
export interface JobActivityUpdateSchema extends z.infer<typeof jobActivityUpdateSchema> {
|
|
41
|
-
}
|
|
42
|
-
export interface JobActivityDelta extends z.infer<typeof jobActivityDeltaSchema> {
|
|
43
|
-
}
|
|
44
|
-
export interface JobActivitySnapshot extends z.infer<typeof jobActivitySnapshotSchema> {
|
|
45
|
-
}
|
|
46
|
-
export * from "./job-note";
|
|
47
|
-
export * from "./job-status";
|
|
48
|
-
export * from "./nuxt";
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { createLeadNoteSchema, leadNoteSchema, updateLeadNoteSchema, updateLeadNotesOrderSchema } from "../../schemas/lead";
|
|
3
|
-
export interface LeadNote extends z.infer<typeof leadNoteSchema> {
|
|
4
|
-
}
|
|
5
|
-
export interface CreateLeadNote extends z.infer<typeof createLeadNoteSchema> {
|
|
6
|
-
}
|
|
7
|
-
export interface UpdateLeadNote extends z.infer<typeof updateLeadNoteSchema> {
|
|
8
|
-
}
|
|
9
|
-
export interface UpdateLeadNotesOrder extends z.infer<typeof updateLeadNotesOrderSchema> {
|
|
10
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { leadStatusSchema, agentStatusSchema } from "../../schemas/lead/lead-status";
|
|
3
|
-
export type LeadStatus = z.infer<typeof leadStatusSchema>;
|
|
4
|
-
export declare const leadStatusDisplayMap: Record<LeadStatus, string>;
|
|
5
|
-
export type LeadAgentStatus = z.infer<typeof agentStatusSchema>;
|
package/dist/types/job/nuxt.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './job-filters';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./log-event";
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { scrapeJobActivityPayloadSchema, scrapeJobPayloadSchema, scrapePayloadSchema, scrapeUserProfilePayloadSchema } from "../../schemas";
|
|
3
|
-
export interface ScrapePayload extends z.infer<typeof scrapePayloadSchema> {
|
|
4
|
-
}
|
|
5
|
-
export interface ScrapeUserProfilePayload extends z.infer<typeof scrapeUserProfilePayloadSchema> {
|
|
6
|
-
}
|
|
7
|
-
export interface ScrapeJobPayload extends z.infer<typeof scrapeJobPayloadSchema> {
|
|
8
|
-
}
|
|
9
|
-
export interface ScrapeJobActivityPayload extends z.infer<typeof scrapeJobActivityPayloadSchema> {
|
|
10
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { scrapeFeedResultSchema, scrapeResultSchema, scrapeUserProfileResultSchema } from "../../schemas";
|
|
3
|
-
export interface ScrapeResult extends z.infer<typeof scrapeResultSchema> {
|
|
4
|
-
}
|
|
5
|
-
export interface ScrapeFeedResult extends z.infer<typeof scrapeFeedResultSchema> {
|
|
6
|
-
}
|
|
7
|
-
export interface ScrapeUserProfileResult extends z.infer<typeof scrapeUserProfileResultSchema> {
|
|
8
|
-
}
|
package/dist/types/shared.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { regionSchema } from "../schemas";
|
|
3
|
-
export type Region = z.infer<typeof regionSchema>;
|
|
4
|
-
export type OptionalKeys<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
5
|
-
export type RequiredKeys<T, K extends keyof T> = Partial<Omit<T, K>> & Required<Pick<T, K>>;
|
|
6
|
-
export type DeepPartial<T> = T extends object ? {
|
|
7
|
-
[P in keyof T]?: DeepPartial<T[P]>;
|
|
8
|
-
} : T;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
import { loginSchema, Organization, registerSchema, upworkProfileSchema, userSchema } from "../../schemas";
|
|
3
|
-
import { Lead } from "../job";
|
|
4
|
-
import { SavedSearch } from "../saved-search";
|
|
5
|
-
export interface User extends z.infer<typeof userSchema> {
|
|
6
|
-
jobs?: Lead[];
|
|
7
|
-
savedSearches?: SavedSearch[];
|
|
8
|
-
organizations?: Organization[];
|
|
9
|
-
}
|
|
10
|
-
export interface RegisterSchema extends z.infer<typeof registerSchema> {
|
|
11
|
-
}
|
|
12
|
-
export interface LoginSchema extends z.infer<typeof loginSchema> {
|
|
13
|
-
}
|
|
14
|
-
export interface UpworkProfile extends z.infer<typeof upworkProfileSchema> {
|
|
15
|
-
}
|