@gizone/rrs-client 4.2.8-alpha.477 → 4.2.9-alpha.20251216150512
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/.openapi-generator/FILES +38 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +4 -5
- package/api.ts +2 -0
- package/apis/access-api.ts +464 -378
- package/apis/app-auth-api.ts +118 -366
- package/apis/auth-api.ts +200 -696
- package/apis/calendar-api.ts +64 -64
- package/apis/cas-api.ts +9 -9
- package/apis/common-api.ts +415 -374
- package/apis/dashboard-api.ts +432 -161
- package/apis/device-api.ts +118 -27
- package/apis/disaster-warning-standard-api.ts +94 -94
- package/apis/energy-cost-controller-api.ts +769 -0
- package/apis/energy-cost-record-controller-api.ts +898 -0
- package/apis/equipment-api.ts +222 -222
- package/apis/excel-language-controller-api.ts +16 -16
- package/apis/hwork-api.ts +11 -11
- package/apis/inspection-standard-api.ts +111 -111
- package/apis/internal-api.ts +9 -9
- package/apis/jwt-api.ts +10 -10
- package/apis/maintenance-standard-api.ts +111 -111
- package/apis/message-api.ts +43 -43
- package/apis/notification-api.ts +63 -63
- package/apis/offline-alert-work-order-controller-api.ts +10 -10
- package/apis/open-api-api.ts +68 -68
- package/apis/park-api.ts +75 -75
- package/apis/privacy-api.ts +48 -48
- package/apis/role-api.ts +169 -169
- package/apis/setting-api.ts +250 -250
- package/apis/smsapi.ts +11 -11
- package/apis/space-api.ts +165 -165
- package/apis/supplier-api.ts +104 -104
- package/apis/surveillance-api.ts +325 -120
- package/apis/surveillance-settings-api.ts +80 -80
- package/apis/sys-api.ts +397 -397
- package/apis/test-api.ts +23 -23
- package/apis/user-api.ts +302 -302
- package/apis/web-hook-api.ts +27 -27
- package/apis/work-order-api.ts +634 -508
- package/base.ts +3 -3
- package/common.ts +1 -1
- package/configuration.ts +1 -7
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/apis/access-api.d.ts +279 -231
- package/dist/apis/access-api.js +280 -242
- package/dist/apis/app-auth-api.d.ts +76 -176
- package/dist/apis/app-auth-api.js +75 -307
- package/dist/apis/auth-api.d.ts +132 -332
- package/dist/apis/auth-api.js +130 -594
- package/dist/apis/calendar-api.d.ts +40 -40
- package/dist/apis/calendar-api.js +40 -40
- package/dist/apis/cas-api.d.ts +7 -7
- package/dist/apis/cas-api.js +5 -5
- package/dist/apis/common-api.d.ts +269 -245
- package/dist/apis/common-api.js +266 -249
- package/dist/apis/dashboard-api.d.ts +241 -101
- package/dist/apis/dashboard-api.js +310 -100
- package/dist/apis/device-api.d.ts +65 -18
- package/dist/apis/device-api.js +85 -15
- package/dist/apis/disaster-warning-standard-api.d.ts +58 -58
- package/dist/apis/disaster-warning-standard-api.js +60 -60
- package/dist/apis/energy-cost-controller-api.d.ts +418 -0
- package/dist/apis/energy-cost-controller-api.js +595 -0
- package/dist/apis/energy-cost-record-controller-api.d.ts +488 -0
- package/dist/apis/energy-cost-record-controller-api.js +674 -0
- package/dist/apis/equipment-api.d.ts +138 -138
- package/dist/apis/equipment-api.js +140 -140
- package/dist/apis/excel-language-controller-api.d.ts +10 -10
- package/dist/apis/excel-language-controller-api.js +10 -10
- package/dist/apis/hwork-api.d.ts +8 -8
- package/dist/apis/hwork-api.js +5 -5
- package/dist/apis/inspection-standard-api.d.ts +69 -69
- package/dist/apis/inspection-standard-api.js +70 -70
- package/dist/apis/internal-api.d.ts +6 -6
- package/dist/apis/internal-api.js +5 -5
- package/dist/apis/jwt-api.d.ts +7 -7
- package/dist/apis/jwt-api.js +5 -5
- package/dist/apis/maintenance-standard-api.d.ts +69 -69
- package/dist/apis/maintenance-standard-api.js +70 -70
- package/dist/apis/message-api.d.ts +28 -28
- package/dist/apis/message-api.js +25 -25
- package/dist/apis/notification-api.d.ts +43 -43
- package/dist/apis/notification-api.js +40 -40
- package/dist/apis/offline-alert-work-order-controller-api.d.ts +7 -7
- package/dist/apis/offline-alert-work-order-controller-api.js +5 -5
- package/dist/apis/open-api-api.d.ts +44 -44
- package/dist/apis/open-api-api.js +40 -40
- package/dist/apis/park-api.d.ts +45 -45
- package/dist/apis/park-api.js +50 -50
- package/dist/apis/privacy-api.d.ts +30 -30
- package/dist/apis/privacy-api.js +30 -30
- package/dist/apis/role-api.d.ts +111 -111
- package/dist/apis/role-api.js +115 -115
- package/dist/apis/setting-api.d.ts +154 -154
- package/dist/apis/setting-api.js +160 -160
- package/dist/apis/smsapi.d.ts +8 -8
- package/dist/apis/smsapi.js +5 -5
- package/dist/apis/space-api.d.ts +102 -102
- package/dist/apis/space-api.js +105 -105
- package/dist/apis/supplier-api.d.ts +65 -65
- package/dist/apis/supplier-api.js +65 -65
- package/dist/apis/surveillance-api.d.ts +193 -75
- package/dist/apis/surveillance-api.js +189 -75
- package/dist/apis/surveillance-settings-api.d.ts +50 -50
- package/dist/apis/surveillance-settings-api.js +50 -50
- package/dist/apis/sys-api.d.ts +255 -255
- package/dist/apis/sys-api.js +275 -275
- package/dist/apis/test-api.d.ts +14 -14
- package/dist/apis/test-api.js +15 -15
- package/dist/apis/user-api.d.ts +196 -196
- package/dist/apis/user-api.js +200 -200
- package/dist/apis/web-hook-api.d.ts +18 -18
- package/dist/apis/web-hook-api.js +15 -15
- package/dist/apis/work-order-api.d.ts +386 -316
- package/dist/apis/work-order-api.js +407 -323
- package/dist/base.d.ts +2 -2
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -2
- package/dist/configuration.js +1 -2
- package/dist/esm/api.d.ts +2 -0
- package/dist/esm/api.js +2 -0
- package/dist/esm/apis/access-api.d.ts +279 -231
- package/dist/esm/apis/access-api.js +280 -242
- package/dist/esm/apis/app-auth-api.d.ts +76 -176
- package/dist/esm/apis/app-auth-api.js +75 -307
- package/dist/esm/apis/auth-api.d.ts +132 -332
- package/dist/esm/apis/auth-api.js +130 -594
- package/dist/esm/apis/calendar-api.d.ts +40 -40
- package/dist/esm/apis/calendar-api.js +40 -40
- package/dist/esm/apis/cas-api.d.ts +7 -7
- package/dist/esm/apis/cas-api.js +5 -5
- package/dist/esm/apis/common-api.d.ts +269 -245
- package/dist/esm/apis/common-api.js +266 -249
- package/dist/esm/apis/dashboard-api.d.ts +241 -101
- package/dist/esm/apis/dashboard-api.js +310 -100
- package/dist/esm/apis/device-api.d.ts +65 -18
- package/dist/esm/apis/device-api.js +85 -15
- package/dist/esm/apis/disaster-warning-standard-api.d.ts +58 -58
- package/dist/esm/apis/disaster-warning-standard-api.js +60 -60
- package/dist/esm/apis/energy-cost-controller-api.d.ts +418 -0
- package/dist/esm/apis/energy-cost-controller-api.js +588 -0
- package/dist/esm/apis/energy-cost-record-controller-api.d.ts +488 -0
- package/dist/esm/apis/energy-cost-record-controller-api.js +667 -0
- package/dist/esm/apis/equipment-api.d.ts +138 -138
- package/dist/esm/apis/equipment-api.js +140 -140
- package/dist/esm/apis/excel-language-controller-api.d.ts +10 -10
- package/dist/esm/apis/excel-language-controller-api.js +10 -10
- package/dist/esm/apis/hwork-api.d.ts +8 -8
- package/dist/esm/apis/hwork-api.js +5 -5
- package/dist/esm/apis/inspection-standard-api.d.ts +69 -69
- package/dist/esm/apis/inspection-standard-api.js +70 -70
- package/dist/esm/apis/internal-api.d.ts +6 -6
- package/dist/esm/apis/internal-api.js +5 -5
- package/dist/esm/apis/jwt-api.d.ts +7 -7
- package/dist/esm/apis/jwt-api.js +5 -5
- package/dist/esm/apis/maintenance-standard-api.d.ts +69 -69
- package/dist/esm/apis/maintenance-standard-api.js +70 -70
- package/dist/esm/apis/message-api.d.ts +28 -28
- package/dist/esm/apis/message-api.js +25 -25
- package/dist/esm/apis/notification-api.d.ts +43 -43
- package/dist/esm/apis/notification-api.js +40 -40
- package/dist/esm/apis/offline-alert-work-order-controller-api.d.ts +7 -7
- package/dist/esm/apis/offline-alert-work-order-controller-api.js +5 -5
- package/dist/esm/apis/open-api-api.d.ts +44 -44
- package/dist/esm/apis/open-api-api.js +40 -40
- package/dist/esm/apis/park-api.d.ts +45 -45
- package/dist/esm/apis/park-api.js +50 -50
- package/dist/esm/apis/privacy-api.d.ts +30 -30
- package/dist/esm/apis/privacy-api.js +30 -30
- package/dist/esm/apis/role-api.d.ts +111 -111
- package/dist/esm/apis/role-api.js +115 -115
- package/dist/esm/apis/setting-api.d.ts +154 -154
- package/dist/esm/apis/setting-api.js +160 -160
- package/dist/esm/apis/smsapi.d.ts +8 -8
- package/dist/esm/apis/smsapi.js +5 -5
- package/dist/esm/apis/space-api.d.ts +102 -102
- package/dist/esm/apis/space-api.js +105 -105
- package/dist/esm/apis/supplier-api.d.ts +65 -65
- package/dist/esm/apis/supplier-api.js +65 -65
- package/dist/esm/apis/surveillance-api.d.ts +193 -75
- package/dist/esm/apis/surveillance-api.js +189 -75
- package/dist/esm/apis/surveillance-settings-api.d.ts +50 -50
- package/dist/esm/apis/surveillance-settings-api.js +50 -50
- package/dist/esm/apis/sys-api.d.ts +255 -255
- package/dist/esm/apis/sys-api.js +275 -275
- package/dist/esm/apis/test-api.d.ts +14 -14
- package/dist/esm/apis/test-api.js +15 -15
- package/dist/esm/apis/user-api.d.ts +196 -196
- package/dist/esm/apis/user-api.js +200 -200
- package/dist/esm/apis/web-hook-api.d.ts +18 -18
- package/dist/esm/apis/web-hook-api.js +15 -15
- package/dist/esm/apis/work-order-api.d.ts +386 -316
- package/dist/esm/apis/work-order-api.js +407 -323
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -2
- package/dist/esm/configuration.js +1 -2
- package/dist/esm/models/access-abnormal-type-enum.d.ts +2 -2
- package/dist/esm/models/access-abnormal-type-enum.js +2 -2
- package/dist/esm/models/access-appointment-record-add-vo.d.ts +15 -8
- package/dist/esm/models/access-appointment-record-details-dto.d.ts +18 -11
- package/dist/esm/models/access-appointment-record-process-approval-user-dto.d.ts +1 -1
- package/dist/esm/models/access-appointment-record-process-details-dto.d.ts +12 -6
- package/dist/esm/models/access-approval-config-vo.d.ts +2 -2
- package/dist/esm/models/access-blacklist-add-vo.d.ts +6 -0
- package/dist/esm/models/access-blacklist-details-dto.d.ts +6 -0
- package/dist/esm/models/access-blacklist-update-vo.d.ts +6 -0
- package/dist/esm/models/access-company-config-entity.d.ts +1 -1
- package/dist/esm/models/access-config-entity.d.ts +7 -1
- package/dist/esm/models/access-config-vo.d.ts +7 -1
- package/dist/esm/models/access-record-details-dto.d.ts +9 -9
- package/dist/esm/models/access-record-summary-details-dto.d.ts +14 -8
- package/dist/esm/models/access-record-summary-list-dto.d.ts +13 -7
- package/dist/esm/models/access-vehicle-length-enum.d.ts +6 -6
- package/dist/esm/models/access-vehicle-length-enum.js +6 -6
- package/dist/esm/models/access-visitor-person-type-config-vo.d.ts +3 -3
- package/dist/esm/models/access-whitelist-application-add-vo.d.ts +4 -4
- package/dist/esm/models/access-whitelist-application-batch-import-template-dto.d.ts +9 -3
- package/dist/esm/models/access-whitelist-application-details-dto.d.ts +6 -6
- package/dist/esm/models/access-whitelist-application-process-details-dto.d.ts +12 -6
- package/dist/esm/models/access-whitelist-application-update-vo.d.ts +1 -1
- package/dist/esm/models/app-login-wx-chat-dto.d.ts +1 -1
- package/dist/esm/models/area-park-dto.d.ts +1 -1
- package/dist/esm/models/base-error-result.d.ts +1 -1
- package/dist/esm/models/calendar-entity.d.ts +1 -1
- package/dist/esm/models/center-list-dto.d.ts +1 -1
- package/dist/esm/models/cuser-info.d.ts +1 -1
- package/dist/esm/models/dashboard-access-search-dto.d.ts +15 -3
- package/dist/esm/models/dashboard-access-source-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-base-search-dto.d.ts +12 -0
- package/dist/esm/models/dashboard-equipment-park-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-equipment-search-dto.d.ts +12 -0
- package/dist/esm/models/dashboard-equipment-system-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-park-statistics-vo.d.ts +36 -0
- package/dist/esm/models/dashboard-surveillance-functional-area-group-stats-vo.d.ts +7 -1
- package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.d.ts +18 -0
- package/dist/esm/models/dashboard-surveillance-search-dto.d.ts +13 -1
- package/dist/esm/models/dashboard-work-order-by-park-search-dto.d.ts +17 -11
- package/dist/esm/models/dashboard-work-order-by-work-order-type-search-dto.d.ts +14 -8
- package/dist/esm/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.d.ts +19 -1
- package/dist/esm/models/dashboard-work-order-issue-type-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-work-order-list-search-dto.d.ts +22 -16
- package/dist/esm/models/dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dept-relation-dto.d.ts +2 -2
- package/dist/esm/models/dept-relation.d.ts +2 -2
- package/dist/esm/models/disaster-warning-standard-add-or-update-vo.d.ts +1 -1
- package/dist/esm/models/disaster-warning-standard-entity.d.ts +1 -1
- package/dist/esm/models/disaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/emission-standard-enum.d.ts +22 -0
- package/dist/esm/models/emission-standard-enum.js +23 -0
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +167 -0
- package/dist/esm/models/energy-cost-add-record-dto.js +36 -0
- package/dist/esm/models/energy-cost-add-setting-dto.d.ts +25 -0
- package/dist/esm/models/energy-cost-add-setting-dto.js +14 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting-item.d.ts +43 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting-item.js +19 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting.d.ts +42 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting.js +17 -0
- package/dist/esm/models/energy-cost-edit-record-dto.d.ts +173 -0
- package/dist/esm/models/energy-cost-edit-record-dto.js +36 -0
- package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
- package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.js +23 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +107 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.js +17 -0
- package/dist/esm/models/energy-cost-record-bill-info-vo.d.ts +48 -0
- package/dist/esm/models/energy-cost-record-bill-info-vo.js +14 -0
- package/dist/esm/models/energy-cost-record-info-not-emun-vo.d.ts +205 -0
- package/dist/esm/models/energy-cost-record-info-not-emun-vo.js +14 -0
- package/dist/esm/models/energy-cost-record-info-vo.d.ts +232 -0
- package/dist/esm/models/energy-cost-record-info-vo.js +36 -0
- package/dist/esm/models/energy-cost-scenarios-info-not-enum-vo.d.ts +120 -0
- package/dist/esm/models/energy-cost-scenarios-info-not-enum-vo.js +14 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +142 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.js +32 -0
- package/dist/esm/models/energy-cost-setting-delete-dto.d.ts +41 -0
- package/dist/esm/models/energy-cost-setting-delete-dto.js +17 -0
- package/dist/esm/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
- package/dist/esm/models/energy-cost-setting-summy-add-dto.js +17 -0
- package/dist/esm/models/energy-cost-setting-summy-update-dto.d.ts +30 -0
- package/dist/esm/models/energy-cost-setting-summy-update-dto.js +14 -0
- package/dist/esm/models/energy-cost-update-setting-dto.d.ts +43 -0
- package/dist/esm/models/energy-cost-update-setting-dto.js +19 -0
- package/dist/esm/models/equipment-add-redis-list-dto.d.ts +1 -1
- package/dist/esm/models/equipment-detail-dto.d.ts +2 -2
- package/dist/esm/models/equipment-edit-batch-vo.d.ts +1 -1
- package/dist/esm/models/equipment-edit-vo.d.ts +2 -2
- package/dist/esm/models/equipment-search-system-dto.d.ts +3 -3
- package/dist/esm/models/equipment-search-vo.d.ts +1 -1
- package/dist/esm/models/equipment-status-stats-vo.d.ts +1 -1
- package/dist/esm/models/equipment-tree-details-dto.d.ts +2 -2
- package/dist/esm/models/equipment-tree-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtocalendar-export-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtoequipment-excel-add-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtosurveillance-settings-export-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +1 -1
- package/dist/esm/models/exploration-work-order-add-vo.d.ts +3 -3
- package/dist/esm/models/exploration-work-order-details-dto.d.ts +9 -9
- package/dist/esm/models/exploration-work-order-info.d.ts +2 -2
- package/dist/esm/models/followup-work-order-dto.d.ts +1 -1
- package/dist/esm/models/group-dept-vo.d.ts +1 -1
- package/dist/esm/models/index.d.ts +36 -1
- package/dist/esm/models/index.js +36 -1
- package/dist/esm/models/inspection-handle-req.d.ts +1 -1
- package/dist/esm/models/inspection-point-item.d.ts +1 -1
- package/dist/esm/models/inspection-point.d.ts +13 -1
- package/dist/esm/models/inspection-point.js +5 -1
- package/dist/esm/models/inspection-standard-add-or-update-vo.d.ts +4 -4
- package/dist/esm/models/inspection-standard-dto.d.ts +4 -4
- package/dist/esm/models/inspection-standard-entity.d.ts +5 -5
- package/dist/esm/models/inspection-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/insurance-work-order-issue-vo.d.ts +1 -1
- package/dist/esm/models/insurance-work-order-vo.d.ts +1 -1
- package/dist/esm/models/iot-device-unit-delete-dto.d.ts +42 -0
- package/dist/esm/models/iot-device-unit-delete-dto.js +14 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.js +14 -0
- package/dist/esm/models/item.d.ts +77 -0
- package/dist/esm/models/item.js +28 -0
- package/dist/esm/models/json-result-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-access-blacklist-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-access-company-config-entity.d.ts +2 -2
- package/dist/esm/models/json-result-access-config-entity.d.ts +2 -2
- package/dist/esm/models/json-result-access-record-summary-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-admission-terms-record-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-applet-user-type-dto.d.ts +2 -2
- package/dist/esm/models/json-result-big-decimal.d.ts +1 -1
- package/dist/esm/models/json-result-boolean.d.ts +1 -1
- package/dist/esm/models/json-result-calendar-entity.d.ts +2 -2
- package/dist/esm/models/json-result-dashboard-park-statistics-vo.d.ts +62 -0
- package/dist/esm/models/json-result-dashboard-park-statistics-vo.js +14 -0
- package/dist/esm/models/json-result-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
- package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.js +14 -0
- package/dist/esm/models/json-result-energy-cost-record-info-not-emun-vo.d.ts +62 -0
- package/dist/esm/models/json-result-energy-cost-record-info-not-emun-vo.js +14 -0
- package/dist/esm/models/{json-result-work-order-spot-check-dto.d.ts → json-result-energy-cost-record-info-vo.d.ts} +13 -13
- package/dist/esm/models/json-result-energy-cost-record-info-vo.js +14 -0
- package/dist/esm/models/json-result-equipment-add-redis-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-equipment-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-equipment-search-system-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtoequipment-excel-add-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtosurveillance-settings-export-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +2 -2
- package/dist/esm/models/json-result-exploration-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-file-dto.d.ts +2 -2
- package/dist/esm/models/json-result-group-dept-vo.d.ts +2 -2
- package/dist/esm/models/json-result-inspection-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-integer.d.ts +1 -1
- package/dist/esm/models/json-result-ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/esm/models/json-result-ipage-energy-cost-record-info-vo.js +14 -0
- package/dist/esm/models/json-result-json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-access-appointment-record-process-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-access-company-config-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-access-whitelist-application-process-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-address-region-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-applet-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-area-park-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-calendar-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-center-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-access-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-access-source-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-equipment-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-equipment-system-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-series-stats-base-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-work-order-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +14 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-vo.js +14 -0
- package/dist/esm/models/json-result-list-equipment-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-equipment-qr-code-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-equipment-system-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-equipment-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-inspection-point.d.ts +2 -2
- package/dist/esm/models/json-result-list-inspection-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-maintenance-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-park-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-plan-calendar-list-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-plan-calendar-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-image-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-point-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-qr-code-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-url-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-srm-center-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-supplier-select-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-surveillance-settings-coverage-standard-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-sys-dept-drop-down-box-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-sys-dept.d.ts +2 -2
- package/dist/esm/models/json-result-list-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-circulation-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-comment-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-inspection-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-push-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-spot-check-dto.d.ts +62 -0
- package/dist/esm/models/json-result-list-work-order-spot-check-dto.js +14 -0
- package/dist/esm/models/json-result-list-work-order-step-by-step-push-user-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-maintenance-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-map-string-object.d.ts +63 -0
- package/dist/esm/models/json-result-map-string-object.js +14 -0
- package/dist/esm/models/json-result-monitoring-coverage-alert-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-network-monitor-repair-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-notice-entity.d.ts +2 -2
- package/dist/esm/models/json-result-offline-alert-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-blacklist-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-record-summary-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-admission-terms-record-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-equipment-search-system-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-inspection-standard-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-maintenance-standard-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-plan-search-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-supplier-contract-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-surveillance-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-sys-user-msg-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-work-order-group-equipment-dto.d.ts +62 -0
- package/dist/esm/models/json-result-page-dto-work-order-group-equipment-dto.js +14 -0
- package/dist/esm/models/json-result-page-dto-work-order-search-dto.d.ts +2 -2
- package/dist/esm/models/json-result-park-info-dto.d.ts +2 -2
- package/dist/esm/models/json-result-park-settings-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-period-detail-resp.d.ts +2 -2
- package/dist/esm/models/json-result-plan-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-space-add-redis-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-space-image-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-srm-center-entity.d.ts +2 -2
- package/dist/esm/models/json-result-string.d.ts +1 -1
- package/dist/esm/models/json-result-supplier-contract-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-supplier-entity.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-count-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-live-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-settings-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/esm/models/json-result-switch-park-v2-dto.d.ts +2 -2
- package/dist/esm/models/json-result-sys-dept.d.ts +2 -2
- package/dist/esm/models/json-result-sys-user-msg-dto.d.ts +2 -2
- package/dist/esm/models/json-result-sys-user.d.ts +2 -2
- package/dist/esm/models/json-result-user-add-redis-list-vo.d.ts +2 -2
- package/dist/esm/models/json-result-user-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-violation-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-void.d.ts +1 -1
- package/dist/esm/models/json-result-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-work-order-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result.d.ts +1 -1
- package/dist/esm/models/maintenance-history-dto.d.ts +20 -1
- package/dist/esm/models/maintenance-standard-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/maintenance-standard-dto.d.ts +2 -2
- package/dist/esm/models/maintenance-standard-entity.d.ts +3 -3
- package/dist/esm/models/monitoring-coverage-alert-info.d.ts +13 -1
- package/dist/esm/models/monitoring-coverage-alert-process-vo.d.ts +1 -1
- package/dist/esm/models/monitoring-coverage-alert-reason-enum.d.ts +2 -0
- package/dist/esm/models/monitoring-coverage-alert-reason-enum.js +3 -1
- package/dist/esm/models/monitoring-coverage-alert-work-order-details-dto.d.ts +7 -7
- package/dist/esm/models/network-monitor-repair-add-vo.d.ts +3 -3
- package/dist/esm/models/network-monitor-repair-details-dto.d.ts +14 -14
- package/dist/esm/models/news-info.d.ts +1 -1
- package/dist/esm/models/offline-alert-submit-vo.d.ts +1 -1
- package/dist/esm/models/offline-alert-work-order-details-dto.d.ts +10 -10
- package/dist/esm/models/offline-alert-work-order-info.d.ts +2 -2
- package/dist/esm/models/offline-alert-work-order-vo.d.ts +1 -1
- package/dist/esm/models/open-api-access-appointment-record-add-vo.d.ts +14 -7
- package/dist/esm/models/open-api-access-appointment-record-delete-vo.d.ts +1 -1
- package/dist/esm/models/open-api-equipment-list-dto.d.ts +2 -2
- package/dist/esm/models/page-dto-access-appointment-record-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-access-blacklist-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-access-record-summary-list-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-access-whitelist-application-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-admission-terms-record-list-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-disaster-warning-standard-entity.d.ts +1 -1
- package/dist/esm/models/page-dto-equipment-search-system-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-inspection-standard-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-maintenance-standard-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-open-api-equipment-list-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-plan-search-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-supplier-contract-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-surveillance-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-sys-user-msg-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-work-order-group-equipment-dto.d.ts +31 -0
- package/dist/esm/models/page-dto-work-order-group-equipment-dto.js +14 -0
- package/dist/esm/models/page-dto-work-order-search-dto.d.ts +1 -1
- package/dist/esm/models/park-info-dto.d.ts +7 -1
- package/dist/esm/models/park-info-edit-vo.d.ts +7 -1
- package/dist/esm/models/park-list-dto.d.ts +13 -0
- package/dist/esm/models/park.d.ts +1 -1
- package/dist/esm/models/period-detail-resp.d.ts +12 -12
- package/dist/esm/models/period-detail-resp.js +5 -5
- package/dist/esm/models/plan-add-vo.d.ts +9 -9
- package/dist/esm/models/plan-add-vo.js +5 -5
- package/dist/esm/models/plan-calendar-list-vo.d.ts +5 -5
- package/dist/esm/models/plan-calendar-list-vo.js +5 -5
- package/dist/esm/models/plan-detail-dto.d.ts +9 -9
- package/dist/esm/models/plan-detail-dto.js +5 -5
- package/dist/esm/models/plan-edit-vo.d.ts +9 -9
- package/dist/esm/models/plan-edit-vo.js +5 -5
- package/dist/esm/models/plan-inspection-items-dto.d.ts +3 -3
- package/dist/esm/models/plan-item-add-vo.d.ts +2 -2
- package/dist/esm/models/plan-item-edit-vo.d.ts +2 -2
- package/dist/esm/models/plan-search-dto.d.ts +9 -9
- package/dist/esm/models/plan-search-dto.js +5 -5
- package/dist/esm/models/pricing-item.d.ts +50 -0
- package/dist/esm/models/pricing-item.js +20 -0
- package/dist/esm/models/process-work-order-vo.d.ts +1 -1
- package/dist/esm/models/safety-smart-fire-record-gizone-dto.d.ts +1 -1
- package/dist/esm/models/save-period-work-order-detail-req.d.ts +1 -1
- package/dist/esm/models/sms-captcha-vo.d.ts +1 -1
- package/dist/esm/models/source-work-order-dto.d.ts +1 -1
- package/dist/esm/models/source-work-order-inspection-dto.d.ts +1 -1
- package/dist/esm/models/space-add-excel-dto.d.ts +0 -6
- package/dist/esm/models/space-add-redis-list-dto.d.ts +1 -1
- package/dist/esm/models/space-add-vo.d.ts +2 -2
- package/dist/esm/models/space-detail-dto.d.ts +4 -4
- package/dist/esm/models/space-edit-vo.d.ts +2 -2
- package/dist/esm/models/space-image-detail-dto.d.ts +2 -2
- package/dist/esm/models/space-tree-dto.d.ts +3 -3
- package/dist/esm/models/space.d.ts +1 -1
- package/dist/esm/models/srm-center-entity.d.ts +1 -1
- package/dist/esm/models/srm-center-vo.d.ts +1 -1
- package/dist/esm/models/srm-level-add-dto.d.ts +1 -1
- package/dist/esm/models/sub-buttons.d.ts +1 -1
- package/dist/esm/models/supplier-add-vo.d.ts +2 -2
- package/dist/esm/models/supplier-edit-vo.d.ts +2 -2
- package/dist/esm/models/supplier-entity.d.ts +2 -2
- package/dist/esm/models/surveillance-batch-import-template-dto.d.ts +19 -7
- package/dist/esm/models/surveillance-details-dto.d.ts +13 -7
- package/dist/esm/models/surveillance-entity.d.ts +171 -0
- package/dist/esm/models/surveillance-entity.js +14 -0
- package/dist/esm/models/surveillance-settings-coverage-standard-dto.d.ts +1 -1
- package/dist/esm/models/surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/esm/models/surveillance-settings-polling-vo.d.ts +2 -2
- package/dist/esm/models/surveillance-update-vo.d.ts +8 -2
- package/dist/esm/models/switch-pak-body-v2-vo.d.ts +1 -1
- package/dist/esm/models/sync-equipment-status-vo.d.ts +1 -1
- package/dist/esm/models/sync-equipment-vo.d.ts +1 -1
- package/dist/esm/models/sys-user-info-dto.d.ts +3 -3
- package/dist/esm/models/sys-user-msg-dto.d.ts +2 -2
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/user-add-redis-list-vo.d.ts +1 -1
- package/dist/esm/models/user-roles-and-permissions-dto.d.ts +1 -1
- package/dist/esm/models/violation-decision-vo.d.ts +20 -2
- package/dist/esm/models/violation-issue-type-enum.d.ts +1 -0
- package/dist/esm/models/violation-issue-type-enum.js +2 -1
- package/dist/esm/models/violation-work-order-add-vo.d.ts +10 -4
- package/dist/esm/models/violation-work-order-details-dto.d.ts +12 -12
- package/dist/esm/models/violation-work-order-info.d.ts +22 -4
- package/dist/esm/models/work-order-add-vo.d.ts +3 -3
- package/dist/esm/models/work-order-circulation-settings-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/esm/models/work-order-circulation-vo.d.ts +1 -1
- package/dist/esm/models/work-order-decision-vo.d.ts +2 -2
- package/dist/esm/models/work-order-dept-settings-entity.d.ts +1 -1
- package/dist/esm/models/work-order-detail-dto.d.ts +14 -14
- package/dist/esm/models/work-order-ext-data.d.ts +5 -5
- package/dist/esm/models/work-order-group-equipment-dto.d.ts +167 -0
- package/dist/esm/models/work-order-group-equipment-dto.js +18 -0
- package/dist/esm/models/work-order-group-equipment-dtoinspection-item.d.ts +36 -0
- package/dist/esm/models/work-order-group-equipment-dtoinspection-item.js +14 -0
- package/dist/esm/models/work-order-handler-dto.d.ts +1 -1
- package/dist/esm/models/work-order-internal-status-enum.d.ts +1 -0
- package/dist/esm/models/work-order-internal-status-enum.js +1 -0
- package/dist/esm/models/work-order-issue-type-settings-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/work-order-msg-remind-config-info.d.ts +2 -2
- package/dist/esm/models/work-order-push-settings-entity.d.ts +1 -1
- package/dist/esm/models/work-order-push-settings-save-or-update-vo.d.ts +1 -1
- package/dist/esm/models/work-order-push-settings-vo.d.ts +1 -1
- package/dist/esm/models/work-order-report-vo.d.ts +3 -3
- package/dist/esm/models/work-order-search-dto.d.ts +7 -7
- package/dist/esm/models/work-order-spot-check-dto.d.ts +22 -22
- package/dist/esm/models/work-order-spot-check-dto.js +7 -7
- package/dist/esm/models/work-order-staging-data-vo.d.ts +1 -1
- package/dist/esm/models/work-order-submit-vo.d.ts +2 -2
- package/dist/esm/models/work-order-type-msg-remind-config-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/work-order-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/wx-ma-user-info.d.ts +1 -1
- package/dist/esm/models/wx-menu.d.ts +2 -2
- package/dist/esm/models/wx-mp-conditional-menu.d.ts +2 -2
- package/dist/esm/models/wx-mp-get-self-menu-info-result.d.ts +1 -1
- package/dist/esm/models/wx-mp-menu.d.ts +1 -1
- package/dist/esm/models/wx-mp-self-menu-button.d.ts +2 -2
- package/dist/esm/models/wx-mp-self-menu-info.d.ts +1 -1
- package/dist/models/access-abnormal-type-enum.d.ts +2 -2
- package/dist/models/access-abnormal-type-enum.js +2 -2
- package/dist/models/access-appointment-record-add-vo.d.ts +15 -8
- package/dist/models/access-appointment-record-details-dto.d.ts +18 -11
- package/dist/models/access-appointment-record-process-approval-user-dto.d.ts +1 -1
- package/dist/models/access-appointment-record-process-details-dto.d.ts +12 -6
- package/dist/models/access-approval-config-vo.d.ts +2 -2
- package/dist/models/access-blacklist-add-vo.d.ts +6 -0
- package/dist/models/access-blacklist-details-dto.d.ts +6 -0
- package/dist/models/access-blacklist-update-vo.d.ts +6 -0
- package/dist/models/access-company-config-entity.d.ts +1 -1
- package/dist/models/access-config-entity.d.ts +7 -1
- package/dist/models/access-config-vo.d.ts +7 -1
- package/dist/models/access-record-details-dto.d.ts +9 -9
- package/dist/models/access-record-summary-details-dto.d.ts +14 -8
- package/dist/models/access-record-summary-list-dto.d.ts +13 -7
- package/dist/models/access-vehicle-length-enum.d.ts +6 -6
- package/dist/models/access-vehicle-length-enum.js +6 -6
- package/dist/models/access-visitor-person-type-config-vo.d.ts +3 -3
- package/dist/models/access-whitelist-application-add-vo.d.ts +4 -4
- package/dist/models/access-whitelist-application-batch-import-template-dto.d.ts +9 -3
- package/dist/models/access-whitelist-application-details-dto.d.ts +6 -6
- package/dist/models/access-whitelist-application-process-details-dto.d.ts +12 -6
- package/dist/models/access-whitelist-application-update-vo.d.ts +1 -1
- package/dist/models/app-login-wx-chat-dto.d.ts +1 -1
- package/dist/models/area-park-dto.d.ts +1 -1
- package/dist/models/base-error-result.d.ts +1 -1
- package/dist/models/calendar-entity.d.ts +1 -1
- package/dist/models/center-list-dto.d.ts +1 -1
- package/dist/models/cuser-info.d.ts +1 -1
- package/dist/models/dashboard-access-search-dto.d.ts +15 -3
- package/dist/models/dashboard-access-source-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-base-search-dto.d.ts +12 -0
- package/dist/models/dashboard-equipment-park-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-equipment-search-dto.d.ts +12 -0
- package/dist/models/dashboard-equipment-system-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-park-statistics-vo.d.ts +36 -0
- package/dist/models/dashboard-surveillance-functional-area-group-stats-vo.d.ts +7 -1
- package/dist/models/dashboard-surveillance-park-group-stats-vo.d.ts +18 -0
- package/dist/models/dashboard-surveillance-search-dto.d.ts +13 -1
- package/dist/models/dashboard-work-order-by-park-search-dto.d.ts +17 -11
- package/dist/models/dashboard-work-order-by-work-order-type-search-dto.d.ts +14 -8
- package/dist/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.d.ts +19 -1
- package/dist/models/dashboard-work-order-issue-type-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-work-order-list-search-dto.d.ts +22 -16
- package/dist/models/dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +1 -1
- package/dist/models/dept-relation-dto.d.ts +2 -2
- package/dist/models/dept-relation.d.ts +2 -2
- package/dist/models/disaster-warning-standard-add-or-update-vo.d.ts +1 -1
- package/dist/models/disaster-warning-standard-entity.d.ts +1 -1
- package/dist/models/disaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/models/emission-standard-enum.d.ts +22 -0
- package/dist/models/emission-standard-enum.js +26 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +167 -0
- package/dist/models/energy-cost-add-record-dto.js +39 -0
- package/dist/models/energy-cost-add-setting-dto.d.ts +25 -0
- package/dist/models/energy-cost-add-setting-dto.js +15 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting-item.d.ts +43 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting-item.js +22 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting.d.ts +42 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting.js +20 -0
- package/dist/models/energy-cost-edit-record-dto.d.ts +173 -0
- package/dist/models/energy-cost-edit-record-dto.js +39 -0
- package/dist/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
- package/dist/models/energy-cost-month-setting-list-summary-standards-vo.js +26 -0
- package/dist/models/energy-cost-month-setting-list-vo.d.ts +107 -0
- package/dist/models/energy-cost-month-setting-list-vo.js +20 -0
- package/dist/models/energy-cost-record-bill-info-vo.d.ts +48 -0
- package/dist/models/energy-cost-record-bill-info-vo.js +15 -0
- package/dist/models/energy-cost-record-info-not-emun-vo.d.ts +205 -0
- package/dist/models/energy-cost-record-info-not-emun-vo.js +15 -0
- package/dist/models/energy-cost-record-info-vo.d.ts +232 -0
- package/dist/models/energy-cost-record-info-vo.js +39 -0
- package/dist/models/energy-cost-scenarios-info-not-enum-vo.d.ts +120 -0
- package/dist/models/energy-cost-scenarios-info-not-enum-vo.js +15 -0
- package/dist/models/energy-cost-scenarios-info-vo.d.ts +142 -0
- package/dist/models/energy-cost-scenarios-info-vo.js +35 -0
- package/dist/models/energy-cost-setting-delete-dto.d.ts +41 -0
- package/dist/models/energy-cost-setting-delete-dto.js +20 -0
- package/dist/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
- package/dist/models/energy-cost-setting-summy-add-dto.js +20 -0
- package/dist/models/energy-cost-setting-summy-update-dto.d.ts +30 -0
- package/dist/models/energy-cost-setting-summy-update-dto.js +15 -0
- package/dist/models/energy-cost-update-setting-dto.d.ts +43 -0
- package/dist/models/energy-cost-update-setting-dto.js +22 -0
- package/dist/models/equipment-add-redis-list-dto.d.ts +1 -1
- package/dist/models/equipment-detail-dto.d.ts +2 -2
- package/dist/models/equipment-edit-batch-vo.d.ts +1 -1
- package/dist/models/equipment-edit-vo.d.ts +2 -2
- package/dist/models/equipment-search-system-dto.d.ts +3 -3
- package/dist/models/equipment-search-vo.d.ts +1 -1
- package/dist/models/equipment-status-stats-vo.d.ts +1 -1
- package/dist/models/equipment-tree-details-dto.d.ts +2 -2
- package/dist/models/equipment-tree-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtocalendar-export-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtoequipment-excel-add-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtosurveillance-settings-export-dto.d.ts +1 -1
- package/dist/models/excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +1 -1
- package/dist/models/exploration-work-order-add-vo.d.ts +3 -3
- package/dist/models/exploration-work-order-details-dto.d.ts +9 -9
- package/dist/models/exploration-work-order-info.d.ts +2 -2
- package/dist/models/followup-work-order-dto.d.ts +1 -1
- package/dist/models/group-dept-vo.d.ts +1 -1
- package/dist/models/index.d.ts +36 -1
- package/dist/models/index.js +36 -1
- package/dist/models/inspection-handle-req.d.ts +1 -1
- package/dist/models/inspection-point-item.d.ts +1 -1
- package/dist/models/inspection-point.d.ts +13 -1
- package/dist/models/inspection-point.js +6 -0
- package/dist/models/inspection-standard-add-or-update-vo.d.ts +4 -4
- package/dist/models/inspection-standard-dto.d.ts +4 -4
- package/dist/models/inspection-standard-entity.d.ts +5 -5
- package/dist/models/inspection-standard-import-dto.d.ts +2 -2
- package/dist/models/insurance-work-order-issue-vo.d.ts +1 -1
- package/dist/models/insurance-work-order-vo.d.ts +1 -1
- package/dist/models/iot-device-unit-delete-dto.d.ts +42 -0
- package/dist/models/iot-device-unit-delete-dto.js +15 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/models/ipage-energy-cost-record-info-vo.js +15 -0
- package/dist/models/item.d.ts +77 -0
- package/dist/models/item.js +31 -0
- package/dist/models/json-result-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/models/json-result-access-blacklist-details-dto.d.ts +2 -2
- package/dist/models/json-result-access-company-config-entity.d.ts +2 -2
- package/dist/models/json-result-access-config-entity.d.ts +2 -2
- package/dist/models/json-result-access-record-summary-details-dto.d.ts +2 -2
- package/dist/models/json-result-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/models/json-result-admission-terms-record-details-dto.d.ts +2 -2
- package/dist/models/json-result-applet-user-type-dto.d.ts +2 -2
- package/dist/models/json-result-big-decimal.d.ts +1 -1
- package/dist/models/json-result-boolean.d.ts +1 -1
- package/dist/models/json-result-calendar-entity.d.ts +2 -2
- package/dist/models/json-result-dashboard-park-statistics-vo.d.ts +62 -0
- package/dist/models/json-result-dashboard-park-statistics-vo.js +15 -0
- package/dist/models/json-result-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
- package/dist/models/json-result-energy-cost-record-bill-info-vo.js +15 -0
- package/dist/models/json-result-energy-cost-record-info-not-emun-vo.d.ts +62 -0
- package/dist/models/json-result-energy-cost-record-info-not-emun-vo.js +15 -0
- package/dist/models/{json-result-work-order-spot-check-dto.d.ts → json-result-energy-cost-record-info-vo.d.ts} +13 -13
- package/dist/models/json-result-energy-cost-record-info-vo.js +15 -0
- package/dist/models/json-result-equipment-add-redis-list-dto.d.ts +2 -2
- package/dist/models/json-result-equipment-detail-dto.d.ts +2 -2
- package/dist/models/json-result-equipment-search-system-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtoequipment-excel-add-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtosurveillance-settings-export-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +2 -2
- package/dist/models/json-result-exploration-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-file-dto.d.ts +2 -2
- package/dist/models/json-result-group-dept-vo.d.ts +2 -2
- package/dist/models/json-result-inspection-standard-entity.d.ts +2 -2
- package/dist/models/json-result-integer.d.ts +1 -1
- package/dist/models/json-result-ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/models/json-result-ipage-energy-cost-record-info-vo.js +15 -0
- package/dist/models/json-result-json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-access-appointment-record-process-details-dto.d.ts +2 -2
- package/dist/models/json-result-list-access-company-config-entity.d.ts +2 -2
- package/dist/models/json-result-list-access-whitelist-application-process-details-dto.d.ts +2 -2
- package/dist/models/json-result-list-address-region-entity.d.ts +2 -2
- package/dist/models/json-result-list-applet-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-area-park-dto.d.ts +2 -2
- package/dist/models/json-result-list-calendar-entity.d.ts +2 -2
- package/dist/models/json-result-list-center-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-access-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-access-source-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-equipment-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-equipment-system-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-series-stats-base-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-work-order-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +15 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-vo.js +15 -0
- package/dist/models/json-result-list-equipment-detail-dto.d.ts +2 -2
- package/dist/models/json-result-list-equipment-qr-code-dto.d.ts +2 -2
- package/dist/models/json-result-list-equipment-system-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-equipment-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-inspection-point.d.ts +2 -2
- package/dist/models/json-result-list-inspection-standard-entity.d.ts +2 -2
- package/dist/models/json-result-list-maintenance-standard-entity.d.ts +2 -2
- package/dist/models/json-result-list-park-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-plan-calendar-list-vo.d.ts +2 -2
- package/dist/models/json-result-list-plan-calendar-vo.d.ts +2 -2
- package/dist/models/json-result-list-space-image-detail-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-point-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-qr-code-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-url-dto.d.ts +2 -2
- package/dist/models/json-result-list-srm-center-vo.d.ts +2 -2
- package/dist/models/json-result-list-supplier-select-dto.d.ts +2 -2
- package/dist/models/json-result-list-surveillance-settings-coverage-standard-dto.d.ts +2 -2
- package/dist/models/json-result-list-sys-dept-drop-down-box-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-sys-dept.d.ts +2 -2
- package/dist/models/json-result-list-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-circulation-vo.d.ts +2 -2
- package/dist/models/json-result-list-work-order-comment-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-inspection-detail-dto.d.ts +2 -2
- package/dist/models/json-result-list-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-push-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-spot-check-dto.d.ts +62 -0
- package/dist/models/json-result-list-work-order-spot-check-dto.js +15 -0
- package/dist/models/json-result-list-work-order-step-by-step-push-user-details-dto.d.ts +2 -2
- package/dist/models/json-result-list-work-order-type-settings-entity.d.ts +2 -2
- package/dist/models/json-result-maintenance-standard-entity.d.ts +2 -2
- package/dist/models/json-result-map-string-object.d.ts +63 -0
- package/dist/models/json-result-map-string-object.js +15 -0
- package/dist/models/json-result-monitoring-coverage-alert-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-network-monitor-repair-details-dto.d.ts +2 -2
- package/dist/models/json-result-notice-entity.d.ts +2 -2
- package/dist/models/json-result-offline-alert-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-blacklist-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-record-summary-list-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-admission-terms-record-list-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/models/json-result-page-dto-equipment-search-system-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-inspection-standard-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-maintenance-standard-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-plan-search-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-supplier-contract-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-surveillance-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-sys-user-msg-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-work-order-group-equipment-dto.d.ts +62 -0
- package/dist/models/json-result-page-dto-work-order-group-equipment-dto.js +15 -0
- package/dist/models/json-result-page-dto-work-order-search-dto.d.ts +2 -2
- package/dist/models/json-result-park-info-dto.d.ts +2 -2
- package/dist/models/json-result-park-settings-details-dto.d.ts +2 -2
- package/dist/models/json-result-period-detail-resp.d.ts +2 -2
- package/dist/models/json-result-plan-detail-dto.d.ts +2 -2
- package/dist/models/json-result-space-add-redis-list-dto.d.ts +2 -2
- package/dist/models/json-result-space-image-detail-dto.d.ts +2 -2
- package/dist/models/json-result-srm-center-entity.d.ts +2 -2
- package/dist/models/json-result-string.d.ts +1 -1
- package/dist/models/json-result-supplier-contract-details-dto.d.ts +2 -2
- package/dist/models/json-result-supplier-entity.d.ts +2 -2
- package/dist/models/json-result-surveillance-count-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-details-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-live-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-settings-details-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/models/json-result-switch-park-v2-dto.d.ts +2 -2
- package/dist/models/json-result-sys-dept.d.ts +2 -2
- package/dist/models/json-result-sys-user-msg-dto.d.ts +2 -2
- package/dist/models/json-result-sys-user.d.ts +2 -2
- package/dist/models/json-result-user-add-redis-list-vo.d.ts +2 -2
- package/dist/models/json-result-user-settings-entity.d.ts +2 -2
- package/dist/models/json-result-violation-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-void.d.ts +1 -1
- package/dist/models/json-result-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/models/json-result-work-order-detail-dto.d.ts +2 -2
- package/dist/models/json-result-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/models/json-result.d.ts +1 -1
- package/dist/models/maintenance-history-dto.d.ts +20 -1
- package/dist/models/maintenance-standard-add-or-update-vo.d.ts +2 -2
- package/dist/models/maintenance-standard-dto.d.ts +2 -2
- package/dist/models/maintenance-standard-entity.d.ts +3 -3
- package/dist/models/monitoring-coverage-alert-info.d.ts +13 -1
- package/dist/models/monitoring-coverage-alert-process-vo.d.ts +1 -1
- package/dist/models/monitoring-coverage-alert-reason-enum.d.ts +2 -0
- package/dist/models/monitoring-coverage-alert-reason-enum.js +3 -1
- package/dist/models/monitoring-coverage-alert-work-order-details-dto.d.ts +7 -7
- package/dist/models/network-monitor-repair-add-vo.d.ts +3 -3
- package/dist/models/network-monitor-repair-details-dto.d.ts +14 -14
- package/dist/models/news-info.d.ts +1 -1
- package/dist/models/offline-alert-submit-vo.d.ts +1 -1
- package/dist/models/offline-alert-work-order-details-dto.d.ts +10 -10
- package/dist/models/offline-alert-work-order-info.d.ts +2 -2
- package/dist/models/offline-alert-work-order-vo.d.ts +1 -1
- package/dist/models/open-api-access-appointment-record-add-vo.d.ts +14 -7
- package/dist/models/open-api-access-appointment-record-delete-vo.d.ts +1 -1
- package/dist/models/open-api-equipment-list-dto.d.ts +2 -2
- package/dist/models/page-dto-access-appointment-record-details-dto.d.ts +1 -1
- package/dist/models/page-dto-access-blacklist-details-dto.d.ts +1 -1
- package/dist/models/page-dto-access-record-summary-list-dto.d.ts +1 -1
- package/dist/models/page-dto-access-whitelist-application-details-dto.d.ts +1 -1
- package/dist/models/page-dto-admission-terms-record-list-dto.d.ts +1 -1
- package/dist/models/page-dto-disaster-warning-standard-entity.d.ts +1 -1
- package/dist/models/page-dto-equipment-search-system-dto.d.ts +1 -1
- package/dist/models/page-dto-inspection-standard-dto.d.ts +1 -1
- package/dist/models/page-dto-maintenance-standard-dto.d.ts +1 -1
- package/dist/models/page-dto-open-api-equipment-list-dto.d.ts +1 -1
- package/dist/models/page-dto-plan-search-dto.d.ts +1 -1
- package/dist/models/page-dto-supplier-contract-details-dto.d.ts +1 -1
- package/dist/models/page-dto-surveillance-details-dto.d.ts +1 -1
- package/dist/models/page-dto-sys-user-msg-dto.d.ts +1 -1
- package/dist/models/page-dto-work-order-group-equipment-dto.d.ts +31 -0
- package/dist/models/page-dto-work-order-group-equipment-dto.js +15 -0
- package/dist/models/page-dto-work-order-search-dto.d.ts +1 -1
- package/dist/models/park-info-dto.d.ts +7 -1
- package/dist/models/park-info-edit-vo.d.ts +7 -1
- package/dist/models/park-list-dto.d.ts +13 -0
- package/dist/models/park.d.ts +1 -1
- package/dist/models/period-detail-resp.d.ts +12 -12
- package/dist/models/period-detail-resp.js +5 -5
- package/dist/models/plan-add-vo.d.ts +9 -9
- package/dist/models/plan-add-vo.js +5 -5
- package/dist/models/plan-calendar-list-vo.d.ts +5 -5
- package/dist/models/plan-calendar-list-vo.js +5 -5
- package/dist/models/plan-detail-dto.d.ts +9 -9
- package/dist/models/plan-detail-dto.js +5 -5
- package/dist/models/plan-edit-vo.d.ts +9 -9
- package/dist/models/plan-edit-vo.js +5 -5
- package/dist/models/plan-inspection-items-dto.d.ts +3 -3
- package/dist/models/plan-item-add-vo.d.ts +2 -2
- package/dist/models/plan-item-edit-vo.d.ts +2 -2
- package/dist/models/plan-search-dto.d.ts +9 -9
- package/dist/models/plan-search-dto.js +5 -5
- package/dist/models/pricing-item.d.ts +50 -0
- package/dist/models/pricing-item.js +23 -0
- package/dist/models/process-work-order-vo.d.ts +1 -1
- package/dist/models/safety-smart-fire-record-gizone-dto.d.ts +1 -1
- package/dist/models/save-period-work-order-detail-req.d.ts +1 -1
- package/dist/models/sms-captcha-vo.d.ts +1 -1
- package/dist/models/source-work-order-dto.d.ts +1 -1
- package/dist/models/source-work-order-inspection-dto.d.ts +1 -1
- package/dist/models/space-add-excel-dto.d.ts +0 -6
- package/dist/models/space-add-redis-list-dto.d.ts +1 -1
- package/dist/models/space-add-vo.d.ts +2 -2
- package/dist/models/space-detail-dto.d.ts +4 -4
- package/dist/models/space-edit-vo.d.ts +2 -2
- package/dist/models/space-image-detail-dto.d.ts +2 -2
- package/dist/models/space-tree-dto.d.ts +3 -3
- package/dist/models/space.d.ts +1 -1
- package/dist/models/srm-center-entity.d.ts +1 -1
- package/dist/models/srm-center-vo.d.ts +1 -1
- package/dist/models/srm-level-add-dto.d.ts +1 -1
- package/dist/models/sub-buttons.d.ts +1 -1
- package/dist/models/supplier-add-vo.d.ts +2 -2
- package/dist/models/supplier-edit-vo.d.ts +2 -2
- package/dist/models/supplier-entity.d.ts +2 -2
- package/dist/models/surveillance-batch-import-template-dto.d.ts +19 -7
- package/dist/models/surveillance-details-dto.d.ts +13 -7
- package/dist/models/surveillance-entity.d.ts +171 -0
- package/dist/models/surveillance-entity.js +15 -0
- package/dist/models/surveillance-settings-coverage-standard-dto.d.ts +1 -1
- package/dist/models/surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/models/surveillance-settings-polling-vo.d.ts +2 -2
- package/dist/models/surveillance-update-vo.d.ts +8 -2
- package/dist/models/switch-pak-body-v2-vo.d.ts +1 -1
- package/dist/models/sync-equipment-status-vo.d.ts +1 -1
- package/dist/models/sync-equipment-vo.d.ts +1 -1
- package/dist/models/sys-user-info-dto.d.ts +3 -3
- package/dist/models/sys-user-msg-dto.d.ts +2 -2
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/user-add-redis-list-vo.d.ts +1 -1
- package/dist/models/user-roles-and-permissions-dto.d.ts +1 -1
- package/dist/models/violation-decision-vo.d.ts +20 -2
- package/dist/models/violation-issue-type-enum.d.ts +1 -0
- package/dist/models/violation-issue-type-enum.js +2 -1
- package/dist/models/violation-work-order-add-vo.d.ts +10 -4
- package/dist/models/violation-work-order-details-dto.d.ts +12 -12
- package/dist/models/violation-work-order-info.d.ts +22 -4
- package/dist/models/work-order-add-vo.d.ts +3 -3
- package/dist/models/work-order-circulation-settings-add-or-update-vo.d.ts +2 -2
- package/dist/models/work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/models/work-order-circulation-vo.d.ts +1 -1
- package/dist/models/work-order-decision-vo.d.ts +2 -2
- package/dist/models/work-order-dept-settings-entity.d.ts +1 -1
- package/dist/models/work-order-detail-dto.d.ts +14 -14
- package/dist/models/work-order-ext-data.d.ts +5 -5
- package/dist/models/work-order-group-equipment-dto.d.ts +167 -0
- package/dist/models/work-order-group-equipment-dto.js +21 -0
- package/dist/models/work-order-group-equipment-dtoinspection-item.d.ts +36 -0
- package/dist/models/work-order-group-equipment-dtoinspection-item.js +15 -0
- package/dist/models/work-order-handler-dto.d.ts +1 -1
- package/dist/models/work-order-internal-status-enum.d.ts +1 -0
- package/dist/models/work-order-internal-status-enum.js +1 -0
- package/dist/models/work-order-issue-type-settings-add-or-update-vo.d.ts +2 -2
- package/dist/models/work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/models/work-order-msg-remind-config-info.d.ts +2 -2
- package/dist/models/work-order-push-settings-entity.d.ts +1 -1
- package/dist/models/work-order-push-settings-save-or-update-vo.d.ts +1 -1
- package/dist/models/work-order-push-settings-vo.d.ts +1 -1
- package/dist/models/work-order-report-vo.d.ts +3 -3
- package/dist/models/work-order-search-dto.d.ts +7 -7
- package/dist/models/work-order-spot-check-dto.d.ts +22 -22
- package/dist/models/work-order-spot-check-dto.js +8 -8
- package/dist/models/work-order-staging-data-vo.d.ts +1 -1
- package/dist/models/work-order-submit-vo.d.ts +2 -2
- package/dist/models/work-order-type-msg-remind-config-add-or-update-vo.d.ts +2 -2
- package/dist/models/work-order-type-settings-entity.d.ts +2 -2
- package/dist/models/wx-ma-user-info.d.ts +1 -1
- package/dist/models/wx-menu.d.ts +2 -2
- package/dist/models/wx-mp-conditional-menu.d.ts +2 -2
- package/dist/models/wx-mp-get-self-menu-info-result.d.ts +1 -1
- package/dist/models/wx-mp-menu.d.ts +1 -1
- package/dist/models/wx-mp-self-menu-button.d.ts +2 -2
- package/dist/models/wx-mp-self-menu-info.d.ts +1 -1
- package/models/access-abnormal-type-enum.ts +2 -2
- package/models/access-appointment-record-add-vo.ts +17 -8
- package/models/access-appointment-record-details-dto.ts +20 -11
- package/models/access-appointment-record-process-approval-user-dto.ts +1 -1
- package/models/access-appointment-record-process-details-dto.ts +12 -6
- package/models/access-approval-config-vo.ts +2 -2
- package/models/access-blacklist-add-vo.ts +6 -0
- package/models/access-blacklist-details-dto.ts +6 -0
- package/models/access-blacklist-update-vo.ts +6 -0
- package/models/access-company-config-entity.ts +1 -1
- package/models/access-config-entity.ts +7 -1
- package/models/access-config-vo.ts +7 -1
- package/models/access-record-details-dto.ts +9 -9
- package/models/access-record-summary-details-dto.ts +14 -8
- package/models/access-record-summary-list-dto.ts +13 -7
- package/models/access-vehicle-length-enum.ts +6 -6
- package/models/access-visitor-person-type-config-vo.ts +3 -3
- package/models/access-whitelist-application-add-vo.ts +4 -4
- package/models/access-whitelist-application-batch-import-template-dto.ts +9 -3
- package/models/access-whitelist-application-details-dto.ts +6 -6
- package/models/access-whitelist-application-process-details-dto.ts +12 -6
- package/models/access-whitelist-application-update-vo.ts +1 -1
- package/models/app-login-wx-chat-dto.ts +1 -1
- package/models/area-park-dto.ts +1 -1
- package/models/base-error-result.ts +1 -1
- package/models/calendar-entity.ts +1 -1
- package/models/center-list-dto.ts +1 -1
- package/models/cuser-info.ts +1 -1
- package/models/dashboard-access-search-dto.ts +15 -3
- package/models/dashboard-access-source-group-stats-vo.ts +1 -1
- package/models/dashboard-base-search-dto.ts +12 -0
- package/models/dashboard-equipment-park-group-stats-vo.ts +1 -1
- package/models/dashboard-equipment-search-dto.ts +12 -0
- package/models/dashboard-equipment-system-group-stats-vo.ts +1 -1
- package/models/dashboard-park-statistics-vo.ts +42 -0
- package/models/dashboard-surveillance-functional-area-group-stats-vo.ts +7 -1
- package/models/dashboard-surveillance-park-group-stats-vo.ts +18 -0
- package/models/dashboard-surveillance-search-dto.ts +13 -1
- package/models/dashboard-work-order-by-park-search-dto.ts +17 -11
- package/models/dashboard-work-order-by-work-order-type-search-dto.ts +14 -8
- package/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.ts +19 -1
- package/models/dashboard-work-order-issue-type-group-stats-vo.ts +1 -1
- package/models/dashboard-work-order-list-search-dto.ts +22 -16
- package/models/dashboard-work-order-type-group-stats-vo.ts +2 -2
- package/models/dashboard-work-order-type-subcategory-group-stats-vo.ts +1 -1
- package/models/dept-relation-dto.ts +2 -2
- package/models/dept-relation.ts +2 -2
- package/models/disaster-warning-standard-add-or-update-vo.ts +1 -1
- package/models/disaster-warning-standard-entity.ts +1 -1
- package/models/disaster-warning-standard-import-dto.ts +1 -1
- package/models/emission-standard-enum.ts +32 -0
- package/models/energy-cost-add-record-dto.ts +183 -0
- package/models/energy-cost-add-setting-dto.ts +33 -0
- package/models/energy-cost-add-setting-dtopark-setting-item.ts +52 -0
- package/models/energy-cost-add-setting-dtopark-setting.ts +53 -0
- package/models/energy-cost-edit-record-dto.ts +189 -0
- package/models/energy-cost-month-setting-list-summary-standards-vo.ts +106 -0
- package/models/energy-cost-month-setting-list-vo.ts +116 -0
- package/models/energy-cost-record-bill-info-vo.ts +54 -0
- package/models/energy-cost-record-info-not-emun-vo.ts +213 -0
- package/models/energy-cost-record-info-vo.ts +246 -0
- package/models/energy-cost-scenarios-info-not-enum-vo.ts +126 -0
- package/models/energy-cost-scenarios-info-vo.ts +153 -0
- package/models/energy-cost-setting-delete-dto.ts +50 -0
- package/models/energy-cost-setting-summy-add-dto.ts +50 -0
- package/models/energy-cost-setting-summy-update-dto.ts +36 -0
- package/models/energy-cost-update-setting-dto.ts +52 -0
- package/models/equipment-add-redis-list-dto.ts +1 -1
- package/models/equipment-detail-dto.ts +2 -2
- package/models/equipment-edit-batch-vo.ts +1 -1
- package/models/equipment-edit-vo.ts +2 -2
- package/models/equipment-search-system-dto.ts +3 -3
- package/models/equipment-search-vo.ts +1 -1
- package/models/equipment-status-stats-vo.ts +1 -1
- package/models/equipment-tree-details-dto.ts +2 -2
- package/models/equipment-tree-dto.ts +1 -1
- package/models/excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.ts +1 -1
- package/models/excel-import-result-dtocalendar-export-dto.ts +1 -1
- package/models/excel-import-result-dtodisaster-warning-standard-import-dto.ts +1 -1
- package/models/excel-import-result-dtoequipment-excel-add-dto.ts +1 -1
- package/models/excel-import-result-dtoinspection-standard-import-dto.ts +1 -1
- package/models/excel-import-result-dtomaintenance-standard-import-dto.ts +1 -1
- package/models/excel-import-result-dtosurveillance-batch-import-template-dto.ts +1 -1
- package/models/excel-import-result-dtosurveillance-settings-export-dto.ts +1 -1
- package/models/excel-import-upload-to-redis-vo-space-add-excel-dto.ts +1 -1
- package/models/exploration-work-order-add-vo.ts +3 -3
- package/models/exploration-work-order-details-dto.ts +9 -9
- package/models/exploration-work-order-info.ts +2 -2
- package/models/followup-work-order-dto.ts +1 -1
- package/models/group-dept-vo.ts +1 -1
- package/models/index.ts +36 -1
- package/models/inspection-handle-req.ts +1 -1
- package/models/inspection-point-item.ts +1 -1
- package/models/inspection-point.ts +16 -1
- package/models/inspection-standard-add-or-update-vo.ts +4 -4
- package/models/inspection-standard-dto.ts +4 -4
- package/models/inspection-standard-entity.ts +5 -5
- package/models/inspection-standard-import-dto.ts +2 -2
- package/models/insurance-work-order-issue-vo.ts +1 -1
- package/models/insurance-work-order-vo.ts +1 -1
- package/models/iot-device-unit-delete-dto.ts +48 -0
- package/models/ipage-energy-cost-record-info-vo.ts +70 -0
- package/models/item.ts +87 -0
- package/models/json-result-access-appointment-record-details-dto.ts +2 -2
- package/models/json-result-access-blacklist-details-dto.ts +2 -2
- package/models/json-result-access-company-config-entity.ts +2 -2
- package/models/json-result-access-config-entity.ts +2 -2
- package/models/json-result-access-record-summary-details-dto.ts +2 -2
- package/models/json-result-access-whitelist-application-details-dto.ts +2 -2
- package/models/json-result-admission-terms-record-details-dto.ts +2 -2
- package/models/json-result-applet-user-type-dto.ts +2 -2
- package/models/json-result-big-decimal.ts +1 -1
- package/models/json-result-boolean.ts +1 -1
- package/models/json-result-calendar-entity.ts +2 -2
- package/models/json-result-dashboard-park-statistics-vo.ts +72 -0
- package/models/json-result-disaster-warning-standard-entity.ts +2 -2
- package/models/json-result-energy-cost-record-bill-info-vo.ts +72 -0
- package/models/json-result-energy-cost-record-info-not-emun-vo.ts +72 -0
- package/models/{json-result-work-order-spot-check-dto.ts → json-result-energy-cost-record-info-vo.ts} +13 -13
- package/models/json-result-equipment-add-redis-list-dto.ts +2 -2
- package/models/json-result-equipment-detail-dto.ts +2 -2
- package/models/json-result-equipment-search-system-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtocalendar-export-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtoequipment-excel-add-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtoinspection-standard-import-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtosurveillance-batch-import-template-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtosurveillance-settings-export-dto.ts +2 -2
- package/models/json-result-excel-import-upload-to-redis-vo-space-add-excel-dto.ts +2 -2
- package/models/json-result-exploration-work-order-details-dto.ts +2 -2
- package/models/json-result-file-dto.ts +2 -2
- package/models/json-result-group-dept-vo.ts +2 -2
- package/models/json-result-inspection-standard-entity.ts +2 -2
- package/models/json-result-integer.ts +1 -1
- package/models/json-result-ipage-energy-cost-record-info-vo.ts +72 -0
- package/models/json-result-json-result-list-space-tree-dto.ts +2 -2
- package/models/json-result-list-access-appointment-record-process-details-dto.ts +2 -2
- package/models/json-result-list-access-company-config-entity.ts +2 -2
- package/models/json-result-list-access-whitelist-application-process-details-dto.ts +2 -2
- package/models/json-result-list-address-region-entity.ts +2 -2
- package/models/json-result-list-applet-sys-user-drop-down-box-list-dto.ts +2 -2
- package/models/json-result-list-area-park-dto.ts +2 -2
- package/models/json-result-list-calendar-entity.ts +2 -2
- package/models/json-result-list-center-list-dto.ts +2 -2
- package/models/json-result-list-dashboard-access-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-access-source-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-equipment-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-equipment-system-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-series-stats-base-vo.ts +2 -2
- package/models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-surveillance-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-work-order-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-work-order-type-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.ts +2 -2
- package/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.ts +72 -0
- package/models/json-result-list-energy-cost-month-setting-list-vo.ts +72 -0
- package/models/json-result-list-equipment-detail-dto.ts +2 -2
- package/models/json-result-list-equipment-qr-code-dto.ts +2 -2
- package/models/json-result-list-equipment-system-tree-dto.ts +2 -2
- package/models/json-result-list-equipment-tree-dto.ts +2 -2
- package/models/json-result-list-inspection-point.ts +2 -2
- package/models/json-result-list-inspection-standard-entity.ts +2 -2
- package/models/json-result-list-maintenance-standard-entity.ts +2 -2
- package/models/json-result-list-park-list-dto.ts +2 -2
- package/models/json-result-list-plan-calendar-list-vo.ts +2 -2
- package/models/json-result-list-plan-calendar-vo.ts +2 -2
- package/models/json-result-list-space-image-detail-dto.ts +2 -2
- package/models/json-result-list-space-point-dto.ts +2 -2
- package/models/json-result-list-space-qr-code-dto.ts +2 -2
- package/models/json-result-list-space-tree-dto.ts +2 -2
- package/models/json-result-list-space-url-dto.ts +2 -2
- package/models/json-result-list-srm-center-vo.ts +2 -2
- package/models/json-result-list-supplier-select-dto.ts +2 -2
- package/models/json-result-list-surveillance-settings-coverage-standard-dto.ts +2 -2
- package/models/json-result-list-sys-dept-drop-down-box-list-dto.ts +2 -2
- package/models/json-result-list-sys-dept.ts +2 -2
- package/models/json-result-list-sys-user-drop-down-box-list-dto.ts +2 -2
- package/models/json-result-list-work-order-circulation-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-circulation-vo.ts +2 -2
- package/models/json-result-list-work-order-comment-entity.ts +2 -2
- package/models/json-result-list-work-order-dept-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-inspection-detail-dto.ts +2 -2
- package/models/json-result-list-work-order-issue-type-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-push-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-spot-check-dto.ts +72 -0
- package/models/json-result-list-work-order-step-by-step-push-user-details-dto.ts +2 -2
- package/models/json-result-list-work-order-type-settings-entity.ts +2 -2
- package/models/json-result-maintenance-standard-entity.ts +2 -2
- package/models/json-result-map-string-object.ts +69 -0
- package/models/json-result-monitoring-coverage-alert-work-order-details-dto.ts +2 -2
- package/models/json-result-network-monitor-repair-details-dto.ts +2 -2
- package/models/json-result-notice-entity.ts +2 -2
- package/models/json-result-offline-alert-work-order-details-dto.ts +2 -2
- package/models/json-result-page-dto-access-appointment-record-details-dto.ts +2 -2
- package/models/json-result-page-dto-access-blacklist-details-dto.ts +2 -2
- package/models/json-result-page-dto-access-record-summary-list-dto.ts +2 -2
- package/models/json-result-page-dto-access-whitelist-application-details-dto.ts +2 -2
- package/models/json-result-page-dto-admission-terms-record-list-dto.ts +2 -2
- package/models/json-result-page-dto-disaster-warning-standard-entity.ts +2 -2
- package/models/json-result-page-dto-equipment-search-system-dto.ts +2 -2
- package/models/json-result-page-dto-inspection-standard-dto.ts +2 -2
- package/models/json-result-page-dto-maintenance-standard-dto.ts +2 -2
- package/models/json-result-page-dto-open-api-equipment-list-dto.ts +2 -2
- package/models/json-result-page-dto-plan-search-dto.ts +2 -2
- package/models/json-result-page-dto-supplier-contract-details-dto.ts +2 -2
- package/models/json-result-page-dto-surveillance-details-dto.ts +2 -2
- package/models/json-result-page-dto-sys-user-msg-dto.ts +2 -2
- package/models/json-result-page-dto-work-order-group-equipment-dto.ts +72 -0
- package/models/json-result-page-dto-work-order-search-dto.ts +2 -2
- package/models/json-result-park-info-dto.ts +2 -2
- package/models/json-result-park-settings-details-dto.ts +2 -2
- package/models/json-result-period-detail-resp.ts +2 -2
- package/models/json-result-plan-detail-dto.ts +2 -2
- package/models/json-result-space-add-redis-list-dto.ts +2 -2
- package/models/json-result-space-image-detail-dto.ts +2 -2
- package/models/json-result-srm-center-entity.ts +2 -2
- package/models/json-result-string.ts +1 -1
- package/models/json-result-supplier-contract-details-dto.ts +2 -2
- package/models/json-result-supplier-entity.ts +2 -2
- package/models/json-result-surveillance-count-dto.ts +2 -2
- package/models/json-result-surveillance-details-dto.ts +2 -2
- package/models/json-result-surveillance-live-dto.ts +2 -2
- package/models/json-result-surveillance-settings-details-dto.ts +2 -2
- package/models/json-result-surveillance-settings-polling-dto.ts +2 -2
- package/models/json-result-switch-park-v2-dto.ts +2 -2
- package/models/json-result-sys-dept.ts +2 -2
- package/models/json-result-sys-user-msg-dto.ts +2 -2
- package/models/json-result-sys-user.ts +2 -2
- package/models/json-result-user-add-redis-list-vo.ts +2 -2
- package/models/json-result-user-settings-entity.ts +2 -2
- package/models/json-result-violation-work-order-details-dto.ts +2 -2
- package/models/json-result-void.ts +1 -1
- package/models/json-result-work-order-dept-settings-entity.ts +2 -2
- package/models/json-result-work-order-detail-dto.ts +2 -2
- package/models/json-result-work-order-issue-type-settings-entity.ts +2 -2
- package/models/json-result.ts +1 -1
- package/models/maintenance-history-dto.ts +22 -1
- package/models/maintenance-standard-add-or-update-vo.ts +2 -2
- package/models/maintenance-standard-dto.ts +2 -2
- package/models/maintenance-standard-entity.ts +3 -3
- package/models/monitoring-coverage-alert-info.ts +13 -1
- package/models/monitoring-coverage-alert-process-vo.ts +1 -1
- package/models/monitoring-coverage-alert-reason-enum.ts +3 -1
- package/models/monitoring-coverage-alert-work-order-details-dto.ts +7 -7
- package/models/network-monitor-repair-add-vo.ts +3 -3
- package/models/network-monitor-repair-details-dto.ts +14 -14
- package/models/news-info.ts +1 -1
- package/models/offline-alert-submit-vo.ts +1 -1
- package/models/offline-alert-work-order-details-dto.ts +10 -10
- package/models/offline-alert-work-order-info.ts +2 -2
- package/models/offline-alert-work-order-vo.ts +1 -1
- package/models/open-api-access-appointment-record-add-vo.ts +16 -7
- package/models/open-api-access-appointment-record-delete-vo.ts +1 -1
- package/models/open-api-equipment-list-dto.ts +2 -2
- package/models/page-dto-access-appointment-record-details-dto.ts +1 -1
- package/models/page-dto-access-blacklist-details-dto.ts +1 -1
- package/models/page-dto-access-record-summary-list-dto.ts +1 -1
- package/models/page-dto-access-whitelist-application-details-dto.ts +1 -1
- package/models/page-dto-admission-terms-record-list-dto.ts +1 -1
- package/models/page-dto-disaster-warning-standard-entity.ts +1 -1
- package/models/page-dto-equipment-search-system-dto.ts +1 -1
- package/models/page-dto-inspection-standard-dto.ts +1 -1
- package/models/page-dto-maintenance-standard-dto.ts +1 -1
- package/models/page-dto-open-api-equipment-list-dto.ts +1 -1
- package/models/page-dto-plan-search-dto.ts +1 -1
- package/models/page-dto-supplier-contract-details-dto.ts +1 -1
- package/models/page-dto-surveillance-details-dto.ts +1 -1
- package/models/page-dto-sys-user-msg-dto.ts +1 -1
- package/models/page-dto-work-order-group-equipment-dto.ts +39 -0
- package/models/page-dto-work-order-search-dto.ts +1 -1
- package/models/park-info-dto.ts +7 -1
- package/models/park-info-edit-vo.ts +7 -1
- package/models/park-list-dto.ts +17 -0
- package/models/park.ts +1 -1
- package/models/period-detail-resp.ts +12 -12
- package/models/plan-add-vo.ts +9 -9
- package/models/plan-calendar-list-vo.ts +5 -5
- package/models/plan-detail-dto.ts +9 -9
- package/models/plan-edit-vo.ts +9 -9
- package/models/plan-inspection-items-dto.ts +3 -3
- package/models/plan-item-add-vo.ts +2 -2
- package/models/plan-item-edit-vo.ts +2 -2
- package/models/plan-search-dto.ts +9 -9
- package/models/pricing-item.ts +59 -0
- package/models/process-work-order-vo.ts +1 -1
- package/models/safety-smart-fire-record-gizone-dto.ts +1 -1
- package/models/save-period-work-order-detail-req.ts +1 -1
- package/models/sms-captcha-vo.ts +1 -1
- package/models/source-work-order-dto.ts +1 -1
- package/models/source-work-order-inspection-dto.ts +1 -1
- package/models/space-add-excel-dto.ts +0 -6
- package/models/space-add-redis-list-dto.ts +1 -1
- package/models/space-add-vo.ts +2 -2
- package/models/space-detail-dto.ts +4 -4
- package/models/space-edit-vo.ts +2 -2
- package/models/space-image-detail-dto.ts +2 -2
- package/models/space-tree-dto.ts +3 -3
- package/models/space.ts +1 -1
- package/models/srm-center-entity.ts +1 -1
- package/models/srm-center-vo.ts +1 -1
- package/models/srm-level-add-dto.ts +1 -1
- package/models/sub-buttons.ts +1 -1
- package/models/supplier-add-vo.ts +2 -2
- package/models/supplier-edit-vo.ts +2 -2
- package/models/supplier-entity.ts +2 -2
- package/models/surveillance-batch-import-template-dto.ts +19 -7
- package/models/surveillance-details-dto.ts +13 -7
- package/models/surveillance-entity.ts +185 -0
- package/models/surveillance-settings-coverage-standard-dto.ts +1 -1
- package/models/surveillance-settings-polling-dto.ts +2 -2
- package/models/surveillance-settings-polling-vo.ts +2 -2
- package/models/surveillance-update-vo.ts +8 -2
- package/models/switch-pak-body-v2-vo.ts +1 -1
- package/models/sync-equipment-status-vo.ts +1 -1
- package/models/sync-equipment-vo.ts +1 -1
- package/models/sys-user-info-dto.ts +3 -3
- package/models/sys-user-msg-dto.ts +2 -2
- package/models/sys-user.ts +4 -4
- package/models/user-add-redis-list-vo.ts +1 -1
- package/models/user-roles-and-permissions-dto.ts +1 -1
- package/models/violation-decision-vo.ts +20 -2
- package/models/violation-issue-type-enum.ts +2 -1
- package/models/violation-work-order-add-vo.ts +10 -4
- package/models/violation-work-order-details-dto.ts +12 -12
- package/models/violation-work-order-info.ts +22 -4
- package/models/work-order-add-vo.ts +3 -3
- package/models/work-order-circulation-settings-add-or-update-vo.ts +2 -2
- package/models/work-order-circulation-settings-entity.ts +2 -2
- package/models/work-order-circulation-vo.ts +1 -1
- package/models/work-order-decision-vo.ts +2 -2
- package/models/work-order-dept-settings-entity.ts +1 -1
- package/models/work-order-detail-dto.ts +14 -14
- package/models/work-order-ext-data.ts +5 -5
- package/models/work-order-group-equipment-dto.ts +186 -0
- package/models/work-order-group-equipment-dtoinspection-item.ts +42 -0
- package/models/work-order-handler-dto.ts +1 -1
- package/models/work-order-internal-status-enum.ts +1 -0
- package/models/work-order-issue-type-settings-add-or-update-vo.ts +2 -2
- package/models/work-order-issue-type-settings-entity.ts +2 -2
- package/models/work-order-msg-remind-config-info.ts +2 -2
- package/models/work-order-push-settings-entity.ts +1 -1
- package/models/work-order-push-settings-save-or-update-vo.ts +1 -1
- package/models/work-order-push-settings-vo.ts +1 -1
- package/models/work-order-report-vo.ts +3 -3
- package/models/work-order-search-dto.ts +7 -7
- package/models/work-order-spot-check-dto.ts +23 -23
- package/models/work-order-staging-data-vo.ts +1 -1
- package/models/work-order-submit-vo.ts +2 -2
- package/models/work-order-type-msg-remind-config-add-or-update-vo.ts +2 -2
- package/models/work-order-type-settings-entity.ts +2 -2
- package/models/wx-ma-user-info.ts +1 -1
- package/models/wx-menu.ts +2 -2
- package/models/wx-mp-conditional-menu.ts +2 -2
- package/models/wx-mp-get-self-menu-info-result.ts +1 -1
- package/models/wx-mp-menu.ts +1 -1
- package/models/wx-mp-self-menu-button.ts +2 -2
- package/models/wx-mp-self-menu-info.ts +1 -1
- package/package.json +4 -4
- /package/dist/esm/models/{json-result-work-order-spot-check-dto.js → dashboard-park-statistics-vo.js} +0 -0
- /package/dist/models/{json-result-work-order-spot-check-dto.js → dashboard-park-statistics-vo.js} +0 -0
|
@@ -39,7 +39,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
39
39
|
* @param {*} [options] Override http request option.
|
|
40
40
|
* @throws {RequiredError}
|
|
41
41
|
*/
|
|
42
|
-
appLoginByMobile: (
|
|
42
|
+
appLoginByMobile: (appLoginPasswordDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
43
43
|
// verify required parameter 'appLoginPasswordDto' is not null or undefined
|
|
44
44
|
assertParamExists('appLoginByMobile', 'appLoginPasswordDto', appLoginPasswordDto);
|
|
45
45
|
const localVarPath = `/miniapp/auth/loginByMobile`;
|
|
@@ -72,7 +72,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
72
72
|
* @param {*} [options] Override http request option.
|
|
73
73
|
* @throws {RequiredError}
|
|
74
74
|
*/
|
|
75
|
-
appLoginBySMSCode: (
|
|
75
|
+
appLoginBySMSCode: (appLoginCodeDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
76
76
|
// verify required parameter 'appLoginCodeDto' is not null or undefined
|
|
77
77
|
assertParamExists('appLoginBySMSCode', 'appLoginCodeDto', appLoginCodeDto);
|
|
78
78
|
const localVarPath = `/miniapp/auth/loginByMobileCode`;
|
|
@@ -105,7 +105,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
105
105
|
* @param {*} [options] Override http request option.
|
|
106
106
|
* @throws {RequiredError}
|
|
107
107
|
*/
|
|
108
|
-
bindEmail: (
|
|
108
|
+
bindEmail: (userBindBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
109
109
|
// verify required parameter 'userBindBody' is not null or undefined
|
|
110
110
|
assertParamExists('bindEmail', 'userBindBody', userBindBody);
|
|
111
111
|
const localVarPath = `/miniapp/auth/bind/email`;
|
|
@@ -138,7 +138,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
138
138
|
* @param {*} [options] Override http request option.
|
|
139
139
|
* @throws {RequiredError}
|
|
140
140
|
*/
|
|
141
|
-
bindPhone: (
|
|
141
|
+
bindPhone: (userBindBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
142
142
|
// verify required parameter 'userBindBody' is not null or undefined
|
|
143
143
|
assertParamExists('bindPhone', 'userBindBody', userBindBody);
|
|
144
144
|
const localVarPath = `/miniapp/auth/bind/phone`;
|
|
@@ -170,7 +170,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
170
170
|
* @param {*} [options] Override http request option.
|
|
171
171
|
* @throws {RequiredError}
|
|
172
172
|
*/
|
|
173
|
-
bindingCId: (
|
|
173
|
+
bindingCId: (cId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
174
174
|
// verify required parameter 'cId' is not null or undefined
|
|
175
175
|
assertParamExists('bindingCId', 'cId', cId);
|
|
176
176
|
const localVarPath = `/miniapp/auth/bindingCId/{cId}`
|
|
@@ -201,7 +201,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
201
201
|
* @param {*} [options] Override http request option.
|
|
202
202
|
* @throws {RequiredError}
|
|
203
203
|
*/
|
|
204
|
-
cancelAccount: (
|
|
204
|
+
cancelAccount: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
205
205
|
const localVarPath = `/miniapp/auth/cancel/account`;
|
|
206
206
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
207
207
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -229,7 +229,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
229
229
|
* @param {*} [options] Override http request option.
|
|
230
230
|
* @throws {RequiredError}
|
|
231
231
|
*/
|
|
232
|
-
checkToken: (
|
|
232
|
+
checkToken: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
233
233
|
const localVarPath = `/checkToken`;
|
|
234
234
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
235
235
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -258,7 +258,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
258
258
|
* @param {*} [options] Override http request option.
|
|
259
259
|
* @throws {RequiredError}
|
|
260
260
|
*/
|
|
261
|
-
choosePark: (
|
|
261
|
+
choosePark: (choosePakBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
262
262
|
// verify required parameter 'choosePakBody' is not null or undefined
|
|
263
263
|
assertParamExists('choosePark', 'choosePakBody', choosePakBody);
|
|
264
264
|
const localVarPath = `/miniapp/auth/choose/park`;
|
|
@@ -292,7 +292,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
292
292
|
* @param {*} [options] Override http request option.
|
|
293
293
|
* @throws {RequiredError}
|
|
294
294
|
*/
|
|
295
|
-
code: (
|
|
295
|
+
code: (email, language, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
296
296
|
// verify required parameter 'email' is not null or undefined
|
|
297
297
|
assertParamExists('code', 'email', email);
|
|
298
298
|
// verify required parameter 'language' is not null or undefined
|
|
@@ -329,115 +329,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
329
329
|
* @param {*} [options] Override http request option.
|
|
330
330
|
* @throws {RequiredError}
|
|
331
331
|
*/
|
|
332
|
-
|
|
333
|
-
const localVarPath = `/miniapp/auth/getToken`;
|
|
334
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
335
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
336
|
-
let baseOptions;
|
|
337
|
-
if (configuration) {
|
|
338
|
-
baseOptions = configuration.baseOptions;
|
|
339
|
-
}
|
|
340
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
341
|
-
const localVarHeaderParameter = {};
|
|
342
|
-
const localVarQueryParameter = {};
|
|
343
|
-
// authentication tokenScheme required
|
|
344
|
-
// http bearer authentication required
|
|
345
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
346
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
347
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
348
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
349
|
-
return {
|
|
350
|
-
url: toPathString(localVarUrlObj),
|
|
351
|
-
options: localVarRequestOptions,
|
|
352
|
-
};
|
|
353
|
-
}),
|
|
354
|
-
/**
|
|
355
|
-
*
|
|
356
|
-
* @param {*} [options] Override http request option.
|
|
357
|
-
* @throws {RequiredError}
|
|
358
|
-
*/
|
|
359
|
-
fusionGetToken1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
360
|
-
const localVarPath = `/miniapp/auth/getToken`;
|
|
361
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
362
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
363
|
-
let baseOptions;
|
|
364
|
-
if (configuration) {
|
|
365
|
-
baseOptions = configuration.baseOptions;
|
|
366
|
-
}
|
|
367
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
368
|
-
const localVarHeaderParameter = {};
|
|
369
|
-
const localVarQueryParameter = {};
|
|
370
|
-
// authentication tokenScheme required
|
|
371
|
-
// http bearer authentication required
|
|
372
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
373
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
374
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
375
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
376
|
-
return {
|
|
377
|
-
url: toPathString(localVarUrlObj),
|
|
378
|
-
options: localVarRequestOptions,
|
|
379
|
-
};
|
|
380
|
-
}),
|
|
381
|
-
/**
|
|
382
|
-
*
|
|
383
|
-
* @param {*} [options] Override http request option.
|
|
384
|
-
* @throws {RequiredError}
|
|
385
|
-
*/
|
|
386
|
-
fusionGetToken2: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
387
|
-
const localVarPath = `/fusion/base/getToken`;
|
|
388
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
389
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
390
|
-
let baseOptions;
|
|
391
|
-
if (configuration) {
|
|
392
|
-
baseOptions = configuration.baseOptions;
|
|
393
|
-
}
|
|
394
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
395
|
-
const localVarHeaderParameter = {};
|
|
396
|
-
const localVarQueryParameter = {};
|
|
397
|
-
// authentication tokenScheme required
|
|
398
|
-
// http bearer authentication required
|
|
399
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
400
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
401
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
402
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
403
|
-
return {
|
|
404
|
-
url: toPathString(localVarUrlObj),
|
|
405
|
-
options: localVarRequestOptions,
|
|
406
|
-
};
|
|
407
|
-
}),
|
|
408
|
-
/**
|
|
409
|
-
*
|
|
410
|
-
* @param {*} [options] Override http request option.
|
|
411
|
-
* @throws {RequiredError}
|
|
412
|
-
*/
|
|
413
|
-
fusionGetToken3: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
414
|
-
const localVarPath = `/fusion/base/getToken`;
|
|
415
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
416
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
417
|
-
let baseOptions;
|
|
418
|
-
if (configuration) {
|
|
419
|
-
baseOptions = configuration.baseOptions;
|
|
420
|
-
}
|
|
421
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
422
|
-
const localVarHeaderParameter = {};
|
|
423
|
-
const localVarQueryParameter = {};
|
|
424
|
-
// authentication tokenScheme required
|
|
425
|
-
// http bearer authentication required
|
|
426
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
427
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
428
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
429
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
430
|
-
return {
|
|
431
|
-
url: toPathString(localVarUrlObj),
|
|
432
|
-
options: localVarRequestOptions,
|
|
433
|
-
};
|
|
434
|
-
}),
|
|
435
|
-
/**
|
|
436
|
-
*
|
|
437
|
-
* @param {*} [options] Override http request option.
|
|
438
|
-
* @throws {RequiredError}
|
|
439
|
-
*/
|
|
440
|
-
getCode: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
332
|
+
getCode: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
441
333
|
const localVarPath = `/captchaImage`;
|
|
442
334
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
443
335
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -464,7 +356,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
464
356
|
* @param {*} [options] Override http request option.
|
|
465
357
|
* @throws {RequiredError}
|
|
466
358
|
*/
|
|
467
|
-
getLoginMode: (
|
|
359
|
+
getLoginMode: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
468
360
|
const localVarPath = `/getLoginMode`;
|
|
469
361
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
470
362
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -495,7 +387,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
495
387
|
* @param {*} [options] Override http request option.
|
|
496
388
|
* @throws {RequiredError}
|
|
497
389
|
*/
|
|
498
|
-
getPark: (
|
|
390
|
+
getPark: (uuid, type, parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
499
391
|
// verify required parameter 'uuid' is not null or undefined
|
|
500
392
|
assertParamExists('getPark', 'uuid', uuid);
|
|
501
393
|
// verify required parameter 'type' is not null or undefined
|
|
@@ -539,7 +431,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
539
431
|
* @param {*} [options] Override http request option.
|
|
540
432
|
* @throws {RequiredError}
|
|
541
433
|
*/
|
|
542
|
-
getParkByGroupId: (
|
|
434
|
+
getParkByGroupId: (groupId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
543
435
|
// verify required parameter 'groupId' is not null or undefined
|
|
544
436
|
assertParamExists('getParkByGroupId', 'groupId', groupId);
|
|
545
437
|
const localVarPath = `/miniapp/auth/{groupId}/park`
|
|
@@ -574,7 +466,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
574
466
|
* @param {*} [options] Override http request option.
|
|
575
467
|
* @throws {RequiredError}
|
|
576
468
|
*/
|
|
577
|
-
getParkMiniApp: (
|
|
469
|
+
getParkMiniApp: (uuid, userType, parkId, appId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
578
470
|
// verify required parameter 'uuid' is not null or undefined
|
|
579
471
|
assertParamExists('getParkMiniApp', 'uuid', uuid);
|
|
580
472
|
// verify required parameter 'userType' is not null or undefined
|
|
@@ -622,7 +514,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
622
514
|
* @param {*} [options] Override http request option.
|
|
623
515
|
* @throws {RequiredError}
|
|
624
516
|
*/
|
|
625
|
-
getRouters: (
|
|
517
|
+
getRouters: (parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
626
518
|
// verify required parameter 'parkId' is not null or undefined
|
|
627
519
|
assertParamExists('getRouters', 'parkId', parkId);
|
|
628
520
|
const localVarPath = `/getRouters`;
|
|
@@ -654,7 +546,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
654
546
|
* @param {*} [options] Override http request option.
|
|
655
547
|
* @throws {RequiredError}
|
|
656
548
|
*/
|
|
657
|
-
getRoutersAll: (
|
|
549
|
+
getRoutersAll: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
658
550
|
const localVarPath = `/getRoutersAll`;
|
|
659
551
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
660
552
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -676,114 +568,6 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
676
568
|
options: localVarRequestOptions,
|
|
677
569
|
};
|
|
678
570
|
}),
|
|
679
|
-
/**
|
|
680
|
-
*
|
|
681
|
-
* @param {*} [options] Override http request option.
|
|
682
|
-
* @throws {RequiredError}
|
|
683
|
-
*/
|
|
684
|
-
getTokenByHttp: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
685
|
-
const localVarPath = `/miniapp/auth/fusionGetTokenByHttp`;
|
|
686
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
687
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
688
|
-
let baseOptions;
|
|
689
|
-
if (configuration) {
|
|
690
|
-
baseOptions = configuration.baseOptions;
|
|
691
|
-
}
|
|
692
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
693
|
-
const localVarHeaderParameter = {};
|
|
694
|
-
const localVarQueryParameter = {};
|
|
695
|
-
// authentication tokenScheme required
|
|
696
|
-
// http bearer authentication required
|
|
697
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
698
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
699
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
700
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
701
|
-
return {
|
|
702
|
-
url: toPathString(localVarUrlObj),
|
|
703
|
-
options: localVarRequestOptions,
|
|
704
|
-
};
|
|
705
|
-
}),
|
|
706
|
-
/**
|
|
707
|
-
*
|
|
708
|
-
* @param {*} [options] Override http request option.
|
|
709
|
-
* @throws {RequiredError}
|
|
710
|
-
*/
|
|
711
|
-
getTokenByHttp1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
712
|
-
const localVarPath = `/miniapp/auth/fusionGetTokenByHttp`;
|
|
713
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
714
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
715
|
-
let baseOptions;
|
|
716
|
-
if (configuration) {
|
|
717
|
-
baseOptions = configuration.baseOptions;
|
|
718
|
-
}
|
|
719
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
720
|
-
const localVarHeaderParameter = {};
|
|
721
|
-
const localVarQueryParameter = {};
|
|
722
|
-
// authentication tokenScheme required
|
|
723
|
-
// http bearer authentication required
|
|
724
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
725
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
726
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
727
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
728
|
-
return {
|
|
729
|
-
url: toPathString(localVarUrlObj),
|
|
730
|
-
options: localVarRequestOptions,
|
|
731
|
-
};
|
|
732
|
-
}),
|
|
733
|
-
/**
|
|
734
|
-
*
|
|
735
|
-
* @param {*} [options] Override http request option.
|
|
736
|
-
* @throws {RequiredError}
|
|
737
|
-
*/
|
|
738
|
-
getTokenByHttp2: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
739
|
-
const localVarPath = `/fusion/base/fusionGetTokenByHttp`;
|
|
740
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
741
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
742
|
-
let baseOptions;
|
|
743
|
-
if (configuration) {
|
|
744
|
-
baseOptions = configuration.baseOptions;
|
|
745
|
-
}
|
|
746
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
747
|
-
const localVarHeaderParameter = {};
|
|
748
|
-
const localVarQueryParameter = {};
|
|
749
|
-
// authentication tokenScheme required
|
|
750
|
-
// http bearer authentication required
|
|
751
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
752
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
753
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
754
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
755
|
-
return {
|
|
756
|
-
url: toPathString(localVarUrlObj),
|
|
757
|
-
options: localVarRequestOptions,
|
|
758
|
-
};
|
|
759
|
-
}),
|
|
760
|
-
/**
|
|
761
|
-
*
|
|
762
|
-
* @param {*} [options] Override http request option.
|
|
763
|
-
* @throws {RequiredError}
|
|
764
|
-
*/
|
|
765
|
-
getTokenByHttp3: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
766
|
-
const localVarPath = `/fusion/base/fusionGetTokenByHttp`;
|
|
767
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
768
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
769
|
-
let baseOptions;
|
|
770
|
-
if (configuration) {
|
|
771
|
-
baseOptions = configuration.baseOptions;
|
|
772
|
-
}
|
|
773
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
774
|
-
const localVarHeaderParameter = {};
|
|
775
|
-
const localVarQueryParameter = {};
|
|
776
|
-
// authentication tokenScheme required
|
|
777
|
-
// http bearer authentication required
|
|
778
|
-
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
779
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
780
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
781
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
782
|
-
return {
|
|
783
|
-
url: toPathString(localVarUrlObj),
|
|
784
|
-
options: localVarRequestOptions,
|
|
785
|
-
};
|
|
786
|
-
}),
|
|
787
571
|
/**
|
|
788
572
|
*
|
|
789
573
|
* @summary 获取用户信息
|
|
@@ -791,7 +575,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
791
575
|
* @param {*} [options] Override http request option.
|
|
792
576
|
* @throws {RequiredError}
|
|
793
577
|
*/
|
|
794
|
-
getUserRolesAndPermissions: (
|
|
578
|
+
getUserRolesAndPermissions: (parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
795
579
|
// verify required parameter 'parkId' is not null or undefined
|
|
796
580
|
assertParamExists('getUserRolesAndPermissions', 'parkId', parkId);
|
|
797
581
|
const localVarPath = `/getInfo`;
|
|
@@ -824,7 +608,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
824
608
|
* @param {*} [options] Override http request option.
|
|
825
609
|
* @throws {RequiredError}
|
|
826
610
|
*/
|
|
827
|
-
login: (
|
|
611
|
+
login: (loginBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
828
612
|
// verify required parameter 'loginBody' is not null or undefined
|
|
829
613
|
assertParamExists('login', 'loginBody', loginBody);
|
|
830
614
|
const localVarPath = `/login`;
|
|
@@ -857,7 +641,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
857
641
|
* @param {*} [options] Override http request option.
|
|
858
642
|
* @throws {RequiredError}
|
|
859
643
|
*/
|
|
860
|
-
loginByCodeV2: (
|
|
644
|
+
loginByCodeV2: (appLoginWxChatDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
861
645
|
// verify required parameter 'appLoginWxChatDto' is not null or undefined
|
|
862
646
|
assertParamExists('loginByCodeV2', 'appLoginWxChatDto', appLoginWxChatDto);
|
|
863
647
|
const localVarPath = `/miniapp/auth/LoginByMiniAppV2`;
|
|
@@ -890,7 +674,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
890
674
|
* @param {*} [options] Override http request option.
|
|
891
675
|
* @throws {RequiredError}
|
|
892
676
|
*/
|
|
893
|
-
loginByOpenId: (
|
|
677
|
+
loginByOpenId: (appObtainToken, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
894
678
|
// verify required parameter 'appObtainToken' is not null or undefined
|
|
895
679
|
assertParamExists('loginByOpenId', 'appObtainToken', appObtainToken);
|
|
896
680
|
const localVarPath = `/miniapp/auth/loginByOpenId`;
|
|
@@ -923,7 +707,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
923
707
|
* @param {*} [options] Override http request option.
|
|
924
708
|
* @throws {RequiredError}
|
|
925
709
|
*/
|
|
926
|
-
loginByWechatPublic: (
|
|
710
|
+
loginByWechatPublic: (appLoginWxChatPubDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
927
711
|
// verify required parameter 'appLoginWxChatPubDto' is not null or undefined
|
|
928
712
|
assertParamExists('loginByWechatPublic', 'appLoginWxChatPubDto', appLoginWxChatPubDto);
|
|
929
713
|
const localVarPath = `/miniapp/auth/loginByWechatPub`;
|
|
@@ -956,7 +740,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
956
740
|
* @param {*} [options] Override http request option.
|
|
957
741
|
* @throws {RequiredError}
|
|
958
742
|
*/
|
|
959
|
-
loginPhoneCode: (
|
|
743
|
+
loginPhoneCode: (sysLoginCodeDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
960
744
|
// verify required parameter 'sysLoginCodeDto' is not null or undefined
|
|
961
745
|
assertParamExists('loginPhoneCode', 'sysLoginCodeDto', sysLoginCodeDto);
|
|
962
746
|
const localVarPath = `/login/phone/code`;
|
|
@@ -989,7 +773,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
989
773
|
* @param {*} [options] Override http request option.
|
|
990
774
|
* @throws {RequiredError}
|
|
991
775
|
*/
|
|
992
|
-
pushMsg: (
|
|
776
|
+
pushMsg: (cid, payload, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
993
777
|
// verify required parameter 'cid' is not null or undefined
|
|
994
778
|
assertParamExists('pushMsg', 'cid', cid);
|
|
995
779
|
// verify required parameter 'payload' is not null or undefined
|
|
@@ -1026,7 +810,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1026
810
|
* @param {*} [options] Override http request option.
|
|
1027
811
|
* @throws {RequiredError}
|
|
1028
812
|
*/
|
|
1029
|
-
switchPark: (
|
|
813
|
+
switchPark: (switchPakBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1030
814
|
// verify required parameter 'switchPakBody' is not null or undefined
|
|
1031
815
|
assertParamExists('switchPark', 'switchPakBody', switchPakBody);
|
|
1032
816
|
const localVarPath = `/miniapp/auth/switch/park`;
|
|
@@ -1058,7 +842,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1058
842
|
* @param {*} [options] Override http request option.
|
|
1059
843
|
* @throws {RequiredError}
|
|
1060
844
|
*/
|
|
1061
|
-
switchParkToken: (
|
|
845
|
+
switchParkToken: (switchPakBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1062
846
|
// verify required parameter 'switchPakBody' is not null or undefined
|
|
1063
847
|
assertParamExists('switchParkToken', 'switchPakBody', switchPakBody);
|
|
1064
848
|
const localVarPath = `/switch/park/token`;
|
|
@@ -1091,7 +875,7 @@ export const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1091
875
|
* @param {*} [options] Override http request option.
|
|
1092
876
|
* @throws {RequiredError}
|
|
1093
877
|
*/
|
|
1094
|
-
switchParkV2: (
|
|
878
|
+
switchParkV2: (switchPakBodyV2Vo, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1095
879
|
// verify required parameter 'switchPakBodyV2Vo' is not null or undefined
|
|
1096
880
|
assertParamExists('switchParkV2', 'switchPakBodyV2Vo', switchPakBodyV2Vo);
|
|
1097
881
|
const localVarPath = `/switch/park/v2`;
|
|
@@ -1134,12 +918,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1134
918
|
* @throws {RequiredError}
|
|
1135
919
|
*/
|
|
1136
920
|
appLoginByMobile(appLoginPasswordDto, options) {
|
|
921
|
+
var _a, _b, _c;
|
|
1137
922
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1138
|
-
var _a, _b, _c;
|
|
1139
923
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.appLoginByMobile(appLoginPasswordDto, options);
|
|
1140
|
-
const
|
|
1141
|
-
const
|
|
1142
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
924
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
925
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.appLoginByMobile']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
926
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1143
927
|
});
|
|
1144
928
|
},
|
|
1145
929
|
/**
|
|
@@ -1150,12 +934,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1150
934
|
* @throws {RequiredError}
|
|
1151
935
|
*/
|
|
1152
936
|
appLoginBySMSCode(appLoginCodeDto, options) {
|
|
937
|
+
var _a, _b, _c;
|
|
1153
938
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1154
|
-
var _a, _b, _c;
|
|
1155
939
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.appLoginBySMSCode(appLoginCodeDto, options);
|
|
1156
|
-
const
|
|
1157
|
-
const
|
|
1158
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
940
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
941
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.appLoginBySMSCode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
942
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1159
943
|
});
|
|
1160
944
|
},
|
|
1161
945
|
/**
|
|
@@ -1166,12 +950,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1166
950
|
* @throws {RequiredError}
|
|
1167
951
|
*/
|
|
1168
952
|
bindEmail(userBindBody, options) {
|
|
953
|
+
var _a, _b, _c;
|
|
1169
954
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1170
|
-
var _a, _b, _c;
|
|
1171
955
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindEmail(userBindBody, options);
|
|
1172
|
-
const
|
|
1173
|
-
const
|
|
1174
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
956
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
957
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.bindEmail']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
958
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1175
959
|
});
|
|
1176
960
|
},
|
|
1177
961
|
/**
|
|
@@ -1182,12 +966,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1182
966
|
* @throws {RequiredError}
|
|
1183
967
|
*/
|
|
1184
968
|
bindPhone(userBindBody, options) {
|
|
969
|
+
var _a, _b, _c;
|
|
1185
970
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1186
|
-
var _a, _b, _c;
|
|
1187
971
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindPhone(userBindBody, options);
|
|
1188
|
-
const
|
|
1189
|
-
const
|
|
1190
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
972
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
973
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.bindPhone']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
974
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1191
975
|
});
|
|
1192
976
|
},
|
|
1193
977
|
/**
|
|
@@ -1197,12 +981,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1197
981
|
* @throws {RequiredError}
|
|
1198
982
|
*/
|
|
1199
983
|
bindingCId(cId, options) {
|
|
984
|
+
var _a, _b, _c;
|
|
1200
985
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1201
|
-
var _a, _b, _c;
|
|
1202
986
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindingCId(cId, options);
|
|
1203
|
-
const
|
|
1204
|
-
const
|
|
1205
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
987
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
988
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.bindingCId']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
989
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1206
990
|
});
|
|
1207
991
|
},
|
|
1208
992
|
/**
|
|
@@ -1212,12 +996,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1212
996
|
* @throws {RequiredError}
|
|
1213
997
|
*/
|
|
1214
998
|
cancelAccount(options) {
|
|
999
|
+
var _a, _b, _c;
|
|
1215
1000
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1216
|
-
var _a, _b, _c;
|
|
1217
1001
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.cancelAccount(options);
|
|
1218
|
-
const
|
|
1219
|
-
const
|
|
1220
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1002
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1003
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.cancelAccount']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1004
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1221
1005
|
});
|
|
1222
1006
|
},
|
|
1223
1007
|
/**
|
|
@@ -1227,12 +1011,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1227
1011
|
* @throws {RequiredError}
|
|
1228
1012
|
*/
|
|
1229
1013
|
checkToken(options) {
|
|
1014
|
+
var _a, _b, _c;
|
|
1230
1015
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1231
|
-
var _a, _b, _c;
|
|
1232
1016
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.checkToken(options);
|
|
1233
|
-
const
|
|
1234
|
-
const
|
|
1235
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1017
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1018
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.checkToken']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1019
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1236
1020
|
});
|
|
1237
1021
|
},
|
|
1238
1022
|
/**
|
|
@@ -1243,12 +1027,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1243
1027
|
* @throws {RequiredError}
|
|
1244
1028
|
*/
|
|
1245
1029
|
choosePark(choosePakBody, options) {
|
|
1030
|
+
var _a, _b, _c;
|
|
1246
1031
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1247
|
-
var _a, _b, _c;
|
|
1248
1032
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.choosePark(choosePakBody, options);
|
|
1249
|
-
const
|
|
1250
|
-
const
|
|
1251
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1033
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1034
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.choosePark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1035
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1252
1036
|
});
|
|
1253
1037
|
},
|
|
1254
1038
|
/**
|
|
@@ -1260,68 +1044,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1260
1044
|
* @throws {RequiredError}
|
|
1261
1045
|
*/
|
|
1262
1046
|
code(email, language, options) {
|
|
1047
|
+
var _a, _b, _c;
|
|
1263
1048
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1264
|
-
var _a, _b, _c;
|
|
1265
1049
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.code(email, language, options);
|
|
1266
|
-
const
|
|
1267
|
-
const
|
|
1268
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1269
|
-
});
|
|
1270
|
-
},
|
|
1271
|
-
/**
|
|
1272
|
-
*
|
|
1273
|
-
* @param {*} [options] Override http request option.
|
|
1274
|
-
* @throws {RequiredError}
|
|
1275
|
-
*/
|
|
1276
|
-
fusionGetToken(options) {
|
|
1277
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1278
|
-
var _a, _b, _c;
|
|
1279
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken(options);
|
|
1280
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1281
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.fusionGetToken']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1282
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1283
|
-
});
|
|
1284
|
-
},
|
|
1285
|
-
/**
|
|
1286
|
-
*
|
|
1287
|
-
* @param {*} [options] Override http request option.
|
|
1288
|
-
* @throws {RequiredError}
|
|
1289
|
-
*/
|
|
1290
|
-
fusionGetToken1(options) {
|
|
1291
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1292
|
-
var _a, _b, _c;
|
|
1293
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken1(options);
|
|
1294
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1295
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.fusionGetToken1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1296
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1297
|
-
});
|
|
1298
|
-
},
|
|
1299
|
-
/**
|
|
1300
|
-
*
|
|
1301
|
-
* @param {*} [options] Override http request option.
|
|
1302
|
-
* @throws {RequiredError}
|
|
1303
|
-
*/
|
|
1304
|
-
fusionGetToken2(options) {
|
|
1305
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1306
|
-
var _a, _b, _c;
|
|
1307
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken2(options);
|
|
1308
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1309
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.fusionGetToken2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1310
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1311
|
-
});
|
|
1312
|
-
},
|
|
1313
|
-
/**
|
|
1314
|
-
*
|
|
1315
|
-
* @param {*} [options] Override http request option.
|
|
1316
|
-
* @throws {RequiredError}
|
|
1317
|
-
*/
|
|
1318
|
-
fusionGetToken3(options) {
|
|
1319
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1320
|
-
var _a, _b, _c;
|
|
1321
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken3(options);
|
|
1322
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1323
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.fusionGetToken3']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1324
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1050
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1051
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.code']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1052
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1325
1053
|
});
|
|
1326
1054
|
},
|
|
1327
1055
|
/**
|
|
@@ -1330,12 +1058,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1330
1058
|
* @throws {RequiredError}
|
|
1331
1059
|
*/
|
|
1332
1060
|
getCode(options) {
|
|
1061
|
+
var _a, _b, _c;
|
|
1333
1062
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1334
|
-
var _a, _b, _c;
|
|
1335
1063
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCode(options);
|
|
1336
|
-
const
|
|
1337
|
-
const
|
|
1338
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1064
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1065
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getCode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1066
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1339
1067
|
});
|
|
1340
1068
|
},
|
|
1341
1069
|
/**
|
|
@@ -1344,12 +1072,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1344
1072
|
* @throws {RequiredError}
|
|
1345
1073
|
*/
|
|
1346
1074
|
getLoginMode(options) {
|
|
1075
|
+
var _a, _b, _c;
|
|
1347
1076
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1348
|
-
var _a, _b, _c;
|
|
1349
1077
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getLoginMode(options);
|
|
1350
|
-
const
|
|
1351
|
-
const
|
|
1352
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1078
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1079
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getLoginMode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1080
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1353
1081
|
});
|
|
1354
1082
|
},
|
|
1355
1083
|
/**
|
|
@@ -1362,12 +1090,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1362
1090
|
* @throws {RequiredError}
|
|
1363
1091
|
*/
|
|
1364
1092
|
getPark(uuid, type, parkId, options) {
|
|
1093
|
+
var _a, _b, _c;
|
|
1365
1094
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1366
|
-
var _a, _b, _c;
|
|
1367
1095
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getPark(uuid, type, parkId, options);
|
|
1368
|
-
const
|
|
1369
|
-
const
|
|
1370
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1096
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1097
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getPark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1098
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1371
1099
|
});
|
|
1372
1100
|
},
|
|
1373
1101
|
/**
|
|
@@ -1378,12 +1106,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1378
1106
|
* @throws {RequiredError}
|
|
1379
1107
|
*/
|
|
1380
1108
|
getParkByGroupId(groupId, options) {
|
|
1109
|
+
var _a, _b, _c;
|
|
1381
1110
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1382
|
-
var _a, _b, _c;
|
|
1383
1111
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkByGroupId(groupId, options);
|
|
1384
|
-
const
|
|
1385
|
-
const
|
|
1386
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1112
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1113
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getParkByGroupId']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1114
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1387
1115
|
});
|
|
1388
1116
|
},
|
|
1389
1117
|
/**
|
|
@@ -1397,12 +1125,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1397
1125
|
* @throws {RequiredError}
|
|
1398
1126
|
*/
|
|
1399
1127
|
getParkMiniApp(uuid, userType, parkId, appId, options) {
|
|
1128
|
+
var _a, _b, _c;
|
|
1400
1129
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1401
|
-
var _a, _b, _c;
|
|
1402
1130
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkMiniApp(uuid, userType, parkId, appId, options);
|
|
1403
|
-
const
|
|
1404
|
-
const
|
|
1405
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1131
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1132
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getParkMiniApp']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1133
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1406
1134
|
});
|
|
1407
1135
|
},
|
|
1408
1136
|
/**
|
|
@@ -1412,12 +1140,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1412
1140
|
* @throws {RequiredError}
|
|
1413
1141
|
*/
|
|
1414
1142
|
getRouters(parkId, options) {
|
|
1143
|
+
var _a, _b, _c;
|
|
1415
1144
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1416
|
-
var _a, _b, _c;
|
|
1417
1145
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getRouters(parkId, options);
|
|
1418
|
-
const
|
|
1419
|
-
const
|
|
1420
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1146
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1147
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getRouters']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1148
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1421
1149
|
});
|
|
1422
1150
|
},
|
|
1423
1151
|
/**
|
|
@@ -1426,68 +1154,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1426
1154
|
* @throws {RequiredError}
|
|
1427
1155
|
*/
|
|
1428
1156
|
getRoutersAll(options) {
|
|
1157
|
+
var _a, _b, _c;
|
|
1429
1158
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1430
|
-
var _a, _b, _c;
|
|
1431
1159
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getRoutersAll(options);
|
|
1432
|
-
const
|
|
1433
|
-
const
|
|
1434
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1435
|
-
});
|
|
1436
|
-
},
|
|
1437
|
-
/**
|
|
1438
|
-
*
|
|
1439
|
-
* @param {*} [options] Override http request option.
|
|
1440
|
-
* @throws {RequiredError}
|
|
1441
|
-
*/
|
|
1442
|
-
getTokenByHttp(options) {
|
|
1443
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1444
|
-
var _a, _b, _c;
|
|
1445
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp(options);
|
|
1446
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1447
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.getTokenByHttp']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1448
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1449
|
-
});
|
|
1450
|
-
},
|
|
1451
|
-
/**
|
|
1452
|
-
*
|
|
1453
|
-
* @param {*} [options] Override http request option.
|
|
1454
|
-
* @throws {RequiredError}
|
|
1455
|
-
*/
|
|
1456
|
-
getTokenByHttp1(options) {
|
|
1457
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1458
|
-
var _a, _b, _c;
|
|
1459
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp1(options);
|
|
1460
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1461
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.getTokenByHttp1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1462
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1463
|
-
});
|
|
1464
|
-
},
|
|
1465
|
-
/**
|
|
1466
|
-
*
|
|
1467
|
-
* @param {*} [options] Override http request option.
|
|
1468
|
-
* @throws {RequiredError}
|
|
1469
|
-
*/
|
|
1470
|
-
getTokenByHttp2(options) {
|
|
1471
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1472
|
-
var _a, _b, _c;
|
|
1473
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp2(options);
|
|
1474
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1475
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.getTokenByHttp2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1476
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1477
|
-
});
|
|
1478
|
-
},
|
|
1479
|
-
/**
|
|
1480
|
-
*
|
|
1481
|
-
* @param {*} [options] Override http request option.
|
|
1482
|
-
* @throws {RequiredError}
|
|
1483
|
-
*/
|
|
1484
|
-
getTokenByHttp3(options) {
|
|
1485
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1486
|
-
var _a, _b, _c;
|
|
1487
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp3(options);
|
|
1488
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1489
|
-
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AuthApi.getTokenByHttp3']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1490
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1160
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1161
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getRoutersAll']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1162
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1491
1163
|
});
|
|
1492
1164
|
},
|
|
1493
1165
|
/**
|
|
@@ -1498,12 +1170,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1498
1170
|
* @throws {RequiredError}
|
|
1499
1171
|
*/
|
|
1500
1172
|
getUserRolesAndPermissions(parkId, options) {
|
|
1173
|
+
var _a, _b, _c;
|
|
1501
1174
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1502
|
-
var _a, _b, _c;
|
|
1503
1175
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getUserRolesAndPermissions(parkId, options);
|
|
1504
|
-
const
|
|
1505
|
-
const
|
|
1506
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1176
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1177
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.getUserRolesAndPermissions']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1178
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1507
1179
|
});
|
|
1508
1180
|
},
|
|
1509
1181
|
/**
|
|
@@ -1513,12 +1185,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1513
1185
|
* @throws {RequiredError}
|
|
1514
1186
|
*/
|
|
1515
1187
|
login(loginBody, options) {
|
|
1188
|
+
var _a, _b, _c;
|
|
1516
1189
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1517
|
-
var _a, _b, _c;
|
|
1518
1190
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.login(loginBody, options);
|
|
1519
|
-
const
|
|
1520
|
-
const
|
|
1521
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1191
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1192
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.login']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1193
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1522
1194
|
});
|
|
1523
1195
|
},
|
|
1524
1196
|
/**
|
|
@@ -1529,12 +1201,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1529
1201
|
* @throws {RequiredError}
|
|
1530
1202
|
*/
|
|
1531
1203
|
loginByCodeV2(appLoginWxChatDto, options) {
|
|
1204
|
+
var _a, _b, _c;
|
|
1532
1205
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1533
|
-
var _a, _b, _c;
|
|
1534
1206
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginByCodeV2(appLoginWxChatDto, options);
|
|
1535
|
-
const
|
|
1536
|
-
const
|
|
1537
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1207
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1208
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.loginByCodeV2']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1209
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1538
1210
|
});
|
|
1539
1211
|
},
|
|
1540
1212
|
/**
|
|
@@ -1545,12 +1217,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1545
1217
|
* @throws {RequiredError}
|
|
1546
1218
|
*/
|
|
1547
1219
|
loginByOpenId(appObtainToken, options) {
|
|
1220
|
+
var _a, _b, _c;
|
|
1548
1221
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1549
|
-
var _a, _b, _c;
|
|
1550
1222
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginByOpenId(appObtainToken, options);
|
|
1551
|
-
const
|
|
1552
|
-
const
|
|
1553
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1223
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1224
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.loginByOpenId']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1225
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1554
1226
|
});
|
|
1555
1227
|
},
|
|
1556
1228
|
/**
|
|
@@ -1561,12 +1233,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1561
1233
|
* @throws {RequiredError}
|
|
1562
1234
|
*/
|
|
1563
1235
|
loginByWechatPublic(appLoginWxChatPubDto, options) {
|
|
1236
|
+
var _a, _b, _c;
|
|
1564
1237
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1565
|
-
var _a, _b, _c;
|
|
1566
1238
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginByWechatPublic(appLoginWxChatPubDto, options);
|
|
1567
|
-
const
|
|
1568
|
-
const
|
|
1569
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1239
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1240
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.loginByWechatPublic']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1241
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1570
1242
|
});
|
|
1571
1243
|
},
|
|
1572
1244
|
/**
|
|
@@ -1577,12 +1249,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1577
1249
|
* @throws {RequiredError}
|
|
1578
1250
|
*/
|
|
1579
1251
|
loginPhoneCode(sysLoginCodeDto, options) {
|
|
1252
|
+
var _a, _b, _c;
|
|
1580
1253
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1581
|
-
var _a, _b, _c;
|
|
1582
1254
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginPhoneCode(sysLoginCodeDto, options);
|
|
1583
|
-
const
|
|
1584
|
-
const
|
|
1585
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1255
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1256
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.loginPhoneCode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1257
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1586
1258
|
});
|
|
1587
1259
|
},
|
|
1588
1260
|
/**
|
|
@@ -1593,12 +1265,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1593
1265
|
* @throws {RequiredError}
|
|
1594
1266
|
*/
|
|
1595
1267
|
pushMsg(cid, payload, options) {
|
|
1268
|
+
var _a, _b, _c;
|
|
1596
1269
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1597
|
-
var _a, _b, _c;
|
|
1598
1270
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.pushMsg(cid, payload, options);
|
|
1599
|
-
const
|
|
1600
|
-
const
|
|
1601
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1271
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1272
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.pushMsg']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1273
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1602
1274
|
});
|
|
1603
1275
|
},
|
|
1604
1276
|
/**
|
|
@@ -1609,12 +1281,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1609
1281
|
* @throws {RequiredError}
|
|
1610
1282
|
*/
|
|
1611
1283
|
switchPark(switchPakBody, options) {
|
|
1284
|
+
var _a, _b, _c;
|
|
1612
1285
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1613
|
-
var _a, _b, _c;
|
|
1614
1286
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.switchPark(switchPakBody, options);
|
|
1615
|
-
const
|
|
1616
|
-
const
|
|
1617
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1287
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1288
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.switchPark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1289
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1618
1290
|
});
|
|
1619
1291
|
},
|
|
1620
1292
|
/**
|
|
@@ -1624,12 +1296,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1624
1296
|
* @throws {RequiredError}
|
|
1625
1297
|
*/
|
|
1626
1298
|
switchParkToken(switchPakBody, options) {
|
|
1299
|
+
var _a, _b, _c;
|
|
1627
1300
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1628
|
-
var _a, _b, _c;
|
|
1629
1301
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.switchParkToken(switchPakBody, options);
|
|
1630
|
-
const
|
|
1631
|
-
const
|
|
1632
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1302
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1303
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.switchParkToken']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1304
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1633
1305
|
});
|
|
1634
1306
|
},
|
|
1635
1307
|
/**
|
|
@@ -1640,12 +1312,12 @@ export const AuthApiFp = function (configuration) {
|
|
|
1640
1312
|
* @throws {RequiredError}
|
|
1641
1313
|
*/
|
|
1642
1314
|
switchParkV2(switchPakBodyV2Vo, options) {
|
|
1315
|
+
var _a, _b, _c;
|
|
1643
1316
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1644
|
-
var _a, _b, _c;
|
|
1645
1317
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.switchParkV2(switchPakBodyV2Vo, options);
|
|
1646
|
-
const
|
|
1647
|
-
const
|
|
1648
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1318
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1319
|
+
const operationBasePath = (_c = (_b = operationServerMap['AuthApi.switchParkV2']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1320
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1649
1321
|
});
|
|
1650
1322
|
},
|
|
1651
1323
|
};
|
|
@@ -1744,38 +1416,6 @@ export const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1744
1416
|
code(requestParameters, options) {
|
|
1745
1417
|
return localVarFp.code(requestParameters.email, requestParameters.language, options).then((request) => request(axios, basePath));
|
|
1746
1418
|
},
|
|
1747
|
-
/**
|
|
1748
|
-
*
|
|
1749
|
-
* @param {*} [options] Override http request option.
|
|
1750
|
-
* @throws {RequiredError}
|
|
1751
|
-
*/
|
|
1752
|
-
fusionGetToken(options) {
|
|
1753
|
-
return localVarFp.fusionGetToken(options).then((request) => request(axios, basePath));
|
|
1754
|
-
},
|
|
1755
|
-
/**
|
|
1756
|
-
*
|
|
1757
|
-
* @param {*} [options] Override http request option.
|
|
1758
|
-
* @throws {RequiredError}
|
|
1759
|
-
*/
|
|
1760
|
-
fusionGetToken1(options) {
|
|
1761
|
-
return localVarFp.fusionGetToken1(options).then((request) => request(axios, basePath));
|
|
1762
|
-
},
|
|
1763
|
-
/**
|
|
1764
|
-
*
|
|
1765
|
-
* @param {*} [options] Override http request option.
|
|
1766
|
-
* @throws {RequiredError}
|
|
1767
|
-
*/
|
|
1768
|
-
fusionGetToken2(options) {
|
|
1769
|
-
return localVarFp.fusionGetToken2(options).then((request) => request(axios, basePath));
|
|
1770
|
-
},
|
|
1771
|
-
/**
|
|
1772
|
-
*
|
|
1773
|
-
* @param {*} [options] Override http request option.
|
|
1774
|
-
* @throws {RequiredError}
|
|
1775
|
-
*/
|
|
1776
|
-
fusionGetToken3(options) {
|
|
1777
|
-
return localVarFp.fusionGetToken3(options).then((request) => request(axios, basePath));
|
|
1778
|
-
},
|
|
1779
1419
|
/**
|
|
1780
1420
|
*
|
|
1781
1421
|
* @param {*} [options] Override http request option.
|
|
@@ -1839,38 +1479,6 @@ export const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1839
1479
|
getRoutersAll(options) {
|
|
1840
1480
|
return localVarFp.getRoutersAll(options).then((request) => request(axios, basePath));
|
|
1841
1481
|
},
|
|
1842
|
-
/**
|
|
1843
|
-
*
|
|
1844
|
-
* @param {*} [options] Override http request option.
|
|
1845
|
-
* @throws {RequiredError}
|
|
1846
|
-
*/
|
|
1847
|
-
getTokenByHttp(options) {
|
|
1848
|
-
return localVarFp.getTokenByHttp(options).then((request) => request(axios, basePath));
|
|
1849
|
-
},
|
|
1850
|
-
/**
|
|
1851
|
-
*
|
|
1852
|
-
* @param {*} [options] Override http request option.
|
|
1853
|
-
* @throws {RequiredError}
|
|
1854
|
-
*/
|
|
1855
|
-
getTokenByHttp1(options) {
|
|
1856
|
-
return localVarFp.getTokenByHttp1(options).then((request) => request(axios, basePath));
|
|
1857
|
-
},
|
|
1858
|
-
/**
|
|
1859
|
-
*
|
|
1860
|
-
* @param {*} [options] Override http request option.
|
|
1861
|
-
* @throws {RequiredError}
|
|
1862
|
-
*/
|
|
1863
|
-
getTokenByHttp2(options) {
|
|
1864
|
-
return localVarFp.getTokenByHttp2(options).then((request) => request(axios, basePath));
|
|
1865
|
-
},
|
|
1866
|
-
/**
|
|
1867
|
-
*
|
|
1868
|
-
* @param {*} [options] Override http request option.
|
|
1869
|
-
* @throws {RequiredError}
|
|
1870
|
-
*/
|
|
1871
|
-
getTokenByHttp3(options) {
|
|
1872
|
-
return localVarFp.getTokenByHttp3(options).then((request) => request(axios, basePath));
|
|
1873
|
-
},
|
|
1874
1482
|
/**
|
|
1875
1483
|
*
|
|
1876
1484
|
* @summary 获取用户信息
|
|
@@ -2073,42 +1681,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2073
1681
|
code(requestParameters, options) {
|
|
2074
1682
|
return AuthApiFp(this.configuration).code(requestParameters.email, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
|
|
2075
1683
|
}
|
|
2076
|
-
/**
|
|
2077
|
-
*
|
|
2078
|
-
* @param {*} [options] Override http request option.
|
|
2079
|
-
* @throws {RequiredError}
|
|
2080
|
-
* @memberof AuthApi
|
|
2081
|
-
*/
|
|
2082
|
-
fusionGetToken(options) {
|
|
2083
|
-
return AuthApiFp(this.configuration).fusionGetToken(options).then((request) => request(this.axios, this.basePath));
|
|
2084
|
-
}
|
|
2085
|
-
/**
|
|
2086
|
-
*
|
|
2087
|
-
* @param {*} [options] Override http request option.
|
|
2088
|
-
* @throws {RequiredError}
|
|
2089
|
-
* @memberof AuthApi
|
|
2090
|
-
*/
|
|
2091
|
-
fusionGetToken1(options) {
|
|
2092
|
-
return AuthApiFp(this.configuration).fusionGetToken1(options).then((request) => request(this.axios, this.basePath));
|
|
2093
|
-
}
|
|
2094
|
-
/**
|
|
2095
|
-
*
|
|
2096
|
-
* @param {*} [options] Override http request option.
|
|
2097
|
-
* @throws {RequiredError}
|
|
2098
|
-
* @memberof AuthApi
|
|
2099
|
-
*/
|
|
2100
|
-
fusionGetToken2(options) {
|
|
2101
|
-
return AuthApiFp(this.configuration).fusionGetToken2(options).then((request) => request(this.axios, this.basePath));
|
|
2102
|
-
}
|
|
2103
|
-
/**
|
|
2104
|
-
*
|
|
2105
|
-
* @param {*} [options] Override http request option.
|
|
2106
|
-
* @throws {RequiredError}
|
|
2107
|
-
* @memberof AuthApi
|
|
2108
|
-
*/
|
|
2109
|
-
fusionGetToken3(options) {
|
|
2110
|
-
return AuthApiFp(this.configuration).fusionGetToken3(options).then((request) => request(this.axios, this.basePath));
|
|
2111
|
-
}
|
|
2112
1684
|
/**
|
|
2113
1685
|
*
|
|
2114
1686
|
* @param {*} [options] Override http request option.
|
|
@@ -2179,42 +1751,6 @@ export class AuthApi extends BaseAPI {
|
|
|
2179
1751
|
getRoutersAll(options) {
|
|
2180
1752
|
return AuthApiFp(this.configuration).getRoutersAll(options).then((request) => request(this.axios, this.basePath));
|
|
2181
1753
|
}
|
|
2182
|
-
/**
|
|
2183
|
-
*
|
|
2184
|
-
* @param {*} [options] Override http request option.
|
|
2185
|
-
* @throws {RequiredError}
|
|
2186
|
-
* @memberof AuthApi
|
|
2187
|
-
*/
|
|
2188
|
-
getTokenByHttp(options) {
|
|
2189
|
-
return AuthApiFp(this.configuration).getTokenByHttp(options).then((request) => request(this.axios, this.basePath));
|
|
2190
|
-
}
|
|
2191
|
-
/**
|
|
2192
|
-
*
|
|
2193
|
-
* @param {*} [options] Override http request option.
|
|
2194
|
-
* @throws {RequiredError}
|
|
2195
|
-
* @memberof AuthApi
|
|
2196
|
-
*/
|
|
2197
|
-
getTokenByHttp1(options) {
|
|
2198
|
-
return AuthApiFp(this.configuration).getTokenByHttp1(options).then((request) => request(this.axios, this.basePath));
|
|
2199
|
-
}
|
|
2200
|
-
/**
|
|
2201
|
-
*
|
|
2202
|
-
* @param {*} [options] Override http request option.
|
|
2203
|
-
* @throws {RequiredError}
|
|
2204
|
-
* @memberof AuthApi
|
|
2205
|
-
*/
|
|
2206
|
-
getTokenByHttp2(options) {
|
|
2207
|
-
return AuthApiFp(this.configuration).getTokenByHttp2(options).then((request) => request(this.axios, this.basePath));
|
|
2208
|
-
}
|
|
2209
|
-
/**
|
|
2210
|
-
*
|
|
2211
|
-
* @param {*} [options] Override http request option.
|
|
2212
|
-
* @throws {RequiredError}
|
|
2213
|
-
* @memberof AuthApi
|
|
2214
|
-
*/
|
|
2215
|
-
getTokenByHttp3(options) {
|
|
2216
|
-
return AuthApiFp(this.configuration).getTokenByHttp3(options).then((request) => request(this.axios, this.basePath));
|
|
2217
|
-
}
|
|
2218
1754
|
/**
|
|
2219
1755
|
*
|
|
2220
1756
|
* @summary 获取用户信息
|