@ninetailed/experience.js-utils-contentful 3.3.3 → 3.4.0-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ninetailed/experience.js-utils-contentful",
3
- "version": "3.3.3",
3
+ "version": "3.4.0-beta.0",
4
4
  "peerDependencies": {
5
5
  "contentful": "^9.1.32"
6
6
  },
@@ -9,9 +9,9 @@
9
9
  "type": "module",
10
10
  "types": "./index.d.ts",
11
11
  "dependencies": {
12
- "@ninetailed/experience.js-utils": "3.3.3",
13
- "@ninetailed/experience.js": "3.3.3",
14
- "@ninetailed/experience.js-shared": "3.3.3",
12
+ "@ninetailed/experience.js-utils": "3.4.0-beta.0",
13
+ "@ninetailed/experience.js": "3.4.0-beta.0",
14
+ "@ninetailed/experience.js-shared": "3.4.0-beta.0",
15
15
  "zod": "3.20.2"
16
16
  }
17
17
  }
@@ -3900,7 +3900,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
3900
3900
  }>;
3901
3901
  type BaselineWithExperiencesEntryInput = z.input<typeof ExperienceEntrySchema>;
3902
3902
  export type BaselineWithExperiencesEntryLike<VariantFields extends EntryFields = EntryFields> = Omit<BaselineWithExperiencesEntryInput, 'nt_experiences'> & {
3903
- nt_experiences: ExperienceEntryLike<VariantFields>[];
3903
+ nt_experiences?: ExperienceEntryLike<VariantFields>[] | undefined;
3904
3904
  };
3905
3905
  type BaselineWithExperiencesEntryOutput = z.infer<typeof BaselineWithExperiencesEntrySchema>;
3906
3906
  export type BaselineWithExperiencesEntry<VariantFields extends EntryFields = EntryFields> = Omit<BaselineWithExperiencesEntryOutput, 'nt_experiences'> & {