hide-a-bed 5.2.5 → 5.2.8

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.
@@ -61,7 +61,7 @@ const query = import_query.SimpleViewQuery.implement(async (config, view, option
61
61
  if (keysAsString.length + qs.length + 1 <= MAX_URL_LENGTH) {
62
62
  method = "GET";
63
63
  if (qs.length > 0) qs += "&";
64
- else qs = "?";
64
+ else qs = "";
65
65
  qs += keysAsString;
66
66
  } else {
67
67
  method = "POST";
@@ -30,7 +30,8 @@ __export(bulk_exports, {
30
30
  BulkSaveResponseSchema: () => BulkSaveResponseSchema,
31
31
  BulkSaveRow: () => BulkSaveRow,
32
32
  BulkSaveTransaction: () => BulkSaveTransaction,
33
- BulkSaveTransactionBound: () => BulkSaveTransactionBound
33
+ BulkSaveTransactionBound: () => BulkSaveTransactionBound,
34
+ OptionalIdCouchDoc: () => OptionalIdCouchDoc
34
35
  });
35
36
  module.exports = __toCommonJS(bulk_exports);
36
37
  var import_zod = require("zod");
@@ -45,12 +46,15 @@ const BulkSaveRow = import_zod.z.object({
45
46
  reason: import_zod.z.string().nullish().describe("a full error message")
46
47
  });
47
48
  const BulkSaveResponseSchema = import_zod.z.array(BulkSaveRow);
49
+ const OptionalIdCouchDoc = import_crud.CouchDoc.extend({
50
+ _id: import_crud.CouchDoc.shape._id.optional()
51
+ });
48
52
  const BulkSave = import_zod.z.function().args(
49
53
  import_config.CouchConfig,
50
- import_zod.z.array(import_crud.CouchDoc)
54
+ import_zod.z.array(OptionalIdCouchDoc)
51
55
  ).returns(import_zod.z.promise(BulkSaveResponseSchema));
52
56
  const BulkSaveBound = import_zod.z.function().args(
53
- import_zod.z.array(import_crud.CouchDoc)
57
+ import_zod.z.array(OptionalIdCouchDoc)
54
58
  ).returns(import_zod.z.promise(BulkSaveResponseSchema));
55
59
  const BulkGet = import_zod.z.function().args(
56
60
  import_config.CouchConfig,
package/impl/query.mjs CHANGED
@@ -49,7 +49,7 @@ export const query = SimpleViewQuery.implement(async (config, view, options = {}
49
49
  // Safari not understanding 304s on POSTs (see pouchdb/pouchdb#1239)
50
50
  method = 'GET'
51
51
  if (qs.length > 0) qs += '&'
52
- else qs = '?'
52
+ else qs = ''
53
53
  qs += keysAsString
54
54
  } else {
55
55
  method = 'POST'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hide-a-bed",
3
- "version": "5.2.5",
3
+ "version": "5.2.8",
4
4
  "description": "An abstraction over couchdb calls that includes easy mock/stubs with pouchdb",
5
5
  "module": "index.mjs",
6
6
  "main": "cjs/index.cjs",
@@ -58,4 +58,4 @@
58
58
  "node": "20.17.0",
59
59
  "npm": "10.8.2"
60
60
  }
61
- }
61
+ }
package/schema/bind.d.mts CHANGED
@@ -64,17 +64,17 @@ export const BindBase: z.ZodObject<{
64
64
  }>, "many">;
65
65
  }, z.ZodTypeAny, "passthrough">>>>;
66
66
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
67
- _id: z.ZodString;
68
67
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
69
68
  _deleted: z.ZodOptional<z.ZodBoolean>;
69
+ _id: z.ZodOptional<z.ZodString>;
70
70
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
71
- _id: z.ZodString;
72
71
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
73
72
  _deleted: z.ZodOptional<z.ZodBoolean>;
73
+ _id: z.ZodOptional<z.ZodString>;
74
74
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
75
- _id: z.ZodString;
76
75
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
77
76
  _deleted: z.ZodOptional<z.ZodBoolean>;
77
+ _id: z.ZodOptional<z.ZodString>;
78
78
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
79
79
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
80
80
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -611,9 +611,9 @@ export const BindBase: z.ZodObject<{
611
611
  }>, "many">;
612
612
  }, z.ZodTypeAny, "passthrough">>;
613
613
  bulkSave: (args_0: z.objectInputType<{
614
- _id: z.ZodString;
615
614
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
616
615
  _deleted: z.ZodOptional<z.ZodBoolean>;
616
+ _id: z.ZodOptional<z.ZodString>;
617
617
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
618
618
  ok?: boolean | null | undefined;
619
619
  id?: string | null | undefined;
@@ -790,9 +790,9 @@ export const BindBase: z.ZodObject<{
790
790
  }>, "many">;
791
791
  }, z.ZodTypeAny, "passthrough">>;
792
792
  bulkSave: (args_0: z.objectOutputType<{
793
- _id: z.ZodString;
794
793
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
795
794
  _deleted: z.ZodOptional<z.ZodBoolean>;
795
+ _id: z.ZodOptional<z.ZodString>;
796
796
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
797
797
  ok?: boolean | null | undefined;
798
798
  id?: string | null | undefined;
@@ -1134,17 +1134,17 @@ export const BindReturns: z.ZodObject<{
1134
1134
  }>, "many">;
1135
1135
  }, z.ZodTypeAny, "passthrough">>>>;
1136
1136
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
1137
- _id: z.ZodString;
1138
1137
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1139
1138
  _deleted: z.ZodOptional<z.ZodBoolean>;
1139
+ _id: z.ZodOptional<z.ZodString>;
1140
1140
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1141
- _id: z.ZodString;
1142
1141
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1143
1142
  _deleted: z.ZodOptional<z.ZodBoolean>;
1143
+ _id: z.ZodOptional<z.ZodString>;
1144
1144
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1145
- _id: z.ZodString;
1146
1145
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1147
1146
  _deleted: z.ZodOptional<z.ZodBoolean>;
1147
+ _id: z.ZodOptional<z.ZodString>;
1148
1148
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
1149
1149
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1150
1150
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1544,17 +1544,17 @@ export const BindReturns: z.ZodObject<{
1544
1544
  }>, "many">;
1545
1545
  }, z.ZodTypeAny, "passthrough">>>>;
1546
1546
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
1547
- _id: z.ZodString;
1548
1547
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1549
1548
  _deleted: z.ZodOptional<z.ZodBoolean>;
1549
+ _id: z.ZodOptional<z.ZodString>;
1550
1550
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
1551
- _id: z.ZodString;
1552
1551
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1553
1552
  _deleted: z.ZodOptional<z.ZodBoolean>;
1553
+ _id: z.ZodOptional<z.ZodString>;
1554
1554
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
1555
- _id: z.ZodString;
1556
1555
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
1557
1556
  _deleted: z.ZodOptional<z.ZodBoolean>;
1557
+ _id: z.ZodOptional<z.ZodString>;
1558
1558
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
1559
1559
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1560
1560
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2091,9 +2091,9 @@ export const BindReturns: z.ZodObject<{
2091
2091
  }>, "many">;
2092
2092
  }, z.ZodTypeAny, "passthrough">>;
2093
2093
  bulkSave: (args_0: z.objectInputType<{
2094
- _id: z.ZodString;
2095
2094
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2096
2095
  _deleted: z.ZodOptional<z.ZodBoolean>;
2096
+ _id: z.ZodOptional<z.ZodString>;
2097
2097
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2098
2098
  ok?: boolean | null | undefined;
2099
2099
  id?: string | null | undefined;
@@ -2270,9 +2270,9 @@ export const BindReturns: z.ZodObject<{
2270
2270
  }>, "many">;
2271
2271
  }, z.ZodTypeAny, "passthrough">>;
2272
2272
  bulkSave: (args_0: z.objectOutputType<{
2273
- _id: z.ZodString;
2274
2273
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2275
2274
  _deleted: z.ZodOptional<z.ZodBoolean>;
2275
+ _id: z.ZodOptional<z.ZodString>;
2276
2276
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2277
2277
  ok?: boolean | null | undefined;
2278
2278
  id?: string | null | undefined;
@@ -2476,9 +2476,9 @@ export const BindReturns: z.ZodObject<{
2476
2476
  }>, "many">;
2477
2477
  }, z.ZodTypeAny, "passthrough">>;
2478
2478
  bulkSave: (args_0: z.objectInputType<{
2479
- _id: z.ZodString;
2480
2479
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2481
2480
  _deleted: z.ZodOptional<z.ZodBoolean>;
2481
+ _id: z.ZodOptional<z.ZodString>;
2482
2482
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2483
2483
  ok?: boolean | null | undefined;
2484
2484
  id?: string | null | undefined;
@@ -2655,9 +2655,9 @@ export const BindReturns: z.ZodObject<{
2655
2655
  }>, "many">;
2656
2656
  }, z.ZodTypeAny, "passthrough">>;
2657
2657
  bulkSave: (args_0: z.objectInputType<{
2658
- _id: z.ZodString;
2659
2658
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2660
2659
  _deleted: z.ZodOptional<z.ZodBoolean>;
2660
+ _id: z.ZodOptional<z.ZodString>;
2661
2661
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2662
2662
  ok?: boolean | null | undefined;
2663
2663
  id?: string | null | undefined;
@@ -2860,9 +2860,9 @@ export const BindReturns: z.ZodObject<{
2860
2860
  }>, "many">;
2861
2861
  }, z.ZodTypeAny, "passthrough">>;
2862
2862
  bulkSave: (args_0: z.objectOutputType<{
2863
- _id: z.ZodString;
2864
2863
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
2865
2864
  _deleted: z.ZodOptional<z.ZodBoolean>;
2865
+ _id: z.ZodOptional<z.ZodString>;
2866
2866
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
2867
2867
  ok?: boolean | null | undefined;
2868
2868
  id?: string | null | undefined;
@@ -3039,9 +3039,9 @@ export const BindReturns: z.ZodObject<{
3039
3039
  }>, "many">;
3040
3040
  }, z.ZodTypeAny, "passthrough">>;
3041
3041
  bulkSave: (args_0: z.objectOutputType<{
3042
- _id: z.ZodString;
3043
3042
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3044
3043
  _deleted: z.ZodOptional<z.ZodBoolean>;
3044
+ _id: z.ZodOptional<z.ZodString>;
3045
3045
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
3046
3046
  ok?: boolean | null | undefined;
3047
3047
  id?: string | null | undefined;
@@ -3459,17 +3459,17 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
3459
3459
  }>, "many">;
3460
3460
  }, z.ZodTypeAny, "passthrough">>>>;
3461
3461
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
3462
- _id: z.ZodString;
3463
3462
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3464
3463
  _deleted: z.ZodOptional<z.ZodBoolean>;
3464
+ _id: z.ZodOptional<z.ZodString>;
3465
3465
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3466
- _id: z.ZodString;
3467
3466
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3468
3467
  _deleted: z.ZodOptional<z.ZodBoolean>;
3468
+ _id: z.ZodOptional<z.ZodString>;
3469
3469
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3470
- _id: z.ZodString;
3471
3470
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3472
3471
  _deleted: z.ZodOptional<z.ZodBoolean>;
3472
+ _id: z.ZodOptional<z.ZodString>;
3473
3473
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
3474
3474
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3475
3475
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -3869,17 +3869,17 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
3869
3869
  }>, "many">;
3870
3870
  }, z.ZodTypeAny, "passthrough">>>>;
3871
3871
  bulkSave: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
3872
- _id: z.ZodString;
3873
3872
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3874
3873
  _deleted: z.ZodOptional<z.ZodBoolean>;
3874
+ _id: z.ZodOptional<z.ZodString>;
3875
3875
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
3876
- _id: z.ZodString;
3877
3876
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3878
3877
  _deleted: z.ZodOptional<z.ZodBoolean>;
3878
+ _id: z.ZodOptional<z.ZodString>;
3879
3879
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3880
- _id: z.ZodString;
3881
3880
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
3882
3881
  _deleted: z.ZodOptional<z.ZodBoolean>;
3882
+ _id: z.ZodOptional<z.ZodString>;
3883
3883
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
3884
3884
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3885
3885
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -4416,9 +4416,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4416
4416
  }>, "many">;
4417
4417
  }, z.ZodTypeAny, "passthrough">>;
4418
4418
  bulkSave: (args_0: z.objectInputType<{
4419
- _id: z.ZodString;
4420
4419
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4421
4420
  _deleted: z.ZodOptional<z.ZodBoolean>;
4421
+ _id: z.ZodOptional<z.ZodString>;
4422
4422
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4423
4423
  ok?: boolean | null | undefined;
4424
4424
  id?: string | null | undefined;
@@ -4595,9 +4595,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4595
4595
  }>, "many">;
4596
4596
  }, z.ZodTypeAny, "passthrough">>;
4597
4597
  bulkSave: (args_0: z.objectOutputType<{
4598
- _id: z.ZodString;
4599
4598
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4600
4599
  _deleted: z.ZodOptional<z.ZodBoolean>;
4600
+ _id: z.ZodOptional<z.ZodString>;
4601
4601
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4602
4602
  ok?: boolean | null | undefined;
4603
4603
  id?: string | null | undefined;
@@ -4801,9 +4801,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4801
4801
  }>, "many">;
4802
4802
  }, z.ZodTypeAny, "passthrough">>;
4803
4803
  bulkSave: (args_0: z.objectInputType<{
4804
- _id: z.ZodString;
4805
4804
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4806
4805
  _deleted: z.ZodOptional<z.ZodBoolean>;
4806
+ _id: z.ZodOptional<z.ZodString>;
4807
4807
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4808
4808
  ok?: boolean | null | undefined;
4809
4809
  id?: string | null | undefined;
@@ -4980,9 +4980,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4980
4980
  }>, "many">;
4981
4981
  }, z.ZodTypeAny, "passthrough">>;
4982
4982
  bulkSave: (args_0: z.objectInputType<{
4983
- _id: z.ZodString;
4984
4983
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
4985
4984
  _deleted: z.ZodOptional<z.ZodBoolean>;
4985
+ _id: z.ZodOptional<z.ZodString>;
4986
4986
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
4987
4987
  ok?: boolean | null | undefined;
4988
4988
  id?: string | null | undefined;
@@ -5185,9 +5185,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
5185
5185
  }>, "many">;
5186
5186
  }, z.ZodTypeAny, "passthrough">>;
5187
5187
  bulkSave: (args_0: z.objectOutputType<{
5188
- _id: z.ZodString;
5189
5188
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
5190
5189
  _deleted: z.ZodOptional<z.ZodBoolean>;
5190
+ _id: z.ZodOptional<z.ZodString>;
5191
5191
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
5192
5192
  ok?: boolean | null | undefined;
5193
5193
  id?: string | null | undefined;
@@ -5364,9 +5364,9 @@ export const Bind: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
5364
5364
  }>, "many">;
5365
5365
  }, z.ZodTypeAny, "passthrough">>;
5366
5366
  bulkSave: (args_0: z.objectOutputType<{
5367
- _id: z.ZodString;
5368
5367
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
5369
5368
  _deleted: z.ZodOptional<z.ZodBoolean>;
5369
+ _id: z.ZodOptional<z.ZodString>;
5370
5370
  }, z.ZodTypeAny, "passthrough">[], ...args: unknown[]) => Promise<{
5371
5371
  ok?: boolean | null | undefined;
5372
5372
  id?: string | null | undefined;
package/schema/bulk.d.mts CHANGED
@@ -38,6 +38,19 @@ export const BulkSaveResponseSchema: z.ZodArray<z.ZodObject<{
38
38
  reason?: string | null | undefined;
39
39
  }>, "many">;
40
40
  /** @typedef { z.infer<typeof BulkSaveResponseSchema> } Response */
41
+ export const OptionalIdCouchDoc: z.ZodObject<{
42
+ _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
43
+ _deleted: z.ZodOptional<z.ZodBoolean>;
44
+ _id: z.ZodOptional<z.ZodString>;
45
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
46
+ _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
47
+ _deleted: z.ZodOptional<z.ZodBoolean>;
48
+ _id: z.ZodOptional<z.ZodString>;
49
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
50
+ _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
51
+ _deleted: z.ZodOptional<z.ZodBoolean>;
52
+ _id: z.ZodOptional<z.ZodString>;
53
+ }, z.ZodTypeAny, "passthrough">>;
41
54
  export const BulkSave: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
42
55
  throwOnGetNotFound: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
43
56
  couch: z.ZodString;
@@ -114,17 +127,17 @@ export const BulkSave: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
114
127
  }>, z.ZodFunction<z.ZodTuple<[z.ZodString, z.ZodAny], z.ZodUnknown>, z.ZodVoid>]>>;
115
128
  _normalizedLogger: z.ZodOptional<z.ZodAny>;
116
129
  }, z.ZodTypeAny, "passthrough">>, z.ZodArray<z.ZodObject<{
117
- _id: z.ZodString;
118
130
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
119
131
  _deleted: z.ZodOptional<z.ZodBoolean>;
132
+ _id: z.ZodOptional<z.ZodString>;
120
133
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
121
- _id: z.ZodString;
122
134
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
123
135
  _deleted: z.ZodOptional<z.ZodBoolean>;
136
+ _id: z.ZodOptional<z.ZodString>;
124
137
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
125
- _id: z.ZodString;
126
138
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
127
139
  _deleted: z.ZodOptional<z.ZodBoolean>;
140
+ _id: z.ZodOptional<z.ZodString>;
128
141
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
129
142
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
130
143
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -146,17 +159,17 @@ export const BulkSave: z.ZodFunction<z.ZodTuple<[z.ZodObject<{
146
159
  }>, "many">>>;
147
160
  /** @typedef { z.infer<typeof BulkSave> } BulkSaveSchema */
148
161
  export const BulkSaveBound: z.ZodFunction<z.ZodTuple<[z.ZodArray<z.ZodObject<{
149
- _id: z.ZodString;
150
162
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
151
163
  _deleted: z.ZodOptional<z.ZodBoolean>;
164
+ _id: z.ZodOptional<z.ZodString>;
152
165
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
153
- _id: z.ZodString;
154
166
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
155
167
  _deleted: z.ZodOptional<z.ZodBoolean>;
168
+ _id: z.ZodOptional<z.ZodString>;
156
169
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
157
- _id: z.ZodString;
158
170
  _rev: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
159
171
  _deleted: z.ZodOptional<z.ZodBoolean>;
172
+ _id: z.ZodOptional<z.ZodString>;
160
173
  }, z.ZodTypeAny, "passthrough">>, "many">], z.ZodUnknown>, z.ZodPromise<z.ZodArray<z.ZodObject<{
161
174
  ok: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
162
175
  id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -1 +1 @@
1
- {"version":3,"file":"bulk.d.mts","sourceRoot":"","sources":["bulk.mjs"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;;;;;GAME;AACF,iEAAiE;AAEjE;;;;;;;;;;;;;;;;;;YAA0D;AAC1D,mEAAmE;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,2DAA2D;AAE3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,qEAAqE;AAErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAG6C;AAC7C,yDAAyD;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAE6C;AAC7C,mEAAmE;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,+DAA+D;AAE/D;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,yEAAyE;AAEzE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGE;AACF,6FAA6F;AAE7F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAG+C;AAC/C,6EAA6E;AAE7E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAE+C;AAC/C,uFAAuF;AAEvF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI4C;AAC5C,iFAAiF;AAEjF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;gCAjE7B,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC;uBAG3B,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;6BAMtC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC;kCAKxB,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC;4BAM7B,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC;iCAKvB,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC;+BAM5B,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC;oCAK1B,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC;8CAM/B,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC;sCAMzC,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC;2CAKjC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;wCAOtC,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC;6CAMnC,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC;kBA9ErC,KAAK"}
1
+ {"version":3,"file":"bulk.d.mts","sourceRoot":"","sources":["bulk.mjs"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;;;;;;GAME;AACF,iEAAiE;AAEjE;;;;;;;;;;;;;;;;;;YAA0D;AAC1D,mEAAmE;AAEnE;;;;;;;;;;;;iCAEE;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,2DAA2D;AAE3D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,qEAAqE;AAErE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAG6C;AAC7C,yDAAyD;AAEzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAE6C;AAC7C,mEAAmE;AAEnE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;AAC5C,+DAA+D;AAE/D;;;;;;;;;;;;;;;;;;cAE4C;AAC5C,yEAAyE;AAEzE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAGE;AACF,6FAA6F;AAE7F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAG+C;AAC/C,6EAA6E;AAE7E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAE+C;AAC/C,uFAAuF;AAEvF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI4C;AAC5C,iFAAiF;AAEjF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAG4C;gCArE7B,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC;uBAG3B,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;6BAUtC,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC;kCAKxB,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC;4BAM7B,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC;iCAKvB,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC;+BAM5B,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC;oCAK1B,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC;8CAM/B,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC;sCAMzC,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC;2CAKjC,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC;wCAOtC,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC;6CAMnC,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC;kBAlFrC,KAAK"}
package/schema/bulk.mjs CHANGED
@@ -16,7 +16,7 @@ export const BulkSaveResponseSchema = z.array(BulkSaveRow)
16
16
  /** @typedef { z.infer<typeof BulkSaveResponseSchema> } Response */
17
17
 
18
18
  export const OptionalIdCouchDoc = CouchDoc.extend({
19
- _id: CouchDoc.shape._id.optional(),
19
+ _id: CouchDoc.shape._id.optional()
20
20
  })
21
21
 
22
22
  export const BulkSave = z.function().args(
package/log.txt DELETED
@@ -1,695 +0,0 @@
1
- [Fri, 28 Mar 2025 18:09:27 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
2
- [Fri, 28 Mar 2025 18:09:27 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
3
- [Fri, 28 Mar 2025 18:09:27 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
4
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
5
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
6
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
7
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
8
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
9
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
10
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
11
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
12
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
13
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
14
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
15
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
16
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
17
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
18
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
19
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
20
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
21
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
22
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
23
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
24
- [Fri, 28 Mar 2025 18:09:28 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
25
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
26
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
27
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
28
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
29
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
30
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
31
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
32
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
33
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
34
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
35
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
36
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
37
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
38
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
39
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
40
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
41
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
42
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
43
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
44
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
45
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
46
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
47
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
48
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
49
- [Fri, 28 Mar 2025 18:09:29 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
50
- [Fri, 28 Mar 2025 18:10:15 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
51
- [Fri, 28 Mar 2025 18:10:15 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
52
- [Fri, 28 Mar 2025 18:10:15 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
53
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
54
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
55
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
56
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
57
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
58
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
59
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
60
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
61
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
62
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
63
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
64
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
65
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
66
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
67
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
68
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
69
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
70
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
71
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
72
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
73
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
74
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
75
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
76
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
77
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
78
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
79
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
80
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
81
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
82
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
83
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
84
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
85
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
86
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
87
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
88
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
89
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
90
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
91
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
92
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
93
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
94
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
95
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
96
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
97
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
98
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
99
- [Fri, 28 Mar 2025 18:10:16 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
100
- [Fri, 28 Mar 2025 18:10:40 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
101
- [Fri, 28 Mar 2025 18:10:40 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
102
- [Fri, 28 Mar 2025 18:10:40 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
103
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
104
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
105
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
106
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
107
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
108
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
109
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
110
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
111
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
112
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
113
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
114
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
115
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
116
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
117
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
118
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
119
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
120
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
121
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
122
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
123
- [Fri, 28 Mar 2025 18:10:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
124
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
125
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
126
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
127
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
128
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
129
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
130
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
131
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
132
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
133
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
134
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
135
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
136
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
137
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
138
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
139
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
140
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
141
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
142
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
143
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
144
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
145
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
146
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
147
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
148
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
149
- [Fri, 28 Mar 2025 18:10:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
150
- [Fri, 28 Mar 2025 18:11:50 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
151
- [Fri, 28 Mar 2025 18:11:50 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
152
- [Fri, 28 Mar 2025 18:11:50 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
153
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
154
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
155
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
156
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
157
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
158
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
159
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
160
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
161
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
162
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
163
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
164
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
165
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
166
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
167
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
168
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
169
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
170
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
171
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
172
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
173
- [Fri, 28 Mar 2025 18:11:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
174
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
175
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
176
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
177
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
178
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
179
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
180
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
181
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
182
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
183
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
184
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
185
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
186
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
187
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
188
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
189
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
190
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
191
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
192
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
193
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
194
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
195
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
196
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
197
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
198
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
199
- [Fri, 28 Mar 2025 18:11:52 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
200
- [Fri, 28 Mar 2025 18:16:18 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
201
- [Fri, 28 Mar 2025 18:16:18 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
202
- [Fri, 28 Mar 2025 18:16:18 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
203
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
204
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
205
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
206
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
207
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
208
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
209
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
210
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
211
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
212
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
213
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
214
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
215
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
216
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
217
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
218
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
219
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
220
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
221
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
222
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
223
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
224
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
225
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
226
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
227
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
228
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
229
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
230
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
231
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
232
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
233
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
234
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
235
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
236
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
237
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
238
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
239
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
240
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
241
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
242
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
243
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
244
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
245
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
246
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
247
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
248
- [Fri, 28 Mar 2025 18:16:19 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
249
- [Fri, 28 Mar 2025 18:17:37 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
250
- [Fri, 28 Mar 2025 18:17:37 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
251
- [Fri, 28 Mar 2025 18:17:37 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
252
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
253
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
254
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
255
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
256
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
257
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
258
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
259
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
260
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
261
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
262
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
263
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
264
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
265
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
266
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
267
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
268
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
269
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
270
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
271
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
272
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
273
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
274
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
275
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
276
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
277
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
278
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
279
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
280
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
281
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
282
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
283
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
284
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
285
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
286
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
287
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
288
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
289
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
290
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
291
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
292
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
293
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
294
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
295
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
296
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
297
- [Fri, 28 Mar 2025 18:17:38 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
298
- [Fri, 28 Mar 2025 18:17:59 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
299
- [Fri, 28 Mar 2025 18:17:59 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
300
- [Fri, 28 Mar 2025 18:17:59 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
301
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
302
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
303
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
304
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
305
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
306
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
307
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
308
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
309
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
310
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
311
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
312
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
313
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
314
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
315
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
316
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
317
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
318
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
319
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
320
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
321
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
322
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
323
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
324
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
325
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
326
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
327
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
328
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
329
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
330
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
331
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
332
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
333
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
334
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
335
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
336
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
337
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
338
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
339
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
340
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
341
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
342
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
343
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
344
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
345
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
346
- [Fri, 28 Mar 2025 18:18:00 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
347
- [Fri, 28 Mar 2025 18:20:00 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
348
- [Fri, 28 Mar 2025 18:20:00 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
349
- [Fri, 28 Mar 2025 18:20:00 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
350
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
351
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
352
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
353
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
354
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
355
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
356
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
357
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
358
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
359
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
360
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
361
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
362
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
363
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
364
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
365
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
366
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
367
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
368
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
369
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
370
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
371
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
372
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
373
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
374
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
375
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
376
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
377
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
378
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
379
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
380
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
381
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
382
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
383
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
384
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
385
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
386
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
387
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
388
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
389
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
390
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
391
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
392
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
393
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
394
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
395
- [Fri, 28 Mar 2025 18:20:01 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
396
- [Fri, 28 Mar 2025 18:20:50 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
397
- [Fri, 28 Mar 2025 18:20:50 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
398
- [Fri, 28 Mar 2025 18:20:50 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
399
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
400
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
401
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
402
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
403
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
404
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
405
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
406
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
407
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
408
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
409
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
410
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
411
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
412
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
413
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
414
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
415
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
416
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
417
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
418
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
419
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
420
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
421
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
422
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
423
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
424
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
425
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
426
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
427
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
428
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
429
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
430
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
431
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
432
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
433
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
434
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
435
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
436
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
437
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
438
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
439
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
440
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
441
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
442
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
443
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
444
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
445
- [Fri, 28 Mar 2025 18:20:51 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
446
- [Fri, 28 Mar 2025 18:21:07 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
447
- [Fri, 28 Mar 2025 18:21:07 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
448
- [Fri, 28 Mar 2025 18:21:07 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
449
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
450
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
451
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
452
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
453
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
454
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
455
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
456
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
457
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
458
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
459
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
460
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
461
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
462
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
463
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
464
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
465
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
466
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
467
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
468
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
469
- [Fri, 28 Mar 2025 18:21:08 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
470
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
471
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
472
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
473
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
474
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
475
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
476
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
477
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
478
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
479
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
480
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
481
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
482
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
483
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
484
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
485
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
486
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
487
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
488
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
489
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
490
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
491
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
492
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
493
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
494
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
495
- [Fri, 28 Mar 2025 18:21:09 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
496
- [Fri, 28 Mar 2025 18:21:11 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
497
- [Fri, 28 Mar 2025 18:21:11 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
498
- [Fri, 28 Mar 2025 18:21:11 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
499
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
500
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
501
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
502
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
503
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
504
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
505
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
506
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
507
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
508
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
509
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
510
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
511
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
512
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
513
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
514
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
515
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
516
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
517
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
518
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
519
- [Fri, 28 Mar 2025 18:21:12 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
520
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
521
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
522
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
523
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
524
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
525
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
526
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
527
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
528
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
529
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
530
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
531
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
532
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
533
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
534
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
535
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
536
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
537
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
538
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
539
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
540
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
541
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
542
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
543
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
544
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
545
- [Fri, 28 Mar 2025 18:21:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
546
- [Fri, 28 Mar 2025 18:22:12 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
547
- [Fri, 28 Mar 2025 18:22:12 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
548
- [Fri, 28 Mar 2025 18:22:12 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
549
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
550
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
551
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
552
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
553
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
554
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
555
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
556
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
557
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
558
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
559
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
560
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
561
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
562
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
563
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
564
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
565
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
566
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
567
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
568
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
569
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
570
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
571
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
572
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
573
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
574
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
575
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
576
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
577
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
578
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
579
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
580
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
581
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
582
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
583
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
584
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
585
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
586
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
587
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
588
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
589
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
590
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
591
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
592
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
593
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
594
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
595
- [Fri, 28 Mar 2025 18:22:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
596
- [Fri, 28 Mar 2025 18:22:40 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
597
- [Fri, 28 Mar 2025 18:22:40 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
598
- [Fri, 28 Mar 2025 18:22:40 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
599
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
600
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
601
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
602
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
603
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
604
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
605
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
606
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
607
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
608
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
609
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
610
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
611
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
612
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
613
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
614
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
615
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
616
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
617
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
618
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
619
- [Fri, 28 Mar 2025 18:22:41 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
620
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
621
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
622
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
623
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
624
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
625
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
626
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
627
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
628
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
629
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
630
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
631
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
632
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
633
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
634
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
635
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
636
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
637
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
638
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
639
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
640
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
641
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
642
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
643
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
644
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
645
- [Fri, 28 Mar 2025 18:22:42 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
646
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] pouchdb-server has started on http://127.0.0.1:8985/
647
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] database is in-memory; no changes will be saved.
648
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] navigate to http://127.0.0.1:8985/_utils for the Fauxton UI.
649
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb 201
650
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/testdoc 201
651
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc 200
652
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
653
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there-override 404
654
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/testdoc-not-there 404
655
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/notThereDoc 409
656
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
657
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
658
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
659
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
660
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda 201
661
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-1 201
662
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
663
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
664
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
665
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
666
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-2 201
667
- [Fri, 28 Mar 2025 18:23:13 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
668
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
669
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/a 201
670
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
671
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
672
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:fsda-3 201
673
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
674
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/conflict-test 201
675
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:conflict-error 201
676
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
677
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/txn:bulk-error 201
678
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
679
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
680
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
681
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 409
682
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
683
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
684
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 404
685
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/lock-doc-to-lock 201
686
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
687
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock 200
688
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb/lock-doc-to-lock-2 404
689
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
690
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - GET /testdb 200
691
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
692
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - PUT /testdb/test-doc-never51 201
693
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_all_docs?include_docs=true 200
694
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201
695
- [Fri, 28 Mar 2025 18:23:14 GMT] [info] [<0.000.0>] 127.0.0.1 - - POST /testdb/_bulk_docs 201