@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
package/dist/apis/auth-api.js
CHANGED
|
@@ -42,7 +42,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
42
42
|
* @param {*} [options] Override http request option.
|
|
43
43
|
* @throws {RequiredError}
|
|
44
44
|
*/
|
|
45
|
-
appLoginByMobile: (
|
|
45
|
+
appLoginByMobile: (appLoginPasswordDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
46
46
|
// verify required parameter 'appLoginPasswordDto' is not null or undefined
|
|
47
47
|
(0, common_1.assertParamExists)('appLoginByMobile', 'appLoginPasswordDto', appLoginPasswordDto);
|
|
48
48
|
const localVarPath = `/miniapp/auth/loginByMobile`;
|
|
@@ -75,7 +75,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
75
75
|
* @param {*} [options] Override http request option.
|
|
76
76
|
* @throws {RequiredError}
|
|
77
77
|
*/
|
|
78
|
-
appLoginBySMSCode: (
|
|
78
|
+
appLoginBySMSCode: (appLoginCodeDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
79
79
|
// verify required parameter 'appLoginCodeDto' is not null or undefined
|
|
80
80
|
(0, common_1.assertParamExists)('appLoginBySMSCode', 'appLoginCodeDto', appLoginCodeDto);
|
|
81
81
|
const localVarPath = `/miniapp/auth/loginByMobileCode`;
|
|
@@ -108,7 +108,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
108
108
|
* @param {*} [options] Override http request option.
|
|
109
109
|
* @throws {RequiredError}
|
|
110
110
|
*/
|
|
111
|
-
bindEmail: (
|
|
111
|
+
bindEmail: (userBindBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
112
112
|
// verify required parameter 'userBindBody' is not null or undefined
|
|
113
113
|
(0, common_1.assertParamExists)('bindEmail', 'userBindBody', userBindBody);
|
|
114
114
|
const localVarPath = `/miniapp/auth/bind/email`;
|
|
@@ -141,7 +141,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
141
141
|
* @param {*} [options] Override http request option.
|
|
142
142
|
* @throws {RequiredError}
|
|
143
143
|
*/
|
|
144
|
-
bindPhone: (
|
|
144
|
+
bindPhone: (userBindBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
145
145
|
// verify required parameter 'userBindBody' is not null or undefined
|
|
146
146
|
(0, common_1.assertParamExists)('bindPhone', 'userBindBody', userBindBody);
|
|
147
147
|
const localVarPath = `/miniapp/auth/bind/phone`;
|
|
@@ -173,7 +173,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
173
173
|
* @param {*} [options] Override http request option.
|
|
174
174
|
* @throws {RequiredError}
|
|
175
175
|
*/
|
|
176
|
-
bindingCId: (
|
|
176
|
+
bindingCId: (cId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
177
177
|
// verify required parameter 'cId' is not null or undefined
|
|
178
178
|
(0, common_1.assertParamExists)('bindingCId', 'cId', cId);
|
|
179
179
|
const localVarPath = `/miniapp/auth/bindingCId/{cId}`
|
|
@@ -204,7 +204,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
204
204
|
* @param {*} [options] Override http request option.
|
|
205
205
|
* @throws {RequiredError}
|
|
206
206
|
*/
|
|
207
|
-
cancelAccount: (
|
|
207
|
+
cancelAccount: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
208
208
|
const localVarPath = `/miniapp/auth/cancel/account`;
|
|
209
209
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
210
210
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -232,7 +232,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
232
232
|
* @param {*} [options] Override http request option.
|
|
233
233
|
* @throws {RequiredError}
|
|
234
234
|
*/
|
|
235
|
-
checkToken: (
|
|
235
|
+
checkToken: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
236
236
|
const localVarPath = `/checkToken`;
|
|
237
237
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
238
238
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -261,7 +261,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
261
261
|
* @param {*} [options] Override http request option.
|
|
262
262
|
* @throws {RequiredError}
|
|
263
263
|
*/
|
|
264
|
-
choosePark: (
|
|
264
|
+
choosePark: (choosePakBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
265
265
|
// verify required parameter 'choosePakBody' is not null or undefined
|
|
266
266
|
(0, common_1.assertParamExists)('choosePark', 'choosePakBody', choosePakBody);
|
|
267
267
|
const localVarPath = `/miniapp/auth/choose/park`;
|
|
@@ -295,7 +295,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
295
295
|
* @param {*} [options] Override http request option.
|
|
296
296
|
* @throws {RequiredError}
|
|
297
297
|
*/
|
|
298
|
-
code: (
|
|
298
|
+
code: (email, language, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
299
299
|
// verify required parameter 'email' is not null or undefined
|
|
300
300
|
(0, common_1.assertParamExists)('code', 'email', email);
|
|
301
301
|
// verify required parameter 'language' is not null or undefined
|
|
@@ -332,115 +332,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
332
332
|
* @param {*} [options] Override http request option.
|
|
333
333
|
* @throws {RequiredError}
|
|
334
334
|
*/
|
|
335
|
-
|
|
336
|
-
const localVarPath = `/miniapp/auth/getToken`;
|
|
337
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
338
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
339
|
-
let baseOptions;
|
|
340
|
-
if (configuration) {
|
|
341
|
-
baseOptions = configuration.baseOptions;
|
|
342
|
-
}
|
|
343
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
344
|
-
const localVarHeaderParameter = {};
|
|
345
|
-
const localVarQueryParameter = {};
|
|
346
|
-
// authentication tokenScheme required
|
|
347
|
-
// http bearer authentication required
|
|
348
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
349
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
350
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
351
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
352
|
-
return {
|
|
353
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
354
|
-
options: localVarRequestOptions,
|
|
355
|
-
};
|
|
356
|
-
}),
|
|
357
|
-
/**
|
|
358
|
-
*
|
|
359
|
-
* @param {*} [options] Override http request option.
|
|
360
|
-
* @throws {RequiredError}
|
|
361
|
-
*/
|
|
362
|
-
fusionGetToken1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
363
|
-
const localVarPath = `/miniapp/auth/getToken`;
|
|
364
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
365
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
366
|
-
let baseOptions;
|
|
367
|
-
if (configuration) {
|
|
368
|
-
baseOptions = configuration.baseOptions;
|
|
369
|
-
}
|
|
370
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
371
|
-
const localVarHeaderParameter = {};
|
|
372
|
-
const localVarQueryParameter = {};
|
|
373
|
-
// authentication tokenScheme required
|
|
374
|
-
// http bearer authentication required
|
|
375
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
376
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
377
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
378
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
379
|
-
return {
|
|
380
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
381
|
-
options: localVarRequestOptions,
|
|
382
|
-
};
|
|
383
|
-
}),
|
|
384
|
-
/**
|
|
385
|
-
*
|
|
386
|
-
* @param {*} [options] Override http request option.
|
|
387
|
-
* @throws {RequiredError}
|
|
388
|
-
*/
|
|
389
|
-
fusionGetToken2: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
390
|
-
const localVarPath = `/fusion/base/getToken`;
|
|
391
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
392
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
393
|
-
let baseOptions;
|
|
394
|
-
if (configuration) {
|
|
395
|
-
baseOptions = configuration.baseOptions;
|
|
396
|
-
}
|
|
397
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
398
|
-
const localVarHeaderParameter = {};
|
|
399
|
-
const localVarQueryParameter = {};
|
|
400
|
-
// authentication tokenScheme required
|
|
401
|
-
// http bearer authentication required
|
|
402
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
403
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
404
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
405
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
406
|
-
return {
|
|
407
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
408
|
-
options: localVarRequestOptions,
|
|
409
|
-
};
|
|
410
|
-
}),
|
|
411
|
-
/**
|
|
412
|
-
*
|
|
413
|
-
* @param {*} [options] Override http request option.
|
|
414
|
-
* @throws {RequiredError}
|
|
415
|
-
*/
|
|
416
|
-
fusionGetToken3: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
417
|
-
const localVarPath = `/fusion/base/getToken`;
|
|
418
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
419
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
420
|
-
let baseOptions;
|
|
421
|
-
if (configuration) {
|
|
422
|
-
baseOptions = configuration.baseOptions;
|
|
423
|
-
}
|
|
424
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
425
|
-
const localVarHeaderParameter = {};
|
|
426
|
-
const localVarQueryParameter = {};
|
|
427
|
-
// authentication tokenScheme required
|
|
428
|
-
// http bearer authentication required
|
|
429
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
430
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
431
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
432
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
433
|
-
return {
|
|
434
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
435
|
-
options: localVarRequestOptions,
|
|
436
|
-
};
|
|
437
|
-
}),
|
|
438
|
-
/**
|
|
439
|
-
*
|
|
440
|
-
* @param {*} [options] Override http request option.
|
|
441
|
-
* @throws {RequiredError}
|
|
442
|
-
*/
|
|
443
|
-
getCode: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
335
|
+
getCode: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
444
336
|
const localVarPath = `/captchaImage`;
|
|
445
337
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
446
338
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -467,7 +359,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
467
359
|
* @param {*} [options] Override http request option.
|
|
468
360
|
* @throws {RequiredError}
|
|
469
361
|
*/
|
|
470
|
-
getLoginMode: (
|
|
362
|
+
getLoginMode: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
471
363
|
const localVarPath = `/getLoginMode`;
|
|
472
364
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
473
365
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -498,7 +390,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
498
390
|
* @param {*} [options] Override http request option.
|
|
499
391
|
* @throws {RequiredError}
|
|
500
392
|
*/
|
|
501
|
-
getPark: (
|
|
393
|
+
getPark: (uuid, type, parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
502
394
|
// verify required parameter 'uuid' is not null or undefined
|
|
503
395
|
(0, common_1.assertParamExists)('getPark', 'uuid', uuid);
|
|
504
396
|
// verify required parameter 'type' is not null or undefined
|
|
@@ -542,7 +434,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
542
434
|
* @param {*} [options] Override http request option.
|
|
543
435
|
* @throws {RequiredError}
|
|
544
436
|
*/
|
|
545
|
-
getParkByGroupId: (
|
|
437
|
+
getParkByGroupId: (groupId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
546
438
|
// verify required parameter 'groupId' is not null or undefined
|
|
547
439
|
(0, common_1.assertParamExists)('getParkByGroupId', 'groupId', groupId);
|
|
548
440
|
const localVarPath = `/miniapp/auth/{groupId}/park`
|
|
@@ -577,7 +469,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
577
469
|
* @param {*} [options] Override http request option.
|
|
578
470
|
* @throws {RequiredError}
|
|
579
471
|
*/
|
|
580
|
-
getParkMiniApp: (
|
|
472
|
+
getParkMiniApp: (uuid, userType, parkId, appId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
581
473
|
// verify required parameter 'uuid' is not null or undefined
|
|
582
474
|
(0, common_1.assertParamExists)('getParkMiniApp', 'uuid', uuid);
|
|
583
475
|
// verify required parameter 'userType' is not null or undefined
|
|
@@ -625,7 +517,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
625
517
|
* @param {*} [options] Override http request option.
|
|
626
518
|
* @throws {RequiredError}
|
|
627
519
|
*/
|
|
628
|
-
getRouters: (
|
|
520
|
+
getRouters: (parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
629
521
|
// verify required parameter 'parkId' is not null or undefined
|
|
630
522
|
(0, common_1.assertParamExists)('getRouters', 'parkId', parkId);
|
|
631
523
|
const localVarPath = `/getRouters`;
|
|
@@ -657,7 +549,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
657
549
|
* @param {*} [options] Override http request option.
|
|
658
550
|
* @throws {RequiredError}
|
|
659
551
|
*/
|
|
660
|
-
getRoutersAll: (
|
|
552
|
+
getRoutersAll: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
661
553
|
const localVarPath = `/getRoutersAll`;
|
|
662
554
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
663
555
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -679,114 +571,6 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
679
571
|
options: localVarRequestOptions,
|
|
680
572
|
};
|
|
681
573
|
}),
|
|
682
|
-
/**
|
|
683
|
-
*
|
|
684
|
-
* @param {*} [options] Override http request option.
|
|
685
|
-
* @throws {RequiredError}
|
|
686
|
-
*/
|
|
687
|
-
getTokenByHttp: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
688
|
-
const localVarPath = `/miniapp/auth/fusionGetTokenByHttp`;
|
|
689
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
690
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
691
|
-
let baseOptions;
|
|
692
|
-
if (configuration) {
|
|
693
|
-
baseOptions = configuration.baseOptions;
|
|
694
|
-
}
|
|
695
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
696
|
-
const localVarHeaderParameter = {};
|
|
697
|
-
const localVarQueryParameter = {};
|
|
698
|
-
// authentication tokenScheme required
|
|
699
|
-
// http bearer authentication required
|
|
700
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
701
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
702
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
703
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
704
|
-
return {
|
|
705
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
706
|
-
options: localVarRequestOptions,
|
|
707
|
-
};
|
|
708
|
-
}),
|
|
709
|
-
/**
|
|
710
|
-
*
|
|
711
|
-
* @param {*} [options] Override http request option.
|
|
712
|
-
* @throws {RequiredError}
|
|
713
|
-
*/
|
|
714
|
-
getTokenByHttp1: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
715
|
-
const localVarPath = `/miniapp/auth/fusionGetTokenByHttp`;
|
|
716
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
717
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
718
|
-
let baseOptions;
|
|
719
|
-
if (configuration) {
|
|
720
|
-
baseOptions = configuration.baseOptions;
|
|
721
|
-
}
|
|
722
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
723
|
-
const localVarHeaderParameter = {};
|
|
724
|
-
const localVarQueryParameter = {};
|
|
725
|
-
// authentication tokenScheme required
|
|
726
|
-
// http bearer authentication required
|
|
727
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
728
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
729
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
730
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
731
|
-
return {
|
|
732
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
733
|
-
options: localVarRequestOptions,
|
|
734
|
-
};
|
|
735
|
-
}),
|
|
736
|
-
/**
|
|
737
|
-
*
|
|
738
|
-
* @param {*} [options] Override http request option.
|
|
739
|
-
* @throws {RequiredError}
|
|
740
|
-
*/
|
|
741
|
-
getTokenByHttp2: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
742
|
-
const localVarPath = `/fusion/base/fusionGetTokenByHttp`;
|
|
743
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
744
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
745
|
-
let baseOptions;
|
|
746
|
-
if (configuration) {
|
|
747
|
-
baseOptions = configuration.baseOptions;
|
|
748
|
-
}
|
|
749
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
750
|
-
const localVarHeaderParameter = {};
|
|
751
|
-
const localVarQueryParameter = {};
|
|
752
|
-
// authentication tokenScheme required
|
|
753
|
-
// http bearer authentication required
|
|
754
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
755
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
756
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
757
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
758
|
-
return {
|
|
759
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
760
|
-
options: localVarRequestOptions,
|
|
761
|
-
};
|
|
762
|
-
}),
|
|
763
|
-
/**
|
|
764
|
-
*
|
|
765
|
-
* @param {*} [options] Override http request option.
|
|
766
|
-
* @throws {RequiredError}
|
|
767
|
-
*/
|
|
768
|
-
getTokenByHttp3: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
|
|
769
|
-
const localVarPath = `/fusion/base/fusionGetTokenByHttp`;
|
|
770
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
771
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
772
|
-
let baseOptions;
|
|
773
|
-
if (configuration) {
|
|
774
|
-
baseOptions = configuration.baseOptions;
|
|
775
|
-
}
|
|
776
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
777
|
-
const localVarHeaderParameter = {};
|
|
778
|
-
const localVarQueryParameter = {};
|
|
779
|
-
// authentication tokenScheme required
|
|
780
|
-
// http bearer authentication required
|
|
781
|
-
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
782
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
783
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
784
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
785
|
-
return {
|
|
786
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
787
|
-
options: localVarRequestOptions,
|
|
788
|
-
};
|
|
789
|
-
}),
|
|
790
574
|
/**
|
|
791
575
|
*
|
|
792
576
|
* @summary 获取用户信息
|
|
@@ -794,7 +578,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
794
578
|
* @param {*} [options] Override http request option.
|
|
795
579
|
* @throws {RequiredError}
|
|
796
580
|
*/
|
|
797
|
-
getUserRolesAndPermissions: (
|
|
581
|
+
getUserRolesAndPermissions: (parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
798
582
|
// verify required parameter 'parkId' is not null or undefined
|
|
799
583
|
(0, common_1.assertParamExists)('getUserRolesAndPermissions', 'parkId', parkId);
|
|
800
584
|
const localVarPath = `/getInfo`;
|
|
@@ -827,7 +611,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
827
611
|
* @param {*} [options] Override http request option.
|
|
828
612
|
* @throws {RequiredError}
|
|
829
613
|
*/
|
|
830
|
-
login: (
|
|
614
|
+
login: (loginBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
831
615
|
// verify required parameter 'loginBody' is not null or undefined
|
|
832
616
|
(0, common_1.assertParamExists)('login', 'loginBody', loginBody);
|
|
833
617
|
const localVarPath = `/login`;
|
|
@@ -860,7 +644,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
860
644
|
* @param {*} [options] Override http request option.
|
|
861
645
|
* @throws {RequiredError}
|
|
862
646
|
*/
|
|
863
|
-
loginByCodeV2: (
|
|
647
|
+
loginByCodeV2: (appLoginWxChatDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
864
648
|
// verify required parameter 'appLoginWxChatDto' is not null or undefined
|
|
865
649
|
(0, common_1.assertParamExists)('loginByCodeV2', 'appLoginWxChatDto', appLoginWxChatDto);
|
|
866
650
|
const localVarPath = `/miniapp/auth/LoginByMiniAppV2`;
|
|
@@ -893,7 +677,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
893
677
|
* @param {*} [options] Override http request option.
|
|
894
678
|
* @throws {RequiredError}
|
|
895
679
|
*/
|
|
896
|
-
loginByOpenId: (
|
|
680
|
+
loginByOpenId: (appObtainToken, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
897
681
|
// verify required parameter 'appObtainToken' is not null or undefined
|
|
898
682
|
(0, common_1.assertParamExists)('loginByOpenId', 'appObtainToken', appObtainToken);
|
|
899
683
|
const localVarPath = `/miniapp/auth/loginByOpenId`;
|
|
@@ -926,7 +710,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
926
710
|
* @param {*} [options] Override http request option.
|
|
927
711
|
* @throws {RequiredError}
|
|
928
712
|
*/
|
|
929
|
-
loginByWechatPublic: (
|
|
713
|
+
loginByWechatPublic: (appLoginWxChatPubDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
930
714
|
// verify required parameter 'appLoginWxChatPubDto' is not null or undefined
|
|
931
715
|
(0, common_1.assertParamExists)('loginByWechatPublic', 'appLoginWxChatPubDto', appLoginWxChatPubDto);
|
|
932
716
|
const localVarPath = `/miniapp/auth/loginByWechatPub`;
|
|
@@ -959,7 +743,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
959
743
|
* @param {*} [options] Override http request option.
|
|
960
744
|
* @throws {RequiredError}
|
|
961
745
|
*/
|
|
962
|
-
loginPhoneCode: (
|
|
746
|
+
loginPhoneCode: (sysLoginCodeDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
963
747
|
// verify required parameter 'sysLoginCodeDto' is not null or undefined
|
|
964
748
|
(0, common_1.assertParamExists)('loginPhoneCode', 'sysLoginCodeDto', sysLoginCodeDto);
|
|
965
749
|
const localVarPath = `/login/phone/code`;
|
|
@@ -992,7 +776,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
992
776
|
* @param {*} [options] Override http request option.
|
|
993
777
|
* @throws {RequiredError}
|
|
994
778
|
*/
|
|
995
|
-
pushMsg: (
|
|
779
|
+
pushMsg: (cid, payload, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
996
780
|
// verify required parameter 'cid' is not null or undefined
|
|
997
781
|
(0, common_1.assertParamExists)('pushMsg', 'cid', cid);
|
|
998
782
|
// verify required parameter 'payload' is not null or undefined
|
|
@@ -1029,7 +813,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1029
813
|
* @param {*} [options] Override http request option.
|
|
1030
814
|
* @throws {RequiredError}
|
|
1031
815
|
*/
|
|
1032
|
-
switchPark: (
|
|
816
|
+
switchPark: (switchPakBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1033
817
|
// verify required parameter 'switchPakBody' is not null or undefined
|
|
1034
818
|
(0, common_1.assertParamExists)('switchPark', 'switchPakBody', switchPakBody);
|
|
1035
819
|
const localVarPath = `/miniapp/auth/switch/park`;
|
|
@@ -1061,7 +845,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1061
845
|
* @param {*} [options] Override http request option.
|
|
1062
846
|
* @throws {RequiredError}
|
|
1063
847
|
*/
|
|
1064
|
-
switchParkToken: (
|
|
848
|
+
switchParkToken: (switchPakBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1065
849
|
// verify required parameter 'switchPakBody' is not null or undefined
|
|
1066
850
|
(0, common_1.assertParamExists)('switchParkToken', 'switchPakBody', switchPakBody);
|
|
1067
851
|
const localVarPath = `/switch/park/token`;
|
|
@@ -1094,7 +878,7 @@ const AuthApiAxiosParamCreator = function (configuration) {
|
|
|
1094
878
|
* @param {*} [options] Override http request option.
|
|
1095
879
|
* @throws {RequiredError}
|
|
1096
880
|
*/
|
|
1097
|
-
switchParkV2: (
|
|
881
|
+
switchParkV2: (switchPakBodyV2Vo, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1098
882
|
// verify required parameter 'switchPakBodyV2Vo' is not null or undefined
|
|
1099
883
|
(0, common_1.assertParamExists)('switchParkV2', 'switchPakBodyV2Vo', switchPakBodyV2Vo);
|
|
1100
884
|
const localVarPath = `/switch/park/v2`;
|
|
@@ -1138,12 +922,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1138
922
|
* @throws {RequiredError}
|
|
1139
923
|
*/
|
|
1140
924
|
appLoginByMobile(appLoginPasswordDto, options) {
|
|
925
|
+
var _a, _b, _c;
|
|
1141
926
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1142
|
-
var _a, _b, _c;
|
|
1143
927
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.appLoginByMobile(appLoginPasswordDto, options);
|
|
1144
|
-
const
|
|
1145
|
-
const
|
|
1146
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
928
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
929
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.appLoginByMobile']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
930
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1147
931
|
});
|
|
1148
932
|
},
|
|
1149
933
|
/**
|
|
@@ -1154,12 +938,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1154
938
|
* @throws {RequiredError}
|
|
1155
939
|
*/
|
|
1156
940
|
appLoginBySMSCode(appLoginCodeDto, options) {
|
|
941
|
+
var _a, _b, _c;
|
|
1157
942
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1158
|
-
var _a, _b, _c;
|
|
1159
943
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.appLoginBySMSCode(appLoginCodeDto, options);
|
|
1160
|
-
const
|
|
1161
|
-
const
|
|
1162
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
944
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
945
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.appLoginBySMSCode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
946
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1163
947
|
});
|
|
1164
948
|
},
|
|
1165
949
|
/**
|
|
@@ -1170,12 +954,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1170
954
|
* @throws {RequiredError}
|
|
1171
955
|
*/
|
|
1172
956
|
bindEmail(userBindBody, options) {
|
|
957
|
+
var _a, _b, _c;
|
|
1173
958
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1174
|
-
var _a, _b, _c;
|
|
1175
959
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindEmail(userBindBody, options);
|
|
1176
|
-
const
|
|
1177
|
-
const
|
|
1178
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
960
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
961
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.bindEmail']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
962
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1179
963
|
});
|
|
1180
964
|
},
|
|
1181
965
|
/**
|
|
@@ -1186,12 +970,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1186
970
|
* @throws {RequiredError}
|
|
1187
971
|
*/
|
|
1188
972
|
bindPhone(userBindBody, options) {
|
|
973
|
+
var _a, _b, _c;
|
|
1189
974
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1190
|
-
var _a, _b, _c;
|
|
1191
975
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindPhone(userBindBody, options);
|
|
1192
|
-
const
|
|
1193
|
-
const
|
|
1194
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
976
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
977
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.bindPhone']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
978
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1195
979
|
});
|
|
1196
980
|
},
|
|
1197
981
|
/**
|
|
@@ -1201,12 +985,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1201
985
|
* @throws {RequiredError}
|
|
1202
986
|
*/
|
|
1203
987
|
bindingCId(cId, options) {
|
|
988
|
+
var _a, _b, _c;
|
|
1204
989
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1205
|
-
var _a, _b, _c;
|
|
1206
990
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindingCId(cId, options);
|
|
1207
|
-
const
|
|
1208
|
-
const
|
|
1209
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
991
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
992
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.bindingCId']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
993
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1210
994
|
});
|
|
1211
995
|
},
|
|
1212
996
|
/**
|
|
@@ -1216,12 +1000,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1216
1000
|
* @throws {RequiredError}
|
|
1217
1001
|
*/
|
|
1218
1002
|
cancelAccount(options) {
|
|
1003
|
+
var _a, _b, _c;
|
|
1219
1004
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1220
|
-
var _a, _b, _c;
|
|
1221
1005
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.cancelAccount(options);
|
|
1222
|
-
const
|
|
1223
|
-
const
|
|
1224
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1006
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1007
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.cancelAccount']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1008
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1225
1009
|
});
|
|
1226
1010
|
},
|
|
1227
1011
|
/**
|
|
@@ -1231,12 +1015,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1231
1015
|
* @throws {RequiredError}
|
|
1232
1016
|
*/
|
|
1233
1017
|
checkToken(options) {
|
|
1018
|
+
var _a, _b, _c;
|
|
1234
1019
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1235
|
-
var _a, _b, _c;
|
|
1236
1020
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.checkToken(options);
|
|
1237
|
-
const
|
|
1238
|
-
const
|
|
1239
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1021
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1022
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.checkToken']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1023
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1240
1024
|
});
|
|
1241
1025
|
},
|
|
1242
1026
|
/**
|
|
@@ -1247,12 +1031,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1247
1031
|
* @throws {RequiredError}
|
|
1248
1032
|
*/
|
|
1249
1033
|
choosePark(choosePakBody, options) {
|
|
1034
|
+
var _a, _b, _c;
|
|
1250
1035
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1251
|
-
var _a, _b, _c;
|
|
1252
1036
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.choosePark(choosePakBody, options);
|
|
1253
|
-
const
|
|
1254
|
-
const
|
|
1255
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1037
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1038
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.choosePark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1039
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1256
1040
|
});
|
|
1257
1041
|
},
|
|
1258
1042
|
/**
|
|
@@ -1264,68 +1048,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1264
1048
|
* @throws {RequiredError}
|
|
1265
1049
|
*/
|
|
1266
1050
|
code(email, language, options) {
|
|
1051
|
+
var _a, _b, _c;
|
|
1267
1052
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1268
|
-
var _a, _b, _c;
|
|
1269
1053
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.code(email, language, options);
|
|
1270
|
-
const
|
|
1271
|
-
const
|
|
1272
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1273
|
-
});
|
|
1274
|
-
},
|
|
1275
|
-
/**
|
|
1276
|
-
*
|
|
1277
|
-
* @param {*} [options] Override http request option.
|
|
1278
|
-
* @throws {RequiredError}
|
|
1279
|
-
*/
|
|
1280
|
-
fusionGetToken(options) {
|
|
1281
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1282
|
-
var _a, _b, _c;
|
|
1283
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken(options);
|
|
1284
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1285
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.fusionGetToken']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1286
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1287
|
-
});
|
|
1288
|
-
},
|
|
1289
|
-
/**
|
|
1290
|
-
*
|
|
1291
|
-
* @param {*} [options] Override http request option.
|
|
1292
|
-
* @throws {RequiredError}
|
|
1293
|
-
*/
|
|
1294
|
-
fusionGetToken1(options) {
|
|
1295
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1296
|
-
var _a, _b, _c;
|
|
1297
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken1(options);
|
|
1298
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1299
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.fusionGetToken1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1300
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1301
|
-
});
|
|
1302
|
-
},
|
|
1303
|
-
/**
|
|
1304
|
-
*
|
|
1305
|
-
* @param {*} [options] Override http request option.
|
|
1306
|
-
* @throws {RequiredError}
|
|
1307
|
-
*/
|
|
1308
|
-
fusionGetToken2(options) {
|
|
1309
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1310
|
-
var _a, _b, _c;
|
|
1311
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken2(options);
|
|
1312
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1313
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.fusionGetToken2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1314
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1315
|
-
});
|
|
1316
|
-
},
|
|
1317
|
-
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @param {*} [options] Override http request option.
|
|
1320
|
-
* @throws {RequiredError}
|
|
1321
|
-
*/
|
|
1322
|
-
fusionGetToken3(options) {
|
|
1323
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1324
|
-
var _a, _b, _c;
|
|
1325
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.fusionGetToken3(options);
|
|
1326
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1327
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.fusionGetToken3']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1328
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1054
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1055
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.code']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1056
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1329
1057
|
});
|
|
1330
1058
|
},
|
|
1331
1059
|
/**
|
|
@@ -1334,12 +1062,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1334
1062
|
* @throws {RequiredError}
|
|
1335
1063
|
*/
|
|
1336
1064
|
getCode(options) {
|
|
1065
|
+
var _a, _b, _c;
|
|
1337
1066
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1338
|
-
var _a, _b, _c;
|
|
1339
1067
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getCode(options);
|
|
1340
|
-
const
|
|
1341
|
-
const
|
|
1342
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1068
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1069
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getCode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1070
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1343
1071
|
});
|
|
1344
1072
|
},
|
|
1345
1073
|
/**
|
|
@@ -1348,12 +1076,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1348
1076
|
* @throws {RequiredError}
|
|
1349
1077
|
*/
|
|
1350
1078
|
getLoginMode(options) {
|
|
1079
|
+
var _a, _b, _c;
|
|
1351
1080
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1352
|
-
var _a, _b, _c;
|
|
1353
1081
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getLoginMode(options);
|
|
1354
|
-
const
|
|
1355
|
-
const
|
|
1356
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1082
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1083
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getLoginMode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1084
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1357
1085
|
});
|
|
1358
1086
|
},
|
|
1359
1087
|
/**
|
|
@@ -1366,12 +1094,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1366
1094
|
* @throws {RequiredError}
|
|
1367
1095
|
*/
|
|
1368
1096
|
getPark(uuid, type, parkId, options) {
|
|
1097
|
+
var _a, _b, _c;
|
|
1369
1098
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1370
|
-
var _a, _b, _c;
|
|
1371
1099
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getPark(uuid, type, parkId, options);
|
|
1372
|
-
const
|
|
1373
|
-
const
|
|
1374
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1100
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1101
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getPark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1102
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1375
1103
|
});
|
|
1376
1104
|
},
|
|
1377
1105
|
/**
|
|
@@ -1382,12 +1110,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1382
1110
|
* @throws {RequiredError}
|
|
1383
1111
|
*/
|
|
1384
1112
|
getParkByGroupId(groupId, options) {
|
|
1113
|
+
var _a, _b, _c;
|
|
1385
1114
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1386
|
-
var _a, _b, _c;
|
|
1387
1115
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkByGroupId(groupId, options);
|
|
1388
|
-
const
|
|
1389
|
-
const
|
|
1390
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1116
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1117
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getParkByGroupId']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1118
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1391
1119
|
});
|
|
1392
1120
|
},
|
|
1393
1121
|
/**
|
|
@@ -1401,12 +1129,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1401
1129
|
* @throws {RequiredError}
|
|
1402
1130
|
*/
|
|
1403
1131
|
getParkMiniApp(uuid, userType, parkId, appId, options) {
|
|
1132
|
+
var _a, _b, _c;
|
|
1404
1133
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1405
|
-
var _a, _b, _c;
|
|
1406
1134
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getParkMiniApp(uuid, userType, parkId, appId, options);
|
|
1407
|
-
const
|
|
1408
|
-
const
|
|
1409
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1135
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1136
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getParkMiniApp']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1137
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1410
1138
|
});
|
|
1411
1139
|
},
|
|
1412
1140
|
/**
|
|
@@ -1416,12 +1144,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1416
1144
|
* @throws {RequiredError}
|
|
1417
1145
|
*/
|
|
1418
1146
|
getRouters(parkId, options) {
|
|
1147
|
+
var _a, _b, _c;
|
|
1419
1148
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1420
|
-
var _a, _b, _c;
|
|
1421
1149
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getRouters(parkId, options);
|
|
1422
|
-
const
|
|
1423
|
-
const
|
|
1424
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1150
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1151
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getRouters']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1152
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1425
1153
|
});
|
|
1426
1154
|
},
|
|
1427
1155
|
/**
|
|
@@ -1430,68 +1158,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1430
1158
|
* @throws {RequiredError}
|
|
1431
1159
|
*/
|
|
1432
1160
|
getRoutersAll(options) {
|
|
1161
|
+
var _a, _b, _c;
|
|
1433
1162
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1434
|
-
var _a, _b, _c;
|
|
1435
1163
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getRoutersAll(options);
|
|
1436
|
-
const
|
|
1437
|
-
const
|
|
1438
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1439
|
-
});
|
|
1440
|
-
},
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @param {*} [options] Override http request option.
|
|
1444
|
-
* @throws {RequiredError}
|
|
1445
|
-
*/
|
|
1446
|
-
getTokenByHttp(options) {
|
|
1447
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1448
|
-
var _a, _b, _c;
|
|
1449
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp(options);
|
|
1450
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1451
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getTokenByHttp']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1452
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1453
|
-
});
|
|
1454
|
-
},
|
|
1455
|
-
/**
|
|
1456
|
-
*
|
|
1457
|
-
* @param {*} [options] Override http request option.
|
|
1458
|
-
* @throws {RequiredError}
|
|
1459
|
-
*/
|
|
1460
|
-
getTokenByHttp1(options) {
|
|
1461
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1462
|
-
var _a, _b, _c;
|
|
1463
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp1(options);
|
|
1464
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1465
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getTokenByHttp1']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1466
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1467
|
-
});
|
|
1468
|
-
},
|
|
1469
|
-
/**
|
|
1470
|
-
*
|
|
1471
|
-
* @param {*} [options] Override http request option.
|
|
1472
|
-
* @throws {RequiredError}
|
|
1473
|
-
*/
|
|
1474
|
-
getTokenByHttp2(options) {
|
|
1475
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1476
|
-
var _a, _b, _c;
|
|
1477
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp2(options);
|
|
1478
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1479
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getTokenByHttp2']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1480
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1481
|
-
});
|
|
1482
|
-
},
|
|
1483
|
-
/**
|
|
1484
|
-
*
|
|
1485
|
-
* @param {*} [options] Override http request option.
|
|
1486
|
-
* @throws {RequiredError}
|
|
1487
|
-
*/
|
|
1488
|
-
getTokenByHttp3(options) {
|
|
1489
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
1490
|
-
var _a, _b, _c;
|
|
1491
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getTokenByHttp3(options);
|
|
1492
|
-
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1493
|
-
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getTokenByHttp3']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1494
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1164
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1165
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getRoutersAll']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1166
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1495
1167
|
});
|
|
1496
1168
|
},
|
|
1497
1169
|
/**
|
|
@@ -1502,12 +1174,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1502
1174
|
* @throws {RequiredError}
|
|
1503
1175
|
*/
|
|
1504
1176
|
getUserRolesAndPermissions(parkId, options) {
|
|
1177
|
+
var _a, _b, _c;
|
|
1505
1178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1506
|
-
var _a, _b, _c;
|
|
1507
1179
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getUserRolesAndPermissions(parkId, options);
|
|
1508
|
-
const
|
|
1509
|
-
const
|
|
1510
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1180
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1181
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.getUserRolesAndPermissions']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1182
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1511
1183
|
});
|
|
1512
1184
|
},
|
|
1513
1185
|
/**
|
|
@@ -1517,12 +1189,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1517
1189
|
* @throws {RequiredError}
|
|
1518
1190
|
*/
|
|
1519
1191
|
login(loginBody, options) {
|
|
1192
|
+
var _a, _b, _c;
|
|
1520
1193
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1521
|
-
var _a, _b, _c;
|
|
1522
1194
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.login(loginBody, options);
|
|
1523
|
-
const
|
|
1524
|
-
const
|
|
1525
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1195
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1196
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.login']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1197
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1526
1198
|
});
|
|
1527
1199
|
},
|
|
1528
1200
|
/**
|
|
@@ -1533,12 +1205,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1533
1205
|
* @throws {RequiredError}
|
|
1534
1206
|
*/
|
|
1535
1207
|
loginByCodeV2(appLoginWxChatDto, options) {
|
|
1208
|
+
var _a, _b, _c;
|
|
1536
1209
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1537
|
-
var _a, _b, _c;
|
|
1538
1210
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginByCodeV2(appLoginWxChatDto, options);
|
|
1539
|
-
const
|
|
1540
|
-
const
|
|
1541
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1211
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1212
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.loginByCodeV2']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1213
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1542
1214
|
});
|
|
1543
1215
|
},
|
|
1544
1216
|
/**
|
|
@@ -1549,12 +1221,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1549
1221
|
* @throws {RequiredError}
|
|
1550
1222
|
*/
|
|
1551
1223
|
loginByOpenId(appObtainToken, options) {
|
|
1224
|
+
var _a, _b, _c;
|
|
1552
1225
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1553
|
-
var _a, _b, _c;
|
|
1554
1226
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginByOpenId(appObtainToken, options);
|
|
1555
|
-
const
|
|
1556
|
-
const
|
|
1557
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1227
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1228
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.loginByOpenId']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1229
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1558
1230
|
});
|
|
1559
1231
|
},
|
|
1560
1232
|
/**
|
|
@@ -1565,12 +1237,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1565
1237
|
* @throws {RequiredError}
|
|
1566
1238
|
*/
|
|
1567
1239
|
loginByWechatPublic(appLoginWxChatPubDto, options) {
|
|
1240
|
+
var _a, _b, _c;
|
|
1568
1241
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1569
|
-
var _a, _b, _c;
|
|
1570
1242
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginByWechatPublic(appLoginWxChatPubDto, options);
|
|
1571
|
-
const
|
|
1572
|
-
const
|
|
1573
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1243
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1244
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.loginByWechatPublic']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1245
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1574
1246
|
});
|
|
1575
1247
|
},
|
|
1576
1248
|
/**
|
|
@@ -1581,12 +1253,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1581
1253
|
* @throws {RequiredError}
|
|
1582
1254
|
*/
|
|
1583
1255
|
loginPhoneCode(sysLoginCodeDto, options) {
|
|
1256
|
+
var _a, _b, _c;
|
|
1584
1257
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1585
|
-
var _a, _b, _c;
|
|
1586
1258
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.loginPhoneCode(sysLoginCodeDto, options);
|
|
1587
|
-
const
|
|
1588
|
-
const
|
|
1589
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1259
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1260
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.loginPhoneCode']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1261
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1590
1262
|
});
|
|
1591
1263
|
},
|
|
1592
1264
|
/**
|
|
@@ -1597,12 +1269,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1597
1269
|
* @throws {RequiredError}
|
|
1598
1270
|
*/
|
|
1599
1271
|
pushMsg(cid, payload, options) {
|
|
1272
|
+
var _a, _b, _c;
|
|
1600
1273
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1601
|
-
var _a, _b, _c;
|
|
1602
1274
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.pushMsg(cid, payload, options);
|
|
1603
|
-
const
|
|
1604
|
-
const
|
|
1605
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1275
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1276
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.pushMsg']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1277
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1606
1278
|
});
|
|
1607
1279
|
},
|
|
1608
1280
|
/**
|
|
@@ -1613,12 +1285,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1613
1285
|
* @throws {RequiredError}
|
|
1614
1286
|
*/
|
|
1615
1287
|
switchPark(switchPakBody, options) {
|
|
1288
|
+
var _a, _b, _c;
|
|
1616
1289
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1617
|
-
var _a, _b, _c;
|
|
1618
1290
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.switchPark(switchPakBody, options);
|
|
1619
|
-
const
|
|
1620
|
-
const
|
|
1621
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1291
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1292
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.switchPark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1293
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1622
1294
|
});
|
|
1623
1295
|
},
|
|
1624
1296
|
/**
|
|
@@ -1628,12 +1300,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1628
1300
|
* @throws {RequiredError}
|
|
1629
1301
|
*/
|
|
1630
1302
|
switchParkToken(switchPakBody, options) {
|
|
1303
|
+
var _a, _b, _c;
|
|
1631
1304
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1632
|
-
var _a, _b, _c;
|
|
1633
1305
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.switchParkToken(switchPakBody, options);
|
|
1634
|
-
const
|
|
1635
|
-
const
|
|
1636
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1306
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1307
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.switchParkToken']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1308
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1637
1309
|
});
|
|
1638
1310
|
},
|
|
1639
1311
|
/**
|
|
@@ -1644,12 +1316,12 @@ const AuthApiFp = function (configuration) {
|
|
|
1644
1316
|
* @throws {RequiredError}
|
|
1645
1317
|
*/
|
|
1646
1318
|
switchParkV2(switchPakBodyV2Vo, options) {
|
|
1319
|
+
var _a, _b, _c;
|
|
1647
1320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1648
|
-
var _a, _b, _c;
|
|
1649
1321
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.switchParkV2(switchPakBodyV2Vo, options);
|
|
1650
|
-
const
|
|
1651
|
-
const
|
|
1652
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios,
|
|
1322
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1323
|
+
const operationBasePath = (_c = (_b = base_1.operationServerMap['AuthApi.switchParkV2']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1324
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1653
1325
|
});
|
|
1654
1326
|
},
|
|
1655
1327
|
};
|
|
@@ -1749,38 +1421,6 @@ const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1749
1421
|
code(requestParameters, options) {
|
|
1750
1422
|
return localVarFp.code(requestParameters.email, requestParameters.language, options).then((request) => request(axios, basePath));
|
|
1751
1423
|
},
|
|
1752
|
-
/**
|
|
1753
|
-
*
|
|
1754
|
-
* @param {*} [options] Override http request option.
|
|
1755
|
-
* @throws {RequiredError}
|
|
1756
|
-
*/
|
|
1757
|
-
fusionGetToken(options) {
|
|
1758
|
-
return localVarFp.fusionGetToken(options).then((request) => request(axios, basePath));
|
|
1759
|
-
},
|
|
1760
|
-
/**
|
|
1761
|
-
*
|
|
1762
|
-
* @param {*} [options] Override http request option.
|
|
1763
|
-
* @throws {RequiredError}
|
|
1764
|
-
*/
|
|
1765
|
-
fusionGetToken1(options) {
|
|
1766
|
-
return localVarFp.fusionGetToken1(options).then((request) => request(axios, basePath));
|
|
1767
|
-
},
|
|
1768
|
-
/**
|
|
1769
|
-
*
|
|
1770
|
-
* @param {*} [options] Override http request option.
|
|
1771
|
-
* @throws {RequiredError}
|
|
1772
|
-
*/
|
|
1773
|
-
fusionGetToken2(options) {
|
|
1774
|
-
return localVarFp.fusionGetToken2(options).then((request) => request(axios, basePath));
|
|
1775
|
-
},
|
|
1776
|
-
/**
|
|
1777
|
-
*
|
|
1778
|
-
* @param {*} [options] Override http request option.
|
|
1779
|
-
* @throws {RequiredError}
|
|
1780
|
-
*/
|
|
1781
|
-
fusionGetToken3(options) {
|
|
1782
|
-
return localVarFp.fusionGetToken3(options).then((request) => request(axios, basePath));
|
|
1783
|
-
},
|
|
1784
1424
|
/**
|
|
1785
1425
|
*
|
|
1786
1426
|
* @param {*} [options] Override http request option.
|
|
@@ -1844,38 +1484,6 @@ const AuthApiFactory = function (configuration, basePath, axios) {
|
|
|
1844
1484
|
getRoutersAll(options) {
|
|
1845
1485
|
return localVarFp.getRoutersAll(options).then((request) => request(axios, basePath));
|
|
1846
1486
|
},
|
|
1847
|
-
/**
|
|
1848
|
-
*
|
|
1849
|
-
* @param {*} [options] Override http request option.
|
|
1850
|
-
* @throws {RequiredError}
|
|
1851
|
-
*/
|
|
1852
|
-
getTokenByHttp(options) {
|
|
1853
|
-
return localVarFp.getTokenByHttp(options).then((request) => request(axios, basePath));
|
|
1854
|
-
},
|
|
1855
|
-
/**
|
|
1856
|
-
*
|
|
1857
|
-
* @param {*} [options] Override http request option.
|
|
1858
|
-
* @throws {RequiredError}
|
|
1859
|
-
*/
|
|
1860
|
-
getTokenByHttp1(options) {
|
|
1861
|
-
return localVarFp.getTokenByHttp1(options).then((request) => request(axios, basePath));
|
|
1862
|
-
},
|
|
1863
|
-
/**
|
|
1864
|
-
*
|
|
1865
|
-
* @param {*} [options] Override http request option.
|
|
1866
|
-
* @throws {RequiredError}
|
|
1867
|
-
*/
|
|
1868
|
-
getTokenByHttp2(options) {
|
|
1869
|
-
return localVarFp.getTokenByHttp2(options).then((request) => request(axios, basePath));
|
|
1870
|
-
},
|
|
1871
|
-
/**
|
|
1872
|
-
*
|
|
1873
|
-
* @param {*} [options] Override http request option.
|
|
1874
|
-
* @throws {RequiredError}
|
|
1875
|
-
*/
|
|
1876
|
-
getTokenByHttp3(options) {
|
|
1877
|
-
return localVarFp.getTokenByHttp3(options).then((request) => request(axios, basePath));
|
|
1878
|
-
},
|
|
1879
1487
|
/**
|
|
1880
1488
|
*
|
|
1881
1489
|
* @summary 获取用户信息
|
|
@@ -2079,42 +1687,6 @@ class AuthApi extends base_1.BaseAPI {
|
|
|
2079
1687
|
code(requestParameters, options) {
|
|
2080
1688
|
return (0, exports.AuthApiFp)(this.configuration).code(requestParameters.email, requestParameters.language, options).then((request) => request(this.axios, this.basePath));
|
|
2081
1689
|
}
|
|
2082
|
-
/**
|
|
2083
|
-
*
|
|
2084
|
-
* @param {*} [options] Override http request option.
|
|
2085
|
-
* @throws {RequiredError}
|
|
2086
|
-
* @memberof AuthApi
|
|
2087
|
-
*/
|
|
2088
|
-
fusionGetToken(options) {
|
|
2089
|
-
return (0, exports.AuthApiFp)(this.configuration).fusionGetToken(options).then((request) => request(this.axios, this.basePath));
|
|
2090
|
-
}
|
|
2091
|
-
/**
|
|
2092
|
-
*
|
|
2093
|
-
* @param {*} [options] Override http request option.
|
|
2094
|
-
* @throws {RequiredError}
|
|
2095
|
-
* @memberof AuthApi
|
|
2096
|
-
*/
|
|
2097
|
-
fusionGetToken1(options) {
|
|
2098
|
-
return (0, exports.AuthApiFp)(this.configuration).fusionGetToken1(options).then((request) => request(this.axios, this.basePath));
|
|
2099
|
-
}
|
|
2100
|
-
/**
|
|
2101
|
-
*
|
|
2102
|
-
* @param {*} [options] Override http request option.
|
|
2103
|
-
* @throws {RequiredError}
|
|
2104
|
-
* @memberof AuthApi
|
|
2105
|
-
*/
|
|
2106
|
-
fusionGetToken2(options) {
|
|
2107
|
-
return (0, exports.AuthApiFp)(this.configuration).fusionGetToken2(options).then((request) => request(this.axios, this.basePath));
|
|
2108
|
-
}
|
|
2109
|
-
/**
|
|
2110
|
-
*
|
|
2111
|
-
* @param {*} [options] Override http request option.
|
|
2112
|
-
* @throws {RequiredError}
|
|
2113
|
-
* @memberof AuthApi
|
|
2114
|
-
*/
|
|
2115
|
-
fusionGetToken3(options) {
|
|
2116
|
-
return (0, exports.AuthApiFp)(this.configuration).fusionGetToken3(options).then((request) => request(this.axios, this.basePath));
|
|
2117
|
-
}
|
|
2118
1690
|
/**
|
|
2119
1691
|
*
|
|
2120
1692
|
* @param {*} [options] Override http request option.
|
|
@@ -2185,42 +1757,6 @@ class AuthApi extends base_1.BaseAPI {
|
|
|
2185
1757
|
getRoutersAll(options) {
|
|
2186
1758
|
return (0, exports.AuthApiFp)(this.configuration).getRoutersAll(options).then((request) => request(this.axios, this.basePath));
|
|
2187
1759
|
}
|
|
2188
|
-
/**
|
|
2189
|
-
*
|
|
2190
|
-
* @param {*} [options] Override http request option.
|
|
2191
|
-
* @throws {RequiredError}
|
|
2192
|
-
* @memberof AuthApi
|
|
2193
|
-
*/
|
|
2194
|
-
getTokenByHttp(options) {
|
|
2195
|
-
return (0, exports.AuthApiFp)(this.configuration).getTokenByHttp(options).then((request) => request(this.axios, this.basePath));
|
|
2196
|
-
}
|
|
2197
|
-
/**
|
|
2198
|
-
*
|
|
2199
|
-
* @param {*} [options] Override http request option.
|
|
2200
|
-
* @throws {RequiredError}
|
|
2201
|
-
* @memberof AuthApi
|
|
2202
|
-
*/
|
|
2203
|
-
getTokenByHttp1(options) {
|
|
2204
|
-
return (0, exports.AuthApiFp)(this.configuration).getTokenByHttp1(options).then((request) => request(this.axios, this.basePath));
|
|
2205
|
-
}
|
|
2206
|
-
/**
|
|
2207
|
-
*
|
|
2208
|
-
* @param {*} [options] Override http request option.
|
|
2209
|
-
* @throws {RequiredError}
|
|
2210
|
-
* @memberof AuthApi
|
|
2211
|
-
*/
|
|
2212
|
-
getTokenByHttp2(options) {
|
|
2213
|
-
return (0, exports.AuthApiFp)(this.configuration).getTokenByHttp2(options).then((request) => request(this.axios, this.basePath));
|
|
2214
|
-
}
|
|
2215
|
-
/**
|
|
2216
|
-
*
|
|
2217
|
-
* @param {*} [options] Override http request option.
|
|
2218
|
-
* @throws {RequiredError}
|
|
2219
|
-
* @memberof AuthApi
|
|
2220
|
-
*/
|
|
2221
|
-
getTokenByHttp3(options) {
|
|
2222
|
-
return (0, exports.AuthApiFp)(this.configuration).getTokenByHttp3(options).then((request) => request(this.axios, this.basePath));
|
|
2223
|
-
}
|
|
2224
1760
|
/**
|
|
2225
1761
|
*
|
|
2226
1762
|
* @summary 获取用户信息
|