@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/auth-server.mjs
CHANGED
|
@@ -1385,8 +1385,8 @@ var CentrifugoErrorSchema = z25.object({
|
|
|
1385
1385
|
|
|
1386
1386
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts
|
|
1387
1387
|
var CentrifugoChannelsResponseSchema = z26.object({
|
|
1388
|
-
error: CentrifugoErrorSchema.optional(),
|
|
1389
|
-
result: CentrifugoChannelsResultSchema.optional()
|
|
1388
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
1389
|
+
result: CentrifugoChannelsResultSchema.nullable().optional()
|
|
1390
1390
|
});
|
|
1391
1391
|
|
|
1392
1392
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoClientInfo.schema.ts
|
|
@@ -1421,7 +1421,7 @@ var CentrifugoStreamPositionSchema = z29.object({
|
|
|
1421
1421
|
var CentrifugoHistoryRequestRequestSchema = z30.object({
|
|
1422
1422
|
channel: z30.string(),
|
|
1423
1423
|
limit: z30.int().nullable().optional(),
|
|
1424
|
-
since: CentrifugoStreamPositionSchema.optional(),
|
|
1424
|
+
since: CentrifugoStreamPositionSchema.nullable().optional(),
|
|
1425
1425
|
reverse: z30.boolean().nullable().optional()
|
|
1426
1426
|
});
|
|
1427
1427
|
|
|
@@ -1435,7 +1435,7 @@ import { z as z32 } from "zod";
|
|
|
1435
1435
|
import { z as z31 } from "zod";
|
|
1436
1436
|
var CentrifugoPublicationSchema = z31.object({
|
|
1437
1437
|
data: z31.record(z31.string(), z31.any()),
|
|
1438
|
-
info: CentrifugoClientInfoSchema.optional(),
|
|
1438
|
+
info: CentrifugoClientInfoSchema.nullable().optional(),
|
|
1439
1439
|
offset: z31.int(),
|
|
1440
1440
|
tags: z31.record(z31.string(), z31.any()).nullable().optional()
|
|
1441
1441
|
});
|
|
@@ -1449,8 +1449,8 @@ var CentrifugoHistoryResultSchema = z32.object({
|
|
|
1449
1449
|
|
|
1450
1450
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts
|
|
1451
1451
|
var CentrifugoHistoryResponseSchema = z33.object({
|
|
1452
|
-
error: CentrifugoErrorSchema.optional(),
|
|
1453
|
-
result: CentrifugoHistoryResultSchema.optional()
|
|
1452
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
1453
|
+
result: CentrifugoHistoryResultSchema.nullable().optional()
|
|
1454
1454
|
});
|
|
1455
1455
|
|
|
1456
1456
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
|
|
@@ -1486,8 +1486,8 @@ var CentrifugoNodeInfoSchema = z36.object({
|
|
|
1486
1486
|
num_channels: z36.int(),
|
|
1487
1487
|
uptime: z36.int(),
|
|
1488
1488
|
num_subs: z36.int(),
|
|
1489
|
-
metrics: CentrifugoMetricsSchema.optional(),
|
|
1490
|
-
process: CentrifugoProcessSchema.optional()
|
|
1489
|
+
metrics: CentrifugoMetricsSchema.nullable().optional(),
|
|
1490
|
+
process: CentrifugoProcessSchema.nullable().optional()
|
|
1491
1491
|
});
|
|
1492
1492
|
|
|
1493
1493
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResult.schema.ts
|
|
@@ -1497,8 +1497,8 @@ var CentrifugoInfoResultSchema = z37.object({
|
|
|
1497
1497
|
|
|
1498
1498
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
|
|
1499
1499
|
var CentrifugoInfoResponseSchema = z38.object({
|
|
1500
|
-
error: CentrifugoErrorSchema.optional(),
|
|
1501
|
-
result: CentrifugoInfoResultSchema.optional()
|
|
1500
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
1501
|
+
result: CentrifugoInfoResultSchema.nullable().optional()
|
|
1502
1502
|
});
|
|
1503
1503
|
|
|
1504
1504
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoOverviewStats.schema.ts
|
|
@@ -1531,8 +1531,8 @@ var CentrifugoPresenceResultSchema = z41.object({
|
|
|
1531
1531
|
|
|
1532
1532
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts
|
|
1533
1533
|
var CentrifugoPresenceResponseSchema = z42.object({
|
|
1534
|
-
error: CentrifugoErrorSchema.optional(),
|
|
1535
|
-
result: CentrifugoPresenceResultSchema.optional()
|
|
1534
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
1535
|
+
result: CentrifugoPresenceResultSchema.nullable().optional()
|
|
1536
1536
|
});
|
|
1537
1537
|
|
|
1538
1538
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsRequestRequest.schema.ts
|
|
@@ -1553,8 +1553,8 @@ var CentrifugoPresenceStatsResultSchema = z44.object({
|
|
|
1553
1553
|
|
|
1554
1554
|
// src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts
|
|
1555
1555
|
var CentrifugoPresenceStatsResponseSchema = z45.object({
|
|
1556
|
-
error: CentrifugoErrorSchema.optional(),
|
|
1557
|
-
result: CentrifugoPresenceStatsResultSchema.optional()
|
|
1556
|
+
error: CentrifugoErrorSchema.nullable().optional(),
|
|
1557
|
+
result: CentrifugoPresenceStatsResultSchema.nullable().optional()
|
|
1558
1558
|
});
|
|
1559
1559
|
|
|
1560
1560
|
// src/generated/cfg_centrifugo/_utils/schemas/ChannelList.schema.ts
|