@feasibleone/blong 1.5.1 → 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.2](https://github.com/feasibleone/blong/compare/blong-v1.5.1...blong-v1.5.2) (2026-02-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * update dependencies ([3330815](https://github.com/feasibleone/blong/commit/3330815d11e64c79c6c14af05a75a903e0cbfac7))
9
+
3
10
  ## [1.5.1](https://github.com/feasibleone/blong/compare/blong-v1.5.0...blong-v1.5.1) (2026-02-05)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -5449,7 +5449,7 @@ export declare interface BinaryExtendedLegacy {
5449
5449
  /** @public */
5450
5450
  export declare type BinarySequence = Uint8Array | number[];
5451
5451
  export declare namespace BSON {
5452
- export { setInternalBufferSize, serialize, serializeWithBufferAndIndex, deserialize, calculateObjectSize, deserializeStream, UUIDExtended, BinaryExtended, BinaryExtendedLegacy, BinarySequence, CodeExtended, DBRefLike, Decimal128Extended, DoubleExtended, EJSONOptions, Int32Extended, LongExtended, MaxKeyExtended, MinKeyExtended, ObjectIdExtended, ObjectIdLike, BSONRegExpExtended, BSONRegExpExtendedLegacy, BSONSymbolExtended, LongWithoutOverrides, TimestampExtended, TimestampOverrides, LongWithoutOverridesClass, SerializeOptions, DeserializeOptions, Code, BSONSymbol, DBRef, Binary, ObjectId, UUID, Long, Timestamp, Double, Int32, MinKey, MaxKey, BSONRegExp, Decimal128, NumberUtils, ByteUtils, BSONValue, bsonType, BSONTypeTag, BSONError, BSONVersionError, BSONRuntimeError, BSONOffsetError, BSONType, EJSON, onDemand, OnDemand, Document$1, CalculateObjectSizeOptions };
5452
+ export { setInternalBufferSize, serialize, serializeWithBufferAndIndex, deserialize, calculateObjectSize, deserializeStream, UUIDExtended, BinaryExtended, BinaryExtendedLegacy, BinarySequence, CodeExtended, DBRefLike, Decimal128Extended, DoubleExtended, EJSONOptions, EJSONOptionsBase, EJSONSerializeOptions, EJSONParseOptions, Int32Extended, LongExtended, MaxKeyExtended, MinKeyExtended, ObjectIdExtended, ObjectIdLike, BSONRegExpExtended, BSONRegExpExtendedLegacy, BSONSymbolExtended, LongWithoutOverrides, TimestampExtended, TimestampOverrides, LongWithoutOverridesClass, SerializeOptions, DeserializeOptions, Code, BSONSymbol, DBRef, Binary, ObjectId, UUID, Long, Timestamp, Double, Int32, MinKey, MaxKey, BSONRegExp, Decimal128, NumberUtils, ByteUtils, BSONValue, bsonType, BSONTypeTag, BSONError, BSONVersionError, BSONRuntimeError, BSONOffsetError, BSONType, EJSON, onDemand, OnDemand, Document$1, CalculateObjectSizeOptions };
5453
5453
  }
5454
5454
  /* Excluded from this release type: BSON_MAJOR_VERSION */
5455
5455
  /* Excluded from this release type: BSON_VERSION_SYMBOL */
@@ -5643,6 +5643,8 @@ export declare type ByteUtils = {
5643
5643
  compare: (buffer1: Uint8Array, buffer2: Uint8Array) => -1 | 0 | 1;
5644
5644
  /** Concatenating all the Uint8Arrays in new Uint8Array. */
5645
5645
  concat: (list: Uint8Array[]) => Uint8Array;
5646
+ /** Copy bytes from source Uint8Array to target Uint8Array */
5647
+ copy: (source: Uint8Array, target: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number) => number;
5646
5648
  /** Check if two Uint8Arrays are deep equal */
5647
5649
  equals: (a: Uint8Array, b: Uint8Array) => boolean;
5648
5650
  /** Create a Uint8Array from an array of numbers */
@@ -5937,9 +5939,11 @@ export declare const EJSON: {
5937
5939
  serialize: typeof EJSONserialize;
5938
5940
  deserialize: typeof EJSONdeserialize;
5939
5941
  };
5940
- declare function EJSONdeserialize(ejson: Document$1, options?: EJSONOptions): any;
5942
+ declare function EJSONdeserialize(ejson: Document$1, options?: EJSONParseOptions): any;
5941
5943
  /** @public */
5942
- export declare type EJSONOptions = {
5944
+ export declare type EJSONOptions = EJSONSerializeOptions & EJSONParseOptions;
5945
+ /** @public */
5946
+ export declare type EJSONOptionsBase = {
5943
5947
  /**
5944
5948
  * Output using the Extended JSON v1 spec
5945
5949
  * @defaultValue `false`
@@ -5947,15 +5951,27 @@ export declare type EJSONOptions = {
5947
5951
  legacy?: boolean;
5948
5952
  /**
5949
5953
  * Enable Extended JSON's `relaxed` mode, which attempts to return native JS types where possible, rather than BSON types
5950
- * @defaultValue `false` */
5954
+ * @defaultValue `false`
5955
+ */
5951
5956
  relaxed?: boolean;
5957
+ };
5958
+ /** @public */
5959
+ export declare type EJSONParseOptions = EJSONOptionsBase & {
5952
5960
  /**
5953
5961
  * Enable native bigint support
5954
5962
  * @defaultValue `false`
5955
5963
  */
5956
5964
  useBigInt64?: boolean;
5957
5965
  };
5958
- declare function EJSONserialize(value: any, options?: EJSONOptions): Document$1;
5966
+ declare function EJSONserialize(value: any, options?: EJSONSerializeOptions): Document$1;
5967
+ /** @public */
5968
+ export declare type EJSONSerializeOptions = EJSONOptionsBase & {
5969
+ /**
5970
+ * Omits undefined values from the output instead of converting them to null
5971
+ * @defaultValue `false`
5972
+ */
5973
+ ignoreUndefined?: boolean;
5974
+ };
5959
5975
  export declare type InspectFn = (x: unknown, options?: unknown) => string;
5960
5976
  /**
5961
5977
  * A class representation of a BSON Int32 type.
@@ -6631,7 +6647,7 @@ export declare type OnDemand = {
6631
6647
  * @public
6632
6648
  */
6633
6649
  export declare const onDemand: OnDemand;
6634
- declare function parse(text: string, options?: EJSONOptions): any;
6650
+ declare function parse(text: string, options?: EJSONParseOptions): any;
6635
6651
  /**
6636
6652
  * Serialize a Javascript object.
6637
6653
  *
@@ -6682,7 +6698,7 @@ export declare function serializeWithBufferAndIndex(object: Document$1, finalBuf
6682
6698
  * @public
6683
6699
  */
6684
6700
  export declare function setInternalBufferSize(size: number): void;
6685
- declare function stringify(value: any, replacer?: (number | string)[] | ((this: any, key: string, value: any) => any) | EJSONOptions, space?: string | number, options?: EJSONOptions): string;
6701
+ declare function stringify(value: any, replacer?: (number | string)[] | ((this: any, key: string, value: any) => any) | EJSONSerializeOptions, space?: string | number, options?: EJSONSerializeOptions): string;
6686
6702
  /**
6687
6703
  * @public
6688
6704
  * @category BSONType
@@ -13024,6 +13040,8 @@ export declare const MongoErrorLabel: Readonly<{
13024
13040
  readonly PoolRequestedRetry: "PoolRequestedRetry";
13025
13041
  readonly InterruptInUseConnections: "InterruptInUseConnections";
13026
13042
  readonly NoWritesPerformed: "NoWritesPerformed";
13043
+ readonly RetryableError: "RetryableError";
13044
+ readonly SystemOverloadedError: "SystemOverloadedError";
13027
13045
  }>;
13028
13046
  /** @public */
13029
13047
  export declare type MongoErrorLabel = (typeof MongoErrorLabel)[keyof typeof MongoErrorLabel];
@@ -14114,7 +14132,12 @@ export declare type RemoveUserOptions = Omit<CommandOperationOptions, "rawData">
14114
14132
  export declare interface RenameOptions extends Omit<CommandOperationOptions, "rawData"> {
14115
14133
  /** Drop the target name collection if it previously exists. */
14116
14134
  dropTarget?: boolean;
14117
- /** Unclear */
14135
+ /**
14136
+ * @deprecated
14137
+ *
14138
+ * This option has been dead code since at least Node driver version 4.x. It will
14139
+ * be removed in a future major release.
14140
+ */
14118
14141
  new_collection?: boolean;
14119
14142
  }
14120
14143
  /** @public */
@@ -14293,7 +14316,6 @@ export declare interface SelectServerOptions {
14293
14316
  serverSelectionTimeoutMS?: number;
14294
14317
  session?: ClientSession;
14295
14318
  operationName: string;
14296
- previousServer?: ServerDescription;
14297
14319
  }
14298
14320
  /* Excluded from this release type: Server */
14299
14321
  /* Excluded from this release type: SERVER_CLOSED */
package/dist/types.js CHANGED
@@ -7,16 +7,6 @@
7
7
  // } from '@kubernetes/client-node';
8
8
  import { Type, } from '@sinclair/typebox';
9
9
  import merge from 'ut-function.merge';
10
- // export {
11
- // AppsV1Api,
12
- // CoreV1Api,
13
- // NetworkingV1Api,
14
- // RbacAuthorizationV1Api,
15
- // Watch,
16
- // } from '@kubernetes/client-node';
17
- export * from '@slack/webhook';
18
- export * from 'bson';
19
- export * from 'mongodb';
20
10
  const Kind = Symbol.for('blong:kind');
21
11
  export class Internal {
22
12
  #log;
package/dist/types.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"","sources":["../types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../types.ts"],"names":[],"mappings":"AAEA,WAAW;AACX,iBAAiB;AACjB,iBAAiB;AACjB,uBAAuB;AACvB,8BAA8B;AAC9B,aAAa;AACb,oCAAoC;AACpC,OAAO,EACH,IAAI,GASP,MAAM,mBAAmB,CAAC;AAS3B,OAAO,KAAK,MAAM,mBAAmB,CAAC;AAsjBtC,MAAM,IAAI,GAAW,MAAM,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;AAE9C,MAAM,OAAgB,QAAQ;IAC1B,IAAI,CAAO;IACD,GAAG,CAA8B;IAC3C,YAAmB,GAAiB;QAChC,IAAI,CAAC,IAAI,GAAG,GAAG,EAAE,GAAG,CAAC;IACzB,CAAC;IACS,KAAK,GAAkB,CAAC,GAAG,IAAI,EAAE,EAAE;QACzC,MAAM,MAAM,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC;QAC9B,IAAI,MAAM,CAAC,QAAQ,IAAI,IAAI,CAAC,IAAI;YAC5B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,EAAC,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,EAAC,CAAC,CAAC;QAChF,OAAO,MAAM,CAAC;IAClB,CAAC,CAAC;IACK,KAAK,CAAC,IAAI,KAAmB,CAAC;IAC9B,KAAK,CAAC,KAAK,CAAC,GAAG,MAAiB,IAAkB,CAAC;CAC7D;AAED,MAAM,CAAC,MAAM,OAAO,GAAG,CACnB,UAA4B,EACZ,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,SAAS,EAAC,CAAC,CAAC;AACnF,MAAM,CAAC,MAAM,OAAO,GAAG,CAA8B,UAAkB,EAAU,EAAE,CAC/E,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,KAAK,EAAC,CAAC,CAAC;AAC5D,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,UAAgC,EAAwB,EAAE,CACjF,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,YAAY,EAAC,CAAC,CAAC;AACnE,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,GAAkB,EAAiB,EAAE,CACrD,MAAM,CAAC,cAAc,CAAC,GAAG,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,KAAK,EAAC,CAAC,CAAC;AAErD,MAAM,CAAC,MAAM,kBAAkB,GAEH,QAAQ,CAAC,EAAE,CACnC,UAAU,CAAC,GAAG,EAAE,CACZ,MAAM,CAAC,WAAW,CACd,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,EAAE,CAAC;IAC9C,IAAI;IACJ,MAAM,CAAC,cAAc,CACjB,GAAG,EAAE,CAAC,CAAC;QACH,MAAM,EAAE,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;QACzC,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;QAC9C,WAAW,EAAE,OAAO,CAAC,WAAW;KACnC,CAAC,EACF,MAAM,EACN,EAAC,KAAK,EAAE,IAAI,EAAC,CAChB;CACJ,CAAC,CACL,CACJ,CAAC;AAEN,MAAM,CAAC,MAAM,KAAK,GAAG,CAAoB,UAA8B,EAAsB,EAAE,CAC3F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,UAAU,EAAC,CAAC,CAAC;AACjE,MAAM,CAAC,MAAM,MAAM,GAAG,CAAoB,UAA8B,EAAsB,EAAE,CAC5F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,QAAQ,EAAC,CAAC,CAAC;AAC/D,MAAM,CAAC,MAAM,OAAO,GAAG,CAAoB,UAA8B,EAAsB,EAAE,CAC7F,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,SAAS,EAAC,CAAC,CAAC;AAChE,MAAM,CAAC,MAAM,OAAO,GAAG,CACnB,UAAiC,EACZ,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,SAAS,EAAC,CAAC,CAAC;AACxF,MAAM,CAAC,MAAM,YAAY,GAAG,CACxB,UAAiC,EACZ,EAAE,CAAC,MAAM,CAAC,cAAc,CAAC,UAAU,EAAE,IAAI,EAAE,EAAC,KAAK,EAAE,cAAc,EAAC,CAAC,CAAC;AAC7F,MAAM,CAAC,MAAM,IAAI,GAAG,CAChB,IAAO,EAUK,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAE9B,eAAe;IACX,OAAO;IACP,OAAO;IACP,UAAU;IACV,GAAG;IACH,KAAK;IACL,MAAM;IACN,OAAO;IACP,OAAO;IACP,YAAY;IACZ,IAAI;CACP,CAAC"}
package/package.json CHANGED
@@ -16,8 +16,8 @@
16
16
  "ut-function.merge": "^1.5.6"
17
17
  },
18
18
  "devDependencies": {
19
- "@aws-sdk/client-s3": "^3.980.0",
20
- "@keycloak/keycloak-admin-client": "^26.5.1",
19
+ "@aws-sdk/client-s3": "^3.983.0",
20
+ "@keycloak/keycloak-admin-client": "^26.5.2",
21
21
  "@kubernetes/client-node": "^1.4.0",
22
22
  "@rushstack/eslint-config": "^4.0.1",
23
23
  "@rushstack/heft-lint-plugin": "^1.1.14",
@@ -26,11 +26,11 @@
26
26
  "@slack/types": "^2.19.0",
27
27
  "@slack/webhook": "^7.0.6",
28
28
  "@types/request": "^2.48.13",
29
- "bson": "^7.0.0",
29
+ "bson": "^7.2.0",
30
30
  "dts-bundle-generator": "^9.5.1",
31
31
  "eslint": "~9.39.2",
32
32
  "knex": "^3.1.0",
33
- "mongodb": "^7.0.0",
33
+ "mongodb": "^7.1.0",
34
34
  "node-vault": "^0.10.9",
35
35
  "openapi-types": "^12.1.3",
36
36
  "tarn": "^3.0.2",
@@ -45,5 +45,5 @@
45
45
  "ci-publish": "npm publish --access public --provenance"
46
46
  },
47
47
  "type": "module",
48
- "version": "1.5.1"
48
+ "version": "1.5.2"
49
49
  }