@tinacms/metrics 1.0.5 → 1.0.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.
@@ -6,8 +6,8 @@ interface EventsBase {
6
6
  }
7
7
  export interface CreateTinaAppInvoke extends EventsBase {
8
8
  name: 'create-tina-app:invoke';
9
- example: string;
10
- useYarn: boolean;
9
+ template: string;
10
+ pkgManager: string;
11
11
  }
12
12
  export interface TinaCMSAuditInvoke extends EventsBase {
13
13
  name: 'tinacms:cli:audit:invoke';
@@ -26,13 +26,13 @@ export interface TinaCMSServerError extends EventsBase {
26
26
  name: 'tinacms:cli:server:error';
27
27
  errorMessage: string;
28
28
  }
29
- export declare type Events = CreateTinaAppInvoke | TinaCMSAuditInvoke | TinaCMSInitInvoke | TinaCMSServerStartInvoke | TinaCMSServerError;
30
- declare type Merge<A, B> = {
29
+ export type Events = CreateTinaAppInvoke | TinaCMSAuditInvoke | TinaCMSInitInvoke | TinaCMSServerStartInvoke | TinaCMSServerError;
30
+ type Merge<A, B> = {
31
31
  [K in keyof A]: K extends keyof B ? B[K] : A[K];
32
32
  } & B extends infer O ? {
33
33
  [K in keyof O]: O[K];
34
34
  } : never;
35
- declare type EventBaseProperties = {
35
+ type EventBaseProperties = {
36
36
  nodeVersion: string;
37
37
  tinaCliVersion: string;
38
38
  tinaVersion: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/metrics",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -24,8 +24,8 @@
24
24
  "@types/isomorphic-fetch": "^0.0.35",
25
25
  "fs-extra": "^9.0.1",
26
26
  "jest": "^29.5.0",
27
- "typescript": "4.6.4",
28
- "@tinacms/scripts": "1.1.6"
27
+ "typescript": "^5.6.2",
28
+ "@tinacms/scripts": "1.2.2"
29
29
  },
30
30
  "publishConfig": {
31
31
  "registry": "https://registry.npmjs.org"