@explo-tech/fido-api 0.0.33 → 0.0.35

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.
@@ -5,6 +5,6 @@
5
5
  export type Namespace = {
6
6
  name: string;
7
7
  ignoreTableList?: Array<string>;
8
- readonly id: string;
8
+ readonly id?: string;
9
9
  };
10
10
 
@@ -6,7 +6,9 @@ import type { Namespace } from './Namespace';
6
6
  import type { NamespaceResponseMetadata } from './NamespaceResponseMetadata';
7
7
 
8
8
  export type NamespaceResponse = {
9
- namespace: Namespace;
9
+ namespace: (Namespace & {
10
+ readonly id: string;
11
+ });
10
12
  meta: NamespaceResponseMetadata | null;
11
13
  };
12
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explo-tech/fido-api",
3
- "version": "0.0.33",
3
+ "version": "0.0.35",
4
4
  "description": "Fido api",
5
5
  "homepage": "https://github.com/trust-kaz/fido",
6
6
  "license": "MIT",