@hiver/connector-agent 0.0.1-beta.9 → 1.0.0

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.
Files changed (46) hide show
  1. package/app/index.d.ts +3 -2
  2. package/app/index.d.ts.map +1 -1
  3. package/app/provider.d.ts +6 -1
  4. package/app/provider.d.ts.map +1 -1
  5. package/app/style.d.ts +1 -0
  6. package/app/style.d.ts.map +1 -1
  7. package/constants/card.d.ts +3 -0
  8. package/constants/card.d.ts.map +1 -1
  9. package/constants/global-constants.d.ts +6 -0
  10. package/constants/global-constants.d.ts.map +1 -0
  11. package/constants/noConnector.d.ts +4 -0
  12. package/constants/noConnector.d.ts.map +1 -1
  13. package/constants/tracking-events.d.ts +6 -0
  14. package/constants/tracking-events.d.ts.map +1 -0
  15. package/context/index.d.ts +5 -8
  16. package/context/index.d.ts.map +1 -1
  17. package/context/main-app-provider/index.d.ts +5 -1
  18. package/context/main-app-provider/index.d.ts.map +1 -1
  19. package/features/connector-cards/components/card-list/Card.d.ts +1 -3
  20. package/features/connector-cards/components/card-list/Card.d.ts.map +1 -1
  21. package/features/connector-cards/components/card-list/CardContent.d.ts.map +1 -1
  22. package/features/connector-cards/components/card-list/index.d.ts +1 -4
  23. package/features/connector-cards/components/card-list/index.d.ts.map +1 -1
  24. package/features/connector-cards/components/card-list/style.d.ts.map +1 -1
  25. package/features/connector-cards/components/no-connectors/index.d.ts +4 -1
  26. package/features/connector-cards/components/no-connectors/index.d.ts.map +1 -1
  27. package/features/connector-cards/components/no-connectors/style.d.ts +5 -2
  28. package/features/connector-cards/components/no-connectors/style.d.ts.map +1 -1
  29. package/features/connector-cards/constants/api.d.ts.map +1 -1
  30. package/features/connector-cards/store/initial-state.d.ts +1 -0
  31. package/features/connector-cards/store/initial-state.d.ts.map +1 -1
  32. package/features/connector-cards/store/selectors.d.ts +1 -0
  33. package/features/connector-cards/store/selectors.d.ts.map +1 -1
  34. package/features/connector-cards/store/slice.d.ts +15 -2
  35. package/features/connector-cards/store/slice.d.ts.map +1 -1
  36. package/features/toast-message/constants/toast.d.ts +2 -0
  37. package/features/toast-message/constants/toast.d.ts.map +1 -1
  38. package/features/toast-message/showMessage.d.ts.map +1 -1
  39. package/index.es.js +12698 -9786
  40. package/index.umd.js +987 -124
  41. package/main.d.ts +1 -0
  42. package/main.d.ts.map +1 -1
  43. package/package.json +1 -1
  44. package/testing/mocks/handlers/fetch-cards.d.ts.map +1 -1
  45. package/types/cards.d.ts +2 -0
  46. package/types/cards.d.ts.map +1 -1
package/main.d.ts CHANGED
@@ -3,4 +3,5 @@ declare global {
3
3
  grexit: any;
4
4
  }
5
5
  }
6
+ export {};
6
7
  //# sourceMappingURL=main.d.ts.map
package/main.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.tsx"],"names":[],"mappings":"AAMA,OAAO,aAAa,CAAC;AAmBrB,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QAEd,MAAM,EAAE,GAAG,CAAC;KACb;CACF"}
1
+ {"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.tsx"],"names":[],"mappings":"AAuBA,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QAEd,MAAM,EAAE,GAAG,CAAC;KACb;CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiver/connector-agent",
3
- "version": "0.0.1-beta.9",
3
+ "version": "1.0.0",
4
4
  "main": "index.es.js",
5
5
  "module": "index.es.js",
6
6
  "types": "index.d.ts",
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-cards.d.ts","sourceRoot":"","sources":["../../../../src/testing/mocks/handlers/fetch-cards.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,YAAY,EAA4B,MAAM,eAAe,CAAC;AAyBnF,eAAO,MAAM,oBAAoB,OAAQ,MAAM,UAAS,MAAM;;cAiCT,UAAU;;CAG9D,CAAC;AAaF,eAAO,MAAM,QAAQ,6BAAkD,CAAC"}
1
+ {"version":3,"file":"fetch-cards.d.ts","sourceRoot":"","sources":["../../../../src/testing/mocks/handlers/fetch-cards.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,UAAU,EAAE,YAAY,EAA4B,MAAM,eAAe,CAAC;AAyBnF,eAAO,MAAM,oBAAoB,OAAQ,MAAM,UAAS,MAAM;;cA0CT,UAAU;;CAG9D,CAAC;AAaF,eAAO,MAAM,QAAQ,6BAAkD,CAAC"}
package/types/cards.d.ts CHANGED
@@ -10,10 +10,12 @@ export type IFlatDisArr = {
10
10
  value: string | null;
11
11
  errorMessage: string | null;
12
12
  statusCode: string | number;
13
+ priority: number;
13
14
  };
14
15
  export type IListItemArr = {
15
16
  label: string;
16
17
  value: string | null;
18
+ priority: number;
17
19
  };
18
20
  export interface IListItems {
19
21
  fields: Array<IListItemArr[]>;
@@ -1 +1 @@
1
- {"version":3,"file":"cards.d.ts","sourceRoot":"","sources":["../../src/types/cards.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,gBAAgB,CAAC;AAEnD,MAAM,MAAM,KAAK,GAAG;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,UAAU,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;CACtB,CAAC;AAEF,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,KAAK,CAAC,YAAY,EAAE,CAAC,CAAC;IAC9B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,WAAW,EAAE,WAAW,EAAE,CAAC;IAC3B,SAAS,EAAE,UAAU,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC;IACrB,IAAI,EAAE,YAAY,CAAC;CACpB,CAAC"}
1
+ {"version":3,"file":"cards.d.ts","sourceRoot":"","sources":["../../src/types/cards.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,gBAAgB,CAAC;AAEnD,MAAM,MAAM,KAAK,GAAG;IAClB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,UAAU,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,WAAW,UAAU;IACzB,MAAM,EAAE,KAAK,CAAC,YAAY,EAAE,CAAC,CAAC;IAC9B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,MAAM,YAAY,GAAG;IACzB,WAAW,EAAE,WAAW,EAAE,CAAC;IAC3B,SAAS,EAAE,UAAU,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,UAAU,CAAC;IACrB,IAAI,EAAE,YAAY,CAAC;CACpB,CAAC"}