@noya-app/noya-multiplayer-react 0.1.52 → 0.1.53
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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +8 -0
- package/dist/index.bundle.js +5 -4
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -144,15 +144,15 @@ declare function useSecret(name: string): _noya_app_state_manager.Secret | undef
|
|
|
144
144
|
declare function useInputs(): ({
|
|
145
145
|
id: string;
|
|
146
146
|
kind: "file";
|
|
147
|
+
name: string;
|
|
147
148
|
required: boolean;
|
|
148
149
|
toolId: string | null;
|
|
149
|
-
name: string;
|
|
150
150
|
description: string | null;
|
|
151
151
|
} | {
|
|
152
152
|
id: string;
|
|
153
153
|
kind: "data";
|
|
154
|
-
required: boolean;
|
|
155
154
|
name: string;
|
|
155
|
+
required: boolean;
|
|
156
156
|
description: string | null;
|
|
157
157
|
schema: {
|
|
158
158
|
default?: string | undefined;
|
|
@@ -244,8 +244,8 @@ declare function useInputs(): ({
|
|
|
244
244
|
} | {
|
|
245
245
|
id: string;
|
|
246
246
|
kind: "secret";
|
|
247
|
-
required: boolean;
|
|
248
247
|
name: string;
|
|
248
|
+
required: boolean;
|
|
249
249
|
description: string | null;
|
|
250
250
|
})[];
|
|
251
251
|
declare function useOutputTransforms(): ({
|
package/dist/index.d.ts
CHANGED
|
@@ -144,15 +144,15 @@ declare function useSecret(name: string): _noya_app_state_manager.Secret | undef
|
|
|
144
144
|
declare function useInputs(): ({
|
|
145
145
|
id: string;
|
|
146
146
|
kind: "file";
|
|
147
|
+
name: string;
|
|
147
148
|
required: boolean;
|
|
148
149
|
toolId: string | null;
|
|
149
|
-
name: string;
|
|
150
150
|
description: string | null;
|
|
151
151
|
} | {
|
|
152
152
|
id: string;
|
|
153
153
|
kind: "data";
|
|
154
|
-
required: boolean;
|
|
155
154
|
name: string;
|
|
155
|
+
required: boolean;
|
|
156
156
|
description: string | null;
|
|
157
157
|
schema: {
|
|
158
158
|
default?: string | undefined;
|
|
@@ -244,8 +244,8 @@ declare function useInputs(): ({
|
|
|
244
244
|
} | {
|
|
245
245
|
id: string;
|
|
246
246
|
kind: "secret";
|
|
247
|
-
required: boolean;
|
|
248
247
|
name: string;
|
|
248
|
+
required: boolean;
|
|
249
249
|
description: string | null;
|
|
250
250
|
})[];
|
|
251
251
|
declare function useOutputTransforms(): ({
|
package/dist/index.js
CHANGED
|
@@ -3418,6 +3418,17 @@ var mediaItemSchema = Type.Union(
|
|
|
3418
3418
|
);
|
|
3419
3419
|
var mediaMapSchema = Type.Record(Type.String(), mediaItemSchema);
|
|
3420
3420
|
|
|
3421
|
+
// ../noya-schemas/src/gitHubSchema.ts
|
|
3422
|
+
var repositorySchema = Type.Object({
|
|
3423
|
+
owner: Type.Optional(Type.String()),
|
|
3424
|
+
name: Type.Optional(Type.String()),
|
|
3425
|
+
ref: Type.Optional(Type.String()),
|
|
3426
|
+
path: Type.Optional(Type.String())
|
|
3427
|
+
});
|
|
3428
|
+
var gistSchema = Type.Object({
|
|
3429
|
+
id: Type.Optional(Type.String())
|
|
3430
|
+
});
|
|
3431
|
+
|
|
3421
3432
|
// ../noya-schemas/src/jsonSchema.ts
|
|
3422
3433
|
var jsonSchema = Type.Recursive(
|
|
3423
3434
|
(This) => Type.Union(
|