@djangocfg/api 2.1.200 → 2.1.202
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/auth-server.cjs +14 -14
- package/dist/auth-server.cjs.map +1 -1
- package/dist/auth-server.mjs +14 -14
- package/dist/auth-server.mjs.map +1 -1
- package/dist/auth.cjs +14 -14
- package/dist/auth.cjs.map +1 -1
- package/dist/auth.mjs +14 -14
- package/dist/auth.mjs.map +1 -1
- package/dist/clients.cjs +14 -14
- package/dist/clients.cjs.map +1 -1
- package/dist/clients.d.cts +54 -54
- package/dist/clients.d.ts +54 -54
- package/dist/clients.mjs +14 -14
- package/dist/clients.mjs.map +1 -1
- package/dist/index.cjs +14 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +14 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/generated/cfg_accounts/CLAUDE.md +1 -1
- package/src/generated/cfg_accounts/schema.json +46 -24
- package/src/generated/cfg_centrifugo/CLAUDE.md +1 -1
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts +2 -2
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryRequestRequest.schema.ts +1 -1
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts +2 -2
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts +2 -2
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoNodeInfo.schema.ts +2 -2
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts +2 -2
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts +2 -2
- package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPublication.schema.ts +1 -1
- package/src/generated/cfg_centrifugo/centrifugo__centrifugo_admin_api/models.ts +14 -14
- package/src/generated/cfg_centrifugo/schema.json +27 -15
- package/src/generated/cfg_totp/CLAUDE.md +1 -1
- package/src/generated/cfg_totp/schema.json +22 -12
package/dist/index.mjs
CHANGED
|
@@ -2936,8 +2936,8 @@ var CentrifugoErrorSchema = z25.object({
|
|
|
2936
2936
|
|
|
2937
2937
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts
|
|
2938
2938
|
var CentrifugoChannelsResponseSchema = z26.object({
|
|
2939
|
-
error: CentrifugoErrorSchema.optional(),
|
|
2940
|
-
result: CentrifugoChannelsResultSchema.optional()
|
|
2939
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
2940
|
+
result: CentrifugoChannelsResultSchema.nullable().optional()
|
|
2941
2941
|
});
|
|
2942
2942
|
|
|
2943
2943
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoClientInfo.schema.ts
|
|
@@ -2972,7 +2972,7 @@ var CentrifugoStreamPositionSchema = z29.object({
|
|
|
2972
2972
|
var CentrifugoHistoryRequestRequestSchema = z30.object({
|
|
2973
2973
|
channel: z30.string(),
|
|
2974
2974
|
limit: z30.int().nullable().optional(),
|
|
2975
|
-
since: CentrifugoStreamPositionSchema.optional(),
|
|
2975
|
+
since: CentrifugoStreamPositionSchema.nullable().optional(),
|
|
2976
2976
|
reverse: z30.boolean().nullable().optional()
|
|
2977
2977
|
});
|
|
2978
2978
|
|
|
@@ -2986,7 +2986,7 @@ import { z as z32 } from "zod";
|
|
|
2986
2986
|
import { z as z31 } from "zod";
|
|
2987
2987
|
var CentrifugoPublicationSchema = z31.object({
|
|
2988
2988
|
data: z31.record(z31.string(), z31.any()),
|
|
2989
|
-
info: CentrifugoClientInfoSchema.optional(),
|
|
2989
|
+
info: CentrifugoClientInfoSchema.nullable().optional(),
|
|
2990
2990
|
offset: z31.int(),
|
|
2991
2991
|
tags: z31.record(z31.string(), z31.any()).nullable().optional()
|
|
2992
2992
|
});
|
|
@@ -3000,8 +3000,8 @@ var CentrifugoHistoryResultSchema = z32.object({
|
|
|
3000
3000
|
|
|
3001
3001
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts
|
|
3002
3002
|
var CentrifugoHistoryResponseSchema = z33.object({
|
|
3003
|
-
error: CentrifugoErrorSchema.optional(),
|
|
3004
|
-
result: CentrifugoHistoryResultSchema.optional()
|
|
3003
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
3004
|
+
result: CentrifugoHistoryResultSchema.nullable().optional()
|
|
3005
3005
|
});
|
|
3006
3006
|
|
|
3007
3007
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
|
|
@@ -3037,8 +3037,8 @@ var CentrifugoNodeInfoSchema = z36.object({
|
|
|
3037
3037
|
num_channels: z36.int(),
|
|
3038
3038
|
uptime: z36.int(),
|
|
3039
3039
|
num_subs: z36.int(),
|
|
3040
|
-
metrics: CentrifugoMetricsSchema.optional(),
|
|
3041
|
-
process: CentrifugoProcessSchema.optional()
|
|
3040
|
+
metrics: CentrifugoMetricsSchema.nullable().optional(),
|
|
3041
|
+
process: CentrifugoProcessSchema.nullable().optional()
|
|
3042
3042
|
});
|
|
3043
3043
|
|
|
3044
3044
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResult.schema.ts
|
|
@@ -3048,8 +3048,8 @@ var CentrifugoInfoResultSchema = z37.object({
|
|
|
3048
3048
|
|
|
3049
3049
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
|
|
3050
3050
|
var CentrifugoInfoResponseSchema = z38.object({
|
|
3051
|
-
error: CentrifugoErrorSchema.optional(),
|
|
3052
|
-
result: CentrifugoInfoResultSchema.optional()
|
|
3051
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
3052
|
+
result: CentrifugoInfoResultSchema.nullable().optional()
|
|
3053
3053
|
});
|
|
3054
3054
|
|
|
3055
3055
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoOverviewStats.schema.ts
|
|
@@ -3082,8 +3082,8 @@ var CentrifugoPresenceResultSchema = z41.object({
|
|
|
3082
3082
|
|
|
3083
3083
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts
|
|
3084
3084
|
var CentrifugoPresenceResponseSchema = z42.object({
|
|
3085
|
-
error: CentrifugoErrorSchema.optional(),
|
|
3086
|
-
result: CentrifugoPresenceResultSchema.optional()
|
|
3085
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
3086
|
+
result: CentrifugoPresenceResultSchema.nullable().optional()
|
|
3087
3087
|
});
|
|
3088
3088
|
|
|
3089
3089
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsRequestRequest.schema.ts
|
|
@@ -3104,8 +3104,8 @@ var CentrifugoPresenceStatsResultSchema = z44.object({
|
|
|
3104
3104
|
|
|
3105
3105
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts
|
|
3106
3106
|
var CentrifugoPresenceStatsResponseSchema = z45.object({
|
|
3107
|
-
error: CentrifugoErrorSchema.optional(),
|
|
3108
|
-
result: CentrifugoPresenceStatsResultSchema.optional()
|
|
3107
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
3108
|
+
result: CentrifugoPresenceStatsResultSchema.nullable().optional()
|
|
3109
3109
|
});
|
|
3110
3110
|
|
|
3111
3111
|
// src/generated/cfg_centrifugo/_utils/schemas/ChannelList.schema.ts
|