@a_team/prisma 3.14.0-macos-docker-linux → 3.14.1-linux

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.
@@ -604,7 +604,11 @@ exports.ContractSource = exports.$Enums.ContractSource = {
604
604
 
605
605
  exports.ExperienceType = exports.$Enums.ExperienceType = {
606
606
  job: 'job',
607
- project: 'project'
607
+ project: 'project',
608
+ award: 'award',
609
+ article: 'article',
610
+ interview: 'interview',
611
+ education: 'education'
608
612
  };
609
613
 
610
614
  exports.InvoiceType = exports.$Enums.InvoiceType = {
@@ -713,7 +713,11 @@ export type ContractSource = (typeof ContractSource)[keyof typeof ContractSource
713
713
 
714
714
  export const ExperienceType: {
715
715
  job: 'job',
716
- project: 'project'
716
+ project: 'project',
717
+ award: 'award',
718
+ article: 'article',
719
+ interview: 'interview',
720
+ education: 'education'
717
721
  };
718
722
 
719
723
  export type ExperienceType = (typeof ExperienceType)[keyof typeof ExperienceType]