nucleus-core-ts 0.9.968 → 0.9.970

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.
@@ -272,12 +272,14 @@ export function createServerFactory(endpoints: any, config: any, getCookies: any
272
272
  };
273
273
  code: number;
274
274
  data?: undefined;
275
+ requestId?: undefined;
275
276
  message?: undefined;
276
277
  } | {
277
278
  isSuccess: any;
278
279
  data: any;
279
280
  errors: any;
280
281
  code: any;
282
+ requestId: any;
281
283
  message: any;
282
284
  }>;
283
285
  export function createApiHook(endpoints: any, factory: any): () => {};