@wisemen/wise-crm 0.0.22 → 0.0.23
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/dist/types/tenant/index.d.ts +2 -0
- package/dist/types/tenant/index.js +2 -0
- package/dist/types/tenant/index.js.map +1 -1
- package/dist/types/tenant/update-tenant.command.d.ts +18 -0
- package/dist/types/tenant/update-tenant.command.js +17 -0
- package/dist/types/tenant/update-tenant.command.js.map +1 -0
- package/package.json +36 -24
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from './create-tenant.command.js';
|
|
2
|
+
export * from './update-tenant.command.js';
|
|
2
3
|
export * from './brand-colors.command.js';
|
|
3
4
|
export * from './create-tenant.response.js';
|
|
4
5
|
export * from './assign-user-as-admin.command.js';
|
|
5
6
|
export * from './entity-color.enum.js';
|
|
6
7
|
export * from './billing-information-requirement.enum.js';
|
|
8
|
+
export * from './update-tenant.command.js';
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './create-tenant.command.js';
|
|
2
|
+
export * from './update-tenant.command.js';
|
|
2
3
|
export * from './brand-colors.command.js';
|
|
3
4
|
export * from './create-tenant.response.js';
|
|
4
5
|
export * from './assign-user-as-admin.command.js';
|
|
5
6
|
export * from './entity-color.enum.js';
|
|
6
7
|
export * from './billing-information-requirement.enum.js';
|
|
8
|
+
export * from './update-tenant.command.js';
|
|
7
9
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/types/tenant/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA;AAC1C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,mCAAmC,CAAA;AACjD,cAAc,wBAAwB,CAAA;AACtC,cAAc,2CAA2C,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/types/tenant/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA;AAC1C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,2BAA2B,CAAA;AACzC,cAAc,6BAA6B,CAAA;AAC3C,cAAc,mCAAmC,CAAA;AACjD,cAAc,wBAAwB,CAAA;AACtC,cAAc,2CAA2C,CAAA;AACzD,cAAc,4BAA4B,CAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BrandColorsCommand } from './brand-colors.command.js';
|
|
2
|
+
import { BusinessConfigCommand, IndividualConfigCommand } from './create-tenant.command.js';
|
|
3
|
+
export declare class UpdateTenantCommand {
|
|
4
|
+
name: string;
|
|
5
|
+
slug: string;
|
|
6
|
+
domain: string | null;
|
|
7
|
+
oidcIssuer?: string;
|
|
8
|
+
oidcClientId?: string;
|
|
9
|
+
oidcOrganizationId?: string;
|
|
10
|
+
nativeClientId?: string;
|
|
11
|
+
czOidcIssuer?: string;
|
|
12
|
+
czOidcAudience?: string;
|
|
13
|
+
czOidcOrganizationId?: string;
|
|
14
|
+
czNativeClientId?: string;
|
|
15
|
+
brandColors: BrandColorsCommand;
|
|
16
|
+
businessConfig: BusinessConfigCommand;
|
|
17
|
+
individualConfig: IndividualConfigCommand;
|
|
18
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export class UpdateTenantCommand {
|
|
2
|
+
name;
|
|
3
|
+
slug;
|
|
4
|
+
domain;
|
|
5
|
+
oidcIssuer;
|
|
6
|
+
oidcClientId;
|
|
7
|
+
oidcOrganizationId;
|
|
8
|
+
nativeClientId;
|
|
9
|
+
czOidcIssuer;
|
|
10
|
+
czOidcAudience;
|
|
11
|
+
czOidcOrganizationId;
|
|
12
|
+
czNativeClientId;
|
|
13
|
+
brandColors;
|
|
14
|
+
businessConfig;
|
|
15
|
+
individualConfig;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=update-tenant.command.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-tenant.command.js","sourceRoot":"","sources":["../../../lib/types/tenant/update-tenant.command.ts"],"names":[],"mappings":"AAGA,MAAM,OAAO,mBAAmB;IAC9B,IAAI,CAAQ;IACZ,IAAI,CAAQ;IACZ,MAAM,CAAe;IACrB,UAAU,CAAS;IACnB,YAAY,CAAS;IACrB,kBAAkB,CAAS;IAC3B,cAAc,CAAS;IACvB,YAAY,CAAS;IACrB,cAAc,CAAS;IACvB,oBAAoB,CAAS;IAC7B,gBAAgB,CAAS;IACzB,WAAW,CAAoB;IAC/B,cAAc,CAAuB;IACrC,gBAAgB,CAAyB;CAC1C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wisemen/wise-crm",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -10,37 +10,49 @@
|
|
|
10
10
|
"imports": {
|
|
11
11
|
"#lib/*": "./dist/*"
|
|
12
12
|
},
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
13
|
+
"release-it": {
|
|
14
|
+
"plugins": {
|
|
15
|
+
"./node_modules/release-it-pnpm/dist/index.js": [
|
|
16
|
+
"release-it-pnpm",
|
|
17
|
+
{
|
|
18
|
+
"publishCommand": "pnpm publish --access public --no-git-checks --tag $tag"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"@nestjs/common": "
|
|
24
|
-
"@wisemen/address": "
|
|
25
|
-
"@wisemen/coordinates": "
|
|
26
|
-
"@wisemen/
|
|
27
|
-
"@wisemen/
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"eslint": "
|
|
32
|
-
"eslint-plugin-import-typescript": "
|
|
33
|
-
"eslint-plugin-unicorn": "
|
|
34
|
-
"
|
|
24
|
+
"@nestjs/common": "^11.1.12",
|
|
25
|
+
"@wisemen/address": "0.2.6",
|
|
26
|
+
"@wisemen/coordinates": "0.0.17",
|
|
27
|
+
"@wisemen/eslint-config-nestjs": "^0.2.7",
|
|
28
|
+
"@wisemen/pagination": "^0.0.11",
|
|
29
|
+
"@wisemen/vies": "^0.0.12",
|
|
30
|
+
"axios": "^1.13.3",
|
|
31
|
+
"dayjs": "^1.11.19",
|
|
32
|
+
"eslint": "9.39.2",
|
|
33
|
+
"eslint-plugin-import-typescript": "^0.0.4",
|
|
34
|
+
"eslint-plugin-unicorn": "62.0.0",
|
|
35
|
+
"jsonwebtoken": "^9.0.3"
|
|
35
36
|
},
|
|
36
37
|
"devDependencies": {
|
|
37
|
-
"@types/node": "
|
|
38
|
-
"
|
|
38
|
+
"@types/node": "^25.0.10",
|
|
39
|
+
"release-it": "^19.2.4",
|
|
40
|
+
"release-it-pnpm": "^4.6.6",
|
|
41
|
+
"typescript": "^5.9.3"
|
|
39
42
|
},
|
|
40
43
|
"author": "Jonas Vannieuwenhuijsen",
|
|
41
44
|
"license": "GPL",
|
|
42
45
|
"repository": {
|
|
43
46
|
"type": "git",
|
|
44
47
|
"url": "git@github.com:wisemen-digital/wise-crm-api.git"
|
|
48
|
+
},
|
|
49
|
+
"scripts": {
|
|
50
|
+
"lint": "eslint --cache",
|
|
51
|
+
"clean": "rm -rf ./dist",
|
|
52
|
+
"build": "tsc",
|
|
53
|
+
"pretest": "npm run clean && npm run build",
|
|
54
|
+
"test": "node --test",
|
|
55
|
+
"prerelease": "npm run build",
|
|
56
|
+
"release": "pnpm pretest && pnpx release-it"
|
|
45
57
|
}
|
|
46
|
-
}
|
|
58
|
+
}
|