@kalamba/sdk 0.9.1 → 0.9.2
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/dist/index.d.ts +8 -2
- package/dist/plugins.d.ts +8 -2
- package/dist/wrapper.d.ts +8 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -498,10 +498,16 @@ export declare type SdkOnlyMessagePayloadMap = {
|
|
|
498
498
|
* ```typescript
|
|
499
499
|
* {
|
|
500
500
|
* en: {
|
|
501
|
-
*
|
|
501
|
+
* my_custom_error: 'Something went wrong',
|
|
502
|
+
* RgsError: {
|
|
503
|
+
* OUT_OF_MONEY: 'You are out of credits',
|
|
504
|
+
* }
|
|
502
505
|
* },
|
|
503
506
|
* pl: {
|
|
504
|
-
*
|
|
507
|
+
* my_custom_error: 'Coś poszło nie tak',
|
|
508
|
+
* RgsError: {
|
|
509
|
+
* OUT_OF_MONEY: 'Nie masz już środków',
|
|
510
|
+
* }
|
|
505
511
|
* }
|
|
506
512
|
* }
|
|
507
513
|
* ```
|
package/dist/plugins.d.ts
CHANGED
|
@@ -663,10 +663,16 @@ declare type SdkOnlyMessagePayloadMap = {
|
|
|
663
663
|
* ```typescript
|
|
664
664
|
* {
|
|
665
665
|
* en: {
|
|
666
|
-
*
|
|
666
|
+
* my_custom_error: 'Something went wrong',
|
|
667
|
+
* RgsError: {
|
|
668
|
+
* OUT_OF_MONEY: 'You are out of credits',
|
|
669
|
+
* }
|
|
667
670
|
* },
|
|
668
671
|
* pl: {
|
|
669
|
-
*
|
|
672
|
+
* my_custom_error: 'Coś poszło nie tak',
|
|
673
|
+
* RgsError: {
|
|
674
|
+
* OUT_OF_MONEY: 'Nie masz już środków',
|
|
675
|
+
* }
|
|
670
676
|
* }
|
|
671
677
|
* }
|
|
672
678
|
* ```
|
package/dist/wrapper.d.ts
CHANGED
|
@@ -456,10 +456,16 @@ declare type SdkOnlyMessagePayloadMap = {
|
|
|
456
456
|
* ```typescript
|
|
457
457
|
* {
|
|
458
458
|
* en: {
|
|
459
|
-
*
|
|
459
|
+
* my_custom_error: 'Something went wrong',
|
|
460
|
+
* RgsError: {
|
|
461
|
+
* OUT_OF_MONEY: 'You are out of credits',
|
|
462
|
+
* }
|
|
460
463
|
* },
|
|
461
464
|
* pl: {
|
|
462
|
-
*
|
|
465
|
+
* my_custom_error: 'Coś poszło nie tak',
|
|
466
|
+
* RgsError: {
|
|
467
|
+
* OUT_OF_MONEY: 'Nie masz już środków',
|
|
468
|
+
* }
|
|
463
469
|
* }
|
|
464
470
|
* }
|
|
465
471
|
* ```
|