@go-mondo/identity-sdk 0.0.2-beta.97 → 0.0.2-beta.98
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/.release-please-manifest.json +1 -1
- package/.tsbuildinfo/cjs.json +1 -1
- package/.tsbuildinfo/esm.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/cjs/workspace/authorization/resources.js +1 -1
- package/dist/cjs/workspace/branding/resources.js +1 -1
- package/dist/cjs/workspace/registration/resources.js +1 -1
- package/dist/esm/workspace/authorization/resources.js +1 -1
- package/dist/esm/workspace/branding/resources.js +1 -1
- package/dist/esm/workspace/registration/resources.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-beta.98](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.97...identity-sdk-v0.0.2-beta.98) (2026-05-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* prepend version to workspace resources ([36d90ae](https://github.com/go-mondo/identity-node-sdk/commit/36d90aec066bb8e38709e42f5725033150af4403))
|
|
9
|
+
|
|
3
10
|
## [0.0.2-beta.97](https://github.com/go-mondo/identity-node-sdk/compare/identity-sdk-v0.0.2-beta.96...identity-sdk-v0.0.2-beta.97) (2026-05-15)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -5,7 +5,7 @@ exports.getAuthorization = getAuthorization;
|
|
|
5
5
|
exports.upsertAuthorization = upsertAuthorization;
|
|
6
6
|
const operations_js_1 = require("../../common/resources/operations.js");
|
|
7
7
|
const schema_js_1 = require("./schema.js");
|
|
8
|
-
const PATH = '/workspace/authorization';
|
|
8
|
+
const PATH = '/v1/workspace/authorization';
|
|
9
9
|
class AuthorizationResources {
|
|
10
10
|
instance;
|
|
11
11
|
constructor(instance) {
|
|
@@ -5,7 +5,7 @@ exports.getBranding = getBranding;
|
|
|
5
5
|
exports.upsertBranding = upsertBranding;
|
|
6
6
|
const operations_js_1 = require("../../common/resources/operations.js");
|
|
7
7
|
const schema_js_1 = require("./schema.js");
|
|
8
|
-
const PATH = '/workspace/branding';
|
|
8
|
+
const PATH = '/v1/workspace/branding';
|
|
9
9
|
class BrandingResources {
|
|
10
10
|
instance;
|
|
11
11
|
constructor(instance) {
|
|
@@ -5,7 +5,7 @@ exports.getRegistration = getRegistration;
|
|
|
5
5
|
exports.upsertRegistration = upsertRegistration;
|
|
6
6
|
const operations_js_1 = require("../../common/resources/operations.js");
|
|
7
7
|
const schema_js_1 = require("./schema.js");
|
|
8
|
-
const PATH = '/workspace/registration';
|
|
8
|
+
const PATH = '/v1/workspace/registration';
|
|
9
9
|
class RegistrationResources {
|
|
10
10
|
instance;
|
|
11
11
|
constructor(instance) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getItemWithAuthorization, patchItemWithAuthorization, } from '../../common/resources/operations.js';
|
|
2
2
|
import { AuthorizationSchema, UpsertAuthorizationPayloadSchema, } from './schema.js';
|
|
3
|
-
const PATH = '/workspace/authorization';
|
|
3
|
+
const PATH = '/v1/workspace/authorization';
|
|
4
4
|
export class AuthorizationResources {
|
|
5
5
|
instance;
|
|
6
6
|
constructor(instance) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getItemWithAuthorization, patchItemWithAuthorization, } from '../../common/resources/operations.js';
|
|
2
2
|
import { BrandingSchema, UpsertBrandingPayloadSchema, } from './schema.js';
|
|
3
|
-
const PATH = '/workspace/branding';
|
|
3
|
+
const PATH = '/v1/workspace/branding';
|
|
4
4
|
export class BrandingResources {
|
|
5
5
|
instance;
|
|
6
6
|
constructor(instance) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getItemWithAuthorization, patchItemWithAuthorization, } from '../../common/resources/operations.js';
|
|
2
2
|
import { RegistrationSchema, UpsertRegistrationPayloadSchema, } from './schema.js';
|
|
3
|
-
const PATH = '/workspace/registration';
|
|
3
|
+
const PATH = '/v1/workspace/registration';
|
|
4
4
|
export class RegistrationResources {
|
|
5
5
|
instance;
|
|
6
6
|
constructor(instance) {
|