@pexip-engage-public/graphql 1.4.5 → 1.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @pexip-engage-public/graphql
2
2
 
3
+ ## 1.4.6
4
+
5
+ ### Patch Changes
6
+
7
+ - f157cde: chore: remove japanese & polish options in UI
8
+ - 7a4012d: fix(deps): update all non-major dependencies
9
+ - Updated dependencies [7a4012d]
10
+ - @pexip-engage-public/utils@0.1.57
11
+
3
12
  ## 1.4.5
4
13
 
5
14
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  import type { Language } from "./schema.js";
2
- export declare const LANGUAGES: [Language, ...Language[]];
2
+ export declare const LANGUAGES: Language[];
3
3
  export declare const typeguards: {
4
4
  languages: {
5
5
  typeguard: (value?: unknown) => value is Language;
@@ -1 +1 @@
1
- {"version":3,"file":"type-guards.d.ts","sourceRoot":"","sources":["../src/type-guards.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAe5C,eAAO,MAAM,SAAS,2BAAmB,CAAC;AAE1C,eAAO,MAAM,UAAU;;;;;CAEtB,CAAC"}
1
+ {"version":3,"file":"type-guards.d.ts","sourceRoot":"","sources":["../src/type-guards.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAe5C,eAAO,MAAM,SAAS,YAKpB,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;CAEtB,CAAC"}
@@ -11,7 +11,12 @@ const languages = createTypeGuard({
11
11
  no: "no",
12
12
  pl: "pl",
13
13
  });
14
- export const LANGUAGES = languages.values;
14
+ export const LANGUAGES = languages.values.filter((l) => {
15
+ // No actual support in the applications yet
16
+ if (l === "pl" || l === "ja")
17
+ return false;
18
+ return true;
19
+ });
15
20
  export const typeguards = {
16
21
  languages,
17
22
  };
@@ -1 +1 @@
1
- {"version":3,"file":"type-guards.js","sourceRoot":"","sources":["../src/type-guards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AAGxE,MAAM,SAAS,GAAG,eAAe,CAAW;IAC1C,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;CACT,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC;AAE1C,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,SAAS;CACV,CAAC"}
1
+ {"version":3,"file":"type-guards.js","sourceRoot":"","sources":["../src/type-guards.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AAGxE,MAAM,SAAS,GAAG,eAAe,CAAW;IAC1C,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;IACR,EAAE,EAAE,IAAI;CACT,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE;IACrD,4CAA4C;IAC5C,IAAI,CAAC,KAAK,IAAI,IAAI,CAAC,KAAK,IAAI;QAAE,OAAO,KAAK,CAAC;IAE3C,OAAO,IAAI,CAAC;AACd,CAAC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,UAAU,GAAG;IACxB,SAAS;CACV,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip-engage-public/graphql",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "homepage": "https://github.com/skedify/frontend-mono/tree/develop/packages/graphql#readme",
5
5
  "bugs": {
6
6
  "url": "https://github.com/skedify/frontend-mono/issues"
@@ -37,15 +37,15 @@
37
37
  "graphql": "16.11.0",
38
38
  "graphql-request": "^7.4.0",
39
39
  "lz-string": "^1.5.0",
40
- "zod": "^4.3.5",
41
- "@pexip-engage-public/utils": "0.1.56"
40
+ "zod": "^4.3.6",
41
+ "@pexip-engage-public/utils": "0.1.57"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@graphql-codegen/cli": "^6.1.1",
45
45
  "@graphql-codegen/typescript": "^5.0.7",
46
- "@graphql-inspector/cli": "^6.0.5",
46
+ "@graphql-inspector/cli": "^6.0.6",
47
47
  "typescript": "^5.9.3",
48
- "@pexip-engage/eslint-config-pexip-engage": "1.3.4",
48
+ "@pexip-engage/eslint-config-pexip-engage": "1.3.5",
49
49
  "@pexip-engage/tsconfig": "0.1.1"
50
50
  },
51
51
  "publishConfig": {
@@ -14,7 +14,12 @@ const languages = createTypeGuard<Language>({
14
14
  pl: "pl",
15
15
  });
16
16
 
17
- export const LANGUAGES = languages.values;
17
+ export const LANGUAGES = languages.values.filter((l) => {
18
+ // No actual support in the applications yet
19
+ if (l === "pl" || l === "ja") return false;
20
+
21
+ return true;
22
+ });
18
23
 
19
24
  export const typeguards = {
20
25
  languages,