Skip to content

Commit c6fbb95

Browse files
authored
Sync alphalib 2025 09 18 (#252)
1 parent d34e55a commit c6fbb95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+411
-86
lines changed

src/alphalib/types/robots/_index.ts

Lines changed: 90 additions & 2 deletions
Large diffs are not rendered by default.

src/alphalib/types/robots/assembly-savejson.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ export type RobotAssemblySavejsonInstructions = z.infer<
2828
export const interpolatableRobotAssemblySavejsonInstructionsSchema = interpolateRobot(
2929
robotAssemblySavejsonInstructionsSchema,
3030
)
31-
export type InterpolatableRobotAssemblySavejsonInstructions = z.input<
31+
export type InterpolatableRobotAssemblySavejsonInstructions =
32+
InterpolatableRobotAssemblySavejsonInstructionsInput
33+
34+
export type InterpolatableRobotAssemblySavejsonInstructionsInput = z.input<
3235
typeof interpolatableRobotAssemblySavejsonInstructionsSchema
3336
>

src/alphalib/types/robots/audio-artwork.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,10 @@ export type RobotAudioArtworkInstructionsWithHiddenFields = z.infer<
8888
export const interpolatableRobotAudioArtworkInstructionsSchema = interpolateRobot(
8989
robotAudioArtworkInstructionsSchema,
9090
)
91-
export type InterpolatableRobotAudioArtworkInstructions = z.input<
91+
export type InterpolatableRobotAudioArtworkInstructions =
92+
InterpolatableRobotAudioArtworkInstructionsInput
93+
94+
export type InterpolatableRobotAudioArtworkInstructionsInput = z.input<
9295
typeof interpolatableRobotAudioArtworkInstructionsSchema
9396
>
9497

src/alphalib/types/robots/audio-concat.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,10 @@ export type RobotAudioConcatInstructionsWithHiddenFields = z.infer<
122122
export const interpolatableRobotAudioConcatInstructionsSchema = interpolateRobot(
123123
robotAudioConcatInstructionsSchema,
124124
)
125-
export type InterpolatableRobotAudioConcatInstructions = z.input<
125+
export type InterpolatableRobotAudioConcatInstructions =
126+
InterpolatableRobotAudioConcatInstructionsInput
127+
128+
export type InterpolatableRobotAudioConcatInstructionsInput = z.input<
126129
typeof interpolatableRobotAudioConcatInstructionsSchema
127130
>
128131

src/alphalib/types/robots/audio-encode.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ export type RobotAudioEncodeInstructionsWithHiddenFields = z.infer<
8484
export const interpolatableRobotAudioEncodeInstructionsSchema = interpolateRobot(
8585
robotAudioEncodeInstructionsSchema,
8686
)
87-
export type InterpolatableRobotAudioEncodeInstructions = z.input<
87+
export type InterpolatableRobotAudioEncodeInstructions =
88+
InterpolatableRobotAudioEncodeInstructionsInput
89+
90+
export type InterpolatableRobotAudioEncodeInstructionsInput = z.input<
8891
typeof interpolatableRobotAudioEncodeInstructionsSchema
8992
>
9093

src/alphalib/types/robots/audio-loop.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ export type RobotAudioLoopInstructionsWithHiddenFields = z.infer<
8484
export const interpolatableRobotAudioLoopInstructionsSchema = interpolateRobot(
8585
robotAudioLoopInstructionsSchema,
8686
)
87-
export type InterpolatableRobotAudioLoopInstructions = z.input<
87+
export type InterpolatableRobotAudioLoopInstructions = InterpolatableRobotAudioLoopInstructionsInput
88+
89+
export type InterpolatableRobotAudioLoopInstructionsInput = z.input<
8890
typeof interpolatableRobotAudioLoopInstructionsSchema
8991
>
9092

src/alphalib/types/robots/audio-merge.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,10 @@ export type RobotAudioMergeInstructionsWithHiddenFields = z.infer<
117117
export const interpolatableRobotAudioMergeInstructionsSchema = interpolateRobot(
118118
robotAudioMergeInstructionsSchema,
119119
)
120-
export type InterpolatableRobotAudioMergeInstructions = z.input<
120+
export type InterpolatableRobotAudioMergeInstructions =
121+
InterpolatableRobotAudioMergeInstructionsInput
122+
123+
export type InterpolatableRobotAudioMergeInstructionsInput = z.input<
121124
typeof interpolatableRobotAudioMergeInstructionsSchema
122125
>
123126

src/alphalib/types/robots/audio-waveform.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,10 @@ export type RobotAudioWaveformInstructionsWithHiddenFields = z.infer<
127127
export const interpolatableRobotAudioWaveformInstructionsSchema = interpolateRobot(
128128
robotAudioWaveformInstructionsSchema,
129129
)
130-
export type InterpolatableRobotAudioWaveformInstructions = z.input<
130+
export type InterpolatableRobotAudioWaveformInstructions =
131+
InterpolatableRobotAudioWaveformInstructionsInput
132+
133+
export type InterpolatableRobotAudioWaveformInstructionsInput = z.input<
131134
typeof interpolatableRobotAudioWaveformInstructionsSchema
132135
>
133136

src/alphalib/types/robots/azure-import.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ export type RobotAzureImportInstructionsWithHiddenFields = z.infer<
9191
export const interpolatableRobotAzureImportInstructionsSchema = interpolateRobot(
9292
robotAzureImportInstructionsSchema,
9393
)
94-
export type InterpolatableRobotAzureImportInstructions = z.input<
94+
export type InterpolatableRobotAzureImportInstructions =
95+
InterpolatableRobotAzureImportInstructionsInput
96+
97+
export type InterpolatableRobotAzureImportInstructionsInput = z.input<
9598
typeof interpolatableRobotAzureImportInstructionsSchema
9699
>
97100

src/alphalib/types/robots/azure-store.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ export type RobotAzureStoreInstructionsWithHiddenFields = z.infer<
124124
export const interpolatableRobotAzureStoreInstructionsSchema = interpolateRobot(
125125
robotAzureStoreInstructionsSchema,
126126
)
127-
export type InterpolatableRobotAzureStoreInstructions = z.input<
127+
export type InterpolatableRobotAzureStoreInstructions =
128+
InterpolatableRobotAzureStoreInstructionsInput
129+
130+
export type InterpolatableRobotAzureStoreInstructionsInput = z.input<
128131
typeof interpolatableRobotAzureStoreInstructionsSchema
129132
>
130133

0 commit comments

Comments
 (0)