@kanda-libs/ks-schema 1.0.123 → 1.0.125
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/components/schemas/Company.d.ts +10 -0
- package/dist/components/schemas/Company.d.ts.map +1 -1
- package/dist/components/schemas/Company.js +2 -0
- package/dist/components/schemas/Entity.d.ts +28 -2
- package/dist/components/schemas/Entity.d.ts.map +1 -1
- package/dist/components/schemas/Event.d.ts +28 -2
- package/dist/components/schemas/Event.d.ts.map +1 -1
- package/dist/components/schemas/Identity.d.ts +5 -4
- package/dist/components/schemas/Identity.d.ts.map +1 -1
- package/dist/components/schemas/Identity.js +12 -8
- package/dist/components/schemas/Job.d.ts +23 -2
- package/dist/components/schemas/Job.d.ts.map +1 -1
- package/dist/components/schemas/Job.js +3 -0
- package/dist/components/schemas/SatNote.d.ts +5 -2
- package/dist/components/schemas/SatNote.d.ts.map +1 -1
- package/dist/components/schemas/SatNote.js +37 -29
- package/dist/components/schemas/SolarCompanyInfo.d.ts +17 -0
- package/dist/components/schemas/SolarCompanyInfo.d.ts.map +1 -0
- package/dist/components/schemas/SolarCompanyInfo.js +46 -0
- package/dist/components/schemas/index.d.ts +1 -0
- package/dist/components/schemas/index.d.ts.map +1 -1
- package/dist/components/schemas/index.js +1 -0
- package/dist/operations/applyJob.d.ts +20 -2
- package/dist/operations/applyJob.d.ts.map +1 -1
- package/dist/operations/approveCompany.d.ts +8 -0
- package/dist/operations/approveCompany.d.ts.map +1 -1
- package/dist/operations/approveJobSatNote.d.ts +20 -2
- package/dist/operations/approveJobSatNote.d.ts.map +1 -1
- package/dist/operations/archiveJob.d.ts +20 -2
- package/dist/operations/archiveJob.d.ts.map +1 -1
- package/dist/operations/completeJob.d.ts +20 -2
- package/dist/operations/completeJob.d.ts.map +1 -1
- package/dist/operations/declineCompany.d.ts +8 -0
- package/dist/operations/declineCompany.d.ts.map +1 -1
- package/dist/operations/deleteCompany.d.ts +8 -0
- package/dist/operations/deleteCompany.d.ts.map +1 -1
- package/dist/operations/deleteJob.d.ts +20 -2
- package/dist/operations/deleteJob.d.ts.map +1 -1
- package/dist/operations/directorCompany.d.ts +8 -0
- package/dist/operations/directorCompany.d.ts.map +1 -1
- package/dist/operations/getCompanies.d.ts +8 -0
- package/dist/operations/getCompanies.d.ts.map +1 -1
- package/dist/operations/getCompany.d.ts +8 -0
- package/dist/operations/getCompany.d.ts.map +1 -1
- package/dist/operations/getJob.d.ts +20 -2
- package/dist/operations/getJob.d.ts.map +1 -1
- package/dist/operations/getJobs.d.ts +20 -2
- package/dist/operations/getJobs.d.ts.map +1 -1
- package/dist/operations/index.d.ts +344 -28
- package/dist/operations/index.d.ts.map +1 -1
- package/dist/operations/payJob.d.ts +20 -2
- package/dist/operations/payJob.d.ts.map +1 -1
- package/dist/operations/payoutJob.d.ts +20 -2
- package/dist/operations/payoutJob.d.ts.map +1 -1
- package/dist/operations/postCompany.d.ts +8 -0
- package/dist/operations/postCompany.d.ts.map +1 -1
- package/dist/operations/postJob.d.ts +20 -2
- package/dist/operations/postJob.d.ts.map +1 -1
- package/dist/operations/putCompany.d.ts +8 -0
- package/dist/operations/putCompany.d.ts.map +1 -1
- package/dist/operations/putJob.d.ts +20 -2
- package/dist/operations/putJob.d.ts.map +1 -1
- package/dist/operations/sendJob.d.ts +20 -2
- package/dist/operations/sendJob.d.ts.map +1 -1
- package/dist/operations/signJobSateNote.d.ts +20 -2
- package/dist/operations/signJobSateNote.d.ts.map +1 -1
- package/dist/operations/viewJobSatNote.d.ts +20 -2
- package/dist/operations/viewJobSatNote.d.ts.map +1 -1
- package/dist/schema.json +1 -1
- package/dist/widget/index.d.ts +5259 -4813
- package/dist/widget/index.d.ts.map +1 -1
- package/dist/widget/index.js +14189 -13597
- package/package.json +1 -1
- package/schema.yaml +58 -1
package/package.json
CHANGED
package/schema.yaml
CHANGED
|
@@ -2272,6 +2272,10 @@ components:
|
|
|
2272
2272
|
type: object
|
|
2273
2273
|
$ref: "#/components/schemas/CompanyInfo"
|
|
2274
2274
|
title: company info
|
|
2275
|
+
solar_company_info:
|
|
2276
|
+
type: object
|
|
2277
|
+
$ref: "#/components/schemas/SolarCompanyInfo"
|
|
2278
|
+
title: solar company info
|
|
2275
2279
|
company_type:
|
|
2276
2280
|
type: string
|
|
2277
2281
|
enum:
|
|
@@ -2358,6 +2362,43 @@ components:
|
|
|
2358
2362
|
title: metadata
|
|
2359
2363
|
readOnly: true
|
|
2360
2364
|
|
|
2365
|
+
SolarCompanyInfo:
|
|
2366
|
+
type: object
|
|
2367
|
+
required:
|
|
2368
|
+
- epvs_registration_number
|
|
2369
|
+
- solar_trade_association
|
|
2370
|
+
- solar_trade_association_number
|
|
2371
|
+
- electrical_trade_association
|
|
2372
|
+
properties:
|
|
2373
|
+
epvs_registration_number:
|
|
2374
|
+
type: string
|
|
2375
|
+
title: EPVS registration number
|
|
2376
|
+
minLength: 1
|
|
2377
|
+
solar_trade_association:
|
|
2378
|
+
type: string
|
|
2379
|
+
enum:
|
|
2380
|
+
- "msc"
|
|
2381
|
+
- "heis"
|
|
2382
|
+
- "rec"
|
|
2383
|
+
title: solar trade association
|
|
2384
|
+
x-kanda-form-widget: Select
|
|
2385
|
+
solar_trade_association_number:
|
|
2386
|
+
type: string
|
|
2387
|
+
title: solar trade association number
|
|
2388
|
+
minLength: 1
|
|
2389
|
+
electrical_trade_association:
|
|
2390
|
+
type: string
|
|
2391
|
+
enum:
|
|
2392
|
+
- "niceic"
|
|
2393
|
+
- "napit"
|
|
2394
|
+
- "none"
|
|
2395
|
+
title: electrical trade association
|
|
2396
|
+
x-kanda-form-widget: Select
|
|
2397
|
+
electrical_trade_association_number:
|
|
2398
|
+
type: string
|
|
2399
|
+
title: electrical trade association number
|
|
2400
|
+
minLength: 1
|
|
2401
|
+
|
|
2361
2402
|
CompanyInfo:
|
|
2362
2403
|
type: object
|
|
2363
2404
|
required:
|
|
@@ -2618,7 +2659,6 @@ components:
|
|
|
2618
2659
|
- last_name
|
|
2619
2660
|
- email
|
|
2620
2661
|
- mobile
|
|
2621
|
-
- date_of_birth
|
|
2622
2662
|
- home_address
|
|
2623
2663
|
properties:
|
|
2624
2664
|
first_name:
|
|
@@ -2896,6 +2936,17 @@ components:
|
|
|
2896
2936
|
title: customer satisfaction note
|
|
2897
2937
|
$ref: "#/components/schemas/SatNote"
|
|
2898
2938
|
readOnly: true
|
|
2939
|
+
job_type:
|
|
2940
|
+
type: string
|
|
2941
|
+
title: job type
|
|
2942
|
+
enum:
|
|
2943
|
+
- standard
|
|
2944
|
+
- solar
|
|
2945
|
+
job_documents:
|
|
2946
|
+
type: array
|
|
2947
|
+
title: job documents
|
|
2948
|
+
items:
|
|
2949
|
+
$ref: "#/components/schemas/Document"
|
|
2899
2950
|
metadata:
|
|
2900
2951
|
type: object
|
|
2901
2952
|
$ref: "#/components/schemas/Metadata"
|
|
@@ -2994,6 +3045,12 @@ components:
|
|
|
2994
3045
|
- "They helped me work out my potential repayments"
|
|
2995
3046
|
- "They completed the application for me"
|
|
2996
3047
|
x-kanda-form-widget: Select
|
|
3048
|
+
q_saving:
|
|
3049
|
+
type: string
|
|
3050
|
+
title: Were you told about any potential feed in tariffs, savings, returns or Renewable Heat incentive and do you understand that the actual amounts you receive, and your estimated returns/savings were based on varying factors including you own energy consumption and any returns/savings/payback periods are not linked to your repayments on this agreement.
|
|
3051
|
+
enum:
|
|
3052
|
+
- "Yes I understand"
|
|
3053
|
+
- "No I don't understand"
|
|
2997
3054
|
signature:
|
|
2998
3055
|
type: object
|
|
2999
3056
|
title: sat note customer signature
|