bkper-js 1.45.0 → 1.46.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.
- package/lib/index.d.ts +20 -0
- package/lib/model/App.js +30 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -417,6 +417,26 @@ export declare class App {
|
|
|
417
417
|
* @return The name of the owner of this App
|
|
418
418
|
*/
|
|
419
419
|
getOwnerName(): string | undefined;
|
|
420
|
+
/**
|
|
421
|
+
* @return The menu url of this App
|
|
422
|
+
*/
|
|
423
|
+
getMenuUrl(): string | undefined;
|
|
424
|
+
/**
|
|
425
|
+
* @return The menu development url of this App
|
|
426
|
+
*/
|
|
427
|
+
getMenuUrlDev(): string | undefined;
|
|
428
|
+
/**
|
|
429
|
+
* @return The menu text of this App
|
|
430
|
+
*/
|
|
431
|
+
getMenuText(): string | undefined;
|
|
432
|
+
/**
|
|
433
|
+
* @return The menu popup width of this App
|
|
434
|
+
*/
|
|
435
|
+
getMenuPopupWidth(): string | undefined;
|
|
436
|
+
/**
|
|
437
|
+
* @return The menu popup height of this App
|
|
438
|
+
*/
|
|
439
|
+
getMenuPopupHeight(): string | undefined;
|
|
420
440
|
/**
|
|
421
441
|
* @return The logo url of the owner of this App
|
|
422
442
|
*/
|
package/lib/model/App.js
CHANGED
|
@@ -116,6 +116,36 @@ export class App {
|
|
|
116
116
|
getOwnerName() {
|
|
117
117
|
return this.payload.ownerName;
|
|
118
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* @return The menu url of this App
|
|
121
|
+
*/
|
|
122
|
+
getMenuUrl() {
|
|
123
|
+
return this.payload.menuUrl;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* @return The menu development url of this App
|
|
127
|
+
*/
|
|
128
|
+
getMenuUrlDev() {
|
|
129
|
+
return this.payload.menuUrlDev;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* @return The menu text of this App
|
|
133
|
+
*/
|
|
134
|
+
getMenuText() {
|
|
135
|
+
return this.payload.menuText;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* @return The menu popup width of this App
|
|
139
|
+
*/
|
|
140
|
+
getMenuPopupWidth() {
|
|
141
|
+
return this.payload.menuPopupWidth;
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* @return The menu popup height of this App
|
|
145
|
+
*/
|
|
146
|
+
getMenuPopupHeight() {
|
|
147
|
+
return this.payload.menuPopupHeight;
|
|
148
|
+
}
|
|
119
149
|
/**
|
|
120
150
|
* @return The logo url of the owner of this App
|
|
121
151
|
*/
|