protobuf-platform 1.2.583 → 1.2.586
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/game/game.proto +38 -0
- package/game/game_grpc_pb.js +55 -0
- package/game/game_pb.js +1564 -0
- package/package.json +1 -1
- package/user/user.proto +51 -0
- package/user/user_pb.js +2296 -184
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -2128,6 +2128,52 @@ message ReadResponsibleGamingOverviewRequest {
|
|
|
2128
2128
|
optional string currency = 2;
|
|
2129
2129
|
optional int32 currency_scale = 3;
|
|
2130
2130
|
}
|
|
2131
|
+
// One independently active/configured DEPOSIT_LIMIT replacement scope (DAY, WEEK, or MONTH).
|
|
2132
|
+
message ResponsibleGamingDepositLimitScopeOverview {
|
|
2133
|
+
ResponsibleGamingRecurringPeriod recurring_period = 1;
|
|
2134
|
+
bool configured = 2;
|
|
2135
|
+
optional ResponsibleGamingPolicyItem current_policy = 3;
|
|
2136
|
+
optional ResponsibleGamingPolicyItem pending_policy = 4;
|
|
2137
|
+
optional string current_window_start = 5;
|
|
2138
|
+
optional string current_window_end = 6;
|
|
2139
|
+
optional int64 used_minor = 7;
|
|
2140
|
+
optional int64 reserved_minor = 8;
|
|
2141
|
+
optional int64 remaining_minor = 9;
|
|
2142
|
+
bool limit_reached = 10;
|
|
2143
|
+
}
|
|
2144
|
+
// One independently active/configured LOSS_LIMIT replacement scope (DAY, WEEK, or MONTH).
|
|
2145
|
+
message ResponsibleGamingLossLimitScopeOverview {
|
|
2146
|
+
ResponsibleGamingRecurringPeriod recurring_period = 1;
|
|
2147
|
+
bool configured = 2;
|
|
2148
|
+
optional ResponsibleGamingPolicyItem current_policy = 3;
|
|
2149
|
+
optional ResponsibleGamingPolicyItem pending_policy = 4;
|
|
2150
|
+
optional string current_window_start = 5;
|
|
2151
|
+
optional string current_window_end = 6;
|
|
2152
|
+
optional int64 stakes_minor = 7;
|
|
2153
|
+
optional int64 wins_minor = 8;
|
|
2154
|
+
optional int64 refunds_minor = 9;
|
|
2155
|
+
optional int64 net_loss_minor = 10;
|
|
2156
|
+
optional int64 reserved_exposure_minor = 11;
|
|
2157
|
+
optional int64 effective_risk_minor = 12;
|
|
2158
|
+
optional int64 remaining_stake_minor = 13;
|
|
2159
|
+
bool limit_reached = 14;
|
|
2160
|
+
}
|
|
2161
|
+
// One independently active/configured TIME_LIMIT replacement scope (DAY, WEEK, or MONTH).
|
|
2162
|
+
message ResponsibleGamingTimeLimitScopeOverview {
|
|
2163
|
+
ResponsibleGamingRecurringPeriod recurring_period = 1;
|
|
2164
|
+
bool configured = 2;
|
|
2165
|
+
optional ResponsibleGamingPolicyItem current_policy = 3;
|
|
2166
|
+
optional ResponsibleGamingPolicyItem pending_policy = 4;
|
|
2167
|
+
optional string current_window_start = 5;
|
|
2168
|
+
optional string current_window_end = 6;
|
|
2169
|
+
optional int64 used_seconds = 7;
|
|
2170
|
+
optional int64 remaining_seconds = 8;
|
|
2171
|
+
bool active_gameplay_session = 9;
|
|
2172
|
+
optional string active_session_id = 10;
|
|
2173
|
+
optional string last_activity_at = 11;
|
|
2174
|
+
bool limit_reached = 12;
|
|
2175
|
+
}
|
|
2176
|
+
// Legacy single-scope summary; use scopes for the authoritative per-period representation.
|
|
2131
2177
|
message ResponsibleGamingDepositLimitOverview {
|
|
2132
2178
|
bool configured = 1;
|
|
2133
2179
|
optional ResponsibleGamingPolicyItem current_policy = 2;
|
|
@@ -2138,7 +2184,9 @@ message ResponsibleGamingDepositLimitOverview {
|
|
|
2138
2184
|
optional int64 reserved_minor = 7;
|
|
2139
2185
|
optional int64 remaining_minor = 8;
|
|
2140
2186
|
bool limit_reached = 9;
|
|
2187
|
+
repeated ResponsibleGamingDepositLimitScopeOverview scopes = 10; // Authoritative; all concurrently active/configured periods.
|
|
2141
2188
|
}
|
|
2189
|
+
// Legacy single-scope summary; use scopes for the authoritative per-period representation.
|
|
2142
2190
|
message ResponsibleGamingLossLimitOverview {
|
|
2143
2191
|
bool configured = 1;
|
|
2144
2192
|
optional ResponsibleGamingPolicyItem current_policy = 2;
|
|
@@ -2153,7 +2201,9 @@ message ResponsibleGamingLossLimitOverview {
|
|
|
2153
2201
|
optional int64 effective_risk_minor = 11;
|
|
2154
2202
|
optional int64 remaining_stake_minor = 12;
|
|
2155
2203
|
bool limit_reached = 13;
|
|
2204
|
+
repeated ResponsibleGamingLossLimitScopeOverview scopes = 14; // Authoritative; all concurrently active/configured periods.
|
|
2156
2205
|
}
|
|
2206
|
+
// Legacy single-scope summary; use scopes for the authoritative per-period representation.
|
|
2157
2207
|
message ResponsibleGamingTimeLimitOverview {
|
|
2158
2208
|
bool configured = 1;
|
|
2159
2209
|
optional ResponsibleGamingPolicyItem current_policy = 2;
|
|
@@ -2166,6 +2216,7 @@ message ResponsibleGamingTimeLimitOverview {
|
|
|
2166
2216
|
optional string active_session_id = 9;
|
|
2167
2217
|
optional string last_activity_at = 10;
|
|
2168
2218
|
bool limit_reached = 11;
|
|
2219
|
+
repeated ResponsibleGamingTimeLimitScopeOverview scopes = 12; // Authoritative; all concurrently active/configured periods.
|
|
2169
2220
|
}
|
|
2170
2221
|
message ResponsibleGamingCoolingOffOverview {
|
|
2171
2222
|
bool active = 1;
|