@djangocfg/api 2.1.200 → 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
package/dist/clients.cjs CHANGED
@@ -2780,8 +2780,8 @@ var CentrifugoErrorSchema = import_zod25.z.object({
2780
2780
 
2781
2781
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoChannelsResponse.schema.ts
2782
2782
  var CentrifugoChannelsResponseSchema = import_zod26.z.object({
2783
- error: CentrifugoErrorSchema.optional(),
2784
- result: CentrifugoChannelsResultSchema.optional()
2783
+ error: CentrifugoErrorSchema.nullable().optional(),
2784
+ result: CentrifugoChannelsResultSchema.nullable().optional()
2785
2785
  });
2786
2786
 
2787
2787
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoClientInfo.schema.ts
@@ -2816,7 +2816,7 @@ var CentrifugoStreamPositionSchema = import_zod29.z.object({
2816
2816
  var CentrifugoHistoryRequestRequestSchema = import_zod30.z.object({
2817
2817
  channel: import_zod30.z.string(),
2818
2818
  limit: import_zod30.z.int().nullable().optional(),
2819
- since: CentrifugoStreamPositionSchema.optional(),
2819
+ since: CentrifugoStreamPositionSchema.nullable().optional(),
2820
2820
  reverse: import_zod30.z.boolean().nullable().optional()
2821
2821
  });
2822
2822
 
@@ -2830,7 +2830,7 @@ var import_zod32 = require("zod");
2830
2830
  var import_zod31 = require("zod");
2831
2831
  var CentrifugoPublicationSchema = import_zod31.z.object({
2832
2832
  data: import_zod31.z.record(import_zod31.z.string(), import_zod31.z.any()),
2833
- info: CentrifugoClientInfoSchema.optional(),
2833
+ info: CentrifugoClientInfoSchema.nullable().optional(),
2834
2834
  offset: import_zod31.z.int(),
2835
2835
  tags: import_zod31.z.record(import_zod31.z.string(), import_zod31.z.any()).nullable().optional()
2836
2836
  });
@@ -2844,8 +2844,8 @@ var CentrifugoHistoryResultSchema = import_zod32.z.object({
2844
2844
 
2845
2845
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoHistoryResponse.schema.ts
2846
2846
  var CentrifugoHistoryResponseSchema = import_zod33.z.object({
2847
- error: CentrifugoErrorSchema.optional(),
2848
- result: CentrifugoHistoryResultSchema.optional()
2847
+ error: CentrifugoErrorSchema.nullable().optional(),
2848
+ result: CentrifugoHistoryResultSchema.nullable().optional()
2849
2849
  });
2850
2850
 
2851
2851
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
@@ -2881,8 +2881,8 @@ var CentrifugoNodeInfoSchema = import_zod36.z.object({
2881
2881
  num_channels: import_zod36.z.int(),
2882
2882
  uptime: import_zod36.z.int(),
2883
2883
  num_subs: import_zod36.z.int(),
2884
- metrics: CentrifugoMetricsSchema.optional(),
2885
- process: CentrifugoProcessSchema.optional()
2884
+ metrics: CentrifugoMetricsSchema.nullable().optional(),
2885
+ process: CentrifugoProcessSchema.nullable().optional()
2886
2886
  });
2887
2887
 
2888
2888
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResult.schema.ts
@@ -2892,8 +2892,8 @@ var CentrifugoInfoResultSchema = import_zod37.z.object({
2892
2892
 
2893
2893
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoInfoResponse.schema.ts
2894
2894
  var CentrifugoInfoResponseSchema = import_zod38.z.object({
2895
- error: CentrifugoErrorSchema.optional(),
2896
- result: CentrifugoInfoResultSchema.optional()
2895
+ error: CentrifugoErrorSchema.nullable().optional(),
2896
+ result: CentrifugoInfoResultSchema.nullable().optional()
2897
2897
  });
2898
2898
 
2899
2899
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoOverviewStats.schema.ts
@@ -2926,8 +2926,8 @@ var CentrifugoPresenceResultSchema = import_zod41.z.object({
2926
2926
 
2927
2927
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceResponse.schema.ts
2928
2928
  var CentrifugoPresenceResponseSchema = import_zod42.z.object({
2929
- error: CentrifugoErrorSchema.optional(),
2930
- result: CentrifugoPresenceResultSchema.optional()
2929
+ error: CentrifugoErrorSchema.nullable().optional(),
2930
+ result: CentrifugoPresenceResultSchema.nullable().optional()
2931
2931
  });
2932
2932
 
2933
2933
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsRequestRequest.schema.ts
@@ -2948,8 +2948,8 @@ var CentrifugoPresenceStatsResultSchema = import_zod44.z.object({
2948
2948
 
2949
2949
  // src/generated/cfg_centrifugo/_utils/schemas/CentrifugoPresenceStatsResponse.schema.ts
2950
2950
  var CentrifugoPresenceStatsResponseSchema = import_zod45.z.object({
2951
- error: CentrifugoErrorSchema.optional(),
2952
- result: CentrifugoPresenceStatsResultSchema.optional()
2951
+ error: CentrifugoErrorSchema.nullable().optional(),
2952
+ result: CentrifugoPresenceStatsResultSchema.nullable().optional()
2953
2953
  });
2954
2954
 
2955
2955
  // src/generated/cfg_centrifugo/_utils/schemas/ChannelList.schema.ts