bkper-js 1.34.5 → 1.34.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/lib/index.d.ts CHANGED
@@ -249,6 +249,11 @@ export declare class Agent {
249
249
  * @returns The Agent logo url
250
250
  */
251
251
  getLogoUrl(): string | undefined;
252
+ /**
253
+ *
254
+ * @returns The Agent logo url in dark mode
255
+ */
256
+ getLogoUrlDark(): string | undefined;
252
257
  }
253
258
 
254
259
  /**
@@ -36,5 +36,12 @@ export class Agent {
36
36
  getLogoUrl() {
37
37
  return this.payload.logo;
38
38
  }
39
+ /**
40
+ *
41
+ * @returns The Agent logo url in dark mode
42
+ */
43
+ getLogoUrlDark() {
44
+ return this.payload.logoDark;
45
+ }
39
46
  }
40
47
  //# sourceMappingURL=Agent.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkper-js",
3
- "version": "1.34.5",
3
+ "version": "1.34.6",
4
4
  "description": "Javascript client for Bkper REST API",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib/index.js",