@osdk/generator 2.3.0-rc.11 → 2.4.0-beta.2

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.
@@ -466,7 +466,7 @@ describe("generator", () => {
466
466
  /**
467
467
  * Todo(s) to be deleted
468
468
  */
469
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
469
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
470
470
  }
471
471
 
472
472
  // Represents a fqn of the action
@@ -542,7 +542,7 @@ describe("generator", () => {
542
542
  /**
543
543
  * A Todo to mark completed
544
544
  */
545
- readonly object?: ActionParam.ObjectType<Todo>;
545
+ readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
546
546
  }
547
547
 
548
548
  // Represents a fqn of the action
@@ -1076,7 +1076,7 @@ describe("generator", () => {
1076
1076
  /**
1077
1077
  * Todo(s) to be deleted
1078
1078
  */
1079
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
1079
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
1080
1080
  }
1081
1081
 
1082
1082
  // Represents a fqn of the action
@@ -1152,7 +1152,7 @@ describe("generator", () => {
1152
1152
  /**
1153
1153
  * A Todo to mark completed
1154
1154
  */
1155
- readonly object?: ActionParam.ObjectType<Todo>;
1155
+ readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
1156
1156
  }
1157
1157
 
1158
1158
  // Represents a fqn of the action