@osdk/generator 2.5.0-beta.4 → 2.5.0-beta.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @osdk/generator
2
2
 
3
+ ## 2.5.0-beta.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 4248b80: Temporarily remove NullValue type from codegen
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [052a96b]
12
+ - @osdk/api@2.5.0-beta.5
13
+ - @osdk/generator-converters@2.5.0-beta.5
14
+
3
15
  ## 2.5.0-beta.4
4
16
 
5
17
  ### Minor Changes
@@ -469,7 +469,7 @@ describe("generator", () => {
469
469
  /**
470
470
  * Todo(s) to be deleted
471
471
  */
472
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
472
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
473
473
  }
474
474
 
475
475
  // Represents a fqn of the action
@@ -545,7 +545,7 @@ describe("generator", () => {
545
545
  /**
546
546
  * A Todo to mark completed
547
547
  */
548
- readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
548
+ readonly object?: ActionParam.ObjectType<Todo>;
549
549
  }
550
550
 
551
551
  // Represents a fqn of the action
@@ -1088,7 +1088,7 @@ describe("generator", () => {
1088
1088
  /**
1089
1089
  * Todo(s) to be deleted
1090
1090
  */
1091
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
1091
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
1092
1092
  }
1093
1093
 
1094
1094
  // Represents a fqn of the action
@@ -1164,7 +1164,7 @@ describe("generator", () => {
1164
1164
  /**
1165
1165
  * A Todo to mark completed
1166
1166
  */
1167
- readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
1167
+ readonly object?: ActionParam.ObjectType<Todo>;
1168
1168
  }
1169
1169
 
1170
1170
  // Represents a fqn of the action