@awarevue/api-types 2.0.114 → 2.0.116

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.
@@ -494,7 +494,8 @@ export declare const responseSchemasByType: {
494
494
  message: z.ZodString;
495
495
  }, z.core.$strip>;
496
496
  readonly "cctv:get-export-link": z.ZodObject<{
497
- exportLink: z.ZodString;
497
+ exportLink: z.ZodURL;
498
+ extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
498
499
  }, z.core.$strip>;
499
500
  readonly "cctv:get-exports": z.ZodArray<z.ZodObject<{
500
501
  name: z.ZodString;
@@ -4,7 +4,8 @@ export declare const sGetExportLinkArgs: z.ZodObject<{
4
4
  exportId: z.ZodString;
5
5
  }, z.core.$strip>;
6
6
  export declare const sGetExportLinkResponse: z.ZodObject<{
7
- exportLink: z.ZodString;
7
+ exportLink: z.ZodURL;
8
+ extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
8
9
  }, z.core.$strip>;
9
10
  export type GetExportLinkArgs = z.infer<typeof sGetExportLinkArgs>;
10
11
  export type GetExportLinkResponse = z.infer<typeof sGetExportLinkResponse>;
@@ -39,7 +40,8 @@ export declare const nvrExporterRequestSchemas: {
39
40
  };
40
41
  export declare const nvrExporterResponseSchemas: {
41
42
  readonly "cctv:get-export-link": z.ZodObject<{
42
- exportLink: z.ZodString;
43
+ exportLink: z.ZodURL;
44
+ extraHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
43
45
  }, z.core.$strip>;
44
46
  readonly "cctv:get-exports": z.ZodArray<z.ZodObject<{
45
47
  name: z.ZodString;
@@ -9,7 +9,8 @@ exports.sGetExportLinkArgs = zod_1.z.object({
9
9
  exportId: zod_1.z.string().nonempty(),
10
10
  });
11
11
  exports.sGetExportLinkResponse = zod_1.z.object({
12
- exportLink: zod_1.z.string().url(),
12
+ exportLink: zod_1.z.url(),
13
+ extraHeaders: zod_1.z.record(zod_1.z.string(), zod_1.z.string()).optional(),
13
14
  });
14
15
  // -- Get Exports
15
16
  exports.QUERY_GET_EXPORTS = 'cctv:get-exports';
@@ -9,7 +9,7 @@ export type AccessControlProviderState = AccessControlCapabilityReport & {
9
9
  running: boolean;
10
10
  };
11
11
  export type ServerState = {
12
- runningAgents: Record<string, string[]>;
12
+ activeProviders: string[];
13
13
  configMetadata: ModuleConfigMetadata;
14
14
  config: ModuleConfig;
15
15
  runnableProviders: string[];
package/dist/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
6
6
  },
7
- "version": "2.0.114",
7
+ "version": "2.0.116",
8
8
  "description": "Common types between backend, agent(s) and frontend(s)",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "git+https://github.com/Linc-Security-Systems/aware-essentials.git"
6
6
  },
7
- "version": "2.0.114",
7
+ "version": "2.0.116",
8
8
  "description": "Common types between backend, agent(s) and frontend(s)",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/index.d.ts",