silgi 0.28.5 → 0.28.6
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/cli/index.mjs +1 -1
- package/dist/kit/index.d.mts +3 -8
- package/package.json +1 -1
package/dist/cli/index.mjs
CHANGED
package/dist/kit/index.d.mts
CHANGED
|
@@ -72,12 +72,7 @@ interface MigrationInfo {
|
|
|
72
72
|
/**
|
|
73
73
|
* İzin migration verisi
|
|
74
74
|
*/
|
|
75
|
-
interface
|
|
76
|
-
id: string;
|
|
77
|
-
key: string;
|
|
78
|
-
description: string;
|
|
79
|
-
name: string;
|
|
80
|
-
permissions: string;
|
|
75
|
+
interface MigrationData {
|
|
81
76
|
}
|
|
82
77
|
/**
|
|
83
78
|
* JSON Patch formatı (RFC6902)
|
|
@@ -123,7 +118,7 @@ interface MigrationResult {
|
|
|
123
118
|
/** Patch türünde mi? */
|
|
124
119
|
isPatch?: boolean;
|
|
125
120
|
/** Migration verisi */
|
|
126
|
-
data?:
|
|
121
|
+
data?: MigrationData[] | JsonPatch;
|
|
127
122
|
}
|
|
128
123
|
/**
|
|
129
124
|
* Migration oluşturur
|
|
@@ -289,4 +284,4 @@ declare const baseHeaderBannerComment: string[];
|
|
|
289
284
|
declare function processFilePath(src: string): string;
|
|
290
285
|
|
|
291
286
|
export { MODE_RE, MigrationStatus, addTemplate, baseHeaderBannerComment, createFunction, createFunctionConfigs, createResolver, defineSilgiModule, defineSilgiPreset, directoryToURL, filterInPlace, formatFunctions, genEnsureSafeVar, generateMigration, getAllEntries, getIpAddress, getMigration, hasError, hasInstalledModule, hasSilgiModule, hash, ipAddress, isDirectory, isH3, isNitro, isNuxt, listMigrations, migrationDown, migrationUp, normalizeTemplate, parseServices, prettyPath, processFilePath, relativeWithDot, resolveAlias, resolvePath, resolveSilgiModule, resolveSilgiPath, serviceParseModule, toArray, tryResolveModule, useLogger, useRequest, useResponse, writeFile };
|
|
292
|
-
export type { FunctionConfig, JsonPatch, MigrationInfo, MigrationOptions, MigrationResult
|
|
287
|
+
export type { FunctionConfig, JsonPatch, MigrationData, MigrationInfo, MigrationOptions, MigrationResult };
|