@worknice/utils 0.6.21 → 0.6.23

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.
@@ -366,7 +366,6 @@ type TriggerIntegrationSyncRequestPayload = {
366
366
  org: {
367
367
  id: string;
368
368
  };
369
- status: "ACTIVE" | "PAUSED" | "SYNCING" | "UNAUTHORIZED" | "UNCONFIGURED" | "UNINITIALIZED";
370
369
  };
371
370
  /**
372
371
  * @deprecated Use `integration.id` instead.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worknice/utils",
3
- "version": "0.6.21",
3
+ "version": "0.6.23",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "type": "module",
@@ -47,9 +47,11 @@
47
47
  "dev": "rm -rf ./dist && tsup --watch",
48
48
  "dev:test": "vitest",
49
49
  "fix": "if [[ -z $TURBO_HASH ]]; then pnpm turbo fix; else exit 0; fi",
50
- "fix:eslint": "eslint --fix \"src/**/*.{js,ts,tsx}\"",
51
- "fix:prettier": "prettier -c '**/*.{js,ts,tsx,css}' --write",
50
+ "fix:lint": "eslint \"src/**/*.{js,ts,tsx}\" --fix",
51
+ "fix:format": "prettier '**/*.{js,ts,tsx,css}' --write",
52
52
  "test": "if [[ -z $TURBO_HASH ]]; then echo 'Use `pnpm turbo test` to run tests.\n' && exit 1; else exit 0; fi",
53
+ "test:format": "prettier '**/*.{js,ts,tsx,css}' --check",
54
+ "test:lint": "eslint \"src/**/*.{js,ts,tsx}\"",
53
55
  "test:unit": "vitest run",
54
56
  "test:types": "tsc --noEmit --pretty"
55
57
  }