@osdk/generator 2.4.0-rc.19 → 2.5.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.
package/CHANGELOG.md CHANGED
@@ -1,22 +1,18 @@
1
1
  # @osdk/generator
2
2
 
3
- ## 2.4.0-rc.19
3
+ ## 2.5.0-beta.2
4
4
 
5
- ### Patch Changes
6
-
7
- - Updated dependencies [8dd6229]
8
- - @osdk/api@2.4.0-rc.19
9
- - @osdk/generator-converters@2.4.0-rc.19
5
+ ### Minor Changes
10
6
 
11
- ## 2.4.0-beta.18
7
+ - 7cdab1d: Update platform sdk dependencies
12
8
 
13
9
  ### Patch Changes
14
10
 
15
- - 44bbbe0: Add interface query support.
16
- - Updated dependencies [722c89a]
17
- - Updated dependencies [44bbbe0]
18
- - @osdk/api@2.4.0-beta.18
19
- - @osdk/generator-converters@2.4.0-beta.18
11
+ - Updated dependencies [7160276]
12
+ - Updated dependencies [7cdab1d]
13
+ - Updated dependencies [76905f5]
14
+ - @osdk/api@2.5.0-beta.2
15
+ - @osdk/generator-converters@2.5.0-beta.2
20
16
 
21
17
  ## 2.4.0-beta.17
22
18
 
@@ -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
@@ -1077,7 +1077,7 @@ describe("generator", () => {
1077
1077
  /**
1078
1078
  * Todo(s) to be deleted
1079
1079
  */
1080
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
1080
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
1081
1081
  }
1082
1082
 
1083
1083
  // Represents a fqn of the action
@@ -1153,7 +1153,7 @@ describe("generator", () => {
1153
1153
  /**
1154
1154
  * A Todo to mark completed
1155
1155
  */
1156
- readonly object?: ActionParam.ObjectType<Todo>;
1156
+ readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
1157
1157
  }
1158
1158
 
1159
1159
  // Represents a fqn of the action