@osdk/foundry.operations 2.31.0 → 2.32.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @osdk/foundry.operations
|
|
2
2
|
|
|
3
|
+
## 2.32.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 0a711d1: Introduce error descriptions
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [0a711d1]
|
|
12
|
+
- @osdk/shared.net.platformapi@1.5.0
|
|
13
|
+
- @osdk/foundry.ontologies@2.32.0
|
|
14
|
+
|
|
3
15
|
## 2.31.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
@@ -9,6 +9,7 @@ export type LooselyBrandedString<T extends string> = string & {
|
|
|
9
9
|
export interface OperationNotFound {
|
|
10
10
|
errorCode: "INVALID_ARGUMENT";
|
|
11
11
|
errorName: "OperationNotFound";
|
|
12
|
+
errorDescription: "The operation is not found, or the user does not have access to it.";
|
|
12
13
|
errorInstanceId: string;
|
|
13
14
|
parameters: {
|
|
14
15
|
id: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,EAAE,EAAE,OAAO,CAAC;KACb,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,gBAAgB,EACd,qEAAqE,CAAC;IACxE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,EAAE,EAAE,OAAO,CAAC;KACb,CAAC;CACH"}
|
package/build/esm/_errors.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export type LooselyBrandedString<T extends string> = string & {
|
|
|
9
9
|
export interface OperationNotFound {
|
|
10
10
|
errorCode: "INVALID_ARGUMENT";
|
|
11
11
|
errorName: "OperationNotFound";
|
|
12
|
+
errorDescription: "The operation is not found, or the user does not have access to it.";
|
|
12
13
|
errorInstanceId: string;
|
|
13
14
|
parameters: {
|
|
14
15
|
id: unknown;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,EAAE,EAAE,OAAO,CAAC;KACb,CAAC;CACH"}
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"AAgBA,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,kBAAkB,CAAC;IAC9B,SAAS,EAAE,mBAAmB,CAAC;IAC/B,gBAAgB,EACd,qEAAqE,CAAC;IACxE,eAAe,EAAE,MAAM,CAAC;IACxB,UAAU,EAAE;QACV,EAAE,EAAE,OAAO,CAAC;KACb,CAAC;CACH"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.operations",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.32.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@osdk/shared.client": "^1.0.1",
|
|
23
23
|
"@osdk/shared.client2": "^1.0.0",
|
|
24
|
-
"@osdk/
|
|
25
|
-
"@osdk/
|
|
24
|
+
"@osdk/foundry.ontologies": "2.32.0",
|
|
25
|
+
"@osdk/shared.net.platformapi": "~1.5.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"typescript": "^5.5.4",
|