@lssm/example.service-business-os 0.0.0-canary-20251217073102 → 0.0.0-canary-20251217083314
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/client/client.contracts.d.ts +17 -17
- package/dist/client/client.schema.d.ts +16 -16
- package/dist/entities/index.d.ts +155 -155
- package/dist/events.d.ts +90 -90
- package/dist/invoice/invoice.contracts.d.ts +17 -17
- package/dist/invoice/invoice.schema.d.ts +16 -16
- package/dist/job/job.contracts.d.ts +62 -62
- package/dist/job/job.schema.d.ts +20 -20
- package/dist/payment/payment.contracts.d.ts +16 -16
- package/dist/payment/payment.schema.d.ts +15 -15
- package/dist/quote/quote.contracts.d.ts +35 -35
- package/dist/quote/quote.schema.d.ts +24 -24
- package/package.json +11 -11
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema449 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts18 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/client/client.contracts.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Create a new client.
|
|
7
7
|
*/
|
|
8
|
-
declare const CreateClientContract:
|
|
8
|
+
declare const CreateClientContract: _lssm_lib_contracts18.ContractSpec<_lssm_lib_schema449.SchemaModel<{
|
|
9
9
|
name: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
contactEmail: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
15
15
|
isOptional: true;
|
|
16
16
|
};
|
|
17
17
|
phone: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
19
19
|
isOptional: true;
|
|
20
20
|
};
|
|
21
21
|
orgId: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
ownerId: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
metadata: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema449.FieldType<unknown, unknown>;
|
|
31
31
|
isOptional: true;
|
|
32
32
|
};
|
|
33
|
-
}>,
|
|
33
|
+
}>, _lssm_lib_schema449.SchemaModel<{
|
|
34
34
|
id: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
name: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
contactEmail: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
44
44
|
isOptional: true;
|
|
45
45
|
};
|
|
46
46
|
phone: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
48
48
|
isOptional: true;
|
|
49
49
|
};
|
|
50
50
|
orgId: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
ownerId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema449.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
createdAt: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema449.FieldType<Date, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
}>, undefined>;
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema241 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/client/client.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Client profile.
|
|
6
6
|
*/
|
|
7
|
-
declare const ClientModel:
|
|
7
|
+
declare const ClientModel: _lssm_lib_schema241.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
name: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
contactEmail: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
phone: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
orgId: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
ownerId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
createdAt: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema241.FieldType<Date, string>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
}>;
|
|
37
37
|
/**
|
|
38
38
|
* Input for creating a client.
|
|
39
39
|
*/
|
|
40
|
-
declare const CreateClientInputModel:
|
|
40
|
+
declare const CreateClientInputModel: _lssm_lib_schema241.SchemaModel<{
|
|
41
41
|
name: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
contactEmail: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
47
47
|
isOptional: true;
|
|
48
48
|
};
|
|
49
49
|
phone: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
51
51
|
isOptional: true;
|
|
52
52
|
};
|
|
53
53
|
orgId: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
55
55
|
isOptional: false;
|
|
56
56
|
};
|
|
57
57
|
ownerId: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema241.FieldType<string, string>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
};
|
|
61
61
|
metadata: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema241.FieldType<unknown, unknown>;
|
|
63
63
|
isOptional: true;
|
|
64
64
|
};
|
|
65
65
|
}>;
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -1,166 +1,166 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema87 from "@lssm/lib.schema";
|
|
2
2
|
import { ModuleSchemaContribution } from "@lssm/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/entities/index.d.ts
|
|
5
|
-
declare const QuoteStatusEnum:
|
|
6
|
-
declare const JobStatusEnum:
|
|
7
|
-
declare const InvoiceStatusEnum:
|
|
8
|
-
declare const PaymentMethodEnum:
|
|
9
|
-
declare const ClientEntity:
|
|
10
|
-
id:
|
|
11
|
-
name:
|
|
12
|
-
contactEmail:
|
|
13
|
-
phone:
|
|
14
|
-
address:
|
|
15
|
-
industry:
|
|
16
|
-
orgId:
|
|
17
|
-
ownerId:
|
|
18
|
-
metadata:
|
|
19
|
-
createdAt:
|
|
20
|
-
updatedAt:
|
|
21
|
-
quotes:
|
|
22
|
-
jobs:
|
|
5
|
+
declare const QuoteStatusEnum: _lssm_lib_schema87.EntityEnumDef;
|
|
6
|
+
declare const JobStatusEnum: _lssm_lib_schema87.EntityEnumDef;
|
|
7
|
+
declare const InvoiceStatusEnum: _lssm_lib_schema87.EntityEnumDef;
|
|
8
|
+
declare const PaymentMethodEnum: _lssm_lib_schema87.EntityEnumDef;
|
|
9
|
+
declare const ClientEntity: _lssm_lib_schema87.EntitySpec<{
|
|
10
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
11
|
+
name: _lssm_lib_schema87.EntityScalarField;
|
|
12
|
+
contactEmail: _lssm_lib_schema87.EntityScalarField;
|
|
13
|
+
phone: _lssm_lib_schema87.EntityScalarField;
|
|
14
|
+
address: _lssm_lib_schema87.EntityScalarField;
|
|
15
|
+
industry: _lssm_lib_schema87.EntityScalarField;
|
|
16
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
17
|
+
ownerId: _lssm_lib_schema87.EntityScalarField;
|
|
18
|
+
metadata: _lssm_lib_schema87.EntityScalarField;
|
|
19
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
20
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
21
|
+
quotes: _lssm_lib_schema87.EntityRelationField;
|
|
22
|
+
jobs: _lssm_lib_schema87.EntityRelationField;
|
|
23
23
|
}>;
|
|
24
|
-
declare const QuoteEntity:
|
|
25
|
-
id:
|
|
26
|
-
clientId:
|
|
27
|
-
title:
|
|
28
|
-
description:
|
|
29
|
-
amount:
|
|
30
|
-
currency:
|
|
31
|
-
status:
|
|
32
|
-
validUntil:
|
|
33
|
-
terms:
|
|
34
|
-
orgId:
|
|
35
|
-
ownerId:
|
|
36
|
-
createdAt:
|
|
37
|
-
updatedAt:
|
|
38
|
-
client:
|
|
39
|
-
jobs:
|
|
24
|
+
declare const QuoteEntity: _lssm_lib_schema87.EntitySpec<{
|
|
25
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
26
|
+
clientId: _lssm_lib_schema87.EntityScalarField;
|
|
27
|
+
title: _lssm_lib_schema87.EntityScalarField;
|
|
28
|
+
description: _lssm_lib_schema87.EntityScalarField;
|
|
29
|
+
amount: _lssm_lib_schema87.EntityScalarField;
|
|
30
|
+
currency: _lssm_lib_schema87.EntityScalarField;
|
|
31
|
+
status: _lssm_lib_schema87.EntityEnumField;
|
|
32
|
+
validUntil: _lssm_lib_schema87.EntityScalarField;
|
|
33
|
+
terms: _lssm_lib_schema87.EntityScalarField;
|
|
34
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
35
|
+
ownerId: _lssm_lib_schema87.EntityScalarField;
|
|
36
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
37
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
38
|
+
client: _lssm_lib_schema87.EntityRelationField;
|
|
39
|
+
jobs: _lssm_lib_schema87.EntityRelationField;
|
|
40
40
|
}>;
|
|
41
|
-
declare const JobEntity:
|
|
42
|
-
id:
|
|
43
|
-
quoteId:
|
|
44
|
-
clientId:
|
|
45
|
-
title:
|
|
46
|
-
status:
|
|
47
|
-
scheduledAt:
|
|
48
|
-
completedAt:
|
|
49
|
-
assignedTo:
|
|
50
|
-
location:
|
|
51
|
-
notes:
|
|
52
|
-
orgId:
|
|
53
|
-
createdAt:
|
|
54
|
-
updatedAt:
|
|
55
|
-
quote:
|
|
56
|
-
client:
|
|
57
|
-
invoices:
|
|
41
|
+
declare const JobEntity: _lssm_lib_schema87.EntitySpec<{
|
|
42
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
43
|
+
quoteId: _lssm_lib_schema87.EntityScalarField;
|
|
44
|
+
clientId: _lssm_lib_schema87.EntityScalarField;
|
|
45
|
+
title: _lssm_lib_schema87.EntityScalarField;
|
|
46
|
+
status: _lssm_lib_schema87.EntityEnumField;
|
|
47
|
+
scheduledAt: _lssm_lib_schema87.EntityScalarField;
|
|
48
|
+
completedAt: _lssm_lib_schema87.EntityScalarField;
|
|
49
|
+
assignedTo: _lssm_lib_schema87.EntityScalarField;
|
|
50
|
+
location: _lssm_lib_schema87.EntityScalarField;
|
|
51
|
+
notes: _lssm_lib_schema87.EntityScalarField;
|
|
52
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
53
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
54
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
55
|
+
quote: _lssm_lib_schema87.EntityRelationField;
|
|
56
|
+
client: _lssm_lib_schema87.EntityRelationField;
|
|
57
|
+
invoices: _lssm_lib_schema87.EntityRelationField;
|
|
58
58
|
}>;
|
|
59
|
-
declare const InvoiceEntity:
|
|
60
|
-
id:
|
|
61
|
-
jobId:
|
|
62
|
-
invoiceNumber:
|
|
63
|
-
amount:
|
|
64
|
-
currency:
|
|
65
|
-
status:
|
|
66
|
-
dueDate:
|
|
67
|
-
issuedAt:
|
|
68
|
-
paidAt:
|
|
69
|
-
orgId:
|
|
70
|
-
notes:
|
|
71
|
-
metadata:
|
|
72
|
-
createdAt:
|
|
73
|
-
updatedAt:
|
|
74
|
-
job:
|
|
75
|
-
payments:
|
|
59
|
+
declare const InvoiceEntity: _lssm_lib_schema87.EntitySpec<{
|
|
60
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
61
|
+
jobId: _lssm_lib_schema87.EntityScalarField;
|
|
62
|
+
invoiceNumber: _lssm_lib_schema87.EntityScalarField;
|
|
63
|
+
amount: _lssm_lib_schema87.EntityScalarField;
|
|
64
|
+
currency: _lssm_lib_schema87.EntityScalarField;
|
|
65
|
+
status: _lssm_lib_schema87.EntityEnumField;
|
|
66
|
+
dueDate: _lssm_lib_schema87.EntityScalarField;
|
|
67
|
+
issuedAt: _lssm_lib_schema87.EntityScalarField;
|
|
68
|
+
paidAt: _lssm_lib_schema87.EntityScalarField;
|
|
69
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
70
|
+
notes: _lssm_lib_schema87.EntityScalarField;
|
|
71
|
+
metadata: _lssm_lib_schema87.EntityScalarField;
|
|
72
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
73
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
74
|
+
job: _lssm_lib_schema87.EntityRelationField;
|
|
75
|
+
payments: _lssm_lib_schema87.EntityRelationField;
|
|
76
76
|
}>;
|
|
77
|
-
declare const PaymentEntity:
|
|
78
|
-
id:
|
|
79
|
-
invoiceId:
|
|
80
|
-
amount:
|
|
81
|
-
currency:
|
|
82
|
-
method:
|
|
83
|
-
reference:
|
|
84
|
-
receivedAt:
|
|
85
|
-
orgId:
|
|
86
|
-
createdAt:
|
|
87
|
-
invoice:
|
|
77
|
+
declare const PaymentEntity: _lssm_lib_schema87.EntitySpec<{
|
|
78
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
79
|
+
invoiceId: _lssm_lib_schema87.EntityScalarField;
|
|
80
|
+
amount: _lssm_lib_schema87.EntityScalarField;
|
|
81
|
+
currency: _lssm_lib_schema87.EntityScalarField;
|
|
82
|
+
method: _lssm_lib_schema87.EntityEnumField;
|
|
83
|
+
reference: _lssm_lib_schema87.EntityScalarField;
|
|
84
|
+
receivedAt: _lssm_lib_schema87.EntityScalarField;
|
|
85
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
86
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
87
|
+
invoice: _lssm_lib_schema87.EntityRelationField;
|
|
88
88
|
}>;
|
|
89
|
-
declare const serviceBusinessEntities: (
|
|
90
|
-
id:
|
|
91
|
-
name:
|
|
92
|
-
contactEmail:
|
|
93
|
-
phone:
|
|
94
|
-
address:
|
|
95
|
-
industry:
|
|
96
|
-
orgId:
|
|
97
|
-
ownerId:
|
|
98
|
-
metadata:
|
|
99
|
-
createdAt:
|
|
100
|
-
updatedAt:
|
|
101
|
-
quotes:
|
|
102
|
-
jobs:
|
|
103
|
-
}> |
|
|
104
|
-
id:
|
|
105
|
-
clientId:
|
|
106
|
-
title:
|
|
107
|
-
description:
|
|
108
|
-
amount:
|
|
109
|
-
currency:
|
|
110
|
-
status:
|
|
111
|
-
validUntil:
|
|
112
|
-
terms:
|
|
113
|
-
orgId:
|
|
114
|
-
ownerId:
|
|
115
|
-
createdAt:
|
|
116
|
-
updatedAt:
|
|
117
|
-
client:
|
|
118
|
-
jobs:
|
|
119
|
-
}> |
|
|
120
|
-
id:
|
|
121
|
-
quoteId:
|
|
122
|
-
clientId:
|
|
123
|
-
title:
|
|
124
|
-
status:
|
|
125
|
-
scheduledAt:
|
|
126
|
-
completedAt:
|
|
127
|
-
assignedTo:
|
|
128
|
-
location:
|
|
129
|
-
notes:
|
|
130
|
-
orgId:
|
|
131
|
-
createdAt:
|
|
132
|
-
updatedAt:
|
|
133
|
-
quote:
|
|
134
|
-
client:
|
|
135
|
-
invoices:
|
|
136
|
-
}> |
|
|
137
|
-
id:
|
|
138
|
-
jobId:
|
|
139
|
-
invoiceNumber:
|
|
140
|
-
amount:
|
|
141
|
-
currency:
|
|
142
|
-
status:
|
|
143
|
-
dueDate:
|
|
144
|
-
issuedAt:
|
|
145
|
-
paidAt:
|
|
146
|
-
orgId:
|
|
147
|
-
notes:
|
|
148
|
-
metadata:
|
|
149
|
-
createdAt:
|
|
150
|
-
updatedAt:
|
|
151
|
-
job:
|
|
152
|
-
payments:
|
|
153
|
-
}> |
|
|
154
|
-
id:
|
|
155
|
-
invoiceId:
|
|
156
|
-
amount:
|
|
157
|
-
currency:
|
|
158
|
-
method:
|
|
159
|
-
reference:
|
|
160
|
-
receivedAt:
|
|
161
|
-
orgId:
|
|
162
|
-
createdAt:
|
|
163
|
-
invoice:
|
|
89
|
+
declare const serviceBusinessEntities: (_lssm_lib_schema87.EntitySpec<{
|
|
90
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
91
|
+
name: _lssm_lib_schema87.EntityScalarField;
|
|
92
|
+
contactEmail: _lssm_lib_schema87.EntityScalarField;
|
|
93
|
+
phone: _lssm_lib_schema87.EntityScalarField;
|
|
94
|
+
address: _lssm_lib_schema87.EntityScalarField;
|
|
95
|
+
industry: _lssm_lib_schema87.EntityScalarField;
|
|
96
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
97
|
+
ownerId: _lssm_lib_schema87.EntityScalarField;
|
|
98
|
+
metadata: _lssm_lib_schema87.EntityScalarField;
|
|
99
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
100
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
101
|
+
quotes: _lssm_lib_schema87.EntityRelationField;
|
|
102
|
+
jobs: _lssm_lib_schema87.EntityRelationField;
|
|
103
|
+
}> | _lssm_lib_schema87.EntitySpec<{
|
|
104
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
105
|
+
clientId: _lssm_lib_schema87.EntityScalarField;
|
|
106
|
+
title: _lssm_lib_schema87.EntityScalarField;
|
|
107
|
+
description: _lssm_lib_schema87.EntityScalarField;
|
|
108
|
+
amount: _lssm_lib_schema87.EntityScalarField;
|
|
109
|
+
currency: _lssm_lib_schema87.EntityScalarField;
|
|
110
|
+
status: _lssm_lib_schema87.EntityEnumField;
|
|
111
|
+
validUntil: _lssm_lib_schema87.EntityScalarField;
|
|
112
|
+
terms: _lssm_lib_schema87.EntityScalarField;
|
|
113
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
114
|
+
ownerId: _lssm_lib_schema87.EntityScalarField;
|
|
115
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
116
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
117
|
+
client: _lssm_lib_schema87.EntityRelationField;
|
|
118
|
+
jobs: _lssm_lib_schema87.EntityRelationField;
|
|
119
|
+
}> | _lssm_lib_schema87.EntitySpec<{
|
|
120
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
121
|
+
quoteId: _lssm_lib_schema87.EntityScalarField;
|
|
122
|
+
clientId: _lssm_lib_schema87.EntityScalarField;
|
|
123
|
+
title: _lssm_lib_schema87.EntityScalarField;
|
|
124
|
+
status: _lssm_lib_schema87.EntityEnumField;
|
|
125
|
+
scheduledAt: _lssm_lib_schema87.EntityScalarField;
|
|
126
|
+
completedAt: _lssm_lib_schema87.EntityScalarField;
|
|
127
|
+
assignedTo: _lssm_lib_schema87.EntityScalarField;
|
|
128
|
+
location: _lssm_lib_schema87.EntityScalarField;
|
|
129
|
+
notes: _lssm_lib_schema87.EntityScalarField;
|
|
130
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
131
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
132
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
133
|
+
quote: _lssm_lib_schema87.EntityRelationField;
|
|
134
|
+
client: _lssm_lib_schema87.EntityRelationField;
|
|
135
|
+
invoices: _lssm_lib_schema87.EntityRelationField;
|
|
136
|
+
}> | _lssm_lib_schema87.EntitySpec<{
|
|
137
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
138
|
+
jobId: _lssm_lib_schema87.EntityScalarField;
|
|
139
|
+
invoiceNumber: _lssm_lib_schema87.EntityScalarField;
|
|
140
|
+
amount: _lssm_lib_schema87.EntityScalarField;
|
|
141
|
+
currency: _lssm_lib_schema87.EntityScalarField;
|
|
142
|
+
status: _lssm_lib_schema87.EntityEnumField;
|
|
143
|
+
dueDate: _lssm_lib_schema87.EntityScalarField;
|
|
144
|
+
issuedAt: _lssm_lib_schema87.EntityScalarField;
|
|
145
|
+
paidAt: _lssm_lib_schema87.EntityScalarField;
|
|
146
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
147
|
+
notes: _lssm_lib_schema87.EntityScalarField;
|
|
148
|
+
metadata: _lssm_lib_schema87.EntityScalarField;
|
|
149
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
150
|
+
updatedAt: _lssm_lib_schema87.EntityScalarField;
|
|
151
|
+
job: _lssm_lib_schema87.EntityRelationField;
|
|
152
|
+
payments: _lssm_lib_schema87.EntityRelationField;
|
|
153
|
+
}> | _lssm_lib_schema87.EntitySpec<{
|
|
154
|
+
id: _lssm_lib_schema87.EntityScalarField;
|
|
155
|
+
invoiceId: _lssm_lib_schema87.EntityScalarField;
|
|
156
|
+
amount: _lssm_lib_schema87.EntityScalarField;
|
|
157
|
+
currency: _lssm_lib_schema87.EntityScalarField;
|
|
158
|
+
method: _lssm_lib_schema87.EntityEnumField;
|
|
159
|
+
reference: _lssm_lib_schema87.EntityScalarField;
|
|
160
|
+
receivedAt: _lssm_lib_schema87.EntityScalarField;
|
|
161
|
+
orgId: _lssm_lib_schema87.EntityScalarField;
|
|
162
|
+
createdAt: _lssm_lib_schema87.EntityScalarField;
|
|
163
|
+
invoice: _lssm_lib_schema87.EntityRelationField;
|
|
164
164
|
}>)[];
|
|
165
165
|
declare const serviceBusinessSchemaContribution: ModuleSchemaContribution;
|
|
166
166
|
//#endregion
|