@@ -349,6 +349,15 @@ export async function createInstantiator(options, swift) {
349349 if ( typeof globalThis . Networking . APIV2 . Internal === 'undefined' ) {
350350 globalThis . Networking . APIV2 . Internal = { } ;
351351 }
352+ if ( typeof globalThis . Services === 'undefined' ) {
353+ globalThis . Services = { } ;
354+ }
355+ if ( typeof globalThis . Services . Graph === 'undefined' ) {
356+ globalThis . Services . Graph = { } ;
357+ }
358+ if ( typeof globalThis . Services . Graph . GraphOperations === 'undefined' ) {
359+ globalThis . Services . Graph . GraphOperations = { } ;
360+ }
352361 if ( typeof globalThis . Utils === 'undefined' ) {
353362 globalThis . Utils = { } ;
354363 }
@@ -369,6 +378,30 @@ export async function createInstantiator(options, swift) {
369378 } ,
370379 } ,
371380 } ,
381+ Services : {
382+ Graph : {
383+ GraphOperations : {
384+ createGraph : function bjs_Services_Graph_GraphOperations_static_createGraph ( rootId ) {
385+ const ret = instance . exports . bjs_Services_Graph_GraphOperations_static_createGraph ( rootId ) ;
386+ return ret ;
387+ } ,
388+ nodeCount : function bjs_Services_Graph_GraphOperations_static_nodeCount ( graphId ) {
389+ const ret = instance . exports . bjs_Services_Graph_GraphOperations_static_nodeCount ( graphId ) ;
390+ return ret ;
391+ } ,
392+ validate : function bjs_Services_Graph_GraphOperations_static_validate ( graphId ) {
393+ const ret = instance . exports . bjs_Services_Graph_GraphOperations_static_validate ( graphId ) ;
394+ if ( tmpRetException ) {
395+ const error = swift . memory . getObject ( tmpRetException ) ;
396+ swift . memory . release ( tmpRetException ) ;
397+ tmpRetException = undefined ;
398+ throw error ;
399+ }
400+ return ret !== 0 ;
401+ } ,
402+ } ,
403+ } ,
404+ } ,
372405 Utils : {
373406 Converter,
374407 } ,
@@ -377,6 +410,9 @@ export async function createInstantiator(options, swift) {
377410 globalThis . Utils . Converter = exports . Utils . Converter ;
378411 globalThis . Networking . API . HTTPServer = exports . Networking . API . HTTPServer ;
379412 globalThis . Networking . APIV2 . Internal . TestServer = exports . Networking . APIV2 . Internal . TestServer ;
413+ globalThis . Services . Graph . GraphOperations . createGraph = exports . Services . Graph . GraphOperations . createGraph ;
414+ globalThis . Services . Graph . GraphOperations . nodeCount = exports . Services . Graph . GraphOperations . nodeCount ;
415+ globalThis . Services . Graph . GraphOperations . validate = exports . Services . Graph . GraphOperations . validate ;
380416 return exports ;
381417 } ,
382418 }
0 commit comments