@noya-app/noya-multiplayer-react 0.1.52 → 0.1.54

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/dist/index.mjs CHANGED
@@ -3380,6 +3380,17 @@ var mediaItemSchema = Type.Union(
3380
3380
  );
3381
3381
  var mediaMapSchema = Type.Record(Type.String(), mediaItemSchema);
3382
3382
 
3383
+ // ../noya-schemas/src/gitHubSchema.ts
3384
+ var repositorySchema = Type.Object({
3385
+ owner: Type.Optional(Type.String()),
3386
+ name: Type.Optional(Type.String()),
3387
+ ref: Type.Optional(Type.String()),
3388
+ path: Type.Optional(Type.String())
3389
+ });
3390
+ var gistSchema = Type.Object({
3391
+ id: Type.Optional(Type.String())
3392
+ });
3393
+
3383
3394
  // ../noya-schemas/src/jsonSchema.ts
3384
3395
  var jsonSchema = Type.Recursive(
3385
3396
  (This) => Type.Union(
@@ -5517,6 +5528,7 @@ export {
5517
5528
  useSecret,
5518
5529
  useSecretManager,
5519
5530
  useSecrets,
5531
+ useStateInspector,
5520
5532
  useSyncStateManager,
5521
5533
  useViewType
5522
5534
  };