@kanda-libs/ks-schema 1.0.90 → 1.0.92

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.
@@ -93,7 +93,7 @@ export declare const payJobOperation: {
93
93
  notes: import("io-ts").ArrayC<import("io-ts").StringC>;
94
94
  archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
95
95
  status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
96
- finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"paid">]>;
96
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
97
97
  checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
98
98
  finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
99
99
  customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -0,0 +1,192 @@
1
+ import type { RequestFunction } from "@openapi-io-ts/runtime";
2
+ import * as schemas from "../components/schemas";
3
+ export declare type PayoutJobRequestParameters = {
4
+ id: string;
5
+ };
6
+ export declare const payoutJobOperation: {
7
+ readonly path: "/api/job/{id}/payout";
8
+ readonly method: "post";
9
+ readonly responses: {
10
+ readonly "200": {
11
+ readonly _tag: "JsonResponse";
12
+ readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
13
+ title: import("io-ts").StringC;
14
+ deposit_type: import("io-ts").UnionC<[import("io-ts").LiteralC<"no_deposit">, import("io-ts").LiteralC<"partial_deposit">, import("io-ts").LiteralC<"fixed_deposit">]>;
15
+ deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
16
+ amount: import("io-ts").NumberC;
17
+ }>, import("io-ts").PartialC<{
18
+ currency: import("io-ts").LiteralC<"GBP">;
19
+ }>]>;
20
+ job_items: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
21
+ title: import("io-ts").StringC;
22
+ quantity: import("io-ts").NumberC;
23
+ price: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
24
+ amount: import("io-ts").NumberC;
25
+ }>, import("io-ts").PartialC<{
26
+ currency: import("io-ts").LiteralC<"GBP">;
27
+ }>]>;
28
+ vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
29
+ amount: import("io-ts").NumberC;
30
+ }>, import("io-ts").PartialC<{
31
+ currency: import("io-ts").LiteralC<"GBP">;
32
+ }>]>;
33
+ }>, import("io-ts").PartialC<{
34
+ description: import("io-ts").StringC;
35
+ vat_rate: import("io-ts").UnionC<[import("io-ts").LiteralC<"vat_not_set">, import("io-ts").LiteralC<"exempted">, import("io-ts").LiteralC<"0%">, import("io-ts").LiteralC<"5%">, import("io-ts").LiteralC<"20%">, import("io-ts").LiteralC<"custom">]>;
36
+ quote_document: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
37
+ name: import("io-ts").StringC;
38
+ }>, import("io-ts").PartialC<{
39
+ id: import("io-ts").StringC;
40
+ cid: import("io-ts").StringC;
41
+ oid: import("io-ts").StringC;
42
+ content: import("io-ts").StringC;
43
+ mimetype: import("io-ts").StringC;
44
+ metadata: import("io-ts").TypeC<{
45
+ liveness: import("io-ts").BooleanC;
46
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
47
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
48
+ }>;
49
+ }>]>;
50
+ style: import("io-ts").UnionC<[import("io-ts").LiteralC<"kanda">, import("io-ts").LiteralC<"custom">]>;
51
+ }>]>>;
52
+ }>, import("io-ts").PartialC<{
53
+ id: import("io-ts").StringC;
54
+ cid: import("io-ts").StringC;
55
+ oid: import("io-ts").StringC;
56
+ description: import("io-ts").StringC;
57
+ customer: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
58
+ first_name: import("io-ts").StringC;
59
+ last_name: import("io-ts").StringC;
60
+ email: import("io-ts").StringC;
61
+ phone: import("io-ts").StringC;
62
+ }>, import("io-ts").PartialC<{
63
+ address: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
64
+ line_1: import("io-ts").StringC;
65
+ city: import("io-ts").StringC;
66
+ country: import("io-ts").StringC;
67
+ postcode: import("io-ts").StringC;
68
+ }>, import("io-ts").PartialC<{
69
+ building_number: import("io-ts").StringC;
70
+ building_name: import("io-ts").StringC;
71
+ line_2: import("io-ts").StringC;
72
+ county: import("io-ts").StringC;
73
+ months_at_address: import("io-ts").NumberC;
74
+ }>]>;
75
+ }>]>;
76
+ total: import("io-ts").PartialC<{
77
+ amount_vat_inclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
78
+ amount: import("io-ts").NumberC;
79
+ }>, import("io-ts").PartialC<{
80
+ currency: import("io-ts").LiteralC<"GBP">;
81
+ }>]>;
82
+ amount_vat_exclusive: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
83
+ amount: import("io-ts").NumberC;
84
+ }>, import("io-ts").PartialC<{
85
+ currency: import("io-ts").LiteralC<"GBP">;
86
+ }>]>;
87
+ amount_vat: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
88
+ amount: import("io-ts").NumberC;
89
+ }>, import("io-ts").PartialC<{
90
+ currency: import("io-ts").LiteralC<"GBP">;
91
+ }>]>;
92
+ }>;
93
+ notes: import("io-ts").ArrayC<import("io-ts").StringC>;
94
+ archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
95
+ status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
96
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
97
+ checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
98
+ finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
99
+ customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
100
+ checkout_option: import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>;
101
+ finance_option: import("io-ts").StringC;
102
+ }>, import("io-ts").PartialC<{
103
+ deposit_value: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
104
+ amount: import("io-ts").NumberC;
105
+ }>, import("io-ts").PartialC<{
106
+ currency: import("io-ts").LiteralC<"GBP">;
107
+ }>]>;
108
+ }>]>;
109
+ payments: import("io-ts").ArrayC<import("io-ts").IntersectionC<[import("io-ts").TypeC<{
110
+ payment_option: import("io-ts").TypeC<{
111
+ payment_method: import("io-ts").UnionC<[import("io-ts").LiteralC<"cash">, import("io-ts").LiteralC<"card">, import("io-ts").LiteralC<"loan">]>;
112
+ amount: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
113
+ amount: import("io-ts").NumberC;
114
+ }>, import("io-ts").PartialC<{
115
+ currency: import("io-ts").LiteralC<"GBP">;
116
+ }>]>;
117
+ }>;
118
+ }>, import("io-ts").PartialC<{
119
+ id: import("io-ts").StringC;
120
+ cid: import("io-ts").StringC;
121
+ oid: import("io-ts").StringC;
122
+ kid: import("io-ts").StringC;
123
+ kind: import("io-ts").UnionC<[import("io-ts").LiteralC<"job">, import("io-ts").LiteralC<"charge">]>;
124
+ xid: import("io-ts").StringC;
125
+ xref: import("io-ts").StringC;
126
+ status: import("io-ts").UnionC<[import("io-ts").LiteralC<"unpaid">, import("io-ts").LiteralC<"pending">, import("io-ts").LiteralC<"paid">, import("io-ts").LiteralC<"disputed">, import("io-ts").LiteralC<"cancelled">, import("io-ts").LiteralC<"refunded">]>;
127
+ metadata: import("io-ts").TypeC<{
128
+ liveness: import("io-ts").BooleanC;
129
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
130
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
131
+ }>;
132
+ }>]>>;
133
+ sat_note_timeline: import("io-ts").PartialC<{
134
+ sent_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
135
+ viewed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
136
+ signed_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
137
+ }>;
138
+ sat_note: import("io-ts").TypeC<{
139
+ q_pressure: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
140
+ q_easiness: import("io-ts").UnionC<[import("io-ts").LiteralC<"no">, import("io-ts").LiteralC<"somewhat">, import("io-ts").LiteralC<"yes">]>;
141
+ q_availability: import("io-ts").UnionC<[import("io-ts").LiteralC<"The installer told me when quoting me">, import("io-ts").LiteralC<"I saw it advertised by the installer">, import("io-ts").LiteralC<"I found out when the installer sent me a link via Kanda">]>;
142
+ q_application: import("io-ts").UnionC<[import("io-ts").LiteralC<"I completed the application myself">, import("io-ts").LiteralC<"Someone completed the appliation on my behalf">]>;
143
+ q_advice: import("io-ts").UnionC<[import("io-ts").LiteralC<"They just sent me a link to apply">, import("io-ts").LiteralC<"They told me what rates where available">, import("io-ts").LiteralC<"They helped me work out my potential repayments">, import("io-ts").LiteralC<"They completed the application for me">]>;
144
+ signature: import("io-ts").TypeC<{
145
+ signed: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
146
+ fingerprint: import("io-ts").StringC;
147
+ }>;
148
+ certificate: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
149
+ name: import("io-ts").StringC;
150
+ }>, import("io-ts").PartialC<{
151
+ id: import("io-ts").StringC;
152
+ cid: import("io-ts").StringC;
153
+ oid: import("io-ts").StringC;
154
+ content: import("io-ts").StringC;
155
+ mimetype: import("io-ts").StringC;
156
+ metadata: import("io-ts").TypeC<{
157
+ liveness: import("io-ts").BooleanC;
158
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
159
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
160
+ }>;
161
+ }>]>;
162
+ }>;
163
+ metadata: import("io-ts").TypeC<{
164
+ liveness: import("io-ts").BooleanC;
165
+ created_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
166
+ updated_at: import("io-ts-types/lib/DateFromISOString").DateFromISOStringC;
167
+ }>;
168
+ }>]>;
169
+ };
170
+ readonly default: {
171
+ readonly _tag: "JsonResponse";
172
+ readonly decoder: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
173
+ message: import("io-ts").StringC;
174
+ }>, import("io-ts").PartialC<{
175
+ code: import("io-ts").NumberC;
176
+ }>]>;
177
+ };
178
+ };
179
+ readonly parameters: readonly [{
180
+ readonly _tag: "FormParameter";
181
+ readonly explode: false;
182
+ readonly in: "path";
183
+ readonly name: "id";
184
+ }];
185
+ readonly requestDefaultHeaders: {
186
+ readonly Accept: "application/json";
187
+ };
188
+ };
189
+ export declare type PayoutJobRequestFunction = RequestFunction<{
190
+ params: PayoutJobRequestParameters;
191
+ }, schemas.Job>;
192
+ //# sourceMappingURL=payoutJob.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"payoutJob.d.ts","sourceRoot":"","sources":["../../frontend/generated/operations/payoutJob.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AAEjD,oBAAY,0BAA0B,GAAG;IACvC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,eAAe,CACpD;IAAE,MAAM,EAAE,0BAA0B,CAAA;CAAE,EACtC,OAAO,CAAC,GAAG,CACZ,CAAC"}
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.payoutJobOperation = void 0;
27
+ const schemas = __importStar(require("../components/schemas"));
28
+ exports.payoutJobOperation = {
29
+ path: "/api/job/{id}/payout",
30
+ method: "post",
31
+ responses: {
32
+ "200": { _tag: "JsonResponse", decoder: schemas.Job },
33
+ default: { _tag: "JsonResponse", decoder: schemas.Error },
34
+ },
35
+ parameters: [
36
+ {
37
+ _tag: "FormParameter",
38
+ explode: false,
39
+ in: "path",
40
+ name: "id",
41
+ },
42
+ ],
43
+ requestDefaultHeaders: { Accept: "application/json" },
44
+ };
@@ -90,7 +90,7 @@ export declare const postJobOperation: {
90
90
  notes: import("io-ts").ArrayC<import("io-ts").StringC>;
91
91
  archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
92
92
  status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
93
- finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"paid">]>;
93
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
94
94
  checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
95
95
  finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
96
96
  customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -93,7 +93,7 @@ export declare const putJobOperation: {
93
93
  notes: import("io-ts").ArrayC<import("io-ts").StringC>;
94
94
  archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
95
95
  status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
96
- finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"paid">]>;
96
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
97
97
  checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
98
98
  finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
99
99
  customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -93,7 +93,7 @@ export declare const sendJobOperation: {
93
93
  notes: import("io-ts").ArrayC<import("io-ts").StringC>;
94
94
  archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
95
95
  status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
96
- finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"paid">]>;
96
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
97
97
  checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
98
98
  finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
99
99
  customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -93,7 +93,7 @@ export declare const signJobSateNoteOperation: {
93
93
  notes: import("io-ts").ArrayC<import("io-ts").StringC>;
94
94
  archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
95
95
  status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
96
- finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"paid">]>;
96
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
97
97
  checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
98
98
  finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
99
99
  customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{
@@ -93,7 +93,7 @@ export declare const viewJobSatNoteOperation: {
93
93
  notes: import("io-ts").ArrayC<import("io-ts").StringC>;
94
94
  archived: import("io-ts").UnionC<[import("io-ts").LiteralC<"yes">, import("io-ts").LiteralC<"no">]>;
95
95
  status: import("io-ts").UnionC<[import("io-ts").LiteralC<"draft">, import("io-ts").LiteralC<"sent">, import("io-ts").LiteralC<"accepted">, import("io-ts").LiteralC<"declined">, import("io-ts").LiteralC<"finished">]>;
96
- finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"paid">]>;
96
+ finance_status: import("io-ts").UnionC<[import("io-ts").LiteralC<"not_applied">, import("io-ts").LiteralC<"under_review">, import("io-ts").LiteralC<"applied_for_finance">, import("io-ts").LiteralC<"finance_not_approved">, import("io-ts").LiteralC<"financed">, import("io-ts").LiteralC<"sat_note_sent">, import("io-ts").LiteralC<"sat_note_viewed">, import("io-ts").LiteralC<"sat_note_signed">, import("io-ts").LiteralC<"payout_pending">, import("io-ts").LiteralC<"paid">]>;
97
97
  checkout_options: import("io-ts").ArrayC<import("io-ts").UnionC<[import("io-ts").LiteralC<"apply_for_finance">, import("io-ts").LiteralC<"decline_job">, import("io-ts").LiteralC<"pay_on_completion">]>>;
98
98
  finance_options: import("io-ts").ArrayC<import("io-ts").StringC>;
99
99
  customer_options: import("io-ts").IntersectionC<[import("io-ts").TypeC<{