@tinacms/cli 0.0.0-a28012f-20250515060252 → 0.0.0-a2d983e-20251110043859

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.
@@ -20,8 +20,11 @@ export declare class BuildCommand extends BaseCommand {
20
20
  catch(error: any): Promise<void>;
21
21
  execute(): Promise<number | void>;
22
22
  checkClientInfo(configManager: ConfigManager, apiURL: string, previewBaseBranch?: string): Promise<{
23
+ branchKnown: boolean;
23
24
  hasUpstream: boolean;
24
25
  timestamp: number;
26
+ detectedBotBranch: boolean;
27
+ defaultBranch: string | undefined;
25
28
  }>;
26
29
  syncProject(configManager: ConfigManager, apiURL: string, options?: {
27
30
  upstreamBranch?: string;
@@ -2,4 +2,4 @@
2
2
 
3
3
  */
4
4
  import http from 'node:http';
5
- export declare const gqlServer: (database: any, verbose: boolean) => Promise<http.Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>;
5
+ export declare const gqlServer: (database: any, verbose: boolean) => Promise<http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>>;
@@ -0,0 +1,3 @@
1
+ /** Removes trailing slash from path. Separator to remove is chosen based on
2
+ * operating system. */
3
+ export declare function stripNativeTrailingSlash(p: string): string;
@@ -1,3 +1,4 @@
1
+ export declare function timeout(ms: any): Promise<void>;
1
2
  export declare function sleepAndCallFunc<T>({ fn, ms, }: {
2
3
  fn: () => Promise<T>;
3
4
  ms: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/cli",
3
- "version": "0.0.0-a28012f-20250515060252",
3
+ "version": "0.0.0-a2d983e-20251110043859",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -37,11 +37,12 @@
37
37
  "@types/listr": "0.14.2",
38
38
  "@types/log4js": "^2.3.5",
39
39
  "@types/multer": "^1.4.12",
40
+ "@types/node": "^22.13.1",
40
41
  "@types/progress": "^2.0.7",
41
42
  "@types/prompts": "^2.4.9",
42
43
  "@types/yup": "^0.32.0",
43
44
  "jest": "^29.7.0",
44
- "@tinacms/scripts": "1.3.4"
45
+ "@tinacms/scripts": "1.4.0"
45
46
  },
46
47
  "dependencies": {
47
48
  "@graphql-codegen/core": "^2.6.8",
@@ -89,12 +90,12 @@
89
90
  "vite": "^4.5.9",
90
91
  "yup": "^1.6.1",
91
92
  "zod": "^3.24.2",
92
- "@tinacms/app": "0.0.0-a28012f-20250515060252",
93
- "@tinacms/metrics": "1.0.9",
94
- "@tinacms/schema-tools": "0.0.0-a28012f-20250515060252",
95
- "@tinacms/graphql": "0.0.0-a28012f-20250515060252",
96
- "@tinacms/search": "0.0.0-a28012f-20250515060252",
97
- "tinacms": "0.0.0-a28012f-20250515060252"
93
+ "@tinacms/app": "0.0.0-a2d983e-20251110043859",
94
+ "@tinacms/graphql": "1.6.1",
95
+ "@tinacms/schema-tools": "1.9.1",
96
+ "@tinacms/search": "1.1.1",
97
+ "tinacms": "0.0.0-a2d983e-20251110043859",
98
+ "@tinacms/metrics": "1.1.0"
98
99
  },
99
100
  "publishConfig": {
100
101
  "registry": "https://registry.npmjs.org"