front-back-poker-types 5.0.196 → 5.0.197
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/cjs/index.js +1 -1
- package/dist/cjs/types/types.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/types/types.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -36,6 +36,6 @@ export declare const StartAppParamKey: {
|
|
|
36
36
|
readonly FreeRooms: "free-rooms";
|
|
37
37
|
readonly CashRooms: "cash-rooms";
|
|
38
38
|
readonly Tournaments: "tournaments";
|
|
39
|
-
readonly
|
|
39
|
+
readonly ReferralProgram: "referral-program";
|
|
40
40
|
};
|
|
41
41
|
export type StartAppParamKey = Values<typeof StartAppParamKey>;
|
package/dist/esm/index.js
CHANGED
|
@@ -36,6 +36,6 @@ export declare const StartAppParamKey: {
|
|
|
36
36
|
readonly FreeRooms: "free-rooms";
|
|
37
37
|
readonly CashRooms: "cash-rooms";
|
|
38
38
|
readonly Tournaments: "tournaments";
|
|
39
|
-
readonly
|
|
39
|
+
readonly ReferralProgram: "referral-program";
|
|
40
40
|
};
|
|
41
41
|
export type StartAppParamKey = Values<typeof StartAppParamKey>;
|
package/dist/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ declare const StartAppParamKey: {
|
|
|
36
36
|
readonly FreeRooms: "free-rooms";
|
|
37
37
|
readonly CashRooms: "cash-rooms";
|
|
38
38
|
readonly Tournaments: "tournaments";
|
|
39
|
-
readonly
|
|
39
|
+
readonly ReferralProgram: "referral-program";
|
|
40
40
|
};
|
|
41
41
|
type StartAppParamKey = Values<typeof StartAppParamKey>;
|
|
42
42
|
|