docpouch-client 0.9.0 → 0.9.1

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.
package/dist/index.d.ts CHANGED
@@ -269,7 +269,7 @@ export interface I_DataStructure {
269
269
  name: string;
270
270
  description: string;
271
271
  type: number;
272
- subtype: number;
272
+ subType: number;
273
273
  fields: I_StructureField[];
274
274
  }
275
275
  export interface I_StructureField {
@@ -282,7 +282,7 @@ export interface I_StructureCreation {
282
282
  name: string;
283
283
  description?: string;
284
284
  type: number;
285
- subtype: number;
285
+ subType: number;
286
286
  fields: I_StructureField[];
287
287
  }
288
288
  export interface I_StructureUpdate {
@@ -290,7 +290,7 @@ export interface I_StructureUpdate {
290
290
  name?: string;
291
291
  description?: string;
292
292
  type?: number;
293
- subtype?: number;
293
+ subType?: number;
294
294
  fields?: I_StructureField[];
295
295
  }
296
296
  export type I_EventString = 'heartbeatPong' | "heartbeatPing" | "newDocument" | "newStructure" | "newUser" | "newType" | "removedID" | "changedDocument" | "changedStructure" | "changedUser" | "changedType" | "removedUser" | "removedStructure" | "removedDocument" | "removedType";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docpouch-client",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "exports": {
package/src/index.ts CHANGED
@@ -575,7 +575,7 @@ export interface I_DataStructure {
575
575
  name: string;
576
576
  description: string;
577
577
  type: number
578
- subtype: number
578
+ subType: number
579
579
  fields: I_StructureField[];
580
580
  }
581
581
 
@@ -590,7 +590,7 @@ export interface I_StructureCreation {
590
590
  name: string;
591
591
  description?: string;
592
592
  type: number
593
- subtype: number
593
+ subType: number
594
594
  fields: I_StructureField[];
595
595
  }
596
596
 
@@ -599,7 +599,7 @@ export interface I_StructureUpdate {
599
599
  name?: string;
600
600
  description?: string;
601
601
  type?: number
602
- subtype?: number
602
+ subType?: number
603
603
  fields?: I_StructureField[];
604
604
  }
605
605