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

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.
@@ -235,6 +235,9 @@ const referencedOntology = {
235
235
  rid: "idk"
236
236
  }
237
237
  },
238
+ "branch": {
239
+ rid: "someRidHere"
240
+ },
238
241
  valueTypes: {}
239
242
  };
240
243
  const referencingOntology = {
@@ -469,7 +472,7 @@ describe("generator", () => {
469
472
  /**
470
473
  * Todo(s) to be deleted
471
474
  */
472
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
475
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
473
476
  }
474
477
 
475
478
  // Represents a fqn of the action
@@ -545,7 +548,7 @@ describe("generator", () => {
545
548
  /**
546
549
  * A Todo to mark completed
547
550
  */
548
- readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
551
+ readonly object?: ActionParam.ObjectType<Todo>;
549
552
  }
550
553
 
551
554
  // Represents a fqn of the action
@@ -1088,7 +1091,7 @@ describe("generator", () => {
1088
1091
  /**
1089
1092
  * Todo(s) to be deleted
1090
1093
  */
1091
- readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>> | ActionParam.NullValueType;
1094
+ readonly object?: ReadonlyArray<ActionParam.ObjectType<Todo>>;
1092
1095
  }
1093
1096
 
1094
1097
  // Represents a fqn of the action
@@ -1164,7 +1167,7 @@ describe("generator", () => {
1164
1167
  /**
1165
1168
  * A Todo to mark completed
1166
1169
  */
1167
- readonly object?: ActionParam.ObjectType<Todo> | ActionParam.NullValueType;
1170
+ readonly object?: ActionParam.ObjectType<Todo>;
1168
1171
  }
1169
1172
 
1170
1173
  // Represents a fqn of the action
@@ -2335,6 +2338,8 @@ describe("generator", () => {
2335
2338
  export const $osdkMetadata = { extraUserAgent: '' };
2336
2339
 
2337
2340
  export const $ontologyRid = 'ri.ontology.main.ontology.dep';
2341
+
2342
+ export const $branch = 'someRidHere';
2338
2343
  ",
2339
2344
  "/foo/index.ts": "export {} from './ontology/actions.js';
2340
2345
  export * as $Actions from './ontology/actions.js';