@djangocfg/api 2.1.198 → 2.1.201

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.
Files changed (34) hide show
  1. package/dist/auth-server.cjs +14 -14
  2. package/dist/auth-server.cjs.map +1 -1
  3. package/dist/auth-server.mjs +14 -14
  4. package/dist/auth-server.mjs.map +1 -1
  5. package/dist/auth.cjs +14 -14
  6. package/dist/auth.cjs.map +1 -1
  7. package/dist/auth.mjs +14 -14
  8. package/dist/auth.mjs.map +1 -1
  9. package/dist/clients.cjs +14 -14
  10. package/dist/clients.cjs.map +1 -1
  11. package/dist/clients.d.cts +54 -54
  12. package/dist/clients.d.ts +54 -54
  13. package/dist/clients.mjs +14 -14
  14. package/dist/clients.mjs.map +1 -1
  15. package/dist/index.cjs +14 -14
  16. package/dist/index.cjs.map +1 -1
  17. package/dist/index.mjs +14 -14
  18. package/dist/index.mjs.map +1 -1
  19. package/package.json +2 -2
  20. package/src/generated/cfg_accounts/CLAUDE.md +1 -1
  21. package/src/generated/cfg_accounts/schema.json +46 -24
  22. package/src/generated/cfg_centrifugo/CLAUDE.md +1 -1
  23. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts +2 -2
  24. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryRequestRequest.schema.ts +1 -1
  25. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts +2 -2
  26. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts +2 -2
  27. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoNodeInfo.schema.ts +2 -2
  28. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts +2 -2
  29. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts +2 -2
  30. package/src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPublication.schema.ts +1 -1
  31. package/src/generated/cfg_centrifugo/centrifugo__centrifugo_admin_api/models.ts +14 -14
  32. package/src/generated/cfg_centrifugo/schema.json +27 -15
  33. package/src/generated/cfg_totp/CLAUDE.md +1 -1
  34. package/src/generated/cfg_totp/schema.json +22 -12
@@ -1424,8 +1424,8 @@ var CentrifugoErrorSchema = import_zod25.z.object({
1424
1424
 
1425
1425
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts
1426
1426
  var CentrifugoChannelsResponseSchema = import_zod26.z.object({
1427
- error: CentrifugoErrorSchema.optional(),
1428
- result: CentrifugoChannelsResultSchema.optional()
1427
+ error: CentrifugoErrorSchema.nullable().optional(),
1428
+ result: CentrifugoChannelsResultSchema.nullable().optional()
1429
1429
  });
1430
1430
 
1431
1431
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoClientInfo.schema.ts
@@ -1460,7 +1460,7 @@ var CentrifugoStreamPositionSchema = import_zod29.z.object({
1460
1460
  var CentrifugoHistoryRequestRequestSchema = import_zod30.z.object({
1461
1461
  channel: import_zod30.z.string(),
1462
1462
  limit: import_zod30.z.int().nullable().optional(),
1463
- since: CentrifugoStreamPositionSchema.optional(),
1463
+ since: CentrifugoStreamPositionSchema.nullable().optional(),
1464
1464
  reverse: import_zod30.z.boolean().nullable().optional()
1465
1465
  });
1466
1466
 
@@ -1474,7 +1474,7 @@ var import_zod32 = require("zod");
1474
1474
  var import_zod31 = require("zod");
1475
1475
  var CentrifugoPublicationSchema = import_zod31.z.object({
1476
1476
  data: import_zod31.z.record(import_zod31.z.string(), import_zod31.z.any()),
1477
- info: CentrifugoClientInfoSchema.optional(),
1477
+ info: CentrifugoClientInfoSchema.nullable().optional(),
1478
1478
  offset: import_zod31.z.int(),
1479
1479
  tags: import_zod31.z.record(import_zod31.z.string(), import_zod31.z.any()).nullable().optional()
1480
1480
  });
@@ -1488,8 +1488,8 @@ var CentrifugoHistoryResultSchema = import_zod32.z.object({
1488
1488
 
1489
1489
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts
1490
1490
  var CentrifugoHistoryResponseSchema = import_zod33.z.object({
1491
- error: CentrifugoErrorSchema.optional(),
1492
- result: CentrifugoHistoryResultSchema.optional()
1491
+ error: CentrifugoErrorSchema.nullable().optional(),
1492
+ result: CentrifugoHistoryResultSchema.nullable().optional()
1493
1493
  });
1494
1494
 
1495
1495
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
@@ -1525,8 +1525,8 @@ var CentrifugoNodeInfoSchema = import_zod36.z.object({
1525
1525
  num_channels: import_zod36.z.int(),
1526
1526
  uptime: import_zod36.z.int(),
1527
1527
  num_subs: import_zod36.z.int(),
1528
- metrics: CentrifugoMetricsSchema.optional(),
1529
- process: CentrifugoProcessSchema.optional()
1528
+ metrics: CentrifugoMetricsSchema.nullable().optional(),
1529
+ process: CentrifugoProcessSchema.nullable().optional()
1530
1530
  });
1531
1531
 
1532
1532
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResult.schema.ts
@@ -1536,8 +1536,8 @@ var CentrifugoInfoResultSchema = import_zod37.z.object({
1536
1536
 
1537
1537
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
1538
1538
  var CentrifugoInfoResponseSchema = import_zod38.z.object({
1539
- error: CentrifugoErrorSchema.optional(),
1540
- result: CentrifugoInfoResultSchema.optional()
1539
+ error: CentrifugoErrorSchema.nullable().optional(),
1540
+ result: CentrifugoInfoResultSchema.nullable().optional()
1541
1541
  });
1542
1542
 
1543
1543
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoOverviewStats.schema.ts
@@ -1570,8 +1570,8 @@ var CentrifugoPresenceResultSchema = import_zod41.z.object({
1570
1570
 
1571
1571
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts
1572
1572
  var CentrifugoPresenceResponseSchema = import_zod42.z.object({
1573
- error: CentrifugoErrorSchema.optional(),
1574
- result: CentrifugoPresenceResultSchema.optional()
1573
+ error: CentrifugoErrorSchema.nullable().optional(),
1574
+ result: CentrifugoPresenceResultSchema.nullable().optional()
1575
1575
  });
1576
1576
 
1577
1577
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsRequestRequest.schema.ts
@@ -1592,8 +1592,8 @@ var CentrifugoPresenceStatsResultSchema = import_zod44.z.object({
1592
1592
 
1593
1593
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts
1594
1594
  var CentrifugoPresenceStatsResponseSchema = import_zod45.z.object({
1595
- error: CentrifugoErrorSchema.optional(),
1596
- result: CentrifugoPresenceStatsResultSchema.optional()
1595
+ error: CentrifugoErrorSchema.nullable().optional(),
1596
+ result: CentrifugoPresenceStatsResultSchema.nullable().optional()
1597
1597
  });
1598
1598
 
1599
1599
  // src/generated/cfg_centrifugo/_utils/schemas/ChannelList.schema.ts