@ttctl/core 0.1.0-rc.7 → 0.1.0-rc.8
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/__generated__/gateway.d.ts +9 -9
- package/dist/__generated__/gateway.d.ts.map +1 -1
- package/dist/__generated__/zod-schemas.d.ts +9 -9
- package/dist/__generated__/zod-schemas.d.ts.map +1 -1
- package/dist/__generated__/zod-schemas.js +9 -9
- package/dist/__generated__/zod-schemas.js.map +1 -1
- package/dist/__tests__/fixtures/profile/builders.d.ts.map +1 -1
- package/dist/__tests__/fixtures/profile/builders.js +1 -0
- package/dist/__tests__/fixtures/profile/builders.js.map +1 -1
- package/dist/__tests__/fixtures/profile/data.d.ts.map +1 -1
- package/dist/__tests__/fixtures/profile/data.js +2 -0
- package/dist/__tests__/fixtures/profile/data.js.map +1 -1
- package/dist/consent.d.ts +236 -0
- package/dist/consent.d.ts.map +1 -0
- package/dist/consent.js +225 -0
- package/dist/consent.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/services/applications/index.d.ts +917 -13
- package/dist/services/applications/index.d.ts.map +1 -1
- package/dist/services/applications/index.js +1284 -6
- package/dist/services/applications/index.js.map +1 -1
- package/dist/services/jobs/index.d.ts.map +1 -1
- package/dist/services/jobs/index.js.map +1 -1
- package/dist/services/payments/index.d.ts +66 -0
- package/dist/services/payments/index.d.ts.map +1 -1
- package/dist/services/payments/index.js +120 -0
- package/dist/services/payments/index.js.map +1 -1
- package/dist/services/profile/employment/index.d.ts +50 -4
- package/dist/services/profile/employment/index.d.ts.map +1 -1
- package/dist/services/profile/employment/index.js +73 -16
- package/dist/services/profile/employment/index.js.map +1 -1
- package/dist/services/profile/reviews/index.d.ts +31 -1
- package/dist/services/profile/reviews/index.d.ts.map +1 -1
- package/dist/services/profile/reviews/index.js +19 -1
- package/dist/services/profile/reviews/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1124,9 +1124,9 @@ export function JobEstimatedLengthSchema() {
|
|
|
1124
1124
|
}
|
|
1125
1125
|
export function JobExpertiseAnswerInputSchema() {
|
|
1126
1126
|
return z.object({
|
|
1127
|
-
other: z.
|
|
1127
|
+
other: z.string().nullable(),
|
|
1128
1128
|
questionId: z.string(),
|
|
1129
|
-
subjectId: z.
|
|
1129
|
+
subjectId: z.string().nullable()
|
|
1130
1130
|
});
|
|
1131
1131
|
}
|
|
1132
1132
|
export function JobHiringStatusSchema() {
|
|
@@ -1679,14 +1679,14 @@ export function PhotoSchema() {
|
|
|
1679
1679
|
}
|
|
1680
1680
|
export function PitchInputSchema() {
|
|
1681
1681
|
return z.object({
|
|
1682
|
-
certificationPitchItems: z.array(z.
|
|
1683
|
-
educationPitchItems: z.array(z.
|
|
1684
|
-
employmentPitchItems: z.array(z.
|
|
1685
|
-
industryPitchItems: z.array(z.
|
|
1682
|
+
certificationPitchItems: z.array(z.lazy(() => PitchItemCertificationInputSchema())).nullable(),
|
|
1683
|
+
educationPitchItems: z.array(z.lazy(() => PitchItemEducationInputSchema())).nullable(),
|
|
1684
|
+
employmentPitchItems: z.array(z.lazy(() => PitchItemEmploymentInputSchema())).nullable(),
|
|
1685
|
+
industryPitchItems: z.array(z.lazy(() => PitchItemIndustryInputSchema())).nullable(),
|
|
1686
1686
|
mentorship: z.unknown().nullable(),
|
|
1687
|
-
portfolioPitchItems: z.array(z.
|
|
1688
|
-
publicationPitchItems: z.array(z.
|
|
1689
|
-
skillPitchItems: z.array(z.
|
|
1687
|
+
portfolioPitchItems: z.array(z.lazy(() => PitchItemPortfolioInputSchema())).nullable(),
|
|
1688
|
+
publicationPitchItems: z.array(z.lazy(() => PitchItemPublicationInputSchema())).nullable(),
|
|
1689
|
+
skillPitchItems: z.array(z.lazy(() => PitchItemSkillInputSchema())).nullable()
|
|
1690
1690
|
});
|
|
1691
1691
|
}
|
|
1692
1692
|
export function PitchItemCertificationInputSchema() {
|