@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.
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
package/dist/auth.mjs CHANGED
@@ -2632,8 +2632,8 @@ var CentrifugoErrorSchema = z25.object({
2632
2632
 
2633
2633
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts
2634
2634
  var CentrifugoChannelsResponseSchema = z26.object({
2635
- error: CentrifugoErrorSchema.optional(),
2636
- result: CentrifugoChannelsResultSchema.optional()
2635
+ error: CentrifugoErrorSchema.nullable().optional(),
2636
+ result: CentrifugoChannelsResultSchema.nullable().optional()
2637
2637
  });
2638
2638
 
2639
2639
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoClientInfo.schema.ts
@@ -2668,7 +2668,7 @@ var CentrifugoStreamPositionSchema = z29.object({
2668
2668
  var CentrifugoHistoryRequestRequestSchema = z30.object({
2669
2669
  channel: z30.string(),
2670
2670
  limit: z30.int().nullable().optional(),
2671
- since: CentrifugoStreamPositionSchema.optional(),
2671
+ since: CentrifugoStreamPositionSchema.nullable().optional(),
2672
2672
  reverse: z30.boolean().nullable().optional()
2673
2673
  });
2674
2674
 
@@ -2682,7 +2682,7 @@ import { z as z32 } from "zod";
2682
2682
  import { z as z31 } from "zod";
2683
2683
  var CentrifugoPublicationSchema = z31.object({
2684
2684
  data: z31.record(z31.string(), z31.any()),
2685
- info: CentrifugoClientInfoSchema.optional(),
2685
+ info: CentrifugoClientInfoSchema.nullable().optional(),
2686
2686
  offset: z31.int(),
2687
2687
  tags: z31.record(z31.string(), z31.any()).nullable().optional()
2688
2688
  });
@@ -2696,8 +2696,8 @@ var CentrifugoHistoryResultSchema = z32.object({
2696
2696
 
2697
2697
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts
2698
2698
  var CentrifugoHistoryResponseSchema = z33.object({
2699
- error: CentrifugoErrorSchema.optional(),
2700
- result: CentrifugoHistoryResultSchema.optional()
2699
+ error: CentrifugoErrorSchema.nullable().optional(),
2700
+ result: CentrifugoHistoryResultSchema.nullable().optional()
2701
2701
  });
2702
2702
 
2703
2703
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
@@ -2733,8 +2733,8 @@ var CentrifugoNodeInfoSchema = z36.object({
2733
2733
  num_channels: z36.int(),
2734
2734
  uptime: z36.int(),
2735
2735
  num_subs: z36.int(),
2736
- metrics: CentrifugoMetricsSchema.optional(),
2737
- process: CentrifugoProcessSchema.optional()
2736
+ metrics: CentrifugoMetricsSchema.nullable().optional(),
2737
+ process: CentrifugoProcessSchema.nullable().optional()
2738
2738
  });
2739
2739
 
2740
2740
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResult.schema.ts
@@ -2744,8 +2744,8 @@ var CentrifugoInfoResultSchema = z37.object({
2744
2744
 
2745
2745
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
2746
2746
  var CentrifugoInfoResponseSchema = z38.object({
2747
- error: CentrifugoErrorSchema.optional(),
2748
- result: CentrifugoInfoResultSchema.optional()
2747
+ error: CentrifugoErrorSchema.nullable().optional(),
2748
+ result: CentrifugoInfoResultSchema.nullable().optional()
2749
2749
  });
2750
2750
 
2751
2751
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoOverviewStats.schema.ts
@@ -2778,8 +2778,8 @@ var CentrifugoPresenceResultSchema = z41.object({
2778
2778
 
2779
2779
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts
2780
2780
  var CentrifugoPresenceResponseSchema = z42.object({
2781
- error: CentrifugoErrorSchema.optional(),
2782
- result: CentrifugoPresenceResultSchema.optional()
2781
+ error: CentrifugoErrorSchema.nullable().optional(),
2782
+ result: CentrifugoPresenceResultSchema.nullable().optional()
2783
2783
  });
2784
2784
 
2785
2785
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsRequestRequest.schema.ts
@@ -2800,8 +2800,8 @@ var CentrifugoPresenceStatsResultSchema = z44.object({
2800
2800
 
2801
2801
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts
2802
2802
  var CentrifugoPresenceStatsResponseSchema = z45.object({
2803
- error: CentrifugoErrorSchema.optional(),
2804
- result: CentrifugoPresenceStatsResultSchema.optional()
2803
+ error: CentrifugoErrorSchema.nullable().optional(),
2804
+ result: CentrifugoPresenceStatsResultSchema.nullable().optional()
2805
2805
  });
2806
2806
 
2807
2807
  // src/generated/cfg_centrifugo/_utils/schemas/ChannelList.schema.ts