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

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.4.0-beta.0",
3
+ "version": "3.4.0-beta.1",
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.4.0-beta.0",
13
- "@ninetailed/experience.js": "3.4.0-beta.0",
14
- "@ninetailed/experience.js-shared": "3.4.0-beta.0",
12
+ "@ninetailed/experience.js-utils": "3.4.0-beta.1",
13
+ "@ninetailed/experience.js": "3.4.0-beta.1",
14
+ "@ninetailed/experience.js-shared": "3.4.0-beta.1",
15
15
  "zod": "3.20.2"
16
16
  }
17
17
  }
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import { EntryFields } from './EntryFields';
3
- import { ExperienceEntry, ExperienceEntryLike, ExperienceEntrySchema } from './ExperienceEntry';
3
+ import { ExperienceEntry, ExperienceEntryLike } from './ExperienceEntry';
4
4
  declare const BaselineWithExperiencesEntryFields: z.ZodObject<z.extendShape<{}, {
5
5
  nt_experiences: z.ZodArray<z.ZodObject<z.extendShape<{
6
6
  sys: z.ZodObject<{
@@ -3898,7 +3898,7 @@ export declare const BaselineWithExperiencesEntrySchema: z.ZodObject<z.extendSha
3898
3898
  }[];
3899
3899
  };
3900
3900
  }>;
3901
- type BaselineWithExperiencesEntryInput = z.input<typeof ExperienceEntrySchema>;
3901
+ type BaselineWithExperiencesEntryInput = z.input<typeof BaselineWithExperiencesEntrySchema>;
3902
3902
  export type BaselineWithExperiencesEntryLike<VariantFields extends EntryFields = EntryFields> = Omit<BaselineWithExperiencesEntryInput, 'nt_experiences'> & {
3903
3903
  nt_experiences?: ExperienceEntryLike<VariantFields>[] | undefined;
3904
3904
  };