@lssm/example.service-business-os 0.0.0-canary-20251220002821 → 0.0.0-canary-20251220021406

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.
@@ -1,132 +1,132 @@
1
- import * as _lssm_lib_schema431 from "@lssm/lib.schema";
2
- import * as _lssm_lib_contracts17 from "@lssm/lib.contracts";
1
+ import * as _lssm_lib_schema218 from "@lssm/lib.schema";
2
+ import * as _lssm_lib_contracts16 from "@lssm/lib.contracts";
3
3
 
4
4
  //#region src/quote/quote.contracts.d.ts
5
5
  /**
6
6
  * Create a new quote.
7
7
  */
8
- declare const CreateQuoteContract: _lssm_lib_contracts17.ContractSpec<_lssm_lib_schema431.SchemaModel<{
8
+ declare const CreateQuoteContract: _lssm_lib_contracts16.ContractSpec<_lssm_lib_schema218.SchemaModel<{
9
9
  clientId: {
10
- type: _lssm_lib_schema431.FieldType<string, string>;
10
+ type: _lssm_lib_schema218.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  title: {
14
- type: _lssm_lib_schema431.FieldType<string, string>;
14
+ type: _lssm_lib_schema218.FieldType<string, string>;
15
15
  isOptional: false;
16
16
  };
17
17
  description: {
18
- type: _lssm_lib_schema431.FieldType<string, string>;
18
+ type: _lssm_lib_schema218.FieldType<string, string>;
19
19
  isOptional: true;
20
20
  };
21
21
  amount: {
22
- type: _lssm_lib_schema431.FieldType<number, number>;
22
+ type: _lssm_lib_schema218.FieldType<number, number>;
23
23
  isOptional: false;
24
24
  };
25
25
  currency: {
26
- type: _lssm_lib_schema431.FieldType<string, string>;
26
+ type: _lssm_lib_schema218.FieldType<string, string>;
27
27
  isOptional: true;
28
28
  };
29
29
  validUntil: {
30
- type: _lssm_lib_schema431.FieldType<Date, string>;
30
+ type: _lssm_lib_schema218.FieldType<Date, string>;
31
31
  isOptional: true;
32
32
  };
33
33
  orgId: {
34
- type: _lssm_lib_schema431.FieldType<string, string>;
34
+ type: _lssm_lib_schema218.FieldType<string, string>;
35
35
  isOptional: false;
36
36
  };
37
37
  ownerId: {
38
- type: _lssm_lib_schema431.FieldType<string, string>;
38
+ type: _lssm_lib_schema218.FieldType<string, string>;
39
39
  isOptional: false;
40
40
  };
41
- }>, _lssm_lib_schema431.SchemaModel<{
41
+ }>, _lssm_lib_schema218.SchemaModel<{
42
42
  id: {
43
- type: _lssm_lib_schema431.FieldType<string, string>;
43
+ type: _lssm_lib_schema218.FieldType<string, string>;
44
44
  isOptional: false;
45
45
  };
46
46
  clientId: {
47
- type: _lssm_lib_schema431.FieldType<string, string>;
47
+ type: _lssm_lib_schema218.FieldType<string, string>;
48
48
  isOptional: false;
49
49
  };
50
50
  title: {
51
- type: _lssm_lib_schema431.FieldType<string, string>;
51
+ type: _lssm_lib_schema218.FieldType<string, string>;
52
52
  isOptional: false;
53
53
  };
54
54
  description: {
55
- type: _lssm_lib_schema431.FieldType<string, string>;
55
+ type: _lssm_lib_schema218.FieldType<string, string>;
56
56
  isOptional: true;
57
57
  };
58
58
  amount: {
59
- type: _lssm_lib_schema431.FieldType<number, number>;
59
+ type: _lssm_lib_schema218.FieldType<number, number>;
60
60
  isOptional: false;
61
61
  };
62
62
  currency: {
63
- type: _lssm_lib_schema431.FieldType<string, string>;
63
+ type: _lssm_lib_schema218.FieldType<string, string>;
64
64
  isOptional: false;
65
65
  };
66
66
  status: {
67
- type: _lssm_lib_schema431.FieldType<string, string>;
67
+ type: _lssm_lib_schema218.FieldType<string, string>;
68
68
  isOptional: false;
69
69
  };
70
70
  validUntil: {
71
- type: _lssm_lib_schema431.FieldType<Date, string>;
71
+ type: _lssm_lib_schema218.FieldType<Date, string>;
72
72
  isOptional: true;
73
73
  };
74
74
  createdAt: {
75
- type: _lssm_lib_schema431.FieldType<Date, string>;
75
+ type: _lssm_lib_schema218.FieldType<Date, string>;
76
76
  isOptional: false;
77
77
  };
78
78
  }>, undefined>;
79
79
  /**
80
80
  * Accept a quote.
81
81
  */
82
- declare const AcceptQuoteContract: _lssm_lib_contracts17.ContractSpec<_lssm_lib_schema431.SchemaModel<{
82
+ declare const AcceptQuoteContract: _lssm_lib_contracts16.ContractSpec<_lssm_lib_schema218.SchemaModel<{
83
83
  quoteId: {
84
- type: _lssm_lib_schema431.FieldType<string, string>;
84
+ type: _lssm_lib_schema218.FieldType<string, string>;
85
85
  isOptional: false;
86
86
  };
87
87
  acceptedBy: {
88
- type: _lssm_lib_schema431.FieldType<string, string>;
88
+ type: _lssm_lib_schema218.FieldType<string, string>;
89
89
  isOptional: false;
90
90
  };
91
91
  notes: {
92
- type: _lssm_lib_schema431.FieldType<string, string>;
92
+ type: _lssm_lib_schema218.FieldType<string, string>;
93
93
  isOptional: true;
94
94
  };
95
- }>, _lssm_lib_schema431.SchemaModel<{
95
+ }>, _lssm_lib_schema218.SchemaModel<{
96
96
  id: {
97
- type: _lssm_lib_schema431.FieldType<string, string>;
97
+ type: _lssm_lib_schema218.FieldType<string, string>;
98
98
  isOptional: false;
99
99
  };
100
100
  clientId: {
101
- type: _lssm_lib_schema431.FieldType<string, string>;
101
+ type: _lssm_lib_schema218.FieldType<string, string>;
102
102
  isOptional: false;
103
103
  };
104
104
  title: {
105
- type: _lssm_lib_schema431.FieldType<string, string>;
105
+ type: _lssm_lib_schema218.FieldType<string, string>;
106
106
  isOptional: false;
107
107
  };
108
108
  description: {
109
- type: _lssm_lib_schema431.FieldType<string, string>;
109
+ type: _lssm_lib_schema218.FieldType<string, string>;
110
110
  isOptional: true;
111
111
  };
112
112
  amount: {
113
- type: _lssm_lib_schema431.FieldType<number, number>;
113
+ type: _lssm_lib_schema218.FieldType<number, number>;
114
114
  isOptional: false;
115
115
  };
116
116
  currency: {
117
- type: _lssm_lib_schema431.FieldType<string, string>;
117
+ type: _lssm_lib_schema218.FieldType<string, string>;
118
118
  isOptional: false;
119
119
  };
120
120
  status: {
121
- type: _lssm_lib_schema431.FieldType<string, string>;
121
+ type: _lssm_lib_schema218.FieldType<string, string>;
122
122
  isOptional: false;
123
123
  };
124
124
  validUntil: {
125
- type: _lssm_lib_schema431.FieldType<Date, string>;
125
+ type: _lssm_lib_schema218.FieldType<Date, string>;
126
126
  isOptional: true;
127
127
  };
128
128
  createdAt: {
129
- type: _lssm_lib_schema431.FieldType<Date, string>;
129
+ type: _lssm_lib_schema218.FieldType<Date, string>;
130
130
  isOptional: false;
131
131
  };
132
132
  }>, undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/example.service-business-os",
3
- "version": "0.0.0-canary-20251220002821",
3
+ "version": "0.0.0-canary-20251220021406",
4
4
  "description": "Service Business OS example (clients, quotes, jobs, invoices) for ContractSpec",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -18,19 +18,19 @@
18
18
  "lint:check": "eslint src"
19
19
  },
20
20
  "dependencies": {
21
- "@lssm/lib.schema": "0.0.0-canary-20251220002821",
22
- "@lssm/lib.contracts": "0.0.0-canary-20251220002821",
23
- "@lssm/lib.bus": "0.0.0-canary-20251220002821",
24
- "@lssm/lib.identity-rbac": "0.0.0-canary-20251220002821",
25
- "@lssm/lib.files": "0.0.0-canary-20251220002821",
26
- "@lssm/lib.jobs": "0.0.0-canary-20251220002821",
27
- "@lssm/module.audit-trail": "0.0.0-canary-20251220002821",
28
- "@lssm/module.notifications": "0.0.0-canary-20251220002821",
21
+ "@lssm/lib.schema": "0.0.0-canary-20251220021406",
22
+ "@lssm/lib.contracts": "0.0.0-canary-20251220021406",
23
+ "@lssm/lib.bus": "0.0.0-canary-20251220021406",
24
+ "@lssm/lib.identity-rbac": "0.0.0-canary-20251220021406",
25
+ "@lssm/lib.files": "0.0.0-canary-20251220021406",
26
+ "@lssm/lib.jobs": "0.0.0-canary-20251220021406",
27
+ "@lssm/module.audit-trail": "0.0.0-canary-20251220021406",
28
+ "@lssm/module.notifications": "0.0.0-canary-20251220021406",
29
29
  "zod": "^4.1.13"
30
30
  },
31
31
  "devDependencies": {
32
- "@lssm/tool.typescript": "0.0.0-canary-20251220002821",
33
- "@lssm/tool.tsdown": "0.0.0-canary-20251220002821",
32
+ "@lssm/tool.typescript": "0.0.0-canary-20251220021406",
33
+ "@lssm/tool.tsdown": "0.0.0-canary-20251220021406",
34
34
  "typescript": "^5.9.3"
35
35
  },
36
36
  "exports": {