@itwin/core-bentley 3.0.0-extension.1 → 3.0.0

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.
Files changed (68) hide show
  1. package/CHANGELOG.md +112 -12
  2. package/LICENSE.md +1 -1
  3. package/ThirdPartyNotices.md +24 -0
  4. package/lib/cjs/Assert.d.ts +20 -10
  5. package/lib/cjs/Assert.d.ts.map +1 -1
  6. package/lib/cjs/Assert.js +31 -12
  7. package/lib/cjs/Assert.js.map +1 -1
  8. package/lib/cjs/BentleyError.d.ts +1 -2
  9. package/lib/cjs/BentleyError.d.ts.map +1 -1
  10. package/lib/cjs/BentleyError.js +1 -3
  11. package/lib/cjs/BentleyError.js.map +1 -1
  12. package/lib/cjs/ByteStream.d.ts +31 -1
  13. package/lib/cjs/ByteStream.d.ts.map +1 -1
  14. package/lib/cjs/ByteStream.js +33 -1
  15. package/lib/cjs/ByteStream.js.map +1 -1
  16. package/lib/cjs/Compare.d.ts +1 -1
  17. package/lib/cjs/Compare.js.map +1 -1
  18. package/lib/cjs/Disposable.d.ts +1 -1
  19. package/lib/cjs/Disposable.js.map +1 -1
  20. package/lib/cjs/JsonSchema.d.ts +78 -0
  21. package/lib/cjs/JsonSchema.d.ts.map +1 -0
  22. package/lib/cjs/JsonSchema.js +10 -0
  23. package/lib/cjs/JsonSchema.js.map +1 -0
  24. package/lib/cjs/JsonUtils.d.ts +1 -1
  25. package/lib/cjs/JsonUtils.js +1 -1
  26. package/lib/cjs/JsonUtils.js.map +1 -1
  27. package/lib/cjs/SortedArray.d.ts +1 -1
  28. package/lib/cjs/SortedArray.js.map +1 -1
  29. package/lib/cjs/UtilityTypes.d.ts +8 -0
  30. package/lib/cjs/UtilityTypes.d.ts.map +1 -1
  31. package/lib/cjs/UtilityTypes.js.map +1 -1
  32. package/lib/cjs/core-bentley.d.ts +5 -7
  33. package/lib/cjs/core-bentley.d.ts.map +1 -1
  34. package/lib/cjs/core-bentley.js +5 -7
  35. package/lib/cjs/core-bentley.js.map +1 -1
  36. package/lib/esm/Assert.d.ts +20 -10
  37. package/lib/esm/Assert.d.ts.map +1 -1
  38. package/lib/esm/Assert.js +31 -12
  39. package/lib/esm/Assert.js.map +1 -1
  40. package/lib/esm/BentleyError.d.ts +1 -2
  41. package/lib/esm/BentleyError.d.ts.map +1 -1
  42. package/lib/esm/BentleyError.js +1 -3
  43. package/lib/esm/BentleyError.js.map +1 -1
  44. package/lib/esm/ByteStream.d.ts +31 -1
  45. package/lib/esm/ByteStream.d.ts.map +1 -1
  46. package/lib/esm/ByteStream.js +33 -1
  47. package/lib/esm/ByteStream.js.map +1 -1
  48. package/lib/esm/Compare.d.ts +1 -1
  49. package/lib/esm/Compare.js.map +1 -1
  50. package/lib/esm/Disposable.d.ts +1 -1
  51. package/lib/esm/Disposable.js.map +1 -1
  52. package/lib/esm/JsonSchema.d.ts +78 -0
  53. package/lib/esm/JsonSchema.d.ts.map +1 -0
  54. package/lib/esm/JsonSchema.js +9 -0
  55. package/lib/esm/JsonSchema.js.map +1 -0
  56. package/lib/esm/JsonUtils.d.ts +1 -1
  57. package/lib/esm/JsonUtils.js +1 -1
  58. package/lib/esm/JsonUtils.js.map +1 -1
  59. package/lib/esm/SortedArray.d.ts +1 -1
  60. package/lib/esm/SortedArray.js.map +1 -1
  61. package/lib/esm/UtilityTypes.d.ts +8 -0
  62. package/lib/esm/UtilityTypes.d.ts.map +1 -1
  63. package/lib/esm/UtilityTypes.js.map +1 -1
  64. package/lib/esm/core-bentley.d.ts +5 -7
  65. package/lib/esm/core-bentley.d.ts.map +1 -1
  66. package/lib/esm/core-bentley.js +5 -7
  67. package/lib/esm/core-bentley.js.map +1 -1
  68. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,6 +1,106 @@
1
1
  # Change Log - @itwin/core-bentley
2
2
 
3
- This log was last generated on Tue, 21 Sep 2021 21:06:40 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 24 Jan 2022 14:00:52 GMT and should not be manually modified.
4
+
5
+ ## 3.0.0
6
+ Mon, 24 Jan 2022 14:00:52 GMT
7
+
8
+ ### Updates
9
+
10
+ - Drop deprecated ElectronUtils and Id methods.
11
+ - make ChangeSetApplyOption @internal - to be removed in future
12
+ - add MarkRequired utility type
13
+ - assert accepts a function for condition and/or message, and does nothing unless NODE_ENV-development or explicitly enabled.
14
+ - Upgrade target to ES2019 and deliver both a CommonJs and ESModule version of package
15
+ - Add ByteStream.nextUint24.
16
+ - added UnexpectedErrors class
17
+ - allow intercept log and filter it
18
+ - Add various utility types.
19
+ - rename to @itwin/core-bentley
20
+ - Support for Node 16
21
+ - Deprecate ByteStream constructor in favor of less error-prone initialization methods.
22
+ - remove ClientRequestContext and its subclasses
23
+ - Deprecated Config and removed config.app usage
24
+ - remove ChangeSetApplyOption
25
+ - remove ClientRequestContext.current
26
+ - Switching to consume new Projects-Client
27
+ - Renamed an iModel's parent container to iTwin
28
+ - added JSONSchema
29
+
30
+ ## 2.19.28
31
+ Wed, 12 Jan 2022 14:52:38 GMT
32
+
33
+ _Version update only_
34
+
35
+ ## 2.19.27
36
+ Wed, 05 Jan 2022 20:07:20 GMT
37
+
38
+ _Version update only_
39
+
40
+ ## 2.19.26
41
+ Wed, 08 Dec 2021 20:54:52 GMT
42
+
43
+ _Version update only_
44
+
45
+ ## 2.19.25
46
+ Fri, 03 Dec 2021 20:05:49 GMT
47
+
48
+ _Version update only_
49
+
50
+ ## 2.19.24
51
+ Mon, 29 Nov 2021 18:44:31 GMT
52
+
53
+ _Version update only_
54
+
55
+ ## 2.19.23
56
+ Mon, 22 Nov 2021 20:41:39 GMT
57
+
58
+ _Version update only_
59
+
60
+ ## 2.19.22
61
+ Wed, 17 Nov 2021 01:23:26 GMT
62
+
63
+ _Version update only_
64
+
65
+ ## 2.19.21
66
+ Wed, 10 Nov 2021 10:58:24 GMT
67
+
68
+ _Version update only_
69
+
70
+ ## 2.19.20
71
+ Fri, 29 Oct 2021 16:14:22 GMT
72
+
73
+ _Version update only_
74
+
75
+ ## 2.19.19
76
+ Mon, 25 Oct 2021 16:16:25 GMT
77
+
78
+ _Version update only_
79
+
80
+ ## 2.19.18
81
+ Thu, 21 Oct 2021 20:59:44 GMT
82
+
83
+ _Version update only_
84
+
85
+ ## 2.19.17
86
+ Thu, 14 Oct 2021 21:19:43 GMT
87
+
88
+ _Version update only_
89
+
90
+ ## 2.19.16
91
+ Mon, 11 Oct 2021 17:37:46 GMT
92
+
93
+ _Version update only_
94
+
95
+ ## 2.19.15
96
+ Fri, 08 Oct 2021 16:44:23 GMT
97
+
98
+ _Version update only_
99
+
100
+ ## 2.19.14
101
+ Fri, 01 Oct 2021 13:07:03 GMT
102
+
103
+ _Version update only_
4
104
 
5
105
  ## 2.19.13
6
106
  Tue, 21 Sep 2021 21:06:40 GMT
@@ -555,7 +655,7 @@ Thu, 28 May 2020 22:48:59 GMT
555
655
  ### Updates
556
656
 
557
657
  - Added FailedToGetProductSettings error
558
- - Setup Guid.normalize() for internal use.
658
+ - Setup Guid.normalize() for internal use.
559
659
  - channel rules
560
660
 
561
661
  ## 2.0.0
@@ -563,12 +663,12 @@ Wed, 06 May 2020 13:17:49 GMT
563
663
 
564
664
  ### Updates
565
665
 
566
- - Monitor progress of downloading briefcases, ability to cancel download of briefcases.
666
+ - Monitor progress of downloading briefcases, ability to cancel download of briefcases.
567
667
  - Update Config.App documentation to reflect the removal of the config.json file
568
668
  - Added ContextDoesNotExist error
569
669
  - BUG273249
570
- - Updated docs.
571
- - Updated error text.
670
+ - Updated docs.
671
+ - Updated error text.
572
672
  - added raw log method that bypass catogory check
573
673
  - order imports.
574
674
  - Add a type guard for `IDisposable`
@@ -602,7 +702,7 @@ Wed, 22 Jan 2020 19:24:11 GMT
602
702
 
603
703
  ### Updates
604
704
 
605
- - VSS$257397: Temporary fix for checking electron renderer.
705
+ - VSS$257397: Temporary fix for checking electron renderer.
606
706
  - Upgrade to TypeScript 3.7.2.
607
707
 
608
708
  ## 1.10.0
@@ -617,7 +717,7 @@ Tue, 10 Dec 2019 18:08:56 GMT
617
717
 
618
718
  ### Updates
619
719
 
620
- - Setup OidcDesktopClient for Electron use cases.
720
+ - Setup OidcDesktopClient for Electron use cases.
621
721
  - Added non-static wait and executeAfter to BeDuration
622
722
  - Fix warnings from static analysis
623
723
  - Added `BeDuration.race` for common timeout operations.
@@ -670,7 +770,7 @@ Mon, 01 Jul 2019 19:04:29 GMT
670
770
  ### Updates
671
771
 
672
772
  - Added OneAtATimeActivity class
673
- - Introduced AsyncMutex - a utility to run async blocks of code in sequence.
773
+ - Introduced AsyncMutex - a utility to run async blocks of code in sequence.
674
774
  - Update to TypeScript 3.5
675
775
 
676
776
  ## 1.0.0
@@ -697,10 +797,10 @@ Mon, 13 May 2019 15:52:05 GMT
697
797
  - Logged the fields in ClientRequestContext
698
798
  - Logging fixes.
699
799
  - Put sourcemap in npm package.
700
- - Fixed logger to not mutate incoming objects.
800
+ - Fixed logger to not mutate incoming objects.
701
801
  - Improved performance logging
702
802
  - Added functions for iterating and obtaining the number of elements of a collection of Id64s represented as an Id64Arg.
703
- - Setup a generic context for tracking client requests, and made various related enhancements to logging, usage tracking and authorization.
803
+ - Setup a generic context for tracking client requests, and made various related enhancements to logging, usage tracking and authorization.
704
804
  - Use TextDecoder to decode binary utf-8 strings if supported.
705
805
  - Upgrade TypeDoc dependency to 0.14.2
706
806
 
@@ -736,7 +836,7 @@ Mon, 14 Jan 2019 23:09:10 GMT
736
836
 
737
837
  ### Updates
738
838
 
739
- - Removed IModelDb's cache of accessToken. For long running operations like AutoPush, the user must explicitly supply an IAccessTokenManager to keep the token current.
839
+ - Removed IModelDb's cache of accessToken. For long running operations like AutoPush, the user must explicitly supply an IAccessTokenManager to keep the token current.
740
840
 
741
841
  ## 0.185.0
742
842
  Fri, 11 Jan 2019 18:29:00 GMT
@@ -843,7 +943,7 @@ Fri, 16 Nov 2018 21:45:44 GMT
843
943
 
844
944
  ### Updates
845
945
 
846
- - Changes to debug utilities.
946
+ - Changes to debug utilities.
847
947
  - Fluentd Bunnyan Logger added
848
948
 
849
949
  ## 0.166.0
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # MIT License
2
2
 
3
- Copyright © 2017-2021 Bentley Systems, Incorporated. All rights reserved.
3
+ Copyright © 2017-2022 Bentley Systems, Incorporated. All rights reserved.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
@@ -35,3 +35,27 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35
35
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36
36
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37
37
  SOFTWARE.
38
+
39
+ ## [VSCode](https://github.com/microsoft/vscode)
40
+
41
+ MIT License
42
+
43
+ Copyright (c) 2015 - present Microsoft Corporation
44
+
45
+ Permission is hereby granted, free of charge, to any person obtaining a copy
46
+ of this software and associated documentation files (the "Software"), to deal
47
+ in the Software without restriction, including without limitation the rights
48
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
49
+ copies of the Software, and to permit persons to whom the Software is
50
+ furnished to do so, subject to the following conditions:
51
+
52
+ The above copyright notice and this permission notice shall be included in all
53
+ copies or substantial portions of the Software.
54
+
55
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
56
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
57
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
58
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
59
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
60
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
61
+ SOFTWARE.
@@ -1,16 +1,26 @@
1
1
  /** @packageDocumentation
2
2
  * @module Utils
3
3
  */
4
- /**
5
- * Asserts that a condition is `true`, and in development builds throws an error if it is not.
6
- * This is an [assertion function](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions) that alters the
7
- * behavior of the TypeScript compiler.
8
- * @param condition The result of a boolean expression.
9
- * @param msg An optional message to include in the thrown exception. Defaults to "Programmer Error".
10
- * @throws Error containing the specified message if condition is false.
11
- * @note This function should be used to validate conditions that should never realistically occur, or
12
- * which indicate a misuse of the API which should be eliminated during development.
4
+ /** Asserts that a condition is `true` and - when enabled - throws an error if it is not.
5
+ * Assertions are enabled only if the build configuration defines `process.env.NODE_ENV` as `development` at build time.
6
+ *
7
+ * Assertions exist solely to assist programmers during development, in the following ways:
8
+ * 1 They allow the programmer to declare conditions that they believe cannot possibly occur. If such conditions occur, they indicate
9
+ * a serious flaw in the programmer's logic.
10
+ * 2 They allow the programmer to assure the TypeScript compiler of the truth of some condition that the compiler cannot itself infer.
11
+ * 3 They allow the author of an API to indicate to consumers of the API a serious misuse that should be corrected during development.
12
+ *
13
+ * Assertions should **never** be used to test for conditions - however unlikely - that could be expected to occur at run-time,
14
+ * such as failing to write to a file or load a resource over the network. If the condition asserted ever fails in a production environment,
15
+ * the programmer has made a serious mistake.
16
+ *
17
+ * Note that even when assertions are disabled, calls to `assert` remain in the code and their arguments will be evaluated at run-time.
18
+ * Therefore, if your condition or message requires computation, prefer to pass it as a function to prevent it from being evaluated when assertions are disabled.
19
+ *
20
+ * @param condition The condition that is asserted to be `true`. If the condition is more complex than a simple `boolean` variable, pass it as a function to prevent it from being evaluated when assertions are disabled.
21
+ * @param message An optional description of the condition being asserted, to be included in the exception if `condition` is `false`. If the message must be computed, pass it as a function to prevent it from being evaluated when assertions are disabled. Defaults to "Programmer Error".
22
+ * @throws Error containing the specified `message` if `condition` is `false`.
13
23
  * @public
14
24
  */
15
- export declare function assert(condition: boolean, msg?: string): asserts condition;
25
+ export declare function assert(condition: boolean | (() => boolean), message?: string | (() => string)): asserts condition;
16
26
  //# sourceMappingURL=Assert.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Assert.d.ts","sourceRoot":"","sources":["../../src/Assert.ts"],"names":[],"mappings":"AAIA;;GAEG;AAEH;;;;;;;;;;GAUG;AACH,wBAAgB,MAAM,CAAC,SAAS,EAAE,OAAO,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,SAAS,CAG1E"}
1
+ {"version":3,"file":"Assert.d.ts","sourceRoot":"","sources":["../../src/Assert.ts"],"names":[],"mappings":"AAIA;;GAEG;AAIH;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,MAAM,CAAC,SAAS,EAAE,OAAO,GAAG,CAAC,MAAM,OAAO,CAAC,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,MAAM,CAAC,GAAG,OAAO,CAAC,SAAS,CAejH"}
package/lib/cjs/Assert.js CHANGED
@@ -8,20 +8,39 @@
8
8
  */
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.assert = void 0;
11
- /**
12
- * Asserts that a condition is `true`, and in development builds throws an error if it is not.
13
- * This is an [assertion function](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions) that alters the
14
- * behavior of the TypeScript compiler.
15
- * @param condition The result of a boolean expression.
16
- * @param msg An optional message to include in the thrown exception. Defaults to "Programmer Error".
17
- * @throws Error containing the specified message if condition is false.
18
- * @note This function should be used to validate conditions that should never realistically occur, or
19
- * which indicate a misuse of the API which should be eliminated during development.
11
+ const assertionsEnabled = process.env.NODE_ENV === "development";
12
+ /** Asserts that a condition is `true` and - when enabled - throws an error if it is not.
13
+ * Assertions are enabled only if the build configuration defines `process.env.NODE_ENV` as `development` at build time.
14
+ *
15
+ * Assertions exist solely to assist programmers during development, in the following ways:
16
+ * 1 They allow the programmer to declare conditions that they believe cannot possibly occur. If such conditions occur, they indicate
17
+ * a serious flaw in the programmer's logic.
18
+ * 2 They allow the programmer to assure the TypeScript compiler of the truth of some condition that the compiler cannot itself infer.
19
+ * 3 They allow the author of an API to indicate to consumers of the API a serious misuse that should be corrected during development.
20
+ *
21
+ * Assertions should **never** be used to test for conditions - however unlikely - that could be expected to occur at run-time,
22
+ * such as failing to write to a file or load a resource over the network. If the condition asserted ever fails in a production environment,
23
+ * the programmer has made a serious mistake.
24
+ *
25
+ * Note that even when assertions are disabled, calls to `assert` remain in the code and their arguments will be evaluated at run-time.
26
+ * Therefore, if your condition or message requires computation, prefer to pass it as a function to prevent it from being evaluated when assertions are disabled.
27
+ *
28
+ * @param condition The condition that is asserted to be `true`. If the condition is more complex than a simple `boolean` variable, pass it as a function to prevent it from being evaluated when assertions are disabled.
29
+ * @param message An optional description of the condition being asserted, to be included in the exception if `condition` is `false`. If the message must be computed, pass it as a function to prevent it from being evaluated when assertions are disabled. Defaults to "Programmer Error".
30
+ * @throws Error containing the specified `message` if `condition` is `false`.
20
31
  * @public
21
32
  */
22
- function assert(condition, msg) {
23
- if (!condition)
24
- throw new Error(`Assert: ${msg !== null && msg !== void 0 ? msg : "Programmer Error"}`);
33
+ function assert(condition, message) {
34
+ if (!assertionsEnabled)
35
+ return;
36
+ if ("boolean" !== typeof condition)
37
+ condition = condition();
38
+ if (condition)
39
+ return;
40
+ message = message !== null && message !== void 0 ? message : "Programmer Error";
41
+ if ("string" !== typeof message)
42
+ message = message();
43
+ throw new Error(`Assert: ${message}`);
25
44
  }
26
45
  exports.assert = assert;
27
46
  //# sourceMappingURL=Assert.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"Assert.js","sourceRoot":"","sources":["../../src/Assert.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH;;;;;;;;;;GAUG;AACH,SAAgB,MAAM,CAAC,SAAkB,EAAE,GAAY;IACrD,IAAI,CAAC,SAAS;QACZ,MAAM,IAAI,KAAK,CAAC,WAAW,GAAG,aAAH,GAAG,cAAH,GAAG,GAAI,kBAAkB,EAAE,CAAC,CAAC;AAC5D,CAAC;AAHD,wBAGC","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n/** @packageDocumentation\r\n * @module Utils\r\n */\r\n\r\n/**\r\n * Asserts that a condition is `true`, and in development builds throws an error if it is not.\r\n * This is an [assertion function](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#assertion-functions) that alters the\r\n * behavior of the TypeScript compiler.\r\n * @param condition The result of a boolean expression.\r\n * @param msg An optional message to include in the thrown exception. Defaults to \"Programmer Error\".\r\n * @throws Error containing the specified message if condition is false.\r\n * @note This function should be used to validate conditions that should never realistically occur, or\r\n * which indicate a misuse of the API which should be eliminated during development.\r\n * @public\r\n */\r\nexport function assert(condition: boolean, msg?: string): asserts condition {\r\n if (!condition)\r\n throw new Error(`Assert: ${msg ?? \"Programmer Error\"}`);\r\n}\r\n"]}
1
+ {"version":3,"file":"Assert.js","sourceRoot":"","sources":["../../src/Assert.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH,MAAM,iBAAiB,GAAG,OAAO,CAAC,GAAG,CAAC,QAAQ,KAAK,aAAa,CAAC;AAEjE;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,MAAM,CAAC,SAAoC,EAAE,OAAiC;IAC5F,IAAI,CAAC,iBAAiB;QACpB,OAAO;IAET,IAAI,SAAS,KAAK,OAAO,SAAS;QAChC,SAAS,GAAG,SAAS,EAAE,CAAC;IAE1B,IAAI,SAAS;QACX,OAAO;IAET,OAAO,GAAG,OAAO,aAAP,OAAO,cAAP,OAAO,GAAI,kBAAkB,CAAC;IACxC,IAAI,QAAQ,KAAK,OAAO,OAAO;QAC7B,OAAO,GAAG,OAAO,EAAE,CAAC;IAEtB,MAAM,IAAI,KAAK,CAAC,WAAW,OAAO,EAAE,CAAC,CAAC;AACxC,CAAC;AAfD,wBAeC","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n/** @packageDocumentation\r\n * @module Utils\r\n */\r\n\r\nconst assertionsEnabled = process.env.NODE_ENV === \"development\";\r\n\r\n/** Asserts that a condition is `true` and - when enabled - throws an error if it is not.\r\n * Assertions are enabled only if the build configuration defines `process.env.NODE_ENV` as `development` at build time.\r\n *\r\n * Assertions exist solely to assist programmers during development, in the following ways:\r\n * 1 They allow the programmer to declare conditions that they believe cannot possibly occur. If such conditions occur, they indicate\r\n * a serious flaw in the programmer's logic.\r\n * 2 They allow the programmer to assure the TypeScript compiler of the truth of some condition that the compiler cannot itself infer.\r\n * 3 They allow the author of an API to indicate to consumers of the API a serious misuse that should be corrected during development.\r\n *\r\n * Assertions should **never** be used to test for conditions - however unlikely - that could be expected to occur at run-time,\r\n * such as failing to write to a file or load a resource over the network. If the condition asserted ever fails in a production environment,\r\n * the programmer has made a serious mistake.\r\n *\r\n * Note that even when assertions are disabled, calls to `assert` remain in the code and their arguments will be evaluated at run-time.\r\n * Therefore, if your condition or message requires computation, prefer to pass it as a function to prevent it from being evaluated when assertions are disabled.\r\n *\r\n * @param condition The condition that is asserted to be `true`. If the condition is more complex than a simple `boolean` variable, pass it as a function to prevent it from being evaluated when assertions are disabled.\r\n * @param message An optional description of the condition being asserted, to be included in the exception if `condition` is `false`. If the message must be computed, pass it as a function to prevent it from being evaluated when assertions are disabled. Defaults to \"Programmer Error\".\r\n * @throws Error containing the specified `message` if `condition` is `false`.\r\n * @public\r\n */\r\nexport function assert(condition: boolean | (() => boolean), message?: string | (() => string)): asserts condition {\r\n if (!assertionsEnabled)\r\n return;\r\n\r\n if (\"boolean\" !== typeof condition)\r\n condition = condition();\r\n\r\n if (condition)\r\n return;\r\n\r\n message = message ?? \"Programmer Error\";\r\n if (\"string\" !== typeof message)\r\n message = message();\r\n\r\n throw new Error(`Assert: ${message}`);\r\n}\r\n"]}
@@ -113,7 +113,7 @@ export declare enum RpcInterfaceStatus {
113
113
  /** The RpcInterface implemented by the server is incompatible with the interface requested by the client. */
114
114
  IncompatibleVersion = 135168
115
115
  }
116
- /** Error status from various ChangeSet operations
116
+ /** Error status from various Changeset operations
117
117
  * @beta Should these be internal?
118
118
  */
119
119
  export declare enum ChangeSetStatus {
@@ -275,7 +275,6 @@ export declare enum IModelHubStatus {
275
275
  FailedToGetAssetPermissions = 102445,
276
276
  FailedToGetAssetMembers = 102446,
277
277
  ITwinDoesNotExist = 102447,
278
- FailedToGetProductSettings = 102448,
279
278
  LockChunkDoesNotExist = 102449,
280
279
  CheckpointAlreadyExists = 102450,
281
280
  CheckpointDoesNotExist = 102451,
@@ -1 +1 @@
1
- {"version":3,"file":"BentleyError.d.ts","sourceRoot":"","sources":["../../src/BentleyError.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BentleyError.d.ts","sourceRoot":"","sources":["../../src/BentleyError.ts"],"names":[],"mappings":"AAIA;;GAEG;AAIH;;;;;GAKG;AACH,oBAAY,aAAa;IACvB,OAAO,IAAS;IAChB,KAAK,QAAS;CACf;AAED;;;GAGG;AACH,oBAAY,YAAY;IACtB,iBAAiB,QAAU;IAC3B,OAAO,IAAI;IACX,aAAa,QAAwB;IACrC,WAAW,QAAwB;IACnC,MAAM,QAAwB;IAC9B,UAAU,QAAwB;IAClC,QAAQ,QAAwB;IAChC,UAAU,QAAwB;IAClC,SAAS,QAAwB;IACjC,UAAU,QAAwB;IAClC,eAAe,QAAwB;IACvC,kBAAkB,QAAyB;IAC3C,aAAa,QAAyB;IACtC,aAAa,QAAyB;IACtC,oBAAoB,QAAyB;IAC7C,iBAAiB,QAAyB;IAC1C,YAAY,QAAyB;IACrC,aAAa,QAAyB;IACtC,oBAAoB,QAAyB;IAC7C,QAAQ,QAAyB;IACjC,oBAAoB,QAAyB;IAC7C,eAAe,QAAyB;IACxC,WAAW,QAAyB;IACpC,eAAe,QAAyB;IACxC,SAAS,QAAyB;IAClC,WAAW,QAAyB;IACpC,aAAa,QAAyB;IACtC,qBAAqB,QAAyB;IAC9C,mBAAmB,QAAyB;IAC5C,WAAW,QAAyB;IACpC,YAAY,QAAyB;IACrC,WAAW,QAAyB;IACpC,aAAa,QAAyB;IACtC,cAAc,QAAyB;IACvC,SAAS,QAAyB;IAClC,UAAU,QAAyB;IACnC,mBAAmB,QAAyB;IAC5C,UAAU,QAAyB;IACnC,QAAQ,QAAyB;IACjC,OAAO,QAAyB;IAChC,eAAe,QAAyB;IACxC,eAAe,QAAyB;IACxC,aAAa,QAAyB;IACtC,aAAa,QAAyB;IACtC,mBAAmB,QAAyB;IAC5C,SAAS,QAAyB;IAClC,QAAQ,QAAyB;IACjC,cAAc,QAAyB;IACvC,sBAAsB,QAAyB;IAC/C,WAAW,QAAyB;IACpC,iBAAiB,QAAyB;IAC1C,YAAY,QAAyB;IACrC,aAAa,QAAyB;IACtC,aAAa,QAAyB;IACtC,gBAAgB,QAAyB;IACzC,aAAa,QAAyB;IACtC,aAAa,QAAyB;IACtC,YAAY,QAAyB;IACrC,UAAU,QAAyB;IACnC,UAAU,QAAyB;IACnC,WAAW,QAAyB;IACpC,WAAW,QAAyB;IACpC,YAAY,QAAyB;IACrC,YAAY,QAAyB;IACrC,UAAU,QAAyB;IACnC,mBAAmB,QAAyB;IAC5C,aAAa,QAAyB;IACtC,aAAa,QAAyB;IACtC,SAAS,QAAyB;IAClC,aAAa,QAAyB;IACtC,gBAAgB,QAAyB;IACzC,eAAe,QAAyB;CACzC;AAED;;GAEG;AACH,oBAAY,eAAe;IACzB,qBAAqB,SAAU;IAC/B,aAAa,SAAwB;IACrC,cAAc,SAA4B;IAC1C,YAAY,SAA4B;IACxC,UAAU,SAA4B;IACtC,YAAY,SAA4B;IACxC,eAAe,SAA4B;IAC3C,kBAAkB,SAA4B;IAC9C,iBAAiB,SAA4B;IAC7C,yBAAyB,SAA4B;CACtD;AAED;;GAEG;AACH,oBAAY,kBAAkB;IAC5B,OAAO,IAAI;IACX,wBAAwB,SAAU;IAClC,6GAA6G;IAC7G,mBAAmB,SAA2B;CAC/C;AAED;;GAEG;AACH,oBAAY,eAAe;IACzB,OAAO,IAAI;IACX,oBAAoB,QAAU;IAC9B,mEAAmE;IACnE,UAAU,QAA2B;IACrC,6EAA6E;IAC7E,wBAAwB,QAA2B;IACnD,mFAAmF;IACnF,qBAAqB,QAA2B;IAChD,iEAAiE;IACjE,YAAY,QAA2B;IACvC,qFAAqF;IACrF,cAAc,QAA2B;IACzC,mEAAmE;IACnE,eAAe,QAA2B;IAC1C,sFAAsF;IACtF,qBAAqB,QAA2B;IAChD,4BAA4B;IAC5B,SAAS,QAA2B;IACpC,yCAAyC;IACzC,cAAc,QAA2B;IACzC,0FAA0F;IAC1F,oBAAoB,QAA4B;IAChD,wFAAwF;IACxF,mBAAmB,QAA4B;IAC/C,6EAA6E;IAC7E,sBAAsB,QAA4B;IAClD,oDAAoD;IACpD,qBAAqB,QAA4B;IACjD,8BAA8B;IAC9B,cAAc,QAA4B;IAC1C,2DAA2D;IAC3D,cAAc,QAA4B;IAC1C,iFAAiF;IACjF,cAAc,QAA4B;IAC1C,oDAAoD;IACpD,WAAW,QAA4B;IACvC,6CAA6C;IAC7C,UAAU,QAA4B;IACtC,mDAAmD;IACnD,iBAAiB,QAA4B;IAC7C,8GAA8G;IAC9G,wBAAwB,QAA4B;IACpD,kDAAkD;IAClD,+BAA+B,QAA4B;IAC3D,4HAA4H;IAC5H,0BAA0B,QAA4B;IACtD,kDAAkD;IAClD,uBAAuB,QAA4B;IACnD,iDAAiD;IACjD,qBAAqB,QAA4B;IACjD,uEAAuE;IACvE,uBAAuB,QAA4B;CACpD;AAED;;GAEG;AACH,oBAAY,gBAAgB;IAC1B,OAAO,IAAI;IACX,yDAAyD;IACzD,iBAAiB,QAAU;IAC3B,6DAA6D;IAC7D,eAAe,QAAU;IACzB,mDAAmD;IACnD,SAAS,QAAU;IACnB,0CAA0C;IAC1C,eAAe,QAAU;IACzB,uEAAuE;IACvE,mBAAmB,QAAU;IAC7B,oFAAoF;IACpF,QAAQ,QAAU;IAClB,kEAAkE;IAClE,qBAAqB,QAAU;IAC/B,uCAAuC;IACvC,cAAc,QAAU;IACxB,uHAAuH;IACvH,iBAAiB,QAAU;IAC3B,qEAAqE;IACrE,eAAe,QAAU;IACzB,gGAAgG;IAChG,eAAe,QAAU;IACzB,wEAAwE;IACxE,QAAQ,QAAU;IAClB,oDAAoD;IACpD,WAAW,QAAU;IACrB,yDAAyD;IACzD,kBAAkB,QAAU;IAC5B,sGAAsG;IACtG,0BAA0B,QAAU;CACrC;AAED;;GAEG;AACH,oBAAY,UAAU;IACpB,kBAAkB;IAClB,OAAO,IAAI;IACX,kCAAkC;IAClC,IAAI,QAAU;IACd,sBAAsB;IACtB,WAAW,QAAU;IACrB,wBAAwB;IACxB,WAAW,QAAU;IACrB,wBAAwB;IACxB,WAAW,QAAU;CACtB;AAED;;GAEG;AACH,oBAAY,eAAe;IACzB,OAAO,IAAI;IACX,mBAAmB,SAAU;IAC7B,+BAA+B,SAAU;IACzC,OAAO,SAA0B;IACjC,yBAAyB,SAA0B;IACnD,uBAAuB,SAA0B;IACjD,yBAAyB,SAA0B;IACnD,qBAAqB,SAA0B;IAC/C,gBAAgB,SAA0B;IAC1C,qBAAqB,SAA0B;IAC/C,4BAA4B,SAA0B;IACtD,kBAAkB,SAA0B;IAC5C,sBAAsB,SAA2B;IACjD,qBAAqB,SAA2B;IAChD,iBAAiB,SAA2B;IAC5C,sBAAsB,SAA2B;IACjD,wBAAwB,SAA2B;IACnD,eAAe,SAA2B;IAC1C,cAAc,SAA2B;IACzC,gCAAgC,SAA2B;IAC3D,yCAAyC,SAA2B;IACpE,yBAAyB,SAA2B;IACpD,cAAc,SAA2B;IACzC,UAAU,SAA2B;IACrC,UAAU,SAA2B;IACrC,mBAAmB,SAA2B;IAC9C,kBAAkB,SAA2B;IAC7C,gBAAgB,SAA2B;IAC3C,iBAAiB,SAA2B;IAC5C,gBAAgB,SAA2B;IAC3C,2BAA2B,SAA2B;IACtD,gBAAgB,SAA2B;IAC3C,8BAA8B,SAA2B;IACzD,gBAAgB,SAA2B;IAC3C,qBAAqB,SAA2B;IAChD,6BAA6B,SAA2B;IACxD,8BAA8B,SAA2B;IACzD,qBAAqB,SAA2B;IAChD,2BAA2B,SAA2B;IACtD,uBAAuB,SAA2B;IAClD,0BAA0B,SAA2B;IACrD,oBAAoB,SAA2B;IAC/C,mBAAmB,SAA2B;IAC9C,kBAAkB,SAA2B;IAC7C,oBAAoB,SAA2B;IAE/C,uBAAuB,SAA2B;IAClD,4BAA4B,SAA2B;IAEvD,2BAA2B,SAA2B;IACtD,uBAAuB,SAA2B;IAClD,iBAAiB,SAA2B;IAE5C,qBAAqB,SAA2B;IAEhD,uBAAuB,SAA2B;IAClD,sBAAsB,SAA2B;IAGjD,sBAAsB,SAAsC;IAC5D,oBAAoB,SAAsC;IAC1D,uBAAuB,SAAsC;IAC7D,qBAAqB,SAAsC;IAC3D,iBAAiB,SAAsC;IACvD,YAAY,SAAsC;IAClD,qBAAqB,SAAsC;CAC5D;AAED;;GAEG;AACH,oBAAY,UAAU;IACpB,OAAO,IAAI;IACX,eAAe,SAAU;IACzB,KAAK,SAAkB;CACxB;AAED;;GAEG;AACH,oBAAY,gBAAgB;IAC1B,OAAO,IAAI;IACX,qBAAqB,SAAU;IAE/B,aAAa,QAA6B;IAE1C,gBAAgB,SAA4B;IAC5C,uBAAuB,SAA4B;IACnD,gBAAgB,SAA4B;IAC5C,yBAAyB,SAA4B;IACrD,UAAU,SAA4B;IACtC,OAAO,SAA4B;CACpC;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB,CAAC,aAAa;IAClD,MAAM,EAAE,aAAa,CAAC;IACtB,OAAO,EAAE,MAAM,CAAC;CACjB;AAED;;;GAGG;AACH,oBAAY,mBAAmB,GAAG,MAAM,MAAM,GAAG,SAAS,CAAC;AAE3D;;;GAGG;AACH,oBAAY,eAAe,GAAG,mBAAmB,GAAG,MAAM,GAAG,SAAS,CAAC;AAMvE,UAAU,UAAU;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,qBAAa,YAAa,SAAQ,KAAK;IAQX,WAAW,EAAE,MAAM;IAP7C,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAkB;IAE5C;;;;OAIG;gBACuB,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,eAAe;IAO3F,sEAAsE;IACtE,IAAW,WAAW,IAAI,OAAO,CAAyC;IAE1E,mEAAmE;IAC5D,WAAW,IAAI,MAAM,GAAG,SAAS;IAIxC,4EAA4E;WAC9D,WAAW,CAAC,QAAQ,EAAE,eAAe,GAAG,MAAM,GAAG,SAAS;IAIxE,mHAAmH;IACnH,SAAS,CAAC,SAAS,IAAI,MAAM;IAwR7B;;;OAGG;WACW,eAAe,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM;IAqBrD;;;OAGG;WACW,aAAa,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS;IAO/D;;;;OAIG;WACW,gBAAgB,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS;IAUlE;;;;OAIG;WACW,aAAa,CAAC,KAAK,EAAE,OAAO,GAAG,UAAU;CAexD"}
@@ -125,7 +125,7 @@ var RpcInterfaceStatus;
125
125
  /** The RpcInterface implemented by the server is incompatible with the interface requested by the client. */
126
126
  RpcInterfaceStatus[RpcInterfaceStatus["IncompatibleVersion"] = 135168] = "IncompatibleVersion";
127
127
  })(RpcInterfaceStatus = exports.RpcInterfaceStatus || (exports.RpcInterfaceStatus = {}));
128
- /** Error status from various ChangeSet operations
128
+ /** Error status from various Changeset operations
129
129
  * @beta Should these be internal?
130
130
  */
131
131
  var ChangeSetStatus;
@@ -291,7 +291,6 @@ var IModelHubStatus;
291
291
  IModelHubStatus[IModelHubStatus["FailedToGetAssetPermissions"] = 102445] = "FailedToGetAssetPermissions";
292
292
  IModelHubStatus[IModelHubStatus["FailedToGetAssetMembers"] = 102446] = "FailedToGetAssetMembers";
293
293
  IModelHubStatus[IModelHubStatus["ITwinDoesNotExist"] = 102447] = "ITwinDoesNotExist";
294
- IModelHubStatus[IModelHubStatus["FailedToGetProductSettings"] = 102448] = "FailedToGetProductSettings";
295
294
  IModelHubStatus[IModelHubStatus["LockChunkDoesNotExist"] = 102449] = "LockChunkDoesNotExist";
296
295
  IModelHubStatus[IModelHubStatus["CheckpointAlreadyExists"] = 102450] = "CheckpointAlreadyExists";
297
296
  IModelHubStatus[IModelHubStatus["CheckpointDoesNotExist"] = 102451] = "CheckpointDoesNotExist";
@@ -612,7 +611,6 @@ class BentleyError extends Error {
612
611
  case IModelHubStatus.JobSchedulingFailed: return "Failed to schedule a background job";
613
612
  case IModelHubStatus.ConflictsAggregate: return "Codes or locks are owned by another briefcase";
614
613
  case IModelHubStatus.FailedToGetITwinById: return "Failed to query iTwin by its id";
615
- case IModelHubStatus.FailedToGetProductSettings: return "Failed to get product settings";
616
614
  case IModelHubStatus.DatabaseOperationFailed: return "Database operation has failed";
617
615
  case IModelHubStatus.ITwinDoesNotExist: return "ITwin does not exist";
618
616
  case IModelHubStatus.UndefinedArgumentError: return "Undefined argument";